:root {
  --bg: #061824;
  --bg-alt: #0a2232;
  --bg-alt-2: #04131f;
  --bg-card: #0d2b3e;
  --bg-light: #f5fafc;
  --border: #1a4255;
  --border-light: #d8e6ec;
  --heading: #f7fbfd;
  --body: #b5c8d3;
  --body-light: #3f5a6b;
  --heading-dark: #061824;
  --muted: #7895a5;
  --cyan: #10b7ea;
  --teal: #20c9b0;
  --gold: #f2b84b;
  --btn-bg: #25d0e8;
  --btn-bg-hover: #4edcf1;
  --btn-text: #041821;
  --gradient: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--teal); }

::selection { background: var(--cyan); color: var(--btn-text); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.container--narrow { max-width: 900px; }
.container--card { max-width: 720px; }
.container--pricing { max-width: 700px; }
.container--faq { max-width: 760px; }
.container--cta { max-width: 700px; }
.container--identity { max-width: 680px; }
.container--tools { max-width: 1180px; }
.container--kit { max-width: 1160px; }

section { padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 48px); }
section.section-tight { padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 48px); }
section.section-loose { padding: clamp(64px, 11vw, 120px) clamp(20px, 5vw, 48px); }

.bordered-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bordered-t { border-top: 1px solid var(--border); }
.bg-alt { background: var(--bg-alt); }
.bg-alt-2 { background: var(--bg-alt-2); }
.bg-light { background: var(--bg-light); }
.bg-gradient-section { background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-card) 100%); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 24, 36, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 48px);
}

.logo {
  font-weight: 800;
  font-size: 19px;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover { background: var(--btn-bg-hover); color: var(--btn-text); transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

.btn--header { font-size: 14px; padding: 12px 22px; white-space: nowrap; }
.btn--lg {
  font-weight: 800;
  font-size: 17px;
  padding: 18px 32px;
  border-radius: 12px;
  min-height: 48px;
  box-shadow: 0 0 32px rgba(37, 208, 232, 0.25);
}
.btn--lg:hover { box-shadow: 0 0 40px rgba(37, 208, 232, 0.35); }
.btn--md {
  font-weight: 800;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 12px;
  min-height: 48px;
}
.btn--block { display: block; text-align: center; }
.btn--xl { font-weight: 800; font-size: 18px; padding: 20px 36px; border-radius: 12px; min-height: 48px; }

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: var(--reveal-from, translateY(16px)); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 550ms cubic-bezier(0.22, 1, 0.36, 1), transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes shine-gold {
  0% { text-shadow: 0 0 0 rgba(242, 184, 74, 0); }
  50% { text-shadow: 0 0 18px rgba(242, 184, 74, 0.65); }
  100% { text-shadow: 0 0 0 rgba(242, 184, 74, 0); }
}
[data-reveal-shine].shine-played { animation: shine-gold 600ms ease-out; }

@keyframes sticky-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 183, 234, 0.16), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.eyebrow--gold {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(242, 184, 74, 0.1);
}

h1.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 28px;
  max-width: 540px;
}

.offer-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
  display: inline-block;
}
.offer-box-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}
.offer-box-row .sep { color: var(--border); }
.offer-box-row .gold { color: var(--gold); }

.price-row { display: flex; align-items: baseline; gap: 10px; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: 16px; }
.price-new { font-weight: 800; color: var(--gold); font-size: clamp(1.8rem, 3.4vw, 2.3rem); }

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 20px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--muted); }
.trust-row .dot { display: inline; }

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

/* Bonus split section */
.bonus-section { position: relative; overflow: hidden; }
.bonus-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 74, 0.1), transparent 65%);
  pointer-events: none;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px;
  align-items: center;
  position: relative;
}

.free-tag {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

h2.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 16px;
}
h2.section-title--center { text-align: center; margin: 0 0 32px; }

.bonus-lead { font-size: 16px; font-weight: 700; color: var(--body); line-height: 1.4; margin: 0 0 20px; }
.bonus-copy { font-size: 15px; color: var(--body); line-height: 1.6; margin: 0 0 28px; max-width: 480px; }

.check-list { display: grid; gap: 10px; margin-bottom: 24px; }
.check-item { display: flex; gap: 8px; }
.check-item .mark { color: var(--gold); }
.check-item span:last-child { color: var(--heading); font-size: 14px; }

