/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --g:        #00C87A;
  --g-2:      #00E688;
  --g-dim:    rgba(0,200,122,0.09);
  --g-glow:   rgba(0,200,122,0.18);
  --g-border: rgba(0,200,122,0.2);

  --bg:       #050908;
  --bg-card:  #0C1210;
  --bg-alt:   #080D0A;

  --tx:       #EDF2EE;
  --tx-2:     rgba(237,242,238,0.55);
  --tx-3:     rgba(237,242,238,0.28);

  --b:        rgba(255,255,255,0.065);
  --b-g:      rgba(0,200,122,0.18);

  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ─────────────────────────────────────────────
   RESET / BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--tx);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  /* Subtle dot-grid texture */
  background-image: radial-gradient(circle, rgba(0,200,122,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  background-attachment: fixed;
}

::selection { background: rgba(0,200,122,0.22); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   GEOMETRIC BACKGROUND DECORATIONS
───────────────────────────────────────────── */
.geo-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.orb-a {
  width: 520px; height: 520px;
  top: -140px; left: -160px;
  background: radial-gradient(circle, rgba(0,200,122,0.28) 0%, transparent 68%);
  animation: orbDrift 18s ease-in-out infinite;
}
.orb-b {
  width: 420px; height: 420px;
  top: 8%; right: -120px;
  background: radial-gradient(circle, rgba(0,232,136,0.18) 0%, transparent 70%);
  animation: orbDrift 22s ease-in-out infinite reverse;
}
.orb-c {
  width: 380px; height: 380px;
  bottom: 8%; left: 35%;
  background: radial-gradient(circle, rgba(0,160,100,0.14) 0%, transparent 70%);
  animation: orbDrift 26s ease-in-out infinite 4s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 28px) scale(1.08); }
}

.geo-shape {
  position: absolute;
  border: 1px solid rgba(0,200,122,0.12);
  border-radius: 8px;
  transform-origin: center;
  box-shadow: 0 0 40px rgba(0,200,122,0.06), inset 0 0 30px rgba(0,200,122,0.04);
}
.geo-1 {
  width: 320px; height: 320px;
  top: -80px; right: -80px;
  --rot: 28deg;
  background: linear-gradient(135deg, rgba(0,200,122,0.08) 0%, transparent 60%);
  animation: geoFloat 16s ease-in-out infinite;
}
.geo-2 {
  width: 220px; height: 220px;
  top: 60px; right: 80px;
  --rot: 15deg;
  border-color: rgba(0,200,122,0.1);
  animation: geoFloat 20s ease-in-out infinite reverse;
}
.geo-3 {
  width: 160px; height: 160px;
  top: 180px; right: 240px;
  --rot: 42deg;
  border-color: rgba(0,200,122,0.08);
  animation: geoFloat 14s ease-in-out infinite 2s;
}
.geo-4 {
  width: 260px; height: 260px;
  bottom: 10%; left: -60px;
  --rot: -18deg;
  border-color: rgba(0,200,122,0.08);
  background: radial-gradient(circle at 60% 40%, rgba(0,200,122,0.06) 0%, transparent 65%);
  animation: geoFloat 18s ease-in-out infinite 1s;
}

@keyframes geoFloat {
  0%, 100% { transform: rotate(var(--rot, 20deg)) translateY(0); }
  50% { transform: rotate(calc(var(--rot, 20deg) + 6deg)) translateY(-18px); }
}

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 1; }
.narrow { max-width: 720px; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  position: relative;
  color: #f7fff9;
  text-shadow:
    0 0 20px rgba(0,200,122,0.22),
    0 0 60px rgba(0,200,122,0.12);
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  color: #f4fbf6;
  text-shadow:
    0 0 28px rgba(0,200,122,0.18),
    0 12px 48px rgba(0,200,122,0.1);
}
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; }

.h1-blur {
  position: absolute;
  inset: 0;
  color: var(--g);
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-accent {
  color: #00D47E;
  position: relative;
  text-shadow:
    0 0 10px rgba(0,212,126,0.4),
    0 0 28px rgba(0,200,122,0.18);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.32; filter: blur(22px); }
  50% { opacity: 0.48; filter: blur(26px); }
}

