/* =========================================================
   MÉTODO HUSTLE — Landing de conversión
   Fondo blanco · Montserrat · marca azul/rojo
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --ink: #0E1320;
  --navy: #1B2A4A;
  --navy-deep: #131F38;
  --red: #D0021B;
  --red-dark: #A30016;
  --gray: #5B6472;
  --border: #E4E7EC;

  --maxw: 1140px;
  --nav-h: 70px;
  --bar-h: 42px;

  --shadow-sm: 0 1px 2px rgba(14,19,32,.06), 0 2px 6px rgba(14,19,32,.05);
  --shadow-md: 0 6px 24px rgba(14,19,32,.10);
  --shadow-lg: 0 18px 48px rgba(14,19,32,.16);

  --radius: 8px;
  --radius-lg: 12px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul, ol, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Foco accesible ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Helpers ---------- */
.eyebrow {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.eyebrow--red { color: var(--red); }
.eyebrow--onnavy { color: #9FB0D0; }

.section-title {
  font-weight: 900;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-title--light { color: var(--white); }

.section-lead {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--gray);
  max-width: 46ch;
}

.u-underline {
  position: relative;
  color: var(--red);
  white-space: nowrap;
}
.u-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(208,2,27,.16);
  z-index: -1;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(208,2,27,.28);
}
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--red:active { transform: translateY(0); }
.btn--lg {
  font-size: 1.02rem;
  padding: 18px 34px;
}
.btn--block { width: 100%; }

/* =========================================================
   BARRA DE URGENCIA
   ========================================================= */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  color: var(--white);
  height: var(--bar-h);
  display: flex;
  align-items: center;
}
.urgency-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.urgency-bar__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(208,2,27,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(208,2,27,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(208,2,27,0); }
  100% { box-shadow: 0 0 0 0 rgba(208,2,27,0); }
}
.urgency-bar__count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.count-unit {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.count-unit b {
  font-size: .92rem;
  font-weight: 800;
  background: rgba(255,255,255,.12);
  padding: 2px 7px;
  border-radius: 4px;
  min-width: 30px;
  text-align: center;
}
.count-unit i {
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #AFB9CC;
}
.count-sep { color: #6E7B96; font-weight: 800; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: var(--bar-h);
  z-index: 55;
  background: var(--white);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.nav.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo img { height: 38px; width: auto; }
.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav__links a:hover { color: var(--red); border-bottom-color: var(--red); }
.nav__cta { padding: 11px 20px; font-size: .8rem; }
.nav__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2.4px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 76px 0 64px;
  background:
    radial-gradient(900px 360px at 88% -8%, rgba(27,42,74,.05), transparent 60%),
    var(--white);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-weight: 900;
  font-size: clamp(2.4rem, 5.4vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
}
.hero__sub {
  margin-top: 22px;
  font-size: 1.12rem;
  color: var(--gray);
  max-width: 42ch;
}
.hero__copy .btn { margin-top: 30px; }
.microcopy {
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .01em;
}

/* prueba social hero */
.social-strip {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-strip p { font-size: .9rem; color: var(--gray); }
.social-strip strong { color: var(--ink); }
.avatars { display: flex; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  background: var(--off-white);
}
.avatars .avatar:first-child { margin-left: 0; }
.avatar--1 { background: linear-gradient(135deg,#2C3E63,#1B2A4A); }
.avatar--2 { background: linear-gradient(135deg,#C8455A,#A30016); }
.avatar--3 { background: linear-gradient(135deg,#3A4D74,#243A5E); }
.avatar--4 { background: linear-gradient(135deg,#8A93A6,#5B6472); }

/* media hero */
.hero__media { position: relative; }
.hero__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}
.authority__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}
.hero__badge {
  position: absolute;
  left: -22px;
  bottom: -22px;
  background: var(--white);
  padding: 8px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.hero__badge img { border-radius: 50%; }

/* =========================================================
   BARRA DE CREDIBILIDAD
   ========================================================= */
.credbar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.credbar__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.credbar__item b {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}
.credbar__item span {
  font-size: .82rem;
  color: var(--gray);
}
.credbar__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* =========================================================
   PROBLEMA
   ========================================================= */
.problem {
  padding: 96px 0;
  background: var(--white);
}
.problem__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 56px;
}
.problem__head { align-self: start; position: sticky; top: 130px; }
.problem__list { display: grid; gap: 4px; }
.problem__list li {
  display: flex;
  gap: 22px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border);
}
.problem__list li:first-child { padding-top: 0; }
.problem__num {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -.02em;
  padding-top: 2px;
}
.problem__list h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--ink);
}
.problem__list p {
  margin-top: 5px;
  color: var(--gray);
  font-size: .98rem;
}
.problem__close {
  grid-column: 2;
  margin-top: 20px;
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.problem__close strong { color: var(--red); }

/* =========================================================
   CÓMO FUNCIONA
   ========================================================= */
.method {
  padding: 96px 0;
  background: var(--off-white);
}
.method__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.method__head { max-width: 600px; margin-bottom: 50px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px 26px 34px;
  position: relative;
}
.step:not(:last-child) { border-right: none; }
.step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.step:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.step__num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--off-white);
  -webkit-text-stroke: 1.5px var(--border);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 18px;
}
.step:hover .step__num {
  color: rgba(208,2,27,.10);
  -webkit-text-stroke: 1.5px var(--red);
}
.step__body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.step__body p { font-size: .92rem; color: var(--gray); }
.step::after {
  content: "";
  position: absolute;
  right: -7px; top: 50%;
  width: 13px; height: 13px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.step:last-child::after { display: none; }

.method__cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.method__cta-note {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* =========================================================
   QUÉ PASA EL JUEVES (fondo navy)
   ========================================================= */
.thursday {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}
.thursday__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 60px;
}
.thursday__left { align-self: start; }
.thursday__note {
  margin-top: 22px;
  color: #AEB9CD;
  font-size: 1rem;
  max-width: 34ch;
}
.thursday__list { display: grid; gap: 2px; }
.thursday__list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.thursday__list li:first-child { padding-top: 0; }
.thursday__list li:last-child { border-bottom: none; }
.thursday__list h3 {
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--white);
}
.thursday__list p {
  margin-top: 4px;
  color: #AEB9CD;
  font-size: .95rem;
}

/* check icon */
.check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--red);
  position: relative;
  margin-top: 2px;
}
.check::after {
  content: "";
  position: absolute;
  left: 9px; top: 5px;
  width: 6px; height: 11px;
  border: solid var(--white);
  border-width: 0 2.6px 2.6px 0;
  transform: rotate(45deg);
}
.check--red { background: var(--red); }
.check--white { background: var(--white); }
.check--white::after { border-color: var(--red); }

/* =========================================================
   MOISÉS
   ========================================================= */
.authority {
  padding: 96px 0;
  background: var(--white);
}
.authority__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 56px;
  align-items: center;
}

.authority__quote {
  margin-top: 24px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  padding-left: 26px;
  border-left: 3px solid var(--red);
}
.quote-mark {
  position: absolute;
  left: 14px; top: -20px;
  font-size: 3.4rem;
  color: rgba(208,2,27,.18);
  font-weight: 900;
  line-height: 1;
}
.authority__sign {
  margin-top: 24px;
  font-size: 1rem;
  color: var(--ink);
}
.authority__loc {
  margin-top: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
}
.authority__stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.authority__stats b {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
}
.authority__stats span {
  font-size: .8rem;
  color: var(--gray);
}

/* =========================================================
   TESTIMONIOS
   ========================================================= */
.testimonials {
  padding: 96px 0;
  background: var(--off-white);
}
.testimonials__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.testimonials__head { margin-bottom: 44px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.testi:nth-child(2) { transform: translateY(-14px); }
.testi__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.avatar--lg { width: 50px; height: 50px; margin: 0; border-width: 0; }
.testi__head figcaption { display: flex; flex-direction: column; }
.testi__head strong { font-size: .98rem; color: var(--ink); }
.testi__head span { font-size: .8rem; color: var(--gray); }
.testi blockquote {
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.62;
}
.testi blockquote::before {
  content: "";
  display: block;
  width: 30px; height: 3px;
  background: var(--red);
  margin-bottom: 14px;
}

/* =========================================================
   CTA INTERMEDIO
   ========================================================= */
.midcta {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.midcta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.midcta__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* =========================================================
   NO ES PARA TODOS
   ========================================================= */
.fit {
  padding: 96px 0;
  background: var(--off-white);
}
.fit__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.fit__head { max-width: 560px; margin-bottom: 44px; }
.fit__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit__col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.fit__col--yes { border-color: rgba(208,2,27,.30); }
.fit__tag {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fit__tag--no { color: var(--gray); }
.fit__tag--yes { color: var(--red); }
.fit__col ul { display: grid; gap: 16px; }
.fit__col li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.fit__col--no li { color: var(--gray); }
.x-mark {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 6px;
  background: #EEF0F3;
  position: relative;
  margin-top: 1px;
}
.x-mark::before, .x-mark::after {
  content: "";
  position: absolute;
  left: 7px; top: 12px;
  width: 12px; height: 2.4px;
  background: var(--gray);
  border-radius: 2px;
}
.x-mark::before { transform: rotate(45deg); }
.x-mark::after { transform: rotate(-45deg); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 96px 0;
  background: var(--white);
}
.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq__head { margin-bottom: 36px; }
.accordion {
  border-top: 1px solid var(--border);
}
.acc-item { border-bottom: 1px solid var(--border); }
.acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
}
.acc-trigger:hover { color: var(--red); }
.acc-icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.acc-icon::before { left: 0; top: 10px; width: 22px; height: 2.6px; }
.acc-icon::after  { left: 10px; top: 0; width: 2.6px; height: 22px; }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: rotate(90deg); opacity: 0; }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.acc-panel p {
  padding: 0 4px 24px;
  color: var(--gray);
  font-size: .98rem;
}

/* =========================================================
   GARANTÍA
   ========================================================= */
.guarantee {
  padding: 70px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.guarantee__seal { flex: none; }
.guarantee__seal img { border-radius: 50%; }
.guarantee__copy h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.guarantee__copy p {
  color: var(--gray);
  font-size: 1rem;
}

/* =========================================================
   REGISTRO (fondo navy)
   ========================================================= */
.register {
  padding: 90px 0;
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(208,2,27,.16), transparent 60%),
    var(--navy-deep);
  color: var(--white);
}
.register__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 56px;
  align-items: center;
}
.register__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.register__sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #AEB9CD;
  max-width: 38ch;
}
.register__count {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}
.register__count .count-unit {
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.register__count b {
  font-size: 1.7rem;
  font-weight: 900;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 14px;
  border-radius: var(--radius);
  min-width: 60px;
  text-align: center;
}
.register__count i {
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #8E9BB4;
}
.register__ticks {
  margin-top: 30px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.register__ticks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  font-weight: 600;
  color: #CFD7E4;
}
.register__ticks .check { width: 20px; height: 20px; border-radius: 5px; }
.register__ticks .check::after { left: 7px; top: 3.5px; width: 4.5px; height: 8.5px; border-width: 0 2.2px 2.2px 0; }

/* formulario */
.register__formwrap { width: 100%; }
#ghl-form-embed { width: 100%; }
#ghl-form-embed iframe { width: 100%; min-height: 420px; border-radius: var(--radius-lg); }



/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 54px 0 30px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
}
.footer__brand img { flex: none; }
.footer__brand p {
  font-size: .88rem;
  color: var(--gray);
}
.footer__links {
  display: flex;
  gap: 26px;
}
.footer__links a {
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
}
.footer__links a:hover { color: var(--red); }
.footer__legal {
  max-width: var(--maxw);
  margin: 34px auto 0;
  padding: 26px 24px 0;
  border-top: 1px solid var(--border);
}
.footer__legal p {
  font-size: .76rem;
  color: var(--gray);
  line-height: 1.6;
}
.footer__copy {
  margin-top: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* =========================================================
   LEGAL PAGE (Privacidad / Términos)
   ========================================================= */
.legal-page {
  padding: 120px 0 80px;
  background: var(--white);
}
.legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-page__updated {
  margin-top: 8px;
  font-size: .85rem;
  color: var(--gray);
}
.legal-page__body {
  margin-top: 40px;
}
.legal-page__body h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page__body h2:first-child {
  margin-top: 0;
}
.legal-page__body p {
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-page__body ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}
.legal-page__body li {
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-page__body li strong {
  color: var(--ink);
}
.legal-page__body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page__body a:hover {
  color: var(--red-dark);
}
.legal-page__back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* =========================================================
   REVEAL (IntersectionObserver)
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   VISUAL EFFECTS & POLISH
   ========================================================= */

/* --- 1. Hero animated gradient overlay --- */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero {
  background:
    radial-gradient(900px 360px at 88% -8%, rgba(27,42,74,.05), transparent 60%),
    linear-gradient(
      135deg,
      rgba(27,42,74,.03) 0%,
      rgba(208,2,27,.04) 30%,
      rgba(247,248,250,.6) 55%,
      rgba(27,42,74,.03) 80%,
      rgba(208,2,27,.02) 100%
    ),
    var(--white);
  background-size: 100% 100%, 300% 300%, 100% 100%;
  animation: heroGradientShift 18s ease infinite;
}

/* --- 2. Register section animated gradient overlay --- */
@keyframes registerGradientShift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.register {
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(208,2,27,.16), transparent 60%),
    linear-gradient(
      160deg,
      rgba(208,2,27,.08) 0%,
      transparent 40%,
      transparent 60%,
      rgba(208,2,27,.06) 100%
    ),
    var(--navy-deep);
  background-size: 100% 100%, 200% 200%, 100% 100%;
  animation: registerGradientShift 22s ease infinite;
}

/* --- 3. Animated gradient border on form card --- */
@keyframes borderRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.register__formwrap {
  position: relative;
}
#ghl-form-embed {
  position: relative;
  z-index: 1;
}
.register__formwrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(
    from 0deg,
    var(--red),
    var(--navy),
    var(--red-dark),
    var(--navy-deep),
    var(--red)
  );
  animation: borderRotate 6s linear infinite;
  z-index: 0;
  opacity: .7;
}
.register__formwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  z-index: 0;
}