.bonus-close { font-size: 15px; font-weight: 800; color: var(--heading); line-height: 1.5; margin: 0 0 24px; }

.included-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.fineprint { color: var(--muted); font-size: 13px; margin: 14px 0 0; }

.bonus-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.bonus-bridge { max-width: 1200px; margin: 40px auto 0; text-align: center; font-size: 16px; color: var(--body); line-height: 1.5; }
.bonus-bridge strong { color: var(--heading); }

/* Pain section */
.pain-title { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--heading); line-height: 1.15; margin: 0 0 40px; text-align: center; }
.pain-list { display: grid; gap: 16px; margin-bottom: 40px; }
.pain-item { margin: 0; font-size: 16px; color: var(--body); line-height: 1.5; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.pain-item:last-child { border-bottom: none; }
.pain-punch { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; color: var(--heading); text-align: center; margin: 0 0 24px; line-height: 1.35; }
.pain-close { font-size: 17px; color: var(--body); text-align: center; margin: 0 auto; max-width: 560px; line-height: 1.6; }
.pain-close strong { color: var(--heading); }

/* Method */
.method-title { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--heading); line-height: 1.15; margin: 0 0 32px; text-align: center; }
.method-flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-bottom: 56px; }
.method-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 20px; color: var(--heading); font-weight: 700; font-size: 14px; }
.method-step--final { background: var(--gradient); border: none; color: var(--btn-text); font-weight: 800; }
.method-arrow { color: var(--teal); font-size: 18px; }

.eyebrow-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 12px; }

.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.course-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--cyan); border-radius: 16px; padding: 28px; }
.course-card--teal { border-top-color: var(--teal); }
.course-card--gold { border-top-color: var(--gold); }
.course-kicker { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.course-card h3 { font-size: 20px; font-weight: 800; color: var(--heading); margin: 0 0 6px; }
.course-card p { font-size: 14px; color: var(--body); line-height: 1.5; margin: 0; }

.center-cta { text-align: center; margin-top: 40px; }

/* Offer card */
.offer-title { font-size: clamp(2rem, 4.2vw, 2.8rem); font-weight: 800; color: var(--heading); line-height: 1.15; margin: 0 0 40px; }
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 44px);
  text-align: left;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.offer-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--cyan); margin-bottom: 14px; }
.offer-list { display: grid; gap: 8px; margin-bottom: 20px; }
.offer-list p { margin: 0; color: var(--heading); font-size: 16px; }
.offer-divider { height: 1px; background: var(--border); margin: 18px 0; }
.offer-line { margin: 0 0 4px; color: var(--heading); font-size: 16px; }
.offer-line-note { margin: 0 0 18px; color: var(--teal); font-size: 13px; font-weight: 700; }
.offer-bonus-title { margin: 0 0 12px; color: var(--gold); font-weight: 800; font-size: 16px; }
.offer-bonus-list { display: grid; gap: 6px; margin-bottom: 18px; }
.offer-bonus-list p { margin: 0; color: var(--body); font-size: 14px; }
.offer-cert { margin: 0 0 24px; color: var(--heading); font-size: 16px; }
.offer-price-wrap { text-align: center; }
.offer-price-label { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; margin-bottom: 6px; }
.offer-price { font-weight: 800; color: var(--gold); font-size: clamp(2rem, 4.6vw, 2.8rem); margin-bottom: 24px; }

/* App + tools */
.app-intro { text-align: center; margin-bottom: 48px; }
.app-title { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--heading); line-height: 1.15; margin: 0 0 16px; }
.app-sub { font-size: 16px; color: var(--body); line-height: 1.6; max-width: 580px; margin: 0 auto; }
.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 44px; align-items: center; margin-bottom: 56px; }
.app-image { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 0 60px rgba(16, 183, 234, 0.12); }
.app-badge { display: inline-block; white-space: nowrap; background: rgba(37, 208, 232, 0.12); border: 1px solid var(--cyan); color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 8px 16px; border-radius: 999px; margin-bottom: 20px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-tile { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; color: var(--heading); font-weight: 600; font-size: 14px; }

.tools-title { font-size: clamp(1.7rem, 3.4vw, 2.2rem); font-weight: 800; color: var(--heading-dark); line-height: 1.2; margin: 0 0 10px; text-align: center; }
.tools-sub { font-size: 15px; color: var(--body-light); line-height: 1.6; max-width: 600px; margin: 0 auto 36px; text-align: center; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: center; }
.tools-image { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-light); box-shadow: 0 20px 50px rgba(6, 24, 36, 0.08); }

