/* ════════════════════════════════════════════════════════════
   TAKODA PREMIUM DESIGN SYSTEM — Sales Page
   Identidad: Premium Earthy & Scientific (RETIRO THEME)
   ════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Palette mapped from RETIRO */
  --forest: #1a3a3a; /* Deep Teal */
  --forest-dark: #0f2626; /* Teal Dark */
  --terracotta: #c8956c; /* Warm Amber */
  --terracotta-light: #d4a76a; /* Soft Gold */
  --terracotta-dark: #b57a53; /* Dark Amber */
  --sand: #e8c9a0; /* Gold Light */
  --sand-light: #f5eedc; /* Very light gold */
  --ivory: #faf7f4; /* Cream Light */
  --ivory-warm: #f5f0eb; /* Cream */
  --carbon: #1a3a3a; /* Use Deep Teal for dark text */
  --antracita: #0f2626; /* Dark background */
  --muted: #6b6b6b;

  /* Glassmorphism */
  --glass: rgba(250, 247, 244, 0.75);
  --glass-border: rgba(212, 167, 106, 0.3);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(100px, 12vw, 180px);
  --section-pad-sm: clamp(60px, 8vw, 100px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--carbon);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── CONTAINERS ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════
   PRE-HEADER
   ═══════════════════════════════ */
.pre-header {
  background: var(--antracita);
  color: var(--sand);
  padding: 12px 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 101;
}

.pre-header strong {
  color: var(--terracotta-light);
}

/* ═══════════════════════════════
   NAVBAR
   ═══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

nav.scrolled {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--carbon);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-cta {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--terracotta);
  padding: 12px 28px;
  border-radius: 100px;
  transition: all 0.3s !important;
  box-shadow: 0 4px 12px rgba(196, 106, 63, 0.2);
}

.nav-cta:hover {
  background: var(--forest) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 125, 86, 0.25);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--carbon);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 100px;
  transition: all 0.35s ease;
  cursor: pointer;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(196, 106, 63, 0.25);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 106, 63, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn-secondary:hover {
  background: rgba(74, 125, 86, 0.06);
  transform: translateY(-2px);
}

.btn-final {
  font-size: 1.1rem;
  padding: 24px 56px;
}

.badge-premium {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(74, 125, 86, 0.08);
  color: var(--forest);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ═══════════════════════════════
   SECTION PATTERNS
   ═══════════════════════════════ */
section {
  padding: var(--section-pad) 0;
}

.s-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.s-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--carbon);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.s-title:hover {
  transform: translateY(-2px);
  text-shadow: 0 10px 30px rgba(196, 106, 63, 0.15);
}

.s-title em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
  transition: color 0.4s ease;
}

.s-title:hover em {
  color: var(--terracotta);
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(196, 106, 63, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(196, 106, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 106, 63, 0); }
}

.s-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-top: 24px;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--ivory);
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Two-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--carbon);
  line-height: 1.12;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-lead {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 100%;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-ctas {
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

/* Hero image column */
.hero-image {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.4s forwards;
}

.image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(26, 58, 58, 0.15);
  aspect-ratio: 3 / 4;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Decorative accents */
.hero-image::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--terracotta-light) 20%, transparent 20%);
  background-size: 12px 12px;
  z-index: -1;
  opacity: 0.5;
}

.hero-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: var(--forest);
  opacity: 0.04;
  border-radius: 32px;
  z-index: -1;
}

/* ═══════════════════════════════
   HOOK EMOCIONAL
   ═══════════════════════════════ */
.hook {
  background: #fff;
  padding: var(--section-pad) 0;
}

.hook-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hook-question {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 32px;
}

.hook h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--carbon);
  margin-bottom: 48px;
}

.hook-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.hook-body p em {
  color: var(--carbon);
  font-style: italic;
}

.hook-emphasis {
  font-family: var(--font-serif) !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  color: var(--terracotta) !important;
  font-style: italic !important;
  text-align: center;
  margin-top: 40px !important;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ═══════════════════════════════
   PAIN SECTION
   ═══════════════════════════════ */
.pain {
  background: var(--ivory);
  position: relative;
}

.pain::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(74, 125, 86, 0.02);
  pointer-events: none;
}

.pain-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pain-card {
  background: #fff;
  padding: 52px 44px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.pain-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.pain-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pain-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--carbon);
}

