/* miweb-page.css — miweb.page landing page
   Lane: Bold-monochrome | Palette hue: 213 (electric cyan-blue) | Fonts: Syne + Space Grotesk */

/* ── Custom properties ──────────────────────────────────────────────────── */
:root {
  --color-primary:    oklch(72% 0.25 213deg);
  --color-primary-lt: oklch(85% 0.18 213deg);
  --color-primary-dk: oklch(32% 0.20 228deg);
  --color-bg:         oklch(7% 0.05 250deg);
  --color-surface:    oklch(12% 0.06 245deg);
  --color-text:       oklch(94% 0.006 213deg);
  --color-text-muted: oklch(85% 0.04 220deg);
  --color-border:     oklch(30% 0.08 245deg);
  --color-accent:     oklch(55% 0.18 195deg);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body:    "Space Grotesk", system-ui, sans-serif;
  --font-mono:    ui-monospace, "Cascadia Code", "Fira Mono", monospace;
  --container-w: 1200px;
  --section-pad: 6rem;
  --header-h:    60px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
details > summary { list-style: none; }

/* ── Animation: glow-pulse ─────────────────────────────────────────────── */

/* Opacity animates on a ::before pseudo-element — box-shadow is painted once,
   only opacity is composited, so no per-frame repaint. */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before,
  .plan-card--featured .plan-cta::before,
  .mw-btn-submit::before {
    animation: none;
    opacity: 0.55;
  }
}

/* ── Container ──────────────────────────────────────────────────────────── */
.mw-container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Glow divider ───────────────────────────────────────────────────────── */
.glow-divider {
  height: 1px;
  background: var(--color-primary-dk);
  box-shadow: 0 0 12px 1px var(--color-primary);
  position: relative;
  overflow: hidden;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  letter-spacing: -0.035em;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.65em 1.5em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
  position: relative;
  isolation: isolate;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 5px;
  box-shadow: 0 0 18px 4px var(--color-primary);
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.btn-primary:hover {
  background: var(--color-primary-lt);
  border-color: var(--color-primary-lt);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.8em 2em;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: oklch(72% 0.25 213deg / 8%);
}

.btn:focus-visible,
.mw-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: 70ms;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: oklch(7% 0.05 250deg / 90%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-primary);
  letter-spacing: -0.025em;
}

.wordmark--sm { font-size: 1rem; }

.header-nav-link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  transition: color 150ms;
}
.header-nav-link:hover { color: var(--color-primary); }

.header-cta {
  font-size: 0.875rem;
  padding: 0.5em 1.1em;
}

.nav-toggle-input { display: none; }
.nav-burger { display: none; }
.nav-icon-close { display: none; }

.nav-overlay { display: none; }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: oklch(7% 0.05 250deg / 96%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  flex-direction: column;
  padding: 1.25rem;
  gap: 0.25rem;
}

.mobile-nav-link {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 150ms;
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: var(--color-primary); }
.mobile-nav-cta { text-align: center; margin-top: 0.75rem; }

/* ── Hero (split-hero) ──────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--header-h) + 5.5rem);
  padding-bottom: 5.5rem;
  background-color: var(--color-bg);
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-headline {
  font-size: clamp(1.69rem, 4.125vw, 3rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  color: var(--color-text-muted);
  font-weight: 400;
  max-width: 44ch;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-img {
  width: 100%;
  border-radius: 3px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

/* ── About / How it works ───────────────────────────────────────────────── */
.about {
  padding-block: var(--section-pad);
  background-color: var(--color-surface);
}

.about .section-title { text-align: center; }