/* Section eyebrow */
.section-label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fffd4;
  margin-bottom: 12px;
  text-shadow: 0 0 16px rgba(0,200,122,0.55);
}

.section-sub {
  color: var(--tx-2);
  font-size: 1rem;
  max-width: 46ch;
  margin-top: 10px;
  font-family: var(--f-body);
}

.section-header { text-align: center; margin-bottom: 52px; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--r);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-solid {
  background: var(--g);
  color: #021A0C;
  padding: 14px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,200,122,0.22);
}
.btn-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: btnShine 3.8s ease-in-out infinite;
}
.btn-solid:hover {
  background: var(--g-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,200,122,0.42);
}
@keyframes btnShine {
  0%, 55% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.btn-ghost {
  background: transparent;
  color: var(--tx);
  border: 1.5px solid var(--b);
  padding: 13px 26px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn-nav { padding: 8px 18px; font-size: 14px; border-radius: 9px; }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 13px; }
.btn-xl { padding: 18px 44px; font-size: 17px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ─────────────────────────────────────────────
   LIVE DOT
───────────────────────────────────────────── */
.dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.25s, border-color 0.25s;
}
#nav.scrolled {
  background: rgba(5,9,8,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--b);
}
.nav-inner {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--tx);
}
.logo span {
  color: #9fffd4;
  font-weight: 400;
  margin-left: 1px;
  text-shadow: 0 0 14px rgba(0,200,122,0.7), 0 0 28px rgba(0,200,122,0.3);
}
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 7px 13px;
  font-size: 14px;
  color: var(--tx-2);
  border-radius: 8px;
  font-family: var(--f-body);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--tx); background: rgba(255,255,255,0.05); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 21px; height: 2px; background: var(--tx); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 8px 20px 16px; background: rgba(5,9,8,0.97); border-top: 1px solid var(--b); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 11px 12px; color: var(--tx-2); font-size: 15px; border-radius: 8px; font-family: var(--f-body); }
.mobile-menu a:hover { color: var(--tx); background: rgba(255,255,255,0.04); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  padding: 120px 0 80px;
  position: relative;
}

/* Green mesh glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 15% 50%, rgba(0,200,122,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(0,200,122,0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: meshPulse 8s ease-in-out infinite;
}
@keyframes meshPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
  color: #b8ffdc;
  border: 1px solid var(--b-g);
  background: var(--g-dim);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(0,200,122,0.12);
}
.hero-left h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--tx-2);
  max-width: 44ch;
  margin-bottom: 30px;
  line-height: 1.7;
  font-family: var(--f-body);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--tx-2);
  border: 1px solid var(--b);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.badge:hover {
  border-color: var(--b-g);
  color: #c8ffe6;
  box-shadow: 0 0 16px rgba(0,200,122,0.15);
}

/* ── Hero right card ──────────────────────── */
.hero-card {
  background: linear-gradient(180deg, rgba(16,32,22,0.9) 0%, var(--bg-card) 70%);
  border: 1px solid var(--b-g);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 80px rgba(0,200,122,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: cardFloat 6s ease-in-out infinite 1.2s;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hc-row { display: flex; gap: 20px; align-items: center; }
.hc-stat { flex: 1; text-align: center; }
.hc-num {
  display: block;
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #f4fff8;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 22px rgba(0,200,122,0.35);
}
.hc-num small {
  font-size: 1.2rem;
  color: #9fffd4;
  text-shadow: 0 0 16px rgba(0,200,122,0.8);
}
.hc-label { font-size: 12px; color: var(--tx-2); line-height: 1.45; font-family: var(--f-body); }
.hc-sep { width: 1px; height: 48px; background: var(--b); flex-shrink: 0; }
.hc-divider { height: 1px; background: var(--b); margin: 22px 0; }
.hc-income-label {
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-3);
  display: block;
  margin-bottom: 14px;
}
.hc-tiers { display: flex; align-items: center; gap: 8px; }
.hc-tier { flex: 1; text-align: center; }
.hc-tier-val {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--tx);
  margin-bottom: 3px;
}
.hc-tier-accent .hc-tier-val {
  color: #9fffd4;
  text-shadow: 0 0 16px rgba(0,200,122,0.7);
}
.hc-tier-desc { font-size: 11px; color: var(--tx-3); font-family: var(--f-body); }
.hc-arrow { color: var(--tx-3); font-size: 14px; flex-shrink: 0; }
.hc-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: var(--tx-3);
  font-family: var(--f-body);
  line-height: 1.5;
}
.hc-note svg { flex-shrink: 0; color: var(--g); margin-top: 1px; }

