/* ============================================================
   PROYECTO CAMINO PROPIO – Stylesheet
   ============================================================ */

/* ── VARIABLES ── */
:root {
  /* Brand primaries */
  --blue:        #1290b6;
  --green:       #269e8b;

  /* Blue tonal scale */
  --teal-deep:   #0a5f7a;
  --teal:        #1290b6;
  --teal-mid:    #2aadd4;
  --teal-light:  #6fcce6;
  --teal-pale:   #beeaf4;
  --teal-ghost:  #e8f7fc;

  /* Green tonal scale */
  --green-deep:  #1a6e61;
  --green-mid:   #269e8b;
  --green-light: #5cc4b1;
  --green-pale:  #b8ece5;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F5FAFB;
  --warm-gray:   #EDF4F5;
  --text:        #0e2d36;
  --muted:       #5d8a90;

  /* Accent — green as contrast to blue */
  --accent:      #269e8b;
  --accent-soft: #d4f2ed;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

nav.scrolled .nav-logo { color: var(--teal-deep); }

.nav-logo span { color: var(--teal-light); }

nav.scrolled .nav-logo span { color: var(--teal); }

.nav-cta {
  background: var(--white);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

nav.scrolled .nav-cta {
  background: var(--teal);
  color: var(--white);
}

.nav-cta:hover { transform: translateY(-1px); opacity: 0.9; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 45%, var(--green-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 90% 20%, rgba(109,202,214,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(13,74,90,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.hero-circle2 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  top: 60px;
  right: -30px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '●';
  color: var(--teal-light);
  font-size: 0.5rem;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 .accent { color: var(--teal-light); }

.hero-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-weight: 400;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 480px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-desc strong { color: var(--white); font-weight: 600; }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--teal-deep);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* Hero quote card */
.hero-quote-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease 0.3s both;
  position: relative;
  overflow: hidden;
}

.hero-quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-light), var(--green-mid));
}

.hero-quote-mark {
  font-family: 'Lora', serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--teal-light);
  margin-bottom: 20px;
  display: block;
}

.hero-quote-card blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SHARED ── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ── VIDEO ── */
.video-section {
  padding: 30px 48px;
  background: var(--white);
  text-align: center;
}

.video-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.video-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  line-height: 1.15;
}

.video-inner h2 br + * { display: inline; }

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 95, 122, 0.18);
  border: 3px solid var(--teal-pale);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 960px) {
  .video-section { padding: 35px 24px; }
}

/* ── CHALLENGE ── */
.challenge-section {
  padding: 30px 48px;
  background: var(--off-white);
}

.challenge-inner { max-width: 1100px; margin: 0 auto; }

.challenge-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  max-width: 680px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.challenge-inner .lead {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 64px;
  line-height: 1.7;
}

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

.challenge-card {
  background: var(--white);
  padding: 15px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.challenge-card:hover { transform: translateY(-4px); }

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal-pale);
  transition: background 0.3s;
}

.challenge-card:hover::before { background: var(--teal); }

.challenge-emoji { font-size: 2rem; margin-bottom: 20px; }

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

.challenge-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ── WHAT IS ── */
.what-section { padding: 30px 48px; background: var(--white); }

.what-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--teal-deep);
  margin-bottom: 20px;
  line-height: 1.1;
}

.what-text h2 em { font-style: italic; color: var(--teal); font-family: 'Lora', serif; }

.what-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.what-text p strong { color: var(--text); font-weight: 600; }

.what-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.what-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--warm-gray);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.what-list li:hover { color: var(--teal); }
.what-list li:last-child { border-bottom: none; }

.what-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.what-list li:hover .what-icon { background: var(--teal-pale); }

.parent-note {
  background: var(--teal-ghost);
  border: 1.5px dashed var(--teal-light);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.parent-note::before {
  content: '★';
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--teal);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  line-height: 28px;
  text-align: center;
}

.parent-note h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.parent-note p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--teal-deep);
  line-height: 1.75;
}

.parent-note p strong { font-weight: 600; }

/* ── JOURNEY ── */
.journey-section {
  padding: 60px 48px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(42,165,181,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.journey-header { text-align: center; margin-bottom: 80px; }

.journey-header .section-eyebrow { justify-content: center; color: var(--teal-light); }
.journey-header .section-eyebrow::before { background: var(--teal-light); display: none; }

.journey-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 12px;
}

.journey-header h2 span { color: var(--teal-light); }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}

.journey-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.journey-step:hover { background: rgba(255, 255, 255, 0.09); }

.journey-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.journey-step:nth-child(1)::before { background: var(--teal-light); }
.journey-step:nth-child(2)::before { background: var(--green-mid); }
.journey-step:nth-child(3)::before { background: var(--green-light); }

.step-number {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.04em;
  margin-bottom: -8px;
  font-family: 'Sora', sans-serif;
}

.step-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
  display: block;
}

.journey-step:nth-child(2) .step-label { color: var(--green-light); }
.journey-step:nth-child(3) .step-label { color: var(--green-pale); }

.journey-step h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.step-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.step-items li::before {
  content: '→';
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 700;
}

.journey-step:nth-child(2) .step-items li::before { color: var(--green-light); }
.journey-step:nth-child(3) .step-items li::before { color: var(--green-pale); }

/* ── RESULTS ── */
.results-section { padding: 30px 48px; background: var(--warm-gray); }
.results-inner { max-width: 1100px; margin: 0 auto; }

.results-header { text-align: center; margin-bottom: 72px; }

.results-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
}

.results-header h2 em { font-style: italic; font-family: 'Lora', serif; color: var(--teal); }

.results-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.result-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26,122,138,0.12);
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.result-card:hover::after { transform: scaleX(1); }

