:root {
  --bg: #06111d;
  --bg-2: #0a1c30;
  --ink: #f6f8fb;
  --muted: #b8c5d5;
  --muted-2: #8393a8;
  --glass: rgba(255,255,255,.085);
  --glass-2: rgba(255,255,255,.14);
  --stroke: rgba(255,255,255,.18);
  --stroke-strong: rgba(255,255,255,.32);
  --gold: #d9bd79;
  --gold-2: #f2dfac;
  --teal: #98e6dc;
  --blue: #4f8cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --radius: 28px;
  --radius-lg: 38px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(217,189,121,.18), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(79,140,255,.18), transparent 28rem),
    linear-gradient(160deg, #06111d 0%, #0a1827 44%, #08131f 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0, transparent 75%);
  opacity: .42;
  z-index: -3;
}

img, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 12px;
  background: radial-gradient(circle at 50% 35%, #183150 0, #06111d 52%, #02070d 100%);
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.loader__mark span {
  position: absolute;
  width: 34px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader__mark span:nth-child(2) { transform: rotate(60deg); animation-delay: .16s; }
.loader__mark span:nth-child(3) { transform: rotate(-60deg); animation-delay: .32s; }
.loader p { margin: 0; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }

@keyframes loaderPulse {
  0%, 100% { opacity: .35; filter: blur(0); }
  50% { opacity: 1; filter: blur(.6px); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--blue));
  box-shadow: 0 0 18px rgba(217,189,121,.7);
}
.ambient {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .28;
  pointer-events: none;
  z-index: -2;
  transform: translate3d(0, calc(var(--parallax, 0) * .12px), 0);
}
.ambient-a { top: 12%; left: -8rem; background: #2c6fff; }
.ambient-b { top: 38%; right: -9rem; background: #d9bd79; }
.ambient-c { bottom: 10%; left: 28%; background: #80dfd5; opacity: .15; }

.site-header {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 100;
  min-height: 64px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(6, 17, 29, .66);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 12px;
  box-shadow: 0 16px 45px rgba(0,0,0,.22);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
}
.brand span {
  line-height: .95;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: .9rem;
}
.brand small { display: block; color: var(--muted); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  place-items: center;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 10px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.primary-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(6, 17, 29, .92);
  backdrop-filter: blur(22px);
  transform: translateY(-10px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.primary-nav.is-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.primary-nav a,
.primary-nav button {
  border: 0;
  color: var(--ink);
  text-align: left;
  background: rgba(255,255,255,.055);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 750;
}
.primary-nav .nav-cta {
  background: linear-gradient(135deg, var(--gold), #f6e8ba);
  color: #13202b;
  text-align: center;
  box-shadow: 0 14px 36px rgba(217,189,121,.22);
}
.sound-toggle {
  position: fixed;
  right: 12px;
  bottom: calc(88px + var(--safe-bottom));
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(6,17,29,.75);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 38px rgba(0,0,0,.25);
}
.sound-toggle__icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(217,189,121,.18);
  color: var(--gold-2);
}
.sound-toggle__text { font-weight: 800; font-size: .78rem; }
.sound-toggle[aria-pressed="true"] { border-color: rgba(217,189,121,.55); }
.floating-whatsapp {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + var(--safe-bottom));
  z-index: 90;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #22c55e, #15b37b 46%, #95e9bb);
  color: #052413;
  font-weight: 950;
  box-shadow: 0 20px 48px rgba(34,197,94,.28);
  overflow: hidden;
}
.floating-whatsapp::after,
.btn--glow::after {
  content: "";
  position: absolute;
  inset: -70% auto auto -50%;
  width: 55%;
  height: 240%;
  background: rgba(255,255,255,.38);
  transform: rotate(20deg);
  animation: shine 3.2s ease-in-out infinite;
}
.floating-whatsapp strong { font-size: 1rem; }
.floating-whatsapp span { opacity: .75; }

.section,
.section-full {
  position: relative;
  padding: 86px 18px;
}
.section-full { min-height: 100svh; display: grid; align-items: center; padding-top: 108px; }
.video-hero { overflow: hidden; }
.video-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,17,29,.1), rgba(6,17,29,.94)),
    radial-gradient(circle at 20% 14%, rgba(217,189,121,.2), transparent 24rem),
    radial-gradient(circle at 83% 22%, rgba(78,140,255,.2), transparent 27rem);
}
.video-hero__particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--gold-2);
  opacity: .75;
  animation: particleFloat 6s ease-in-out infinite;
}
.video-hero__particles span:nth-child(1) { top: 17%; left: 12%; }
.video-hero__particles span:nth-child(2) { top: 28%; right: 18%; animation-delay: 1.1s; background: var(--teal); }
.video-hero__particles span:nth-child(3) { bottom: 24%; left: 18%; animation-delay: 2s; }
.video-hero__particles span:nth-child(4) { bottom: 30%; right: 11%; animation-delay: .45s; background: var(--blue); }
.video-hero__particles span:nth-child(5) { top: 52%; left: 50%; animation-delay: 1.8s; }
.video-hero__inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.video-copy { text-align: center; display: grid; gap: 12px; }
.eyebrow,
.section-label {
  margin: 0;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  letter-spacing: -.055em;
  line-height: .95;
  margin-bottom: 0;
}
h1 { font-size: clamp(3rem, 15vw, 7.8rem); }
h2 { font-size: clamp(2.2rem, 11vw, 5.2rem); }
h3 { font-size: 1.1rem; line-height: 1.25; }
p { color: var(--muted); line-height: 1.68; }
.video-copy p:last-child { max-width: 740px; margin: 0 auto; }