/* ─────────────────────────────────────────────
   PROOF BAR
───────────────────────────────────────────── */
.proof-bar {
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  background: linear-gradient(to right, rgba(0,200,122,0.04) 0%, rgba(0,200,122,0.02) 50%, rgba(0,200,122,0.04) 100%), var(--bg-alt);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.proof-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.pb-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pb-item strong { font-family: var(--f-display); font-size: 15px; font-weight: 800; color: var(--tx); letter-spacing: -0.03em; }
.pb-item span { font-size: 12px; color: var(--tx-3); font-family: var(--f-body); }
.pb-sep { width: 1px; height: 28px; background: var(--b); }

/* ─────────────────────────────────────────────
   HOOK / PROBLEM
───────────────────────────────────────────── */
.hook-section {
  padding: 88px 0 72px;
  position: relative;
}
.hook-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,200,122,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hook-section h2 { margin-bottom: 22px; }
.hook-lead {
  font-size: 1.1rem;
  color: var(--tx-2);
  line-height: 1.75;
  max-width: 62ch;
  margin-bottom: 16px;
  font-family: var(--f-body);
}

/* ─────────────────────────────────────────────
   COMO / SYSTEM STEPS
───────────────────────────────────────────── */
.como-section {
  padding: 88px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  position: relative;
}
.como-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(0,200,122,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.steps-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.step-card:hover {
  border-color: var(--b-g);
  box-shadow: 0 12px 40px rgba(0,200,122,0.12);
  transform: translateY(-4px);
}
.step-n {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--g);
  margin-bottom: 10px;
}
.step-card h3 { margin-bottom: 9px; }
.step-card p { font-size: 14.5px; color: var(--tx-2); line-height: 1.65; font-family: var(--f-body); }

/* ─────────────────────────────────────────────
   LEARN LIST
───────────────────────────────────────────── */
.learn-section { padding: 96px 0; }
.learn-section .section-header { text-align: left; }
.learn-section h2 { margin-bottom: 32px; }
.learn-list { display: flex; flex-direction: column; }
.learn-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--b);
}
.learn-list li:last-child { border-bottom: 0; }
.li-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--g);
  margin-top: 7px;
  box-shadow: 0 0 8px rgba(0,200,122,0.5);
}
.learn-list strong { font-family: var(--f-display); font-size: 15.5px; color: var(--tx); display: block; margin-bottom: 4px; font-weight: 700; }
.learn-list div { font-size: 14.5px; color: var(--tx-2); line-height: 1.65; font-family: var(--f-body); }

/* ─────────────────────────────────────────────
   RESULTS
───────────────────────────────────────────── */
.results-section {
  padding: 88px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  position: relative;
}
.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,200,122,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.result-card--mid {
  border-color: var(--b-g);
  background: linear-gradient(160deg, #0d1e14 0%, var(--bg-card) 55%);
  box-shadow: 0 0 40px rgba(0,200,122,0.07);
}
.result-tier {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--g); margin-bottom: 10px;
}
.result-range {
  font-family: var(--f-display);
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.05em; color: #f4fff8;
  margin-bottom: 10px; line-height: 1;
  text-shadow: 0 0 24px rgba(0,200,122,0.35);
}
.result-range span { font-size: 0.85rem; font-weight: 500; color: var(--tx-2); }
.result-card p { font-size: 13.5px; color: var(--tx-2); line-height: 1.65; margin-bottom: 16px; font-family: var(--f-body); }
.result-hours {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600; color: var(--g);
  border: 1px solid var(--b-g); background: var(--g-dim);
  padding: 5px 11px; border-radius: 999px; display: inline-block;
}
.results-disclaimer {
  font-family: var(--f-body);
  font-size: 12px; color: var(--tx-3); text-align: center; max-width: 60ch; margin: 0 auto; line-height: 1.65;
}

