/* =============================================================
   HAWK TAX ADVISOR — Asesoría fiscal y laboral
   Archetype: Editorial Dark Warm (oro sobre negro)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  /* Fondo: negro corporativo con leve calidez para no quedar plano */
  --bg:        #080807;
  --bg-2:      #0d0c0a;
  --bg-3:      #14120d;   /* tarjetas */
  --bg-4:      #1b1810;   /* tarjetas hover */

  /* Oro metálico (del logo) */
  --gold-1:    #F6E2A6;
  --gold:      #D9AE54;
  --gold-2:    #C2913A;
  --gold-deep: #8A641F;
  --gold-grad: linear-gradient(135deg, #F6E2A6 0%, #D9AE54 42%, #B5862E 72%, #8A641F 100%);

  /* Texto */
  --text:      #ECE7DC;   /* casi blanco cálido, nunca #fff puro */
  --text-soft: #C9C2B3;
  --text-mute: #8E877A;

  /* Líneas */
  --line:      rgba(217, 174, 84, 0.16);
  --line-soft: rgba(236, 231, 220, 0.08);

  /* Sí / No */
  --yes:       #6FBF8E;
  --no:        #C9756B;

  /* Tipografía */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1240px;
  --radius: 18px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.04; letter-spacing: -0.01em; font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #1a1407; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--gold); color: #1a1407;
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Layout utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 880px; }

.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.section-lead {
  margin-top: 1.25rem;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 60ch;
}

/* Kicker */
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(217,174,84,.7);
}

/* Texto oro con brillo */
.gold-text {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background .35s var(--ease-out), color .35s var(--ease-out);
  will-change: transform;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gold-grad);
  color: #1a1407;
  box-shadow: 0 10px 30px -10px rgba(217,174,84,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(217,174,84,.7); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* =============================================================
   5. Cursor
   ============================================================= */
.cursor { position: fixed; top: 0; left: 0; z-index: 9000; pointer-events: none; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(217,174,84,.55); transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s var(--ease-out);
}
.cursor.is-hover .cursor-ring { width: 52px; height: 52px; background: rgba(217,174,84,.08); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .7s var(--ease-out), visibility .7s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.splash-inner { display: grid; justify-items: center; gap: 1rem; }
.splash-mark { width: 132px; height: 132px; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 0 24px rgba(217,174,84,.3)); animation: markIn 1s var(--ease-out) both; }
.splash-word { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .35em; color: var(--text); padding-left: .35em; animation: markIn 1s .15s var(--ease-out) both; }
.splash-line { width: 0; height: 1px; background: var(--gold-grad); animation: lineGrow 1.4s .3s var(--ease-out) forwards; }
@keyframes markIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes lineGrow { to { width: 180px; } }

/* =============================================================
   7. Nav
   ============================================================= */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 800; transition: background .4s var(--ease-out), border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.nav.is-stuck { background: rgba(8,8,7,.78); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); }
.nav-inner { max-width: var(--maxw); margin-inline: auto; padding: 1rem var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark { width: 50px; height: 50px; flex: none; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 0 10px rgba(217,174,84,.18)); }
.brand-text { display: grid; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 700; letter-spacing: .12em; color: var(--text); }
.brand-sub { font-size: .58rem; letter-spacing: .34em; color: var(--gold); font-weight: 600; }

.nav-links { display: none; gap: 2rem; }
.nav-links a { font-size: .9rem; color: var(--text-soft); position: relative; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease-out); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}