.pain-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.pain-num {
  position: absolute;
  top: 28px;
  right: 36px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(74, 125, 86, 0.04);
  line-height: 1;
}

/* ═══════════════════════════════
   MID CTA
   ═══════════════════════════════ */
.mid-cta {
  padding: var(--section-pad-sm) 0;
  background: var(--ivory-warm);
}

.mid-cta-inner {
  text-align: center;
}

.mid-cta-inner p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--carbon);
  margin-bottom: 36px;
}

.mid-cta--green {
  background: var(--forest);
}

.mid-cta--green .mid-cta-inner p {
  color: var(--ivory);
}

/* ═══════════════════════════════
   RUPTURA (Paradigm Shift)
   ═══════════════════════════════ */
.ruptura {
  background: var(--antracita);
  color: #fff;
  text-align: center;
  padding: var(--section-pad) 0;
}

.ruptura-inner {
  max-width: 820px;
  margin: 0 auto;
}

.ruptura h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ivory);
}

.ruptura h2 em {
  color: var(--sand);
  font-style: italic;
}

.ruptura-line {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 40px auto;
}

.ruptura p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--sand);
  font-weight: 300;
  opacity: 0.9;
}

.ruptura-highlight {
  font-weight: 500 !important;
  color: var(--terracotta-light) !important;
  margin-top: 24px;
  font-size: 1.2rem !important;
}

/* ═══════════════════════════════
   NEW APPROACH
   ═══════════════════════════════ */
.new-approach {
  background: #fff;
}

.approach-text {
  max-width: 780px;
}

.approach-scenarios {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.scenario {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--ivory);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.scenario:hover {
  border-color: var(--forest);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(74, 125, 86, 0.06);
}

.scenario-icon {
  font-size: 1.3rem;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.scenario p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--carbon);
  font-weight: 300;
}

.scenario p strong {
  color: var(--forest);
  font-weight: 600;
}

.approach-close {
  margin-top: 48px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--carbon);
  font-weight: 500;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.video-testimonials {
  background: var(--ivory);
  padding: var(--section-pad) 0;
}

.testimonials-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* ═══════════════════════════════
   VIDEO TESTIMONIALS (PREMIUM CARRUSEL)
   ═══════════════════════════════ */
.video-testimonials {
  background: var(--ivory);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.carousel-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.carousel-track .video-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

/* Forzamos una altura consistente para que la línea sea perfecta */
.video-container {
  position: relative;
  width: 100%;
  height: 0; /* Importante para el truco del padding */
  background: #1a1a1a;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}

.video-info {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.03);
  margin-top: auto; /* Empuja el contenido al fondo */
}

.video-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--carbon);
  margin-bottom: 2px;
}

.video-info span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  font-weight: 700;
}

/* Botones de navegación minimalistas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--forest);
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--forest);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

.carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .carousel-track .video-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .carousel-wrapper { padding: 0 20px; }
  .carousel-track .video-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .carousel-btn { display: none; } /* En móvil mejor swipe natural */
  .carousel-container { overflow-x: auto; scroll-snap-type: x mandatory; }
  .carousel-track .video-card { scroll-snap-align: start; }
}

/* ═══════════════════════════════
   MECHANISM
   ═══════════════════════════════ */
.mechanism {
  background: var(--ivory);
}

.mechanism-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.mech-card {
  background: #fff;
  padding: 48px 44px;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.02);
}

.mech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.mech-main {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 64px 56px;
  box-shadow: 0 24px 64px rgba(74, 125, 86, 0.2);
}

.mech-main h3 {
  color: #fff !important;
  font-size: 1.6rem !important;
}

.mech-main p {
  color: rgba(250, 248, 244, 0.85) !important;
  font-size: 1.05rem !important;
  max-width: 600px;
  margin: 0 auto;
}

.mech-icon {
  font-size: 2.5rem;
  color: var(--sand);
  margin-bottom: 24px;
}

.mech-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.mech-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--carbon);
}

.mech-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ═══════════════════════════════
   PROMISE
   ═══════════════════════════════ */
.promise {
  background: #fff;
  text-align: center;
}

.promise-inner {
  max-width: 780px;
  margin: 0 auto;
}

.promise-body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-top: 28px;
}

.promise-body strong {
  color: var(--carbon);
  font-weight: 600;
}