.video-shell {
  position: relative;
  width: min(840px, 100%);
  margin: 0 auto;
}
.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: min(430px, 100%);
  margin: 0 auto;
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.04), rgba(217,189,121,.25));
  box-shadow: 0 30px 95px rgba(0,0,0,.44), 0 0 0 1px rgba(255,255,255,.08) inset;
  overflow: hidden;
}
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 27px;
  background: #000;
}
.video-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(3,8,14,.64);
  backdrop-filter: blur(18px);
}
.video-caption span { font-size: .78rem; font-weight: 850; }
.video-sound {
  border: 0;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  color: #11202d;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
  white-space: nowrap;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 950;
  color: var(--ink);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  touch-action: manipulation;
}
.btn:active { transform: scale(.97); }
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold), #f4dfaa 54%, #b8954e);
  color: #111c26;
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 18px 44px rgba(217,189,121,.22);
}
.btn--ghost {
  background: rgba(255,255,255,.075);
  color: var(--ink);
  backdrop-filter: blur(16px);
}
.btn--glow { box-shadow: 0 0 0 1px rgba(217,189,121,.2), 0 22px 62px rgba(217,189,121,.28); }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.hero-stats span {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 13px 14px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  text-align: center;
  backdrop-filter: blur(16px);
}
.hero-stats strong { color: var(--ink); }

.lia-section { padding-top: 70px; }
.lia-grid {
  width: min(1120px, 100%);
  margin: 22px auto 0;
  display: grid;
  gap: 24px;
}
.lia-visual { order: -1; }
.lia-card {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
  min-height: 450px;
  display: grid;
  align-items: end;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(217,189,121,.24), transparent 17rem),
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.lia-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,.32));
  animation: float 5.5s ease-in-out infinite;
}
.lia-glow {
  position: absolute;
  inset: 16% 6% auto;
  height: 55%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242,223,172,.34), transparent 65%);
  filter: blur(22px);
}
.lia-badge {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(6,17,29,.72);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
}
.lia-copy { display: grid; gap: 14px; }
.lia-copy h3 { color: var(--gold-2); max-width: 740px; }
.speech-bubble {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 64px rgba(0,0,0,.18);
}
.speech-bubble::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 46px;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.07);
  border-left: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.14);
  transform: rotate(45deg);
}
.speech-bubble p { margin: 0; }
.pathways {
  width: min(1120px, 100%);
  margin: 34px auto 0;
}
.pathways h3 { font-size: clamp(1.45rem, 7vw, 2.2rem); margin-bottom: 16px; }
.pathway-grid { display: grid; gap: 14px; }
.pathway-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 19px;
  min-height: 176px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: 0 20px 54px rgba(0,0,0,.18);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pathway-card:hover { transform: translateY(-6px); border-color: rgba(217,189,121,.44); background: rgba(255,255,255,.1); }
.pathway-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,189,121,.26), transparent 68%);
}
.pathway-card__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(217,189,121,.16);
  color: var(--gold-2);
  font-size: 1.35rem;
}
.pathway-card strong { font-size: 1.13rem; line-height: 1.15; }
.pathway-card small { color: var(--muted); line-height: 1.5; font-weight: 600; }
.pathway-card i { color: var(--gold-2); font-style: normal; font-weight: 900; }