/* --- 4. Floating decorative elements in hero --- */
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: .35; }
  50%  { transform: translateY(-18px) scale(1.08); opacity: .55; }
  100% { transform: translateY(0) scale(1); opacity: .35; }
}
.hero__inner {
  position: relative;
}
.hero__inner::before,
.hero__inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__inner::before {
  width: 110px;
  height: 110px;
  top: 8%;
  left: -5%;
  background: radial-gradient(circle, rgba(208,2,27,.06) 0%, transparent 70%);
  animation: floatUp 7s ease-in-out infinite;
}
.hero__inner::after {
  width: 70px;
  height: 70px;
  bottom: 12%;
  right: 6%;
  background: radial-gradient(circle, rgba(27,42,74,.06) 0%, transparent 70%);
  animation: floatUp 9s ease-in-out infinite 2.5s;
}
.hero__inner > * {
  position: relative;
  z-index: 1;
}

/* --- 5. MidCTA left-side red accent glow --- */
.midcta {
  position: relative;
  overflow: hidden;
}
.midcta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--red) 30%,
    var(--red) 70%,
    transparent 100%
  );
}
.midcta::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 80%;
  background: radial-gradient(ellipse at left center, rgba(208,2,27,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* --- 6. Guarantee seal pulse glow --- */
@keyframes sealPulse {
  0%   { box-shadow: 0 0 0 0 rgba(208,2,27,.25); }
  70%  { box-shadow: 0 0 0 12px rgba(208,2,27,0); }
  100% { box-shadow: 0 0 0 0 rgba(208,2,27,0); }
}
.guarantee__seal img {
  animation: sealPulse 3s ease-in-out infinite;
}

/* --- 7. Social proof avatars staggered bounce --- */
@keyframes avatarBounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.social-strip .avatars .avatar {
  animation: avatarBounceIn .5s ease-out both;
}
.social-strip .avatars .avatar:nth-child(1) { animation-delay: .1s; }
.social-strip .avatars .avatar:nth-child(2) { animation-delay: .2s; }
.social-strip .avatars .avatar:nth-child(3) { animation-delay: .3s; }
.social-strip .avatars .avatar:nth-child(4) { animation-delay: .4s; }

/* --- 8. Credbar numbers gradient text --- */
.credbar__item b {
  background: linear-gradient(135deg, var(--navy) 30%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 9. Section dividers with animated gradient --- */
@keyframes dividerShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.problem::after,
.method::after,
.authority::after,
.testimonials::after {
  content: "";
  display: block;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(208,2,27,.12) 20%,
    rgba(27,42,74,.18) 50%,
    rgba(208,2,27,.12) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: dividerShimmer 6s linear infinite;
}
.problem { position: relative; }
.method { position: relative; }
.authority { position: relative; }
.testimonials { position: relative; }
.problem::after { position: absolute; bottom: 0; left: 0; right: 0; }
.method::after  { position: absolute; bottom: 0; left: 0; right: 0; }
.authority::after { position: absolute; bottom: 0; left: 0; right: 0; }
.testimonials::after { position: absolute; bottom: 0; left: 0; right: 0; }

/* --- 10. Button active ring pulse --- */
@keyframes btnRingPulse {
  0%   { box-shadow: 0 0 0 0 rgba(208,2,27,.45); }
  100% { box-shadow: 0 0 0 14px rgba(208,2,27,0); }
}
.btn--red:active {
  animation: btnRingPulse .4s ease-out;
}

/* --- Reduced-motion overrides for effects --- */
@media (prefers-reduced-motion: reduce) {
  .hero  { animation: none; }
  .register { animation: none; }
  .register__formwrap::before { animation: none; }
  .hero__inner::before,
  .hero__inner::after { animation: none; }
  .guarantee__seal img { animation: none; }
  .social-strip .avatars .avatar { animation: none; opacity: 1; transform: none; }
  .btn--red:active { animation: none; }
  .problem::after,
  .method::after,
  .authority::after,
  .testimonials::after { animation: none; }
}

/* ========== HERO & HEADER ANIMATIONS ========== */

/* 1. Nav Glassmorphism */
.nav.is-scrolled {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
}

/* 2. Hero Title Underline Draw-In */
.js .reveal .u-underline::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.22,1,.36,1) .2s;
}
.reveal.is-visible .u-underline::after {
  transform: scaleX(1);
}

/* 3. CTA Shimmer Sweep */
.btn--red {
  position: relative;
  overflow: hidden;
}
.btn--red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,.3) 50%,
    transparent 60%
  );
  transform: translateX(-150%) skewX(-15deg);
  pointer-events: none;
}
.btn--red:hover::before {
  animation: btn-shimmer .6s ease forwards;
}
.hero .btn--red::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,.18) 50%,
    transparent 60%
  );
  transform: translateX(-150%) skewX(-15deg);
  pointer-events: none;
  animation: btn-shimmer-auto 4s ease-in-out 1.8s infinite;
}
@keyframes btn-shimmer {
  to { transform: translateX(150%) skewX(-15deg); }
}
@keyframes btn-shimmer-auto {
  0%, 70% { transform: translateX(-150%) skewX(-15deg); }
  100%    { transform: translateX(150%) skewX(-15deg); }
}

