/* =========================================================
   STOPOROSIS — Gisela Pérez Salvatierra
   Premium landing · brand kit
   ========================================================= */

:root {
  /* Brand */
  --ink: #372470;          /* texto principal — morado oscuro */
  --bg: #FFFFFF;           /* fondo */
  --accent: #E76161;       /* acento principal — coral oscuro */
  --cta: #F99B7D;          /* CTA — coral claro */
  --green: #2BB673;        /* check "conseguir" — verde */

  /* Derived tints */
  --ink-90: #46357f;
  --ink-70: rgba(55, 36, 112, 0.72);
  --ink-55: rgba(55, 36, 112, 0.56);
  --ink-12: rgba(55, 36, 112, 0.12);
  --ink-06: rgba(55, 36, 112, 0.06);
  --lilac: #F4F1FB;        /* lavanda muy suave */
  --lilac-2: #ECE7F8;
  --coral-wash: #FFF3EE;
  --coral-line: rgba(231, 97, 97, 0.18);

  --grad-cta: linear-gradient(135deg, #F99B7D 0%, #E76161 100%);

  /* Type */
  --f-title: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion + spacing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(5rem, 11vw, 9.5rem);
  --max: 1200px;
  --max-narrow: 760px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(55, 36, 112, 0.05);
  --shadow-md: 0 18px 50px -22px rgba(55, 36, 112, 0.30);
  --shadow-lg: 0 40px 90px -30px rgba(55, 36, 112, 0.38);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem; /* compensa la barra fija al saltar a una sección */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* Tipografía más grande SOLO en escritorio (móvil se mantiene igual) */
@media (min-width: 900px) {
  html { font-size: 112.5%; } /* 16px → 18px: escala todo el texto en rem */
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--ink); color: #fff; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--f-title);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.75rem, 7vw, 5.75rem); font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); letter-spacing: 0; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

/* ===== Layout ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
.narrow { max-width: var(--max-narrow); margin: 0 auto; padding-inline: var(--pad); }
section { padding-block: var(--section-y); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(231, 97, 97, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -12px rgba(231, 97, 97, 0.62); }
.btn-ghost {
  background: var(--bg);
  color: var(--ink);
  border: 1.5px solid var(--ink-12);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(55,36,112,0.6);
}
.btn-ink:hover { transform: translateY(-3px); background: var(--ink-90); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 1rem var(--pad);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--ink-06); box-shadow: var(--shadow-sm); }
.nav-in { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { font-family: var(--f-title); font-weight: 800; font-size: 1.2rem; letter-spacing: 0.01em; display: flex; align-items: center; gap: 0.6rem; }
.brand-text { display: inline-flex; }
.brand-text b { color: var(--accent); font-weight: 800; }
.brand-text i { color: var(--ink); font-style: normal; font-weight: 800; }
/* Logo oficial (ilustración de la chica). */
.brand-logo {
  flex: none; width: auto; height: 38px; object-fit: contain;
}
.nav-links { display: flex; gap: 2rem; font-size: 0.92rem; font-weight: 500; }
.nav-links a { color: var(--ink-70); transition: color 0.25s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--f-body); font-weight: 600; font-size: 0.9rem;
  padding: 0.6rem 1.25rem; border-radius: 999px;
  background: var(--grad-cta); color: #fff;
  transition: transform 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); }

/* Hamburguesa (oculta en escritorio) */
.nav-toggle { display: none; width: 44px; height: 44px; flex: none; position: relative; border-radius: 12px; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.only-mobile { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0.25rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 0.75rem var(--pad) 1.25rem;
    border-top: 1px solid var(--ink-06); box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { display: block; padding: 0.7rem 0.25rem; font-size: 1.05rem; }
  .only-mobile { display: block; }
  .only-mobile a { color: var(--accent); font-weight: 700; }
}

/* ===== Hero (centrado sobre vídeo) ===== */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  overflow: hidden;
  text-align: center;
}
/* Capa de vídeo de fondo */
.hero-media { position: absolute; inset: 0; z-index: 0; background: linear-gradient(150deg, var(--ink) 0%, #5a3f9c 45%, var(--accent) 110%); }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(55,36,112,0.55) 0%, rgba(55,36,112,0.40) 45%, rgba(55,36,112,0.62) 100%);
}
/* Etiqueta del placeholder de vídeo (desaparece al sustituir el archivo) */
.media-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1; pointer-events: none;
  font-family: var(--f-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.18); border: 1px dashed rgba(255,255,255,0.5);
  padding: 0.4rem 0.9rem; border-radius: 999px; white-space: nowrap;
}