/* ═══════════════════════════════
   BENEFITS (Before/After)
   ═══════════════════════════════ */
.benefits {
  background: var(--ivory);
}

.benefits-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.benefit-card {
  background: #fff;
  border-radius: 32px;
  padding: 44px 36px;
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.02);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.benefit-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.benefit-before .benefit-label {
  background: rgba(196, 106, 63, 0.1);
  color: var(--terracotta);
}

.benefit-after .benefit-label {
  background: rgba(74, 125, 86, 0.1);
  color: var(--forest);
}

.benefit-before p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  font-style: italic;
}

.benefit-after p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--carbon);
  font-weight: 400;
}

.benefit-arrow {
  text-align: center;
  font-size: 1.4rem;
  color: var(--sand);
  padding: 16px 0;
  font-weight: 300;
}

/* ═══════════════════════════════
   JOURNEY (3 Phases)
   ═══════════════════════════════ */
.journey {
  position: relative;
  background-color: var(--ivory-warm);
  z-index: 1;
}

.journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/bc-woman.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.journey-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.journey-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.j-phase {
  padding: 56px 40px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: var(--ivory);
}

.j-phase:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 32px 80px rgba(196, 106, 63, 0.12);
}

.j-phase:hover .j-num {
  animation: float 2s ease-in-out infinite;
}

.j-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 1;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.j-phase--1 .j-num { 
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.j-phase--2 .j-num { 
  background: linear-gradient(135deg, var(--forest) 0%, #d9c08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.j-phase--3 .j-num { 
  background: linear-gradient(135deg, var(--carbon) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.j-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}

.j-phase--1 .j-label { color: var(--terracotta); }
.j-phase--2 .j-label { color: var(--forest); }
.j-phase--3 .j-label { color: var(--muted); }

.j-phase h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--carbon);
}

.j-phase p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

.j-weeks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--forest);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-weight: 600;
  text-align: left;
}

/* ═══════════════════════════════
   PRODUCT SHOWCASE (Mockup)
   ═══════════════════════════════ */
.product-showcase {
  background: var(--ivory-warm);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.showcase-image img {
  width: 100%;
}

.feature-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--carbon);
  font-weight: 400;
}

.feature-list li span {
  color: var(--forest);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ═══════════════════════════════
   VERSUS
   ═══════════════════════════════ */
.versus {
  background: #fff;
}

.versus-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.versus-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.vs-col {
  padding: 56px 48px;
  border-radius: 40px;
}

.vs-old {
  background: var(--ivory);
  border: 1px solid var(--glass-border);
}

.vs-new {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 24px 64px rgba(74, 125, 86, 0.2);
}

.vs-col h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.vs-new h3 {
  color: var(--sand);
  border-color: rgba(255,255,255,0.15);
}

.vs-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
}

.vs-new .vs-item {
  color: var(--ivory);
}

.vs-x {
  color: var(--muted);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-v {
  color: var(--sand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════
   INCLUDES
   ═══════════════════════════════ */
.includes {
  background: var(--ivory);
}

.includes-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.inc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.inc-card {
  background: #fff;
  padding: 44px 36px;
  border-radius: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: 0 6px 24px rgba(0,0,0,0.02);
}

.inc-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--terracotta-light);
  box-shadow: 0 20px 50px rgba(196, 106, 63, 0.08);
}

.inc-card:hover .inc-icon {
  background: var(--terracotta);
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.inc-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 125, 86, 0.1);
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.4s ease;
}

.inc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--carbon);
}

.inc-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ═══════════════════════════════
   WHO (For / Not For)
   ═══════════════════════════════ */
.who {
  background: var(--antracita);
  color: #fff;
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.who-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 44px;
  color: var(--ivory);
}

.who-col h2 em {
  font-style: italic;
  color: var(--sand-light);
}

.who-no h2 em {
  color: var(--terracotta-light);
}

.who-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.who-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.who-yes .who-dot {
  background: var(--forest);
  box-shadow: 0 0 8px rgba(74, 125, 86, 0.3);
}

.who-no .who-dot {
  background: var(--muted);
  opacity: 0.3;
}

.who-item p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--sand);
  font-weight: 300;
}

/* ═══════════════════════════════
   VISUAL BREAK
   ═══════════════════════════════ */
.visual-break {
  padding: 0;
}