/* 4. Hero Staggered Entrance */
.js .hero__copy.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.js .hero__copy.reveal > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--stagger, 0s);
}
.hero__copy.reveal.is-visible > * {
  opacity: 1;
  transform: none;
}
.hero__copy.reveal > *:nth-child(1) { --stagger: 0s; }
.hero__copy.reveal > *:nth-child(2) { --stagger: .1s; }
.hero__copy.reveal > *:nth-child(3) { --stagger: .2s; }
.hero__copy.reveal > *:nth-child(4) { --stagger: .3s; }
.hero__copy.reveal > *:nth-child(5) { --stagger: .38s; }
.hero__copy.reveal > *:nth-child(6) { --stagger: .46s; }
.js .hero__copy .social-strip .avatars .avatar {
  animation: none;
  opacity: 1;
  transform: none;
}

/* 5. Hero Badge Float */
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__badge {
  animation: badge-float 3.5s ease-in-out infinite;
}

/* 6. Urgency Tick Pulse */
@keyframes tick-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.count-unit b.tick {
  animation: tick-pulse .25s ease;
}

/* Reduced-motion for hero & header animations */
@media (prefers-reduced-motion: reduce) {
  .js .hero__copy.reveal > * { opacity: 1; transform: none; transition: none; }
  .js .reveal .u-underline::after { transform: scaleX(1); transition: none; }
  .btn--red::before,
  .hero .btn--red::after { animation: none; }
  .hero__badge { animation: none; }
  .count-unit b.tick { animation: none; }
  .nav.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--white); }
}