/* ─────────────────────────────────────────────
   MENTORÍA
───────────────────────────────────────────── */
.mentoria-section { padding: 96px 0; }
.mentoria-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.mentoria-content h2 { margin-bottom: 12px; }
.mentoria-lead { font-size: 1.05rem; color: var(--tx-2); margin-bottom: 28px; line-height: 1.72; font-family: var(--f-body); }
.mentoria-items { display: flex; flex-direction: column; }
.mi { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--b); }
.mi:last-child { border-bottom: 0; }
.mi-icon { flex-shrink: 0; width: 26px; height: 26px; background: var(--g-dim); border-radius: 8px; display: grid; place-items: center; color: var(--g); margin-top: 1px; }
.mi strong { font-family: var(--f-display); display: block; font-size: 14.5px; margin-bottom: 4px; }
.mi p { font-size: 13.5px; color: var(--tx-2); font-family: var(--f-body); line-height: 1.6; }

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--b-g);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  position: sticky;
  top: 78px;
  box-shadow: 0 0 50px rgba(0,200,122,0.06);
}
.price-eyebrow { font-family: var(--f-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 8px; }
.price-num { font-family: var(--f-display); font-size: 2.6rem; font-weight: 800; letter-spacing: -0.05em; color: #f4fff8; margin-bottom: 8px; text-shadow: 0 0 28px rgba(0,200,122,0.3); }
.price-note { font-size: 13px; color: var(--tx-2); margin-bottom: 22px; line-height: 1.55; font-family: var(--f-body); }
.price-check-list { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.price-check-list li { font-family: var(--f-body); font-size: 13.5px; color: var(--tx-2); padding-left: 18px; position: relative; }
.price-check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--g); font-weight: 700; font-size: 12px; }
.price-stripe { display: flex; align-items: center; gap: 6px; font-family: var(--f-body); font-size: 12px; color: var(--tx-3); margin-top: 18px; justify-content: center; }
.price-stripe svg { color: var(--g); }

/* ─────────────────────────────────────────────
   FOR WHOM
───────────────────────────────────────────── */
.forwhom-section {
  padding: 88px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
}
.forwhom-section h2 { margin-bottom: 28px; }
.forwhom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fw-col { background: var(--bg-card); border: 1px solid var(--b); border-radius: var(--r-lg); padding: 26px 24px; }
.fw-col ul { display: flex; flex-direction: column; gap: 11px; }
.fw-col li { font-family: var(--f-body); font-size: 14px; color: var(--tx-2); padding-left: 22px; position: relative; line-height: 1.5; }
.fw-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--g); font-weight: 700; }
.fw-no  li::before { content: '✗'; position: absolute; left: 0; color: rgba(255,80,80,0.65); font-weight: 700; }
.fw-label { font-family: var(--f-body); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.fw-label-yes { color: var(--g); }
.fw-label-no  { color: rgba(255,90,90,0.75); }

/* ─────────────────────────────────────────────
   MENTOR
───────────────────────────────────────────── */
.mentor-section {
  padding: 96px 0;
  position: relative;
}
.mentor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 20% 50%, rgba(0,200,122,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.mentor-inner { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.mentor-photo-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--b);
  background: radial-gradient(circle at 40% 25%, rgba(0,200,122,0.13) 0%, var(--bg-card) 55%);
}
.mentor-photo-wrap img { width: 100%; min-height: 440px; object-fit: cover; }
.mentor-placeholder {
  height: 440px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--tx-3);
  font-family: var(--f-body);
  font-size: 13px;
}
.mentor-placeholder span { display: block; margin-bottom: 4px; }
.mentor-placeholder small { font-size: 11px; opacity: 0.6; }