/* =============================================================
   8. Hero
   ============================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: clamp(5.25rem, 15vw, 7rem) 0 clamp(2rem, 6vw, 3rem); }
.hero-glow {
  position: absolute; inset: -30% -10% auto 50%;
  width: 90vw; max-width: 1100px; aspect-ratio: 1; transform: translateX(-50%);
  background:
    radial-gradient(40% 40% at 60% 35%, rgba(217,174,84,.22), transparent 70%),
    conic-gradient(from var(--glow-angle), rgba(217,174,84,.10), rgba(138,100,31,.04), rgba(217,174,84,.14), rgba(138,100,31,.04), rgba(217,174,84,.10));
  filter: blur(80px);
  animation: glowSpin 22s linear infinite;
  pointer-events: none;
}
@keyframes glowSpin { to { --glow-angle: 360deg; } }
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.05rem, 6.4vw, 5.2rem);
  font-weight: 600; line-height: 1.02; letter-spacing: -0.02em;
  max-width: 17ch;
}
.hero-sub { margin-top: 1.6rem; max-width: 52ch; color: var(--text-soft); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 2.6rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--text-mute); }
.hero-trust .tick { color: var(--gold); font-size: .8rem; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 14px; display: grid; place-items: start center; padding-top: 7px; }
.hero-scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: scrollDot 1.8s var(--ease-soft) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* Móvil: la flecha estorba en un hero alto con vídeo */
.hero-scroll { display: none; }

/* Escritorio: hero a dos columnas — copy a la izquierda, vídeo a la derecha */
@media (min-width: 960px) {
  .hero-scroll { display: grid; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
    grid-template-areas:
      "kicker  video"
      "title   video"
      "sub     video"
      "actions video"
      "trust   video";
  }
  .hero-inner > .kicker      { grid-area: kicker; align-self: end; }
  .hero-inner > .hero-title  { grid-area: title; }
  .hero-inner > .hero-video  { grid-area: video; margin-top: 0; align-self: center; }
  .hero-inner > .hero-sub    { grid-area: sub; }
  .hero-inner > .hero-actions{ grid-area: actions; }
  .hero-inner > .hero-trust  { grid-area: trust; align-self: start; }
  .hero-video-caption { max-width: none; }
}

/* =============================================================
   8b. Vídeo (VSL)
   ============================================================= */
.hero-video { margin-top: clamp(1.5rem, 5vw, 2.1rem); }
.hero-video-eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; }
.hero-video-caption { margin-top: 1rem; font-size: .9rem; color: var(--text-mute); max-width: 48ch; }
.hero-video-caption strong { color: var(--text); font-weight: 600; }

.vsl-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(217,174,84,.32);
  background: radial-gradient(120% 120% at 50% 0%, var(--bg-3), var(--bg));
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.85), 0 0 0 1px rgba(217,174,84,.08) inset;
}
.vsl-poster { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; }
.vsl-emblem { position: absolute; width: 46%; max-width: 260px; opacity: .14; mix-blend-mode: screen; filter: blur(.3px); pointer-events: none; }
.vsl-play {
  position: relative; z-index: 2; width: clamp(64px, 9vw, 92px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; color: #1a1407; background: var(--gold-grad);
  box-shadow: 0 14px 40px -10px rgba(217,174,84,.6);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.vsl-play::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(217,174,84,.4); animation: vslPulse 2.6s var(--ease-soft) infinite; }
.vsl-play svg { width: 42%; margin-left: 8%; }
.vsl-poster:hover .vsl-play { transform: scale(1.07); box-shadow: 0 18px 50px -10px rgba(217,174,84,.8); }
@keyframes vslPulse { 0% { transform: scale(1); opacity: .8; } 70% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } }
.vsl-badge { position: absolute; bottom: 1rem; right: 1rem; z-index: 2; font-size: .76rem; font-weight: 600; letter-spacing: .04em; color: var(--text); background: rgba(8,8,7,.6); backdrop-filter: blur(8px); border: 1px solid var(--line); padding: .4rem .8rem; border-radius: 999px; }
.vsl-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.vsl-frame.is-playing .vsl-poster { display: none; }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); padding-block: 1.1rem; }
.marquee-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--text-soft); white-space: nowrap; }
.marquee-track .sep { color: var(--gold); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   10. Problema
   ============================================================= */
.pain-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.pain-card {
  position: relative; padding: 2rem 1.8rem; border-radius: var(--radius);
  background: var(--bg-3); border: 1px solid var(--line-soft);
  overflow: hidden; transition: border-color .4s var(--ease-out), background .4s, transform .4s;
}
.pain-card::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s; background: radial-gradient(120% 120% at var(--mx,50%) var(--my,0%), rgba(217,174,84,.12), transparent 60%); pointer-events: none; }
.pain-card:hover { border-color: var(--line); background: var(--bg-4); }
.pain-card:hover::before { opacity: 1; }
.pain-num { font-family: var(--serif); font-size: 1rem; color: var(--gold); letter-spacing: .1em; }
.pain-card h3 { font-family: var(--serif); font-size: 1.5rem; margin-top: .6rem; margin-bottom: .7rem; }
.pain-card p { color: var(--text-mute); font-size: .98rem; }