.about-intro {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.about-intro div + div { margin-top: 0.75em; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  display: block;
}

.step-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.step-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.about-visual { margin-top: 0.5rem; display: flex; justify-content: center; }

.about-img {
  width: 100%;
  max-width: 760px;
  border-radius: 3px;
}

/* ── Services / Pricing ─────────────────────────────────────────────────── */
.services {
  padding-block: var(--section-pad);
  background-color: var(--color-bg);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin-bottom: 2rem;
}

.plans-grid:has(> :only-child) {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.plan-card--featured {
  border-color: oklch(50% 0.22 213deg / 50%);
  background: oklch(10% 0.07 230deg);
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 1.5rem;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: var(--color-bg);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.7em;
  border-radius: 2px;
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.plan-price {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.plan-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.plan-desc div + div { margin-top: 0.5em; }

.services .section-title { text-align: center; }

.plan-cta { align-self: center; }

.plan-card--featured .plan-cta { /* glow via .btn-primary::before */ }

.plans-footnote {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 72ch;
  line-height: 1.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Gallery ────────────────────────────────────────────────────────────── */
.gallery {
  padding-block: var(--section-pad);
  background-color: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item { margin: 0; }

.gallery-img {
  width: 100%;
  border-radius: 3px;
  border: 1px solid var(--color-border);
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  padding-block: var(--section-pad);
  background-color: var(--color-surface);
}

.faq .section-title { text-align: center; }

.faq-list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 1.375rem 2.5rem 1.375rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  letter-spacing: -0.01em;
  line-height: 1.3;
  user-select: none;
}

.faq-question::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  line-height: 1;
}

details[open] > .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0.25rem 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.faq-answer div + div { margin-top: 0.5em; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  padding-block: 3rem;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-meta { text-align: right; }

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-credit {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.footer-credit a {
  color: var(--color-primary);
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ── Section subtitle ───────────────────────────────────────────────────── */
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* ── Announcement bar ───────────────────────────────────────────────────── */
.bar-dismiss-input { display: none; }
.bar-dismiss-input:checked + .announcement-bar { display: none; }

.announcement-bar {
  background: oklch(20% 0.10 213deg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.625rem 1rem;
  position: relative;
  z-index: 101;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.announcement-message {
  font-size: 0.875rem;
  color: var(--color-text);
  flex: 1;
}

.announcement-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-dismiss {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0.25rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header.below-bar { top: 2.5rem; }

/* ── Logos / trust bar ──────────────────────────────────────────────────── */
.logos-bar {
  padding-block: 2.5rem;
  background-color: var(--color-surface);
}

.logos-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 3rem;
}

.logo-img {
  height: 28px;
  width: auto;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.2s ease;
}

.logo-img:hover { filter: grayscale(0) brightness(1); }

.logo-name-fallback {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats {
  padding-block: var(--section-pad);
  background-color: var(--color-bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.stat-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ── How it works ───────────────────────────────────────────────────────── */
.how-it-works {
  padding-block: var(--section-pad);
  background-color: var(--color-surface);
}

.step-icon {
  font-size: 1.375rem;
  color: var(--color-primary);
  display: block;
}

/* ── Team ───────────────────────────────────────────────────────────────── */
.team {
  padding-block: var(--section-pad);
  background-color: var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-photo {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.team-photo-placeholder {
  width: 120px;
  height: 120px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 2rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.team-bio div + div { margin-top: 0.5em; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials {
  padding-block: var(--section-pad);
  background-color: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.75;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.testimonial-quote div + div { margin-top: 0.5em; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.testimonial-rating {
  font-size: 0.75rem;
  color: var(--color-primary);
}

/* ── Video ──────────────────────────────────────────────────────────────── */
.video-section {
  padding-block: var(--section-pad);
  background-color: var(--color-bg);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  max-width: 900px;
  background: var(--color-surface);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 900px;
}

/* ── Trust badges ───────────────────────────────────────────────────────── */
.trust-badges {
  padding-block: var(--section-pad);
  background-color: var(--color-surface);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.badge-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.badge-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.badge-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.015em;
}

.badge-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── Offer / Promoción ──────────────────────────────────────────────────── */
.offer {
  padding-block: var(--section-pad);
  background: oklch(12% 0.10 213deg);
  border-top: 1px solid oklch(40% 0.20 213deg / 30%);
  border-bottom: 1px solid oklch(40% 0.20 213deg / 30%);
}

.offer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.offer-body {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.offer-body div + div { margin-top: 0.5em; }

.offer-code {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--color-primary);
}

.offer-expires {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.offer-cta { align-self: flex-start; }

.offer-img {
  max-width: 320px;
  border-radius: 2px;
  border: 1px solid var(--color-border);
}

/* ── Map / Ubicación ────────────────────────────────────────────────────── */
.map-section {
  padding-block: var(--section-pad);
  background-color: var(--color-bg);
}

.map-address {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-address i { color: var(--color-primary); }

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 400px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  margin-bottom: 1.25rem;
}

.map-frame {
  width: 100%;
  height: 100%;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  padding-block: calc(var(--section-pad) * 1.25);
  background: var(--color-primary-dk);
  text-align: center;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.cta-banner-body {
  font-size: 1.0625rem;
  color: oklch(75% 0.05 213deg);
  max-width: 54ch;
  line-height: 1.7;
}

.cta-banner-body div + div { margin-top: 0.5em; }

.btn-xl {
  font-size: 1.125rem;
  padding: 0.9em 2.25em;
}

/* ── Social feed ────────────────────────────────────────────────────────── */
.social-feed {
  padding-block: var(--section-pad);
  background-color: var(--color-surface);
}

.social-handle {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-primary);
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.social-post-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.15s ease;
}

.social-post-card:hover { border-color: var(--color-primary); }

.social-platform-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.social-caption {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Footer social ──────────────────────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: color 0.15s ease;
}

.footer-social a:hover { color: var(--color-primary); }

/* ── Mobile sticky CTA ──────────────────────────────────────────────────── */
.mobile-cta-bar { display: none; }

.mobile-cta-bar--hidden {
  opacity: 0 !important;
  transform: translateY(110%) !important;
  pointer-events: none !important;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (width <= 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual { justify-content: center; }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .step:last-child { border-bottom: none; }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .gallery-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .offer-inner {
    grid-template-columns: 1fr;
  }

  .offer-img { max-width: 100%; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta { text-align: left; }
}

@media (width <= 600px) {
  :root { --section-pad: 4rem; }

  .hero {
    padding-top: calc(var(--header-h) + 3.5rem);
    padding-bottom: 3.5rem;
  }

  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .plan-badge { right: 1rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .map-wrapper { height: 280px; }

  /* Mobile sticky CTA bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    gap: 0.75rem;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .mobile-cta-btn {
    flex: 1;
    justify-content: center;
    min-height: 48px;
    font-size: 0.9375rem;

    /* glow via .btn-primary::before */
  }

  body { padding-bottom: 80px; }
}

/* ── Request form section ────────────────────────────────────────────────── */
.req-form-section { padding: var(--section-pad) 0; }
.req-form-intro { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.req-form-intro p { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.65; margin-top: 0.75rem; }

.mw-form-card {
  width: 100%;
  max-width: 680px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  margin-inline: auto;
}
.mw-form-header { padding: 2.5rem 2.5rem 1.5rem; border-bottom: 1px solid var(--color-border); }
.mw-form-header h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: var(--color-text); margin-bottom: 0.5rem; }
.mw-form-header p { color: var(--color-text-muted); font-size: 0.95rem; }
.mw-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.mw-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--color-primary); }
.mw-progress-wrap { padding: 1.75rem 2.5rem 0; }
.mw-progress-bar-bg { background: var(--color-border); border-radius: 999px; height: 4px; overflow: hidden; }
.mw-progress-bar { height: 100%; background: var(--color-primary); border-radius: 999px; transition: width 0.3s ease; }
.mw-progress-label { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 0.5rem; }
.mw-form-body { padding: 2rem 2.5rem; }
.mw-step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--color-text); margin-bottom: 1.5rem; }
.mw-field { margin-bottom: 1.25rem; }
.mw-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.4rem; }
.mw-label-hint { font-weight: 400; color: var(--color-text-muted); font-size: 0.8rem; }

.mw-input, .mw-select, .mw-textarea {
  width: 100%;
  background: oklch(9% 0.04 250deg);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.65rem 0.875rem;
  transition: border-color 0.15s;
  outline: none;
}

.mw-input:focus, .mw-select:focus, .mw-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px oklch(72% 0.25 213deg / 15%);
}
.mw-input--error { border-color: oklch(62% 0.22 25deg) !important; }
.mw-textarea { resize: vertical; min-height: 90px; }
.mw-select option { background: oklch(12% 0.06 245deg); }
.mw-radio-group { display: flex; flex-direction: column; gap: 0.5rem; }

.mw-radio-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: oklch(9% 0.04 250deg);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.9375rem;
}
.mw-radio-label:has(input:checked) { border-color: var(--color-primary); background: oklch(72% 0.25 213deg / 6%); }
.mw-radio-label input[type="radio"] { accent-color: var(--color-primary); }
.mw-style-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }

.mw-style-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1rem 0.75rem;
  background: oklch(9% 0.04 250deg);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.875rem;
  line-height: 1.3;
}
.mw-style-card:has(input:checked) { border-color: var(--color-primary); background: oklch(72% 0.25 213deg / 6%); }
.mw-style-card input[type="radio"] { display: none; }
.mw-style-card .mw-style-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }

.mw-file-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  border-radius: 0.625rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color 0.15s;
}
.mw-file-zone:hover { border-color: var(--color-primary); }
.mw-file-zone input[type="file"] { display: none; }
.mw-file-preview { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.mw-file-preview-img { width: 72px; height: 72px; object-fit: cover; border-radius: 0.375rem; border: 1px solid var(--color-border); }
.mw-other-wrapper { margin-top: 0.5rem; }

.mw-form-footer {
  padding: 1.25rem 2.5rem 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.mw-btn:hover { opacity: 0.85; }
.mw-btn-primary { background: var(--color-primary); color: oklch(7% 0.05 250deg); }
.mw-btn-secondary { background: oklch(9% 0.04 250deg); border: 1px solid var(--color-border); color: var(--color-text); }

.mw-btn-submit {
  background: var(--color-primary);
  color: oklch(7% 0.05 250deg);
  position: relative;
  isolation: isolate;
}

.mw-btn-submit::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(0.5rem + 3px);
  box-shadow: 0 0 18px 4px var(--color-primary);
  animation: glow-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.mw-required { color: oklch(72% 0.25 213deg); }
.mw-honeypot { display: none !important; }
.mw-alert { padding: 1rem 1.25rem; border-radius: 0.5rem; margin: 1.5rem 2.5rem; font-size: 0.9rem; }
.mw-alert-success { background: oklch(40% 0.15 145deg / 15%); border: 1px solid oklch(55% 0.18 145deg); color: oklch(75% 0.15 145deg); }
.mw-alert-error   { background: oklch(40% 0.18 25deg / 15%); border: 1px solid oklch(55% 0.22 25deg); color: oklch(75% 0.18 25deg); }
.mw-nav-back { display: inline-flex; align-items: center; gap: 0.35em; font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--color-text-muted); text-decoration: none; margin-bottom: 1.5rem; transition: color 150ms ease; }
.mw-nav-back:hover { color: var(--color-primary); }
.mw-char-count { font-size: 0.75rem; color: var(--color-text-muted); text-align: right; margin-top: 0.25rem; }
.mw-success-wrap { padding: 3rem 2.5rem; text-align: center; }
.mw-success-icon { font-size: 3.5rem; color: var(--color-primary); margin-bottom: 1.25rem; line-height: 1; }
.mw-success-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.mw-success-body { color: var(--color-text-muted); margin-bottom: 1.75rem; line-height: 1.6; }
.mw-next-steps { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.mw-next-step { display: flex; flex-direction: column; align-items: center; gap: 0.625rem; padding: 1.25rem 1rem 1rem; background: oklch(9% 0.04 250deg); border-radius: 0.625rem; border: 1px solid var(--color-border); }
.mw-next-step-num { width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--color-primary); color: oklch(7% 0.05 250deg); font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mw-next-step-text { color: var(--color-text); font-size: 0.875rem; line-height: 1.5; width: 100%; }
.mw-next-step-text strong:first-child { display: block; margin-bottom: 0.15rem; }

@media (width <= 640px) {
  .mw-form-header, .mw-form-body, .mw-form-footer, .mw-alert { padding-left: 1.25rem; padding-right: 1.25rem; }
  .mw-progress-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
  .mw-style-grid { grid-template-columns: 1fr 1fr; }

  .header-nav-link { display: none; }
  .header-cta { display: none; }

  .nav-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    font-size: 1.25rem;
    width: 2.25rem;
    height: 2.25rem;
  }

  .nav-toggle-input:checked ~ header .nav-icon-open { display: none; }
  .nav-toggle-input:checked ~ header .nav-icon-close { display: block; }

  .nav-toggle-input:checked ~ .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 98;
  }
  .nav-toggle-input:checked ~ .mobile-nav { display: flex; }
}

/* ── Form utilities (extracted from inline styles) ──────────────────────── */
.mw-step-title i { margin-right: 0.375rem; }
.mw-step-hint { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.mw-style-name { font-weight: 600; color: var(--color-text); }
.mw-style-desc { font-size: 0.78rem; color: var(--color-text-muted); }
.mw-file-zone-icon { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.mw-file-zone-title { font-weight: 600; color: var(--color-text); }
.mw-file-zone-hint { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.25rem; }
.mw-alert-list { margin: 0.5rem 0 0 1rem; padding: 0; }

.mw-privacy-notice {
  background: oklch(72% 0.25 213deg / 8%);
  border: 1px solid oklch(72% 0.25 213deg / 25%);
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.mw-privacy-notice i { margin-right: 0.375rem; color: var(--color-primary); }

/* ── Kinetics ────────────────────────────────────────────────────────────── */

/* Hero animated glow background — @property lets us animate the radial spread */
@property --k-gs {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 32%;
}

@keyframes k-glow-breathe {
  0%, 100% { --k-gs: 32%; }
  50%       { --k-gs: 56%; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse var(--k-gs) 52% at 13% 90%,
      oklch(72% 0.25 213deg / 9%) 0%, transparent 70%),
    radial-gradient(ellipse 40% 46% at 85% 14%,
      oklch(55% 0.18 195deg / 6%) 0%, transparent 66%);
  animation: k-glow-breathe 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero text reveal ────────────────────────────────────────────────────── */

.kw {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) skewY(1.5deg);
  will-change: opacity, transform;
}

.hero-text.k-visible .kw {
  animation: k-word-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--kd, 0ms);
}

@keyframes k-word-in {
  to { opacity: 1; transform: none; }
}

.hero-sub.k-hero-visible,
.hero-ctas.k-hero-visible {
  opacity: 1;
  transform: none;
}

/* ── Scroll-reveal items ─────────────────────────────────────────────────── */

.k-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.52s ease,
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--kd, 0ms);
}

.k-item.k-visible,
.k-group.k-visible > .k-item {
  opacity: 1;
  transform: none;
}

.k-stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--kd, 0ms);
}

.k-stat.k-visible {
  opacity: 1;
  transform: none;
}

/* ── Glow divider traveling light ────────────────────────────────────────── */

.glow-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 44%,
    oklch(94% 0.22 213deg) 50%,
    transparent 56%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

@keyframes k-divider-sweep {
  0%   { transform: translateX(-130%); opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 0.85; }
  100% { transform: translateX(230%); opacity: 0; }
}

.glow-divider.k-lit::after {
  animation: k-divider-sweep 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ── Reduced motion — reset all kinetics ─────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .kw { opacity: 1 !important; transform: none !important; animation: none !important; }

  .hero-sub,
  .hero-ctas { opacity: 1 !important; transform: none !important; transition: none !important; }
  .k-item { opacity: 1 !important; transform: none !important; transition: none !important; }
  .k-stat  { opacity: 1 !important; transform: none !important; transition: none !important; }
  .glow-divider::after { display: none; }
}