/* ========== SCROLL & MICRO-INTERACTIONS ========== */

/* --- Staggered reveal delays --- */
.problem__list > .reveal:nth-child(2),
.steps > .reveal:nth-child(2),
.thursday__list > .reveal:nth-child(2),
.testi-grid > .reveal:nth-child(2) { transition-delay: 100ms; }

.problem__list > .reveal:nth-child(3),
.steps > .reveal:nth-child(3),
.thursday__list > .reveal:nth-child(3),
.testi-grid > .reveal:nth-child(3) { transition-delay: 200ms; }

.problem__list > .reveal:nth-child(4),
.steps > .reveal:nth-child(4),
.thursday__list > .reveal:nth-child(4) { transition-delay: 300ms; }

.testi-grid > .reveal:nth-child(5) { transition-delay: 400ms; }

/* --- Step cards hover lift --- */
.step.is-visible {
  transition: opacity .5s ease, transform .3s ease, box-shadow .3s ease;
}
.step.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* --- Testimonial cards hover --- */
.testi.is-visible {
  transition: opacity .5s ease, transform .3s ease, box-shadow .3s ease;
}
.testi.is-visible:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* --- Fit columns hover --- */
.fit__col.is-visible {
  transition: opacity .5s ease, transform .5s ease, border-color .3s ease, box-shadow .3s ease;
}
.fit__col.is-visible:hover {
  border-color: rgba(14,19,32,.22);
  box-shadow: var(--shadow-md);
}
.fit__col--yes.is-visible:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,2,27,.15), var(--shadow-md);
}