/* Identity */
.identity-title { font-size: clamp(1.8rem, 3.8vw, 2.4rem); font-weight: 800; color: var(--heading); line-height: 1.25; margin: 0 0 28px; }
.identity-lead { font-size: 17px; color: var(--body); margin: 0 0 6px; }
.identity-quote { font-size: clamp(1.5rem, 2.8vw, 1.9rem); font-weight: 800; color: var(--heading); margin: 0 0 32px; }
.identity-tags { font-size: 14px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; margin: 0 0 40px; }
.identity-close { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; color: var(--heading); margin: 0; line-height: 1.3; }

/* Pricing final */
.pricing-title { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--heading); line-height: 1.15; margin: 0 0 40px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: clamp(28px, 5vw, 44px); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); margin-bottom: 32px; }
.pricing-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 20px; }
.pricing-features { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; font-weight: 700; color: var(--heading); font-size: clamp(15px, 2vw, 18px); margin-bottom: 24px; }
.pricing-features .sep { color: var(--border); }
.pricing-features .gold { color: var(--gold); }
.pricing-price { font-weight: 800; color: var(--gold); font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 24px; }

.guarantee-box, .commitment-box { text-align: left; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 20px; padding: clamp(28px, 5vw, 40px); margin-bottom: 20px; }
.commitment-box { padding: clamp(24px, 4vw, 32px); margin-bottom: 0; }
.guarantee-box h3 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); font-weight: 800; color: var(--heading); line-height: 1.3; margin: 0 0 16px; }
.commitment-box h3 { font-size: 16px; font-weight: 800; color: var(--heading); margin: 0 0 10px; }
.guarantee-lead { font-size: 15px; color: var(--heading); font-weight: 700; margin: 0 0 16px; }
.guarantee-steps { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 13px; color: var(--body); font-weight: 600; }
.guarantee-steps .arrow { color: var(--teal); }
.guarantee-body, .commitment-box p { font-size: 15px; color: var(--body); line-height: 1.6; margin: 0; }

/* FAQ */
.faq-title { font-size: clamp(1.7rem, 3.4vw, 2.2rem); font-weight: 800; color: var(--heading); line-height: 1.15; margin: 0 0 32px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--heading);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
}
.faq-icon { color: var(--teal); font-size: 20px; flex-shrink: 0; }
.faq-answer { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 220ms ease, opacity 220ms ease; }
.faq-answer p { margin: 0 0 18px 4px; color: var(--body); font-size: 14px; line-height: 1.6; max-width: 640px; }
.faq-item.is-open .faq-answer { max-height: 300px; opacity: 1; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta-lead { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--body); line-height: 1.4; margin: 0 0 6px; }
.final-cta-negative { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; color: var(--muted); margin: 0 0 24px; }
.final-cta-positive { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; color: var(--heading); margin: 0 0 32px; }
.final-cta-tagline { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; color: var(--heading); line-height: 1.4; margin: 0 0 36px; }
.final-cta-below { margin: 18px 0 0; color: var(--gold); font-weight: 700; font-size: 14px; }

/* Footer */
.site-footer { padding: 40px clamp(20px, 5vw, 48px) calc(40px + env(safe-area-inset-bottom)); text-align: center; border-top: 1px solid var(--border); }
.footer-logo { font-weight: 800; color: var(--heading); font-size: 16px; margin-bottom: 16px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 13px; }
.footer-links a { color: var(--muted); }

/* Sticky bottom CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(6, 24, 36, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.is-visible {
  animation: sticky-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta-label { font-size: 12px; color: var(--gold); font-weight: 700; white-space: nowrap; }
.sticky-cta .btn { flex: 1; text-align: center; min-height: 48px; display: flex; align-items: center; justify-content: center; }

/* ==========================================================================
   Mobile-only components (hidden on desktop; shown inside the <768px query)
   ========================================================================== */