@media (min-width: 720px) { .pain-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   11. Enfoque
   ============================================================= */
.enfoque-grid { display: grid; gap: 3rem; }
.enfoque-intro .section-title { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
.enfoque-intro .btn { margin-top: 2rem; }
.value-list { display: grid; gap: 1.4rem; }
.value-item { display: flex; gap: 1rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line-soft); }
.value-item:last-child { border-bottom: 0; }
.value-icon { color: var(--gold); font-size: 1rem; margin-top: .25rem; }
.value-item h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: .3rem; }
.value-item p { color: var(--text-mute); font-size: .96rem; }

@media (min-width: 960px) { .enfoque-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; } }

/* =============================================================
   12. Stats
   ============================================================= */
.stats-section { padding-block: clamp(3rem, 7vw, 5rem); border-block: 1px solid var(--line-soft); background: var(--bg-2); }
.stats-grid { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { display: block; margin-top: .7rem; color: var(--text-mute); font-size: .86rem; max-width: 24ch; margin-inline: auto; }
@media (min-width: 960px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   13. Servicios
   ============================================================= */
.serv-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.serv-card { padding: 2.2rem 2rem; border-radius: var(--radius); background: var(--bg-3); border: 1px solid var(--line-soft); transition: border-color .4s var(--ease-out), transform .4s, background .4s; }
.serv-card:hover { border-color: var(--line); background: var(--bg-4); }
.serv-card h3 { font-family: var(--serif); font-size: 1.7rem; display: flex; align-items: baseline; gap: .7rem; margin-bottom: .9rem; }
.serv-index { font-size: .85rem; color: var(--gold); letter-spacing: .1em; }
.serv-card > p { color: var(--text-mute); font-size: .98rem; margin-bottom: 1.3rem; }
.serv-card ul { display: grid; gap: .55rem; }
.serv-card li { position: relative; padding-left: 1.3rem; font-size: .92rem; color: var(--text-soft); }
.serv-card li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .15rem; }
@media (min-width: 880px) { .serv-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   14. Para quién (filtro)
   ============================================================= */
.filter-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.filter-col { padding: 2.2rem 2rem; border-radius: var(--radius); background: var(--bg-3); border: 1px solid var(--line-soft); transition: transform .4s var(--ease-out), border-color .4s; }
.filter-yes { border-top: 2px solid var(--yes); }
.filter-no { border-top: 2px solid var(--no); }
.filter-col h3 { font-family: var(--serif); font-size: 1.45rem; display: flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem; }
.filter-badge { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .08em; padding: .25rem .6rem; border-radius: 6px; }
.filter-badge.yes { background: rgba(111,191,142,.16); color: var(--yes); }
.filter-badge.no { background: rgba(201,117,107,.16); color: var(--no); }
.filter-col ul { display: grid; gap: .85rem; }
.filter-col li { position: relative; padding-left: 1.7rem; color: var(--text-soft); font-size: .98rem; }
.filter-col li strong { color: var(--text); }
.filter-yes li::before { content: "✓"; position: absolute; left: 0; color: var(--yes); font-weight: 700; }
.filter-no li::before { content: "✕"; position: absolute; left: 0; color: var(--no); font-weight: 700; }
@media (min-width: 880px) { .filter-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   15. Proceso
   ============================================================= */
.steps { display: grid; gap: 1.4rem; grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding: 2rem 1.8rem; border-radius: var(--radius); background: var(--bg-3); border: 1px solid var(--line-soft); }
.step-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.step h3 { font-family: var(--serif); font-size: 1.4rem; margin: .7rem 0 .5rem; }
.step p { color: var(--text-mute); font-size: .95rem; }
@media (min-width: 720px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   16. Testimonios
   ============================================================= */
.testi-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.testi-card { padding: 2rem 1.9rem; border-radius: var(--radius); background: var(--bg-3); border: 1px solid var(--line-soft); transition: transform .4s var(--ease-out), border-color .4s; }
.testi-card blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; color: var(--text); font-style: italic; }
.testi-card figcaption { margin-top: 1.2rem; font-size: .86rem; color: var(--text-mute); }
.testi-card figcaption strong { color: var(--gold); font-weight: 600; }
.testi-note { margin-top: 1.6rem; font-size: .8rem; color: var(--text-mute); }
@media (min-width: 880px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   17. FAQ
   ============================================================= */
.faq-list { display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--line-soft); border-radius: 14px; background: var(--bg-3); overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; font-family: var(--serif); font-size: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 300; transition: transform .3s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.5rem 1.4rem; color: var(--text-mute); font-size: .98rem; }

/* =============================================================
   18. Reunión / Formulario
   ============================================================= */
.reunion { overflow: hidden; }
.reunion-glow { position: absolute; inset: auto 50% -40% 50%; width: 80vw; max-width: 900px; aspect-ratio: 1; transform: translateX(-50%); background: radial-gradient(circle, rgba(217,174,84,.16), transparent 65%); filter: blur(80px); pointer-events: none; }
.reunion-card { position: relative; z-index: 2; padding: clamp(1.8rem, 5vw, 3.4rem); border-radius: 26px; background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); }
.reunion-head { text-align: center; margin-inline: auto; }
.reunion-head .kicker { justify-content: center; }
.reunion-head .section-lead { margin-inline: auto; }

.lead-form { margin-top: 2.4rem; display: grid; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field-row { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.field label { font-size: .82rem; font-weight: 500; color: var(--text-soft); letter-spacing: .02em; }
.field .optional { color: var(--text-mute); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--line-soft); color: var(--text);
  font-family: inherit; font-size: .98rem; transition: border-color .3s, box-shadow .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,174,84,.14); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23D9AE54' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field textarea { resize: vertical; min-height: 90px; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .84rem; color: var(--text-mute); cursor: pointer; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: .15rem; accent-color: var(--gold); }

.qualify-warning { font-size: .86rem; color: var(--gold-1); background: rgba(217,174,84,.08); border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1.1rem; }

.btn-check { width: 20px; height: 20px; opacity: 0; max-width: 0; transition: opacity .3s, max-width .3s; }
.lead-form.is-sending .btn-label { opacity: .7; }
.lead-form.is-sent .btn-check { opacity: 1; max-width: 24px; }

.form-foot { text-align: center; font-size: .8rem; color: var(--text-mute); }

.form-success { text-align: center; padding: 2rem 1rem; animation: markIn .6s var(--ease-out) both; }
.success-mark { width: 56px; height: 56px; margin: 0 auto 1.2rem; padding: 12px; border-radius: 50%; color: #1a1407; background: var(--gold-grad); box-shadow: 0 12px 30px -10px rgba(217,174,84,.6); }
.form-success h3 { font-family: var(--serif); font-size: 1.9rem; margin-bottom: .6rem; }
.form-success p { color: var(--text-soft); max-width: 40ch; margin-inline: auto; }

/* =============================================================
   19. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; background: var(--bg-2); }
.footer-top { display: grid; gap: 1.6rem; align-items: center; justify-items: center; text-align: center; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-soft); }
.footer-claim { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--text-soft); max-width: 30ch; }
.footer-bottom { display: grid; gap: .5rem; padding-top: 2rem; text-align: center; color: var(--text-mute); font-size: .82rem; }
@media (min-width: 880px) {
  .footer-top { grid-template-columns: auto 1fr auto; text-align: left; justify-items: stretch; }
  .footer-claim { justify-self: center; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-bottom p:last-child { text-align: right; }
}

/* =============================================================
   20. Reveal (scroll)
   ============================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
/* defensa: si por cualquier motivo no se activa JS tras 0, el safety net lo revela */

/* =============================================================
   21. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-glow { animation: none; }
  .marquee-track { animation-duration: 90s; }
  .hero-scroll span { animation: none; }
  .splash-mark, .splash-word { animation-duration: .4s; }
  .vsl-play::before { animation: none; }
}