.hero-in {
  position: relative; z-index: 1;
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: #fff;
}
.hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--cta); box-shadow: 0 0 0 0 rgba(249,155,125,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(249,155,125,0.55);} 70%{box-shadow:0 0 0 9px rgba(249,155,125,0);} 100%{box-shadow:0 0 0 0 rgba(249,155,125,0);} }
.hero h1 { color: #fff; margin-bottom: 1.6rem; max-width: 18ch; font-size: clamp(2.3rem, 5.2vw, 4.4rem); text-shadow: 0 2px 30px rgba(55,36,112,0.35); }
.hero-desc { color: rgba(255,255,255,0.92); max-width: 56ch; margin-bottom: 2.25rem; font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
/* Texto extra del hero solo en móvil (en escritorio lo cubre la franja de claves) */
.hero-desc-mobile { display: none; }
@media (max-width: 860px) { .hero-desc-mobile { display: inline; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.btn-ghost--onvideo { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost--onvideo:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
/* Franja de claves del hero — solo escritorio (en móvil la cabecera ya luce bien) */
.hero-points { display: none; list-style: none; margin: 0; padding: 0; }
.hero-point { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.92); font-size: 0.95rem; font-weight: 500; }
.hero-point svg { width: 1.05rem; height: 1.05rem; color: var(--cta); flex: none; }
@media (min-width: 861px) {
  .hero-points {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
    margin-top: 2.75rem; padding-top: 1.9rem;
    border-top: 1px solid rgba(255,255,255,0.22); max-width: 760px;
  }
}

/* ===== Section heads ===== */
.shead { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.shead.center { margin-inline: auto; text-align: center; }
.shead h2 { margin: 1rem 0 1.1rem; }
.shead p { color: var(--ink-70); font-size: 1.1rem; }

/* ===== Placeholders de foto (sustituir por <img> cuando lleguen) ===== */
.ph {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--lilac) 0%, var(--coral-wash) 60%, rgba(249,155,125,0.45) 100%);
  border: 1px solid var(--ink-06);
}
.ph .media-label {
  color: var(--ink-70); background: rgba(255,255,255,0.7); border-color: rgba(55,36,112,0.25);
}
.ph-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== Intro / El método ===== */
.intro { background: #fff; }
.intro-single { max-width: 760px; margin: 0 auto; }
.intro-copy .eyebrow { margin-bottom: 1rem; }
.intro-copy h2 { margin-bottom: 1.6rem; max-width: 22ch; }
.intro-copy p { color: var(--ink-70); margin-bottom: 1.3rem; font-size: 1.08rem; }
.intro-copy p:last-child { margin-bottom: 0; }
.intro-copy strong { color: var(--ink); font-weight: 600; }
.method-q { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 0.6rem; }
.method-q li { position: relative; padding-left: 1.6rem; color: var(--ink); font-style: italic; font-size: 1.05rem; }
.method-q li::before { content: "?"; position: absolute; left: 0; top: 0.15rem; display: inline-flex; align-items: center; justify-content: center; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--cta); color: #fff; font-size: 0.72rem; font-weight: 700; font-style: normal; }
/* Vídeos intercalados en el texto: círculo + cuadrado */
.method-videos {
  display: flex; justify-content: center; align-items: center; gap: clamp(1rem, 4vw, 2.5rem);
  margin: 2.4rem 0; padding: 1rem 0;
}
.method-videos .mv {
  position: relative; overflow: hidden; flex: 1 1 0; max-width: 290px;
  aspect-ratio: 1; border: 6px solid #fff;
}
.method-videos .mv--circle { border-radius: 50%; box-shadow: var(--shadow-lg); animation: floaty 6s var(--ease) infinite; }
.method-videos .mv--square { border-radius: var(--radius); box-shadow: var(--shadow-md); animation: floaty 6s var(--ease) infinite 1s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 560px) {
  .method-videos { gap: 0.9rem; }
  .method-videos .mv { max-width: 160px; }
}

/* ===== Outcomes (fondo coral · tarjetas blancas · texto morado) ===== */
.outcomes { background: var(--cta); color: var(--ink); position: relative; overflow: hidden; }
.outcomes::before { content: ""; position: absolute; top: -20%; right: -10%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 65%); pointer-events: none; }
.outcomes h2, .outcomes h3 { color: var(--ink); }
.outcomes .eyebrow { color: var(--ink); }
.outcomes .eyebrow::before { background: var(--ink); }
.outcomes .shead p { color: var(--ink-70); }
.outcomes-grid { display: flex; flex-wrap: wrap; gap: 2rem 1rem; justify-content: center; }
.outcome {
  flex: 1 1 250px; max-width: 300px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem 1.6rem 2rem;
  margin-top: 22px; /* deja sitio al check que sobresale */
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center;
  box-shadow: 0 22px 50px -28px rgba(55,36,112,0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.outcome:hover { transform: translateY(-6px); box-shadow: 0 32px 64px -28px rgba(55,36,112,0.55); }
.outcome .check {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(140deg, #3FCB86 0%, var(--green) 100%);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 22px -6px rgba(43,182,115,0.6), 0 0 0 6px rgba(255,255,255,0.9), 0 0 0 12px rgba(43,182,115,0.14);
  transition: transform 0.4s var(--ease);
}
.outcome:hover .check { transform: translateX(-50%) scale(1.06); }
.outcome .check svg { width: 24px; height: 24px; }
.outcome p { font-size: 1.05rem; font-weight: 500; color: var(--ink); line-height: 1.45; }
.outcomes-foot {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid rgba(55,36,112,0.18);
}
.outcomes-note { font-size: 0.85rem; color: var(--ink); max-width: 60ch; line-height: 1.5; }
.duration-chip {
  flex: none; display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--ink); color: #fff; border-radius: 999px; padding: 0.7rem 1.3rem;
  font-family: var(--f-title); font-weight: 700; font-size: 1.05rem;
}
.duration-chip b { color: var(--cta); }

/* ===== Includes ===== */
.includes { position: relative; overflow: hidden; }
/* Fondo clarito de toda la sección (foto de Zulema). Sustituir gradiente por <img>. */
.includes-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--lilac) 0%, var(--coral-wash) 100%);
}
.includes-bg::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.6); }
.includes-bg .media-label { color: var(--ink-70); background: rgba(255,255,255,0.85); border-color: rgba(55,36,112,0.25); }
.includes > .wrap { position: relative; z-index: 1; }
.includes-grid { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.inc-card {
  flex: 1 1 300px; max-width: 360px;
  background: #fff; border: 1px solid var(--ink-06); border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.inc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--coral-line); }
.inc-ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(160deg, var(--lilac), var(--coral-wash));
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.25rem;
}
.inc-card h3 { margin-bottom: 0.6rem; }
.inc-card p { color: var(--ink-70); font-size: 1rem; }

.includes-closing {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(4px);
  border: 1px solid var(--ink-06); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; gap: 1.1rem;
}
.includes-closing h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); max-width: 26ch; }
.includes-closing p { color: var(--ink-70); max-width: 70ch; }
.includes-closing .arrow { color: var(--accent); font-weight: 700; }