/* --- Check marks scale-in animation --- */
@keyframes checkIn {
  0%   { transform: scale(0); }
  50%  { transform: scale(1.2); }
  70%  { transform: scale(.92); }
  100% { transform: scale(1); }
}
.js .thursday__list .check { transform: scale(0); }
.thursday__list li.is-visible .check {
  animation: checkIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
.thursday__list li.is-visible:nth-child(1) .check { animation-delay: 50ms; }
.thursday__list li.is-visible:nth-child(2) .check { animation-delay: 150ms; }
.thursday__list li.is-visible:nth-child(3) .check { animation-delay: 250ms; }
.thursday__list li.is-visible:nth-child(4) .check { animation-delay: 350ms; }

/* --- X marks scale-in --- */
@keyframes xIn {
  0%   { transform: scale(0); }
  50%  { transform: scale(1.15); }
  70%  { transform: scale(.92); }
  100% { transform: scale(1); }
}
.js .fit__col--no .x-mark { transform: scale(0); }
.fit__col--no.is-visible .x-mark {
  animation: xIn .35s cubic-bezier(.34,1.56,.64,1) both;
}
.fit__col--no.is-visible li:nth-child(1) .x-mark { animation-delay: 50ms; }
.fit__col--no.is-visible li:nth-child(2) .x-mark { animation-delay: 150ms; }
.fit__col--no.is-visible li:nth-child(3) .x-mark { animation-delay: 250ms; }

/* --- Reveal variants --- */
.js .reveal--left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal--left.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal--right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal--right.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal--scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal--scale.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Stagger via data attribute --- */
[data-stagger] > .reveal:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > .reveal:nth-child(2) { transition-delay: 100ms; }
[data-stagger] > .reveal:nth-child(3) { transition-delay: 200ms; }
[data-stagger] > .reveal:nth-child(4) { transition-delay: 300ms; }
[data-stagger] > .reveal:nth-child(5) { transition-delay: 400ms; }
[data-stagger] > .reveal:nth-child(6) { transition-delay: 500ms; }

/* --- Reduced-motion overrides for scroll & micro-interactions --- */
@media (prefers-reduced-motion: reduce) {
  .step.is-visible:hover,
  .testi.is-visible:hover,
  .fit__col.is-visible:hover,
  .fit__col--yes.is-visible:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
  }
  .step.is-visible,
  .testi.is-visible,
  .fit__col.is-visible {
    transition: none;
  }
  .fit__col--yes.is-visible:hover {
    border-color: rgba(208,2,27,.30);
  }
  .js .thursday__list .check,
  .js .fit__col--no .x-mark {
    transform: scale(1);
  }
  .thursday__list li.is-visible .check,
  .fit__col--no.is-visible .x-mark {
    animation: none;
  }
  .js .reveal--left,
  .js .reveal--right,
  .js .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .problem__list > .reveal:nth-child(n),
  .steps > .reveal:nth-child(n),
  .thursday__list > .reveal:nth-child(n),
  .testi-grid > .reveal:nth-child(n),
  [data-stagger] > .reveal:nth-child(n) {
    transition-delay: 0ms;
  }
}

