/* Go Academia — sitio estático. Sistema de diseño compartido por todas las páginas. */

:root {
  --red: #c8102e;
  --red-dark: #9c0c23;
  --gold: #b48a3f;
  --ink: #1b1b1e;
  --ink-soft: #4a4a4f;
  --gray-50: #fafafa;
  --gray-100: #f3f3f4;
  --gray-200: #e6e6e8;
  --gray-400: #9a9aa1;
  --white: #ffffff;
  --green-wa: #25d366;
  --radius: 16px;
  --radius-sm: 9px;
  --shadow: 0 10px 34px rgba(20,20,24,.07);
  --shadow-lg: 0 30px 70px -12px rgba(20,20,24,.28);
  --shadow-soft: 0 2px 10px rgba(20,20,24,.05);
  --maxw: 1200px;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.19,1,.22,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  /* Solo en <body>, nunca en <html>: bloquea el scroll horizontal fantasma que
     provoca el panel de menú (fixed + transform) en Chrome/Android, sin romper
     position:fixed en Safari/iOS (ese bug sí se dispara al ponerlo en <html>). */
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); letter-spacing: -.005em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.18rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 400; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--red);
  font-size: .8rem;
  margin-bottom: .7em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Stats bar */
.stats-bar { background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%); border-top: 1px solid rgba(255,255,255,.08); }
.stats-bar .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 0; }
.stats-bar .stat {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 26px 16px; border-left: 1px solid rgba(255,255,255,.18); overflow: hidden;
}
.stats-bar .stat:first-child { border-left: none; }
.stats-bar .stat strong { font-family: var(--font-head); font-size: 2.1rem; line-height: 1; color: var(--white); background: linear-gradient(90deg, var(--white), #d8d8de); -webkit-background-clip: text; background-clip: text; }
.stats-bar .stat span { font-size: .74rem; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.82); }
/* Brillo que recorre las 4 tarjetas en secuencia, con resplandor que se filtra hacia adentro */
.stats-bar .stat::after {
  content: ""; position: absolute; left: 6%; right: 6%; bottom: 0; height: 4px; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), #fff, var(--gold), transparent);
  box-shadow: 0 0 26px 8px rgba(255,255,255,.55), 0 0 46px 14px rgba(180,138,63,.45);
  opacity: 0; animation: statGlow 9s ease-in-out infinite;
}
.stats-bar .stat:nth-child(1)::after { animation-delay: 0s; }
.stats-bar .stat:nth-child(2)::after { animation-delay: 3s; }
.stats-bar .stat:nth-child(3)::after { animation-delay: 6s; }
@keyframes statGlow {
  0%, 80%, 100% { opacity: 0; transform: scaleX(.6); }
  8%, 17% { opacity: 1; transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) { .stats-bar .stat::after { animation: none; opacity: 0; } }
@media (max-width: 760px) {
  .stats-bar .container { grid-template-columns: 1fr; }
  .stats-bar .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.18); }
  .stats-bar .stat:first-child { border-top: none; }
}

/* Banner de slogan de ancho completo */
.slogan-banner { background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%); padding: 36px 0; }
.slogan-banner p {
  margin: 0; text-align: center; color: var(--white);
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(1.7rem, 4.6vw, 3rem);
}