.section-heading {
  width: min(930px, 100%);
  margin: 0 auto 24px;
  display: grid;
  gap: 14px;
  text-align: center;
}
.feature-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.feature-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 56px rgba(0,0,0,.16);
  transition: transform .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(217,189,121,.36); }
.feature-card span {
  display: inline-flex;
  margin-bottom: 28px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: var(--gold-2);
  font-weight: 950;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; }

.route { padding-top: 40px; }
.route__inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(217,189,121,.2), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.route--profesionales .route__inner {
  background:
    radial-gradient(circle at 0% 0%, rgba(111,211,255,.19), transparent 19rem),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
}
.route--capacitacion .route__inner {
  background:
    radial-gradient(circle at 100% 20%, rgba(152,230,220,.18), transparent 19rem),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
}
.route__head { display: grid; gap: 14px; margin-bottom: 20px; }
.route__head p { margin-bottom: 0; }
.route-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.route-list span {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-weight: 750;
}
.route-list span::before {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: rgba(217,189,121,.17);
  color: var(--gold-2);
  font-size: .8rem;
}

.timeline {
  width: min(840px, 100%);
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 16px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
  opacity: .55;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(18px);
}
.timeline-item__number {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #152434;
  font-weight: 950;
  font-size: 1.3rem;
  box-shadow: 0 12px 34px rgba(217,189,121,.25);
}
.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p { margin-bottom: 0; }

.closing-card {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 18%, rgba(217,189,121,.2), transparent 19rem),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}
.closing-card__image {
  min-height: 260px;
  display: grid;
  align-items: end;
  background: radial-gradient(circle at 50% 35%, rgba(242,223,172,.26), transparent 18rem);
}
.closing-card__image img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 50px rgba(0,0,0,.32));
  animation: float 6s ease-in-out infinite;
}
.closing-card__copy { padding: 24px; display: grid; gap: 14px; align-content: center; }
.closing-card__copy p { margin-bottom: 0; }

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
}
.faq-question span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(217,189,121,.15);
  position: relative;
}
.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 15px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 99px;
  transition: transform .24s ease;
}
.faq-question span::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] span::after { transform: rotate(0deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 16px;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 18px; }

.footer {
  margin: 20px 12px calc(94px + var(--safe-bottom));
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 18px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.15);
}
.footer h2 { font-size: 1.25rem; letter-spacing: -.03em; margin-bottom: 2px; }
.footer p { margin: 0; }
.footer__links { display: grid; gap: 8px; }
.footer__links a,
.footer__links button {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255,255,255,.055);
  color: var(--ink);
  text-align: left;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.985);
  filter: blur(4px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(.2deg); }
  50% { transform: translateY(-12px) rotate(-.45deg); }
}
@keyframes particleFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .35; }
  50% { transform: translate3d(12px,-18px,0) scale(1.3); opacity: .9; }
}
@keyframes shine {
  0%, 45% { transform: translateX(-70%) rotate(20deg); }
  70%, 100% { transform: translateX(520%) rotate(20deg); }
}

@media (min-width: 600px) {
  .section, .section-full { padding-left: 28px; padding-right: 28px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .video-frame { aspect-ratio: 16 / 9; width: min(840px, 100%); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-grid { grid-template-columns: repeat(3, 1fr); }
  .route-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .site-header { top: 18px; left: 24px; right: 24px; padding: 10px 12px 10px 14px; }
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .primary-nav a,
  .primary-nav button { padding: 12px 14px; border-radius: 999px; font-size: .88rem; }
  .primary-nav .nav-cta { min-width: 104px; }
  .section, .section-full { padding: 110px 40px; }
  .section-full { padding-top: 128px; }
  .video-hero__inner { grid-template-columns: .9fr 1.05fr; align-items: center; }
  .video-copy { text-align: left; }
  .video-copy p:last-child { margin: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats { grid-column: 1 / -1; }
  .lia-grid { grid-template-columns: .85fr 1.15fr; align-items: center; }
  .lia-visual { order: 0; }
  .speech-bubble::before { top: 44px; left: -10px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .route__inner { padding: 38px; }
  .closing-card { grid-template-columns: .9fr 1.1fr; }
  .closing-card__copy { padding: 42px; }
  .footer { margin-left: 24px; margin-right: 24px; margin-bottom: 26px; grid-template-columns: 1fr 1.1fr; align-items: center; }
  .footer__links { grid-template-columns: repeat(4, auto); justify-content: end; }
  .floating-whatsapp { left: auto; width: 235px; right: 24px; bottom: 24px; }
  .sound-toggle { right: 276px; bottom: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