/* =========================================================
   RESPONSIVE — ~960px
   ========================================================= */
@media (max-width: 960px) {
  :root { --nav-h: 64px; }

  .nav__links {
    position: fixed;
    top: calc(var(--bar-h) + var(--nav-h));
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .25s ease;
    margin-left: 0;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav__cta { margin-left: auto; }
  .nav__burger { display: block; margin-left: 0; }

  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; max-width: 360px; }
  .hero__badge { left: auto; right: -14px; }

  .problem__inner { grid-template-columns: 1fr; gap: 28px; }
  .problem__head { position: static; }
  .problem__close { grid-column: 1; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-radius: 0 !important; }
  .step:not(:last-child) { border-right: 1px solid var(--border); }
  .step:nth-child(odd) { border-right: none; }
  .step::after { display: none; }
  .step:first-child { border-radius: var(--radius-lg) 0 0 0 !important; }
  .step:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0 !important; }
  .step:nth-child(3) { border-radius: 0 0 0 var(--radius-lg) !important; }
  .step:last-child { border-radius: 0 0 var(--radius-lg) 0 !important; }
  .step:nth-child(3), .step:nth-child(4) { border-top: none; }

  .thursday__inner { grid-template-columns: 1fr; gap: 36px; }
  .authority__inner { grid-template-columns: 1fr; gap: 36px; }
  .authority__media { max-width: 380px; }

  .testi-grid { grid-template-columns: 1fr; gap: 18px; }
  .testi:nth-child(2) { transform: none; }

  .register__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   RESPONSIVE — ~600px
   ========================================================= */