/* Hero offer grid (2x2) — desktop keeps the inline row */
.offer-grid-mobile { display: none; }

/* Vertical progress timeline (Método / Garantía) — desktop keeps the horizontal flow */
.v-timeline { display: none; }

/* Identity tag chips — desktop keeps the single "·"-joined line */
.identity-tags { display: block; }
.identity-tag { display: inline; }
.identity-tag::after { content: ' · '; color: var(--teal); }
.identity-tag:last-child::after { content: ''; }

/* Sticky mobile CTA price block — filled in only for the mobile layout */
.sticky-cta-price { display: none; }

/* ==========================================================================
   Mobile experience (<768px) — 360 / 375 / 390 / 393 / 412 / 430
   Own layout for the sections that need real reflow, not just shrinking.
   ========================================================================== */
@media (max-width: 767px) {

  .container { padding-inline: 18px; }

  section { padding-block: 52px; }
  section.section-tight { padding-block: 48px; }
  section.section-loose { padding-block: 56px; }

  /* ---- Header ---- */
  .site-header { padding: 8px 16px; }
  .logo { font-size: 16px; }
  .btn--header { font-size: 13px; padding: 0 16px; min-height: 44px; display: flex; align-items: center; }

  /* ---- Typography scale ---- */
  h1.hero-title { font-size: clamp(38px, 8.57vw + 7.14px, 44px); line-height: 1.04; text-wrap: balance; }
  br.br-desktop { display: none; }

  h2.section-title,
  .pain-title, .method-title, .offer-title, .app-title, .tools-title,
  .identity-title, .pricing-title, .faq-title {
    font-size: clamp(28px, 8.571vw - 2.857px, 34px);
    text-wrap: balance;
  }

  .course-card h3, .guarantee-box h3 {
    font-size: clamp(20px, 5.714vw - 0.571px, 24px);
  }

  .hero-sub { font-size: 16px; max-width: none; }
  .bonus-copy, .tools-sub, .guarantee-body, .commitment-box p { font-size: 16px; }

  /* ---- Hero ---- */
  .hero { padding-block: 40px 44px; }
  .hero::before { width: 360px; height: 360px; top: -80px; right: -120px; }
  .hero-grid { gap: 32px; }

  .eyebrow { font-size: 11px; letter-spacing: 0.03em; padding: 7px 12px; white-space: normal; text-align: center; }

  .offer-box { display: block; width: 100%; padding: 16px 18px; }
  .offer-box-row { display: none; }
  .offer-grid-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .offer-cell {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .offer-cell span { font-size: 13px; font-weight: 800; color: var(--heading); letter-spacing: 0.02em; }
  .offer-cell small { font-size: 11px; color: var(--muted); font-weight: 600; }
  .offer-cell--gold { border-color: var(--gold); background: rgba(242, 184, 74, 0.08); }
  .offer-cell--gold span { color: var(--gold); }
  .offer-cell--gold small { color: var(--gold); opacity: 0.8; }

  .price-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .price-old { font-size: 13px; }
  .price-new { font-size: 1.9rem; }

  .hero-cta-row { margin-bottom: 18px; }
  .hero-cta-row .btn { display: block; width: 100%; text-align: center; font-size: 16px; padding: 16px 20px; min-height: 52px; }

  .trust-row { font-size: 13px; row-gap: 4px; }

  .hero-image { max-width: 100%; }

  /* ---- Bono: De Piscinero a Negocio (reorder via flow, no DOM change) ---- */
  .bonus-section { padding-block: 52px; }
  .bonus-grid { display: flex; flex-direction: column; gap: 0; }
  .bonus-grid .bonus-text { display: contents; }

  .bonus-grid .eyebrow--gold { order: 1; }
  .bonus-grid .free-tag { order: 2; margin-top: 4px; }
  .bonus-grid .section-title { order: 3; }
  .bonus-grid .bonus-lead { order: 4; margin-bottom: 20px; }
  .bonus-grid .bonus-image { order: 5; width: 78vw; max-width: 330px; margin: 0 auto 24px; }
  .bonus-grid .bonus-copy { order: 6; max-width: none; }
  .bonus-grid .check-list { order: 7; }
  .bonus-grid .bonus-close { order: 8; }
  .bonus-grid .included-tag { order: 9; }
  .bonus-grid .bonus-cta { order: 10; }
  .bonus-grid .bonus-cta .btn { display: block; width: 100%; text-align: center; }
  .bonus-grid .fineprint { order: 11; }

  .bonus-bridge { margin-top: 28px; font-size: 15px; }

  /* ---- Dolor: compact editorial list ---- */
  .pain-title { margin-bottom: 24px; }
  .pain-list { gap: 4px; margin-bottom: 28px; }
  .pain-item {
    font-size: 15px;
    line-height: 1.45;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .pain-item::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--teal);
    font-weight: 700;
  }
  .pain-punch { margin-bottom: 18px; }

  /* ---- Método: vertical timeline ---- */
  .method-flow { display: none; }
  .eyebrow-label { margin-top: -8px; margin-bottom: 20px; }

  .v-timeline {
    display: block;
    position: relative;
    padding-left: 34px;
    margin: 0 0 40px;
  }
  .v-timeline-line {
    position: absolute;
    left: 13px;
    top: 4px;
    width: 2px;
    height: 0%;
    background: var(--gradient);
    transition: height 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .v-timeline.is-drawn .v-timeline-line { height: 100%; }
  .v-timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }
  .v-timeline-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--teal);
    margin-left: -34px;
  }
  .v-timeline-step--final .v-timeline-num { background: var(--gradient); color: var(--btn-text); border: none; }
  .v-timeline-label { font-size: 15px; font-weight: 700; color: var(--heading); }
  .v-timeline-step--final .v-timeline-label { color: var(--teal); }
  .v-timeline--sm .v-timeline-num { width: 24px; height: 24px; font-size: 11px; }
  .v-timeline--sm .v-timeline-label { font-size: 14px; font-weight: 600; color: var(--body); }

  /* ---- Tres cursos: una sola columna, menos padding ---- */
  .course-grid { gap: 12px; }
  .course-card { padding: 18px; }
  .center-cta .btn { display: block; width: 100%; }

  /* ---- Primera oferta completa ---- */
  .offer-card { padding: 22px; }
  .offer-title { margin-bottom: 24px; }

  /* ---- App ---- */
  .app-grid { gap: 24px; margin-bottom: 40px; }
  .app-intro { margin-bottom: 32px; }
  .feature-tile { padding: 13px 12px; font-size: 13px; }

  /* ---- Kit profesional ---- */
  .tools-grid { gap: 20px; }
  .tools-sub { margin-bottom: 24px; }

  /* ---- Identidad ---- */
  .identity-title { margin-bottom: 20px; }
  .identity-quote { font-size: clamp(1.6rem, 8vw, 2rem); margin-bottom: 24px; }
  .identity-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
  }
  .identity-tag {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
  }
  .identity-tag::after { content: ''; }

  /* ---- Pricing final ---- */
  .pricing-card { padding: 22px; }
  .pricing-title { margin-bottom: 24px; }
  .pricing-price { font-size: 2.1rem; }

  /* ---- Garantía ---- */
  .guarantee-steps { display: none; }
  .guarantee-box, .commitment-box { padding: 20px; }
  .guarantee-box h3 { margin-bottom: 12px; }

  /* ---- FAQ ---- */
  .faq-question { padding: 16px 6px; font-size: 15px; min-height: 48px; }
  .faq-icon { font-size: 22px; }

  /* ---- CTA final ---- */
  .final-cta .btn { display: block; width: 100%; }
  .final-cta-tagline { margin-bottom: 28px; }

  /* ---- CTA typography cap (15–17px bold on mobile, per spec) ---- */
  .btn--xl { font-size: 17px; padding: 16px 24px; }

  /* ---- Reveal: smaller motion, no big translateX/scale on mobile ---- */
  [data-reveal] { --reveal-from: translateY(14px) !important; }

  /* ---- Sticky CTA: mobile-only, price + short CTA ---- */
  .sticky-cta { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
  .sticky-cta-label { display: none; }
  .sticky-cta-price { display: block; font-size: 15px; font-weight: 800; color: var(--gold); white-space: nowrap; }
  .sticky-cta .btn { flex: 1; font-size: 14px; padding: 0 16px; min-height: 46px; }

  body.has-sticky-cta { padding-bottom: 72px; }
}

/* Sticky CTA is a mobile-only pattern per the funnel spec */
@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}