.image-full {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}

.image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42, 47, 42, 0.85), rgba(42, 47, 42, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.break-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  max-width: 700px;
  line-height: 1.5;
  font-weight: 400;
}

/* ═══════════════════════════════
   AUTHORITY
   ═══════════════════════════════ */
.authority {
  background: var(--ivory);
}

.authority-inner {
  max-width: 800px;
  margin: 0 auto;
}

.authority-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-top: 24px;
}

.authority-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.auth-pillar {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.03);
}

.auth-pillar-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.auth-pillar p {
  font-size: 0.88rem !important;
  color: var(--carbon) !important;
  font-weight: 500 !important;
  margin-top: 0 !important;
  line-height: 1.5 !important;
}

/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
.testi {
  background: #fff;
  text-align: center;
  position: relative;
  padding: var(--section-pad-sm) 0;
}

.testi::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 14rem;
  color: var(--sand);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.15;
  pointer-events: none;
}

.testi--alt {
  background: var(--ivory);
}

.testi-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.testi p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--carbon);
  font-weight: 400;
}

.testi cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--forest);
  margin-top: 36px;
}

/* ═══════════════════════════════
   FAQ
   ═══════════════════════════════ */
.faq {
  background: var(--ivory);
}

.faq-top {
  text-align: center;
  margin-bottom: 64px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--carbon);
  padding: 28px 0;
  text-align: left;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--terracotta);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--carbon);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  padding-bottom: 28px;
  font-weight: 300;
}

/* ═══════════════════════════════
   FINAL CTA
   ═══════════════════════════════ */
.final {
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 125, 86, 0.04), transparent 60%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.final h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--carbon);
  margin-bottom: 32px;
}

.final h2 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.final .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.final .lead:last-of-type {
  margin-bottom: 56px;
}

.final-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.f-stat { text-align: center; }

.f-stat-val {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
}

.f-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.final-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 28px;
}

.final-note span {
  font-weight: 600;
  color: var(--terracotta);
}

.final-guarantee {
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 500;
  margin-top: 20px;
  font-style: italic;
}

/* ═══════════════════════════════
   PONENTES
   ═══════════════════════════════ */
.instructors {
  background: var(--ivory-warm);
  padding-bottom: calc(var(--section-pad) / 3); /* Reducido para mayor ajuste */
}
.instructors-top {
  text-align: center;
  margin-bottom: 64px;
}

/* Outer grid: 1 card per row, full width */
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Each card: internal 2-col split */
.instructor-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  background: #fff;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
  text-align: left;
}
.instructor-card:hover {
  transform: translateY(-8px);
  border-color: var(--terracotta-light);
  box-shadow: 0 28px 70px rgba(196, 106, 63, 0.12);
}

/* Left: photo column */
.instructor-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.instructor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 0;
  max-width: none;
  box-shadow: none;
}
.instructor-card:hover .instructor-img {
  transform: scale(1.05);
}

/* Right: text column */
.instructor-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.instructor-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--carbon);
  margin-bottom: 8px;
  line-height: 1.15;
  transition: color 0.4s ease;
}
.instructor-card:hover h3 {
  color: var(--terracotta);
}
.instructor-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
}
.instructor-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
  border-radius: 2px;
  margin-bottom: 24px;
}
.instructor-card p:not(.instructor-role) {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

/* ═══════════════════════════════
   CALENDARIO
   ═══════════════════════════════ */
.calendar-section {
  background: var(--ivory-warm);
}
.calendar-top {
  text-align: center;
}
.cal-list {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  margin-top: 48px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  text-align: left;
}
.cal-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cal-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cal-info {
  font-size: 1.05rem;
  color: var(--carbon);
  line-height: 1.6;
}
.cal-info strong {
  color: var(--forest);
}

/* ═══════════════════════════════
   INVERSIÓN (CARRITO DARK CARD)
   ═══════════════════════════════ */
.pricing {
  background: #fff;
  padding: var(--section-pad) 0;
}
.pricing-card {
  background: var(--carbon);
  border-radius: 40px;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  color: #fff;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 100px rgba(196, 106, 63, 0.25);
  border-color: rgba(212, 167, 106, 0.3);
}
.pricing-header {
  padding: 56px 48px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
  margin-bottom: 24px;
}
.price {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--ivory);
}
.price-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.pricing-alert {
  background: rgba(74, 125, 86, 0.15);
  border: 1px solid rgba(74, 125, 86, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 32px 48px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.alert-icon {
  background: var(--forest);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  font-weight: bold;
}
.alert-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  text-align: left;
}
.pricing-features {
  list-style: none;
  padding: 0 48px 56px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}
.p-check {
  color: var(--sand);
  font-weight: bold;
}
.pricing-btn {
  background: linear-gradient(135deg, var(--sand) 0%, var(--terracotta-light) 100%);
  color: var(--antracita) !important;
  box-shadow: 0 10px 30px rgba(196, 106, 63, 0.2);
  animation: pulseGlow 3s infinite;
  transition: all 0.4s ease;
}
.pricing-btn:hover {
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--sand) 100%);
  box-shadow: 0 15px 40px rgba(196, 106, 63, 0.4);
  animation: none;
  transform: scale(1.05);
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  background: var(--antracita);
  padding: 72px 0 40px;
  color: var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(217, 192, 138, 0.12);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-nav h3, .footer-contact h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
}

