/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0B1220;      /* navy profundo */
  --bg-2:      #0F1829;
  --bg-3:      #141F35;      /* cards */
  --ink:       #EDF1F7;      /* texto principal (no blanco puro) */
  --ink-soft:  #B9C4D6;
  --ink-mute:  #7A8AA3;
  --gold:      #FFC53D;
  --gold-2:    #E8A33D;
  --wa:        #25D366;
  --wa-dark:   #1DAA53;
  --line:      rgba(237, 241, 247, 0.10);
  --glass:     rgba(20, 31, 53, 0.72);
  --radius:    18px;
  --radius-s:  12px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --font-d:    "Space Grotesk", system-ui, sans-serif;
  --font-b:    "Inter", system-ui, sans-serif;
  --font-m:    "JetBrains Mono", ui-monospace, monospace;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--gold); color: #101B2E; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: min(1160px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.container-narrow { width: min(780px, 100% - 2 * var(--gutter)); }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #101B2E; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* =============================================================
   4. Typography
   ============================================================= */
h1, h2, h3 { font-family: var(--font-d); line-height: 1.12; letter-spacing: -0.015em; }
.kicker {
  font-family: var(--font-m);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.1rem;
}
.kicker-gold { color: var(--gold); }
.section-title {
  font-size: clamp(1.75rem, 4.2vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: normal; color: var(--gold); }

/* =============================================================
   5. Components
   ============================================================= */
/* --- Botones --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-wa { background: var(--wa); color: #06220f; box-shadow: 0 8px 28px rgba(37, 211, 102, 0.28); }
.btn-wa:hover { background: #2ee878; box-shadow: 0 12px 34px rgba(37, 211, 102, 0.4); }
.btn-gold { background: var(--gold); color: #101B2E; box-shadow: 0 8px 28px rgba(255, 197, 61, 0.25); }
.btn-gold:hover { background: #ffd266; box-shadow: 0 12px 34px rgba(255, 197, 61, 0.38); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink-soft); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: rgba(255, 197, 61, 0.5); color: var(--ink); }
.btn-big { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.ico-wa { width: 1.15em; height: 1.15em; fill: currentColor; flex: 0 0 auto; }

/* --- Nav --- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.nav.is-solid {
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  width: min(1160px, 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 0.9rem;
}
.nav-logo {
  font-family: var(--font-d); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  font-size: 0.92rem; color: var(--ink-soft); position: relative; padding-block: 0.3rem;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { padding: 0.6rem 1.15rem; font-size: 0.88rem; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; margin-left: auto; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Cards --- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.cards-3 { align-items: stretch; }
.card {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 197, 61, 0.35);
  box-shadow: 0 24px 48px -18px rgba(0, 0, 0, 0.55);
}
.card-gold { border-color: rgba(255, 197, 61, 0.35); box-shadow: inset 0 1px 0 rgba(255, 197, 61, 0.15); }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card-num {
  font-family: var(--font-m); font-size: 0.85rem; color: var(--ink-mute);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.25rem 0.7rem; align-self: flex-start;
}
.card-num-gold { color: var(--gold); border-color: rgba(255, 197, 61, 0.4); font-size: 1rem; font-weight: 500; }
.card-list { list-style: none; display: grid; gap: 0.5rem; margin-top: 0.2rem; }
.card-list li {
  position: relative; padding-left: 1.4rem; color: var(--ink-soft); font-size: 0.92rem;
}
.card-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.card-link { margin-top: auto; padding-top: 0.8rem; color: var(--gold); font-weight: 600; font-size: 0.93rem; }
.card-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* --- FAQ --- */
.faq { margin-top: 2.4rem; display: grid; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-s);
  background: var(--bg-2); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.is-open { border-color: rgba(255, 197, 61, 0.4); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left; padding: 1.05rem 1.25rem; font-weight: 600; font-size: 0.98rem;
}
.faq-q::after {
  content: "+"; font-family: var(--font-d); font-size: 1.3rem; color: var(--gold);
  transition: transform 0.3s var(--ease-out); flex: 0 0 auto;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a p { padding: 0 1.25rem 1.15rem; color: var(--ink-soft); font-size: 0.94rem; }

/* =============================================================
   6. Sections
   ============================================================= */
.section { padding-block: clamp(4rem, 9vw, 6.5rem); position: relative; }
.section-alt { background: var(--bg-2); }

/* --- Hero --- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-block: 7.5rem 4rem;
  position: relative;
  overflow: clip;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(600px 420px at var(--gx, 70%) var(--gy, 30%), rgba(255, 197, 61, 0.13), transparent 65%),
    radial-gradient(800px 600px at 15% 85%, rgba(59, 92, 170, 0.22), transparent 70%);
  transition: background 0.2s linear;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-title { font-size: clamp(2.3rem, 5.6vw, 4rem); font-weight: 700; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 34rem; margin-top: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-micro { font-family: var(--font-m); font-size: 0.78rem; color: var(--ink-mute); margin-top: 1.2rem; }
.hero-stats {
  list-style: none; display: flex; gap: 2.2rem; margin-top: 2.6rem;
  border-top: 1px solid var(--line); padding-top: 1.6rem; flex-wrap: wrap;
}
.hero-stats strong { font-family: var(--font-d); font-size: 1.45rem; color: var(--gold); display: block; }
.hero-stats span { font-size: 0.82rem; color: var(--ink-mute); }

/* --- Teléfono demo chat --- */
.phone {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1rem;
  max-width: 360px;
  width: 100%;
  justify-self: center;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.phone-top {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.4rem 0.4rem 0.9rem; border-bottom: 1px solid var(--line);
}
.phone-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #101B2E; font-weight: 700; font-family: var(--font-d);
  display: grid; place-items: center;
}
.phone-id strong { display: block; font-size: 0.9rem; }
.phone-id em { font-style: normal; font-size: 0.75rem; color: var(--wa); }
.phone-msgs { min-height: 250px; display: flex; flex-direction: column; gap: 0.55rem; padding: 1rem 0.3rem; }
.msg {
  max-width: 82%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.87rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  animation: msgIn 0.4s var(--ease-out) forwards;
}
@keyframes msgIn { to { opacity: 1; transform: none; } }
.msg-client { align-self: flex-start; background: #1E2A44; border-bottom-left-radius: 4px; }
.msg-bot { align-self: flex-end; background: #1F5138; border-bottom-right-radius: 4px; }
.msg-typing { display: inline-flex; gap: 4px; align-items: center; padding: 0.75rem 0.9rem; }
.msg-typing i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute);
  animation: typing 1.1s infinite;
}
.msg-typing i:nth-child(2) { animation-delay: 0.15s; }
.msg-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }
.phone-bar {
  border-top: 1px solid var(--line); padding: 0.8rem 0.5rem 0.3rem;
  font-size: 0.82rem; color: var(--ink-mute);
}

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.step {
  border-left: 2px solid var(--line); padding-left: 1.4rem;
  transition: border-color 0.4s;
}
.step:hover { border-color: var(--gold); }
.step-n {
  font-family: var(--font-m); color: var(--ink-mute); font-size: 0.85rem;
  display: inline-block; margin-bottom: 0.7rem;
}
.step-n-gold { color: var(--gold); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* --- Caso real --- */
.case {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.case-text { color: var(--ink-soft); max-width: 32rem; }
.case-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.case-stats strong { font-family: var(--font-d); font-size: 2.4rem; color: var(--gold); display: block; line-height: 1; }
.case-stats span { font-size: 0.85rem; color: var(--ink-mute); display: block; max-width: 12rem; margin-top: 0.4rem; }
.case-quote {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  position: relative;
}
.case-quote::before {
  content: "“"; position: absolute; top: -0.4rem; left: 1.4rem;
  font-family: var(--font-d); font-size: 5rem; color: var(--gold); opacity: 0.35; line-height: 1;
}
.case-quote blockquote { font-family: var(--font-d); font-size: 1.25rem; line-height: 1.5; }
.case-quote figcaption { margin-top: 1.2rem; color: var(--ink-mute); font-size: 0.9rem; }

/* --- Puente (reseñas / asistentes) --- */
.bridge { background: linear-gradient(180deg, var(--bg-2), var(--bg)); overflow: clip; }
.bridge-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.bridge-copy p { color: var(--ink-soft); max-width: 30rem; margin-bottom: 1.6rem; }
.bridge-visual { display: grid; place-items: center; }

/* Mini expositor CSS (marca del producto físico) */
.mini-expositor, .exp-frame {
  background: #101B2E;
  border: 1px solid rgba(255, 197, 61, 0.25);
  border-radius: 14px;
  text-align: center;
  font-family: var(--font-d);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.65);
}
.mini-expositor { padding: 1.8rem 1.6rem 1.4rem; max-width: 270px; transform: rotate(-2deg); transition: transform 0.4s var(--ease-out); }
.mini-expositor:hover { transform: rotate(0deg) scale(1.03); }
.me-stars { color: var(--gold); letter-spacing: 0.35em; font-size: 1.15rem; margin-bottom: 0.5rem; }
.me-q { font-family: var(--font-b); font-size: 0.72rem; color: var(--ink-mute); }
.me-t { font-weight: 700; font-size: 1.05rem; margin-top: 0.3rem; letter-spacing: 0.01em; }
.me-g { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.9rem; }
.me-sep { height: 1px; background: var(--line); margin: 0.8rem auto; width: 70%; }
.me-cta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 0.7rem; }
.me-zone {
  border: 1.5px dashed var(--gold);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-b);
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.me-zone-big { padding: 1.6rem; font-size: 1.4rem; }
.me-nfc { color: var(--gold); font-weight: 700; letter-spacing: -0.08em; }
.me-foot { font-family: var(--font-b); font-size: 0.66rem; color: var(--ink-mute); margin-top: 0.8rem; }
.me-foot b { color: var(--gold); }

/* Expositor grande del hero de reseñas */
.hero-visual { position: relative; display: grid; place-items: center; }
.expositor { position: relative; z-index: 1; transform: rotate(-2.5deg); transition: transform 0.45s var(--ease-out); }
.expositor:hover { transform: rotate(0deg) scale(1.02); }
.exp-frame { padding: 2.1rem 1.9rem 1.6rem; max-width: 300px; border-width: 6px; border-color: #05080f; outline: 1px solid rgba(255, 197, 61, 0.2); }
.exp-pulse {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(255, 197, 61, 0.25);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse { from { transform: scale(0.7); opacity: 0.7; } to { transform: scale(1.25); opacity: 0; } }

/* Mini chat del puente en resenas.html */
.mini-chat {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; max-width: 320px; width: 100%;
  display: flex; flex-direction: column; gap: 0.55rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.mc-msg { padding: 0.55rem 0.8rem; border-radius: 12px; font-size: 0.85rem; max-width: 85%; }
.mc-in { align-self: flex-start; background: #1E2A44; border-bottom-left-radius: 4px; }
.mc-out { align-self: flex-end; background: #1F5138; border-bottom-right-radius: 4px; }

/* --- Pricing --- */
.pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); justify-content: center; gap: 1.6rem; margin-top: 2.6rem; }
.price-word { font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1.6; }
.price-desc { color: var(--ink-soft); font-size: 0.92rem; }
.price-card {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  position: relative;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.price-card:hover { transform: translateY(-6px); }
.price-featured { border-color: rgba(255, 197, 61, 0.5); box-shadow: 0 30px 60px -25px rgba(255, 197, 61, 0.18); }
.price-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #101B2E;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.95rem; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; }
.price { font-family: var(--font-d); }
.price span { font-size: 3rem; font-weight: 700; color: var(--gold); }
.price em { font-style: normal; font-size: 0.85rem; color: var(--ink-mute); font-family: var(--font-b); }
.pricing-note { text-align: center; margin-top: 1.8rem; color: var(--ink-mute); font-family: var(--font-m); font-size: 0.82rem; }

/* --- Prueba social --- */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; align-items: stretch; }
.proof-slot {
  border: 1.5px dashed var(--line); border-radius: var(--radius);
  min-height: 230px; display: grid; place-items: center;
  color: var(--ink-mute); font-size: 0.85rem; text-align: center; line-height: 1.5;
  background: rgba(255, 255, 255, 0.015);
}
.proof-quote {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.proof-quote blockquote { font-family: var(--font-d); font-size: 1.05rem; line-height: 1.55; }
.proof-quote figcaption { color: var(--ink-mute); font-size: 0.85rem; }

/* --- CTA final --- */
.cta-final {
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(255, 197, 61, 0.09), transparent 70%),
    var(--bg);
}
.cta-inner { text-align: center; display: grid; justify-items: center; gap: 1.1rem; }
.cta-inner p { color: var(--ink-soft); max-width: 34rem; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line); padding-block: 2.4rem; background: var(--bg); }
.footer-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1.4rem; margin-left: auto; }
.footer-links a { font-size: 0.88rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--gold); }
.footer-note { width: 100%; color: var(--ink-mute); font-size: 0.8rem; margin-top: 0.6rem; }

/* =============================================================
   7. Effects
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Defensa: elementos con split nunca quedan invisibles */
.reveal[data-split] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .exp-pulse { animation: none; opacity: 0; }
}

/* =============================================================
   8. Responsive
   ============================================================= */
@media (max-width: 960px) {
  .hero-inner, .case, .bridge-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 6.5rem; min-height: auto; }
  .phone { max-width: 340px; }
  .cards, .steps, .proof { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .bridge-visual { order: -1; }
  .hero-visual { margin-top: 1rem; }
}

@media (max-width: 680px) {
  .cards, .steps, .proof { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(11, 18, 32, 0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    font-size: 1.2rem;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.15rem; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; z-index: 95; }
  .hero-stats { gap: 1.4rem; }
  .case-quote { padding: 1.8rem 1.4rem; }
  .bridge-visual { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