/* Hero trust badges — premium pill/card treatment */
.hero-badges { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 12px 18px; backdrop-filter: blur(6px);
}
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.6rem; line-height: 1; color: var(--white); }
.hero-badge span { font-size: .74rem; color: #b9b9c0; text-transform: uppercase; letter-spacing: .06em; }

/* Section head — extra emphasis variant for key sections */
.section-head.hero-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  position: relative;
  display: inline-block;
}
.section-head.hero-copy .eyebrow { font-size: .88rem; }
.section-head.hero-copy p.lead { max-width: 560px; margin: 14px auto 0; }
.section { padding: 72px 0; }
.section-tight { padding: 44px 0; }
.section-alt { background: var(--gray-50); }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 40px; }
.section-head.left { margin: 0 0 40px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 24px rgba(200,16,46,.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #1fb457; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--ink); color: var(--white); font-size: .88rem; padding: 12px 22px; }
.btn-dark svg { width: 16px; height: 16px; }
.btn-dark:hover { background: var(--red); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* Header — .header-shell envuelve <header> + <nav class="main-nav">, que en el HTML son
   hermanos (el nav vive fuera de .site-header a propósito: si el <nav> queda
   dentro del flex del header, algunos navegadores Android lo usan para calcular
   el ancho de viewport antes de aplicar la media query y la página se ve "zoomeada"). */
.header-shell { position: sticky; top: 0; z-index: 100; }
.site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 3px solid var(--red);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 92px; gap: 20px; }
.brand { flex: none; }
.brand img { height: 61px; width: auto; display: block; }
@media (min-width: 861px) {
  .site-header .container { height: 112px; }
  .brand img { height: 74px; }
  .main-nav {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    height: 112px; z-index: 1;
  }
}
.main-nav { display: flex; align-items: center; gap: 34px; flex-wrap: nowrap; }
.main-nav a {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: .95rem; color: var(--ink-soft); white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-cta .btn-label-short { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

/* Franja "¿Tienes dudas?" bajo el Hero */
.faq-teaser { background: linear-gradient(90deg, rgba(200,16,46,.05), rgba(180,138,63,.06)); border-bottom: 1px solid var(--gray-200); }
.faq-teaser .container { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 20px; text-align: center; flex-wrap: wrap; }
.faq-teaser p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.faq-teaser strong { color: var(--ink); }
.faq-teaser a { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.faq-teaser a:hover { color: var(--red-dark); }

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 92px; left: 0; right: 0; bottom: 0; height: calc(100vh - 92px); background: var(--white); flex-direction: column; align-items: flex-start; padding: 26px 24px; gap: 22px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 99; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.2rem; white-space: normal; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: .82rem; gap: 6px; }
  .nav-cta .btn svg { width: 16px; height: 16px; }
  .site-header .container { gap: 10px; }
}
@media (max-width: 480px) {
  .nav-cta .btn-label-full { display: none; }
  .nav-cta .btn-label-short { display: inline; }
  .nav-cta .btn { padding: 10px 14px; border-radius: 100px; gap: 6px; }
  .nav-cta .btn svg { width: 18px; height: 18px; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, #34343a 100%);
  color: var(--white);
  overflow: hidden;
  padding: 76px 0 240px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(650px 350px at 82% 20%, rgba(200,16,46,.35), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }

/* Video de fondo del hero (opcional). El <video> se agrega solo cuando exista un
   archivo optimizado (ver assets/video/README). Hasta entonces, .hero-media
   muestra la imagen normal y este bloque queda inerte. */
.hero-bg-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-video video, .hero-bg-video img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-bg-video::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(27,27,30,.92) 0%, rgba(27,27,30,.75) 55%, rgba(27,27,30,.55) 100%);
}
.hero.has-video .hero-media { display: none; }
.hero-badge-float {
  position: absolute; right: 6%; bottom: 14%; width: 20%; min-width: 92px; max-width: 220px;
  z-index: 3; pointer-events: none;
}
.hero-badge-float img { width: 100%; height: auto; display: block; filter: drop-shadow(0 10px 24px rgba(0,0,0,.45)); }
.hero-badge-mobile { display: none; }
@media (max-width: 900px) {
  .hero-badge-float { display: none; }
  .hero-badge-mobile { display: block; margin-top: 22px; }
  .hero-badge-mobile img { width: 40%; max-width: 190px; min-width: 120px; height: auto; display: block; filter: drop-shadow(0 8px 20px rgba(0,0,0,.45)); }
}
.hero .eyebrow { font-size: 1.2rem; }
.hero p.lead { color: #d7d7db; }
.hero h1 { color: var(--white); }
.lead-mobile { display: none; }
@media (max-width: 640px) {
  .lead-desktop { display: none; }
  .lead-mobile { display: block; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-badges { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--white); }
.hero-badge span { font-size: .82rem; color: #b9b9c0; text-transform: uppercase; letter-spacing: .06em; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
/* Recortes con fondo transparente (autos/vehículos sin fondo): sin marco ni sombra
   rectangular, para que floten sobre el fondo del hero en vez de mostrar un "recuadro". */
.hero-media img.floating { border-radius: 0; box-shadow: none; }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s ease;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); z-index: 1;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-media { aspect-ratio: 990/450; background: var(--gray-100); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: contain; }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin: 0; }
.card-body p { font-size: .95rem; margin: 0; }
.card-foot { padding: 0 22px 22px; display: flex; gap: 10px; flex-wrap: wrap; }

.value-card { padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); }
.value-card .icon { display: flex; margin-bottom: 18px; }
.value-card .icon svg { width: 44px; height: 44px; color: var(--red); stroke-width: 1.5; }

/* Steps */
.steps { counter-reset: step; }
.step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
.step:last-child { border-bottom: none; }
.step-num {
  counter-increment: step; flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--white); font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.step-num::before { content: counter(step); }

/* Requisitos lists */
.req-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.req-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); }
.req-list li svg { width: 20px; height: 20px; flex: none; color: var(--red); margin-top: 2px; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .01em;
  font-size: 1.02rem; color: var(--ink);
}
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--red); border-radius: 2px; transition: transform .2s ease; }
.faq-q .plus::before { width: 100%; height: 3px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { width: 3px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.faq-item.open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding-bottom: 20px; margin: 0; }
.faq-item.open .faq-a { max-height: 400px; }

/* Contact / map */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.contact-card { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 34px; }
.contact-card h3 { color: var(--white); }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-row:first-of-type { border-top: none; }
.contact-row svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }
.contact-row a, .contact-row span { color: #e6e6e8; }

/* Form */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--gray-200);
  font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }

/* Footer */
.site-footer { background: var(--ink); color: #c9c9cf; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: #b7b7be; }
.footer-grid a:hover { color: var(--white); }
.footer-logo img { height: 32px; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #8f8f97; }

/* Botón flotante GO! con submenú (Instagram / WhatsApp / Cómo llegar) */
.fab-group {
  position: fixed;
  right: max(20px, env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 2147483000;
  display: flex; flex-direction: column; align-items: center;
}
.fab-main {
  position: relative; width: 58px; height: 58px; border-radius: 50%; background: var(--white); border: none;
  padding: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 10px 26px rgba(20,20,24,.3); transition: transform .2s var(--ease);
}
.fab-main:hover { transform: scale(1.06); }
.fab-main img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }
.fab-main::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--red); opacity: .55; animation: fabPulse 2.2s ease-out infinite;
}
.fab-group.open .fab-main::before { animation: none; opacity: 0; }
@keyframes fabPulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
.fab-menu {
  display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 14px;
  opacity: 0; transform: translateY(12px) scale(.85); pointer-events: none;
  transition: opacity .2s ease, transform .2s var(--ease);
}
.fab-group.open .fab-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-item {
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 8px 20px rgba(20,20,24,.28); position: relative;
}
.fab-item svg { width: 22px; height: 22px; }
.fab-item.ig { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.fab-item.wa { background: var(--green-wa); }
.fab-item.maps { background: var(--ink); }
.fab-item .fab-tip {
  position: absolute; right: 58px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: var(--white); font-size: .78rem; font-weight: 600;
  padding: 5px 10px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .15s ease;
}
.fab-item:hover .fab-tip { opacity: 1; }
@media (max-width: 600px) { .fab-item .fab-tip { display: none; } }

/* Badge / pill */
.pill { display: inline-flex; align-items: center; gap: 6px; background: var(--gray-100); border-radius: 999px; padding: 6px 14px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.pill.pill-red { background: rgba(200,16,46,.1); color: var(--red-dark); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-white { color: var(--white); }
.divider { height: 1px; background: var(--gray-200); margin: 40px 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--red); color: var(--white); padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

/* Funnel landing specifics */
.funnel-header { background: var(--ink); }
.funnel-header .container { justify-content: center; height: 64px; }
.funnel-header .brand img { height: 30px; }
.funnel-bar { background: var(--red); color: var(--white); text-align: center; padding: 9px 14px; font-size: .88rem; font-weight: 600; }
.funnel-hero { padding: 54px 0 60px; }
.funnel-hero.has-video { position: relative; overflow: hidden; padding: 70px 0 80px; }
.funnel-hero.has-video .container { position: relative; z-index: 2; }
.funnel-hero.has-video .eyebrow { color: #ff5468; }
.funnel-hero.has-video .eyebrow::before { background: #ff5468; }
.funnel-hero.has-video h1 { color: var(--white); }
.funnel-hero.has-video .lead { color: #d7d7db; }
.funnel-hero.has-video .funnel-trust div { color: #e6e6e8; }
.funnel-hero.has-video .funnel-trust svg { color: #ff5468; }
.funnel-form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 30px; border: 1px solid var(--gray-200); }
.funnel-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.funnel-trust div { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.funnel-trust svg { width: 20px; height: 20px; color: var(--red); }
.funnel-footer { background: var(--gray-100); padding: 26px 0; text-align: center; font-size: .8rem; color: var(--gray-400); }