.result-icon { font-size: 2.2rem; margin-bottom: 20px;}

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

.result-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-section { padding: 30px 48px; background: var(--off-white); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 64px; }

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  line-height: 1.15;
}

.faq-header h2 em { font-style: italic; font-family: 'Lora', serif; color: var(--teal); }

.faq-item { border-bottom: 1px solid rgba(26,122,138,0.1); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--teal-deep);
  transition: color 0.2s;
}

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

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  color: var(--teal);
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a.open { max-height: 500px; padding-bottom: 24px; }

.faq-a p {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}

/* ── IDEAL FOR ── */
.ideal-section {
  padding: 50px 48px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--teal-deep) 100%);
  position: relative;
  overflow: hidden;
}

.ideal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(42,165,181,0.12) 0%, transparent 60%);
  pointer-events: none;
}

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

.ideal-header { text-align: center; margin-bottom: 60px; }

.ideal-header .section-eyebrow { justify-content: center; color: var(--teal-light); }
.ideal-header .section-eyebrow::before { background: var(--teal-light); display: none; }

.ideal-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
  margin-top: 12px;
}

.ideal-header h2 em { font-style: italic; font-family: 'Lora', serif; color: var(--teal-light); }

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

.ideal-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.3s, transform 0.3s;
}

.ideal-card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px);
}

.ideal-check {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  padding-top: 1px;
}

.ideal-card p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.65; }
.ideal-card p strong { color: var(--white); font-weight: 600; }

/* ── WHAT YOU RECEIVE ── */
.receive-section { padding: 30px 48px; background: var(--teal-ghost); }
.receive-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.receive-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.receive-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.receive-inner h2 em { font-style: italic; font-family: 'Lora', serif; color: var(--teal); }

.receive-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.receive-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,122,138,0.07);
  margin-bottom: 48px;
}

.receive-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--teal-ghost);
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  transition: background 0.2s;
}

.receive-list li:last-child { border-bottom: none; }
.receive-list li:hover { background: var(--teal-ghost); }
.receive-list li strong { font-weight: 600; color: var(--teal-deep); }

.receive-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,122,138,0.07);
  margin-bottom: 32px;
}

.price-box {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-divider { width: 1px; height: 120px; background: var(--teal-pale); flex-shrink: 0; }

.price-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.price-btn:hover { background: var(--teal-deep); transform: translateY(-2px); }

.receive-after {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.receive-after strong { color: var(--text); font-weight: 600; }
.receive-after a { color: var(--teal); text-decoration: none; font-weight: 500; }

/* ── ABOUT DIEGO ── */
.about-diego-section { padding: 15px 48px; background: var(--white); }

.about-diego-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: center;
}

.about-diego-photo { display: flex; justify-content: center; }

.photo-placeholder {
  width: 240px;
  height: 300px;
  background: linear-gradient(145deg, var(--teal-pale), var(--green-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--teal-deep);
  box-shadow: 0 20px 48px rgba(26,122,138,0.15);
}

.photo-placeholder img{
  border-radius: 15px;
  margin-top: 15px;
}

.about-diego-text{
  margin-top: 60px;
}

.about-diego-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--teal-deep);
  margin-bottom: 24px;
  margin-top: 12px;
  line-height: 1.1;
}

.about-diego-text h2 em { font-style: italic; font-family: 'Lora', serif; color: var(--teal); }

.about-diego-text p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-diego-text p strong { color: var(--text); font-weight: 600; }

.diego-signature {
  font-family: 'Lora', serif !important;
  font-style: italic !important;
  font-size: 1.05rem !important;
  color: var(--teal) !important;
  margin-top: 8px;
}

/* ── BIG QUOTE ── */
.quote-section {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Lora', serif;
  font-size: 20rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.quote-section blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.quote-section blockquote strong {
  font-weight: 600;
  font-style: normal;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

/* ── CTA ── */
.cta-section { padding: 30px 48px; background: var(--white); text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }

.cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--teal-deep);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-inner h2 em { font-style: italic; font-family: 'Lora', serif; color: var(--teal); }

.cta-inner p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.cta-inner p strong { color: var(--text); font-weight: 500; }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-teal:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(26,122,138,0.3);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--teal-pale);
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--teal);
  background: var(--teal-ghost);
}

.cta-note {
  margin-top: 32px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
}

.cta-note a { color: var(--teal); text-decoration: none; font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: var(--teal-deep);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer p { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.35); }
footer a { color: var(--teal-light); text-decoration: none; }

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner,
  .what-inner { grid-template-columns: 1fr; gap: 48px; }

  .challenge-grid,
  .results-grid { grid-template-columns: 1fr 1fr; }

  .ideal-grid { grid-template-columns: 1fr; }

  .journey-steps { grid-template-columns: 1fr; }

  .about-diego-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-diego-text .section-eyebrow { justify-content: center; }
  .photo-placeholder { width: 180px; height: 220px; font-size: 3.5rem; }

  .pricing-row { flex-direction: column; }
  .price-divider { width: 80%; height: 1px; }

  nav { padding: 16px 24px; }

  .hero { padding: 100px 24px 64px; }

  .challenge-section,
  .what-section,
  .journey-section,
  .results-section,
  .faq-section,
  .ideal-section,
  .receive-section,
  .about-diego-section,
  .cta-section { padding: 30px 24px; }

  footer { padding: 24px; }
}

@media (max-width: 560px) {
  .challenge-grid,
  .results-grid { grid-template-columns: 1fr; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 34px;
  height: 34px;
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--teal-deep);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--teal-deep);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPop {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 560px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-tooltip { display: none; }
}