@media (max-width: 600px) {
  .urgency-bar { height: auto; padding: 8px 0; }
  .urgency-bar__inner { gap: 8px; flex-direction: column; }
  .urgency-bar__label { font-size: .68rem; }
  .count-unit b { min-width: 26px; font-size: .82rem; }

  .nav__links { top: auto; }

  .hero { padding: 48px 0 48px; }
  .hero__copy .btn,
  .btn--lg { width: 100%; }
  .method__cta .btn { width: 100%; }
  .midcta__inner .btn { width: 100%; }

  .credbar__inner { gap: 18px; }
  .credbar__divider { display: none; }

  .problem, .method, .thursday, .authority,
  .testimonials, .fit, .faq { padding: 62px 0; }

  .steps { grid-template-columns: 1fr; }
  .step { border-radius: 0 !important; border-right: 1px solid var(--border) !important; }
  .step:not(:last-child) { border-bottom: none; }
  .step:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important; }
  .step:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important; border-bottom: 1px solid var(--border) !important; }
  .step:nth-child(3) { border-top: none; }

  .fit__cols { grid-template-columns: 1fr; }
  .authority__stats { grid-template-columns: 1fr; gap: 14px; }
  .authority__stats div { display: flex; align-items: baseline; gap: 10px; }

  .guarantee__inner { flex-direction: column; text-align: center; gap: 20px; }

  .register__count b { min-width: 50px; font-size: 1.4rem; padding: 8px 10px; }
  #ghl-form-embed iframe { min-height: 380px; }

  .footer__inner { flex-direction: column; gap: 24px; }

  .legal-page { padding: 96px 0 60px; }
  .legal-page__body h2 { margin-top: 28px; }
}