.footer-nav a, .footer-contact a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-nav a:hover, .footer-contact a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--terracotta-light);
}

/* ═══════════════════════════════
   ANIMATIONS
   ═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.pain-card:nth-child(2) .reveal, .pain-card:nth-child(2).reveal { transition-delay: 0.1s; }
.pain-card:nth-child(3) .reveal, .pain-card:nth-child(3).reveal { transition-delay: 0.2s; }
.pain-card:nth-child(4) .reveal, .pain-card:nth-child(4).reveal { transition-delay: 0.3s; }

.j-phase:nth-child(2).reveal { transition-delay: 0.15s; }
.j-phase:nth-child(3).reveal { transition-delay: 0.3s; }

.inc-card:nth-child(2).reveal { transition-delay: 0.1s; }
.inc-card:nth-child(3).reveal { transition-delay: 0.2s; }
.inc-card:nth-child(4).reveal { transition-delay: 0.3s; }
.inc-card:nth-child(5).reveal { transition-delay: 0.4s; }
.inc-card:nth-child(6).reveal { transition-delay: 0.5s; }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .hero {
    padding: 140px 0 80px;
    text-align: center;
  }
  
  .hero-content { text-align: center; }
  .hero-lead { margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
  .hero-meta { justify-content: center; }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
    --section-pad-sm: 60px;
  }
  
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }
  
  .pain-grid,
  .benefits-grid,
  .inc-grid,
  .versus-cols,
  .who-inner,
  .authority-pillars,
  .instructor-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .journey-phases {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .showcase-grid { gap: 40px; }
  .who-inner { gap: 48px; }
  .versus-cols { gap: 20px; }
  .authority-pillars { gap: 16px; }

  .instructor-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 24px;
  }
  .instructor-img {
    width: 160px;
    height: 160px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .final-stats {
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .container, .container--narrow {
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }

  .hero {
    padding: 160px 0 60px !important;
  }

  .hero-eyebrow {
    margin-bottom: 12px !important;
  }
  
  .btn {
    padding: 16px 32px;
    font-size: 0.92rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn-final {
    padding: 20px 40px;
    font-size: 1rem;
  }
  
  .pain-card {
    padding: 36px 28px;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .vs-col {
    padding: 36px 28px;
    border-radius: 28px;
  }
  
  .pre-header {
    font-size: 0.72rem;
  }

  .nav-logo {
    font-size: 1rem !important;
    max-width: 200px;
    line-height: 1.2;
  }

  /* Gracias Page Refinements */
  .thanks-hero {
    padding: 100px 0 60px;
  }
  .thanks-hero h1 {
    font-size: 2.2rem;
  }
  .success-icon {
    font-size: 3rem;
  }
  .step-card {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .step-title {
    font-size: 1.8rem;
  }
  
  .hero-content .feature-list {
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-content .feature-list li {
    text-align: left;
  }
}

/* ═══════════════════════════════
   SMOOTH SCROLL INDICATOR
   ═══════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--forest));
  z-index: 102;
  transition: width 0.1s linear;
}

.footer-img-logo {
  height: 45px;
  width: auto;
  margin-bottom: 12px;
  display: block;
  filter: brightness(1.1);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .footer-logo {
  margin-bottom: 24px;
}