/* ===== About ===== */
.about { background: linear-gradient(180deg, var(--lilac) 0%, #fff 100%); }
.about-in { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--lilac-2), var(--coral-wash));
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .placeholder { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--f-title); font-weight: 800; font-size: 5rem; color: var(--ink-12); }
.about-name { font-family: var(--f-title); font-weight: 800; font-size: clamp(1.6rem,2.6vw,2.1rem); margin: 0.8rem 0 1.4rem; }
.about-content p { color: var(--ink-70); margin-bottom: 1.25rem; font-size: 1.08rem; }
.about-content p strong, .about-content em { color: var(--ink); }
.about-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid var(--coral-line); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.85rem; font-weight: 600; color: var(--accent); margin-top: 0.5rem; }
.about-colegiada {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.1rem; padding: 0.55rem 0.95rem;
  background: var(--lilac); border: 1px solid var(--ink-12); border-radius: 14px;
  font-size: 0.82rem; line-height: 1.4; color: var(--ink-70);
}
.about-colegiada svg { width: 1.15rem; height: 1.15rem; color: var(--green); flex: none; }
.about-colegiada strong { color: var(--ink); font-weight: 700; }
@media (max-width: 860px) { .about-in { grid-template-columns: 1fr; } .about-photo { max-width: 380px; } }

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--ink-06); }
.faq-item { border-bottom: 1px solid var(--ink-06); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0.25rem; text-align: left;
  font-family: var(--f-title); font-weight: 700; font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: var(--ink);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--lilac); position: relative; transition: background 0.3s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--accent); transform: translate(-50%,-50%); transition: transform 0.35s var(--ease); }
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-icon { background: var(--grad-cta); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 0.25rem 1.7rem; color: var(--ink-70); font-size: 1.05rem; max-width: 68ch; }
.faq-a-inner p { margin-bottom: 0.9rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ===== Final CTA ===== */
.final { padding-block: 0; }
.final-in {
  background: var(--grad-cta); color: #fff;
  border-radius: var(--radius-lg);
  margin: var(--section-y) auto;
  max-width: var(--max);
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
  text-align: center; position: relative; overflow: hidden;
}
.final-in::before { content: ""; position: absolute; top: -40%; left: -10%; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 65%); }
.final-in::after { content: ""; position: absolute; bottom: -50%; right: -5%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(55,36,112,0.18), transparent 65%); }
.final-in > * { position: relative; z-index: 1; }
.final-in .eyebrow { color: #fff; }
.final-in .eyebrow::before { background: #fff; }
.final-in h2 { color: #fff; margin: 1rem auto 1.2rem; max-width: 18ch; }
.final-in p { color: rgba(255,255,255,0.92); max-width: 48ch; margin: 0 auto 2rem; font-size: 1.15rem; }

/* ===== Final brand wordmark ===== */
.final-in .final-brand {
  font-family: var(--f-title); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0.02em; line-height: 1;
  margin: 0.2rem auto 1rem; max-width: none;
  text-shadow: 0 2px 18px rgba(55,36,112,0.25);
}
.final-brand b { color: #fff; font-weight: 800; }
.final-brand i { color: var(--ink); font-style: normal; font-weight: 800; }
.final-wa { display: inline-flex; align-items: center; gap: 0.6rem; }
.final-wa svg { width: 1.3em; height: 1.3em; flex: none; }

/* ===== Interest form ===== */
.form-card {
  background: #fff; border-radius: var(--radius); padding: 1rem;
  display: flex; flex-direction: column; gap: 0.6rem; max-width: 520px; margin: 0 auto; box-shadow: var(--shadow-lg);
}
.form-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.form-card input {
  flex: 1 1 180px; min-width: 0;
  border: 1px solid var(--ink-12); border-radius: 12px; background: var(--ink-06);
  padding: 0.9rem 1rem; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
}
.form-card input::placeholder { color: var(--ink-55); }
.form-card input:focus { outline: none; border-color: var(--ink); background: #fff; }
.form-submit { width: 100%; justify-content: center; }
.form-success { color: #fff; font-weight: 600; margin-top: 1rem; min-height: 1.4em; }

/* ===== Footer ===== */
footer { padding: clamp(2.5rem,5vw,4rem) var(--pad) 2.5rem; border-top: 1px solid var(--ink-06); }
.footer-in { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: 0.92rem; }
.footer-links a { color: var(--ink-70); transition: color 0.25s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { max-width: var(--max); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--ink-06); font-size: 0.82rem; color: var(--ink-55); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; }
.footer-credit { max-width: var(--max); margin: 1.1rem auto 0; text-align: center; font-size: 0.8rem; color: var(--ink-55); }
.footer-credit a { color: var(--accent); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #25D366; color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.25rem; border-radius: 999px;
  box-shadow: 0 16px 36px -10px rgba(37,211,102,0.5);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 22px; height: 22px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 0.9rem; } }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-badge .pulse { animation: none; }
  .method-videos .mv { animation: none; }
  html { scroll-behavior: auto; }
}