.mentor-copy .section-label { margin-bottom: 6px; }
.mentor-copy h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); margin-bottom: 12px; }
.mentor-lead { font-size: 1.1rem; color: #9fffd4; font-weight: 600; margin-bottom: 16px; line-height: 1.6; font-family: var(--f-body); text-shadow: 0 0 22px rgba(0,200,122,0.45); }
.mentor-copy p { color: var(--tx-2); margin-bottom: 14px; font-size: 15px; line-height: 1.72; font-family: var(--f-body); }
.mentor-name-tag { margin-top: 22px; font-family: var(--f-display); font-size: 14px; font-weight: 700; color: var(--tx); border-top: 1px solid var(--b); padding-top: 18px; }
.mentor-name-tag span { color: var(--tx-2); font-weight: 500; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-section { padding: 96px 0; }
.faq-section h2 { margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--b); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--tx);
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arr { flex-shrink: 0; font-size: 20px; color: var(--tx-3); font-weight: 400; transition: transform 0.2s; line-height: 1; font-family: var(--f-body); }
.faq-item[open] summary { color: var(--g); }
.faq-item[open] .faq-arr { transform: rotate(45deg); }
.faq-item p { font-family: var(--f-body); color: var(--tx-2); font-size: 15px; padding-bottom: 20px; line-height: 1.72; }

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.final-section {
  padding: 96px 0;
  position: relative;
}
.final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 60%, rgba(0,200,122,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  border: 1px solid var(--b-g);
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse at 50% 0%, rgba(0,200,122,0.1) 0%, transparent 60%), var(--bg-card);
  box-shadow: 0 0 80px rgba(0,200,122,0.07);
  position: relative;
  z-index: 1;
}
.final-box h2 { margin-bottom: 14px; }
.final-sub { font-family: var(--f-body); font-size: 1.05rem; color: var(--tx-2); max-width: 40ch; margin: 0 auto 28px; line-height: 1.7; }
.final-sub-note { font-family: var(--f-body); font-size: 12.5px; color: var(--tx-3); margin-top: 12px; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer { border-top: 1px solid var(--b); padding: 48px 0 36px; position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-desc { font-family: var(--f-body); font-size: 13.5px; color: var(--tx-3); margin-top: 10px; line-height: 1.5; }
.footer-age { font-family: var(--f-body); font-size: 12px; color: rgba(255,255,255,0.18); margin-top: 8px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-family: var(--f-body); font-size: 13.5px; color: var(--tx-3); transition: color 0.15s; }
.footer-nav a:hover { color: var(--tx); }
.footer-copy { font-family: var(--f-body); font-size: 12px; color: rgba(255,255,255,0.18); margin-top: 14px; }
.disclaimer { font-family: var(--f-body); font-size: 11.5px; color: rgba(255,255,255,0.16); line-height: 1.65; border-top: 1px solid var(--b); padding-top: 18px; }

/* ─────────────────────────────────────────────
   LEGAL / GRACIAS
───────────────────────────────────────────── */
.page { padding: 100px 0 80px; max-width: 680px; margin: 0 auto; }
.page h1 { font-size: 2rem; margin-bottom: 22px; }
.page p { font-family: var(--f-body); color: var(--tx-2); margin-bottom: 14px; font-size: 15px; }
.back-link { font-family: var(--f-body); color: var(--g); font-size: 14px; display: inline-block; margin-bottom: 32px; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: flex; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-card { max-width: 480px; }
  .steps-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .mentoria-layout { grid-template-columns: 1fr; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .mentor-inner { grid-template-columns: 1fr; }
  .mentor-photo-wrap, .mentor-placeholder { min-height: 280px; height: 280px; }
  .price-card { position: static; }
  .pb-sep { display: none; }
  .geo-shape { display: none; }
  .orb-c { display: none; }
}

@media (max-width: 560px) {
  .hero { padding: 100px 0 52px; }
  h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
  .btn-lg, .btn-xl { width: 100%; justify-content: center; }
  .final-box { padding: 36px 20px; }
  .hc-tiers { flex-wrap: wrap; gap: 12px; }
  .hc-arrow { display: none; }
  .h1-blur { filter: blur(14px); }
}

/* ─────────────────────────────────────────────
   Reveal + hero stagger
───────────────────────────────────────────── */
.hero-left > *,
.hero-right {
  animation: fadeUp 0.8s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.16s; }
.hero-left > *:nth-child(3) { animation-delay: 0.28s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.52s; }
.hero-right { animation-delay: 0.32s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .h1-blur { opacity: 0.4; }
}
