/* ============================================================
   ELEVATE × ERIC GARENCE
   Mediterranean travel-poster design system
   ============================================================ */

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

:root {
  /* Surfaces */
  --bg:               #FAEFD8;   /* cream parchment */
  --bg-warm:          #F4ECD4;   /* slightly deeper cream */
  --bg-card:          #FFF7E3;   /* lighter cream for cards */
  --bg-card-hover:    #FFFAEC;
  --bg-dark:          #1E2530;   /* charcoal navy */
  --bg-dark-mid:      #2A3140;
  --bg-blue:          #1F3F8C;   /* deep Mediterranean blue */

  /* Text */
  --text:             #1E2530;
  --text-secondary:   #5A6478;
  --text-light:       #8A93A4;
  --text-white:       #FAEFD8;
  --text-white-pure:  #FFFFFF;
  --text-white-muted: rgba(250, 239, 216, 0.6);

  /* Accents (Garence palette) */
  --c-orange:         #E06B4F;   /* burnt orange — primary accent */
  --c-orange-hover:   #C95A40;
  --c-orange-soft:    #F4A47A;   /* terracotta peach */
  --c-blue:           #1F3F8C;
  --c-blue-hover:     #16306E;
  --c-sky:            #4A7FB8;
  --c-olive:          #2E5F3E;
  --c-tan:            #D9B384;

  /* Lines */
  --border:           rgba(30, 37, 48, 0.12);
  --border-strong:    rgba(30, 37, 48, 0.20);
  --border-card:      rgba(30, 37, 48, 0.08);

  /* Type */
  --font:             'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-display:     'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

::selection { background: var(--c-orange); color: var(--text-white); }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; position: relative; }

/* ============================================
   NAV
   ============================================ */
.nav {
  padding: 1.5rem 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 239, 216, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav__logo::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--c-orange);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: 4px;
}

.nav__links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: color 0.25s;
  cursor: pointer;
}

.nav__link:hover { color: var(--c-orange); }
.nav__link--active { color: var(--c-orange); font-weight: 500; }

.nav__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  background: var(--c-orange);
  color: var(--text-white);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}

.nav__cta:hover { background: var(--c-orange-hover); }

.nav__back {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.25s;
}
.nav__back:hover { color: var(--c-orange); }

.nav__mobile { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav__mobile span { display: block; width: 22px; height: 1.5px; background: var(--text); margin: 5px 0; }

/* ============================================
   HERO — Eric Garence travel-poster sky
   Soft gradient background (peach -> coral -> cream),
   no overlays, no dark blobs. The page itself is the sky.
   ============================================ */
.hero {
  padding: 11rem 0 6rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #FFD9B8 0%,        /* warm peach top */
      #FFE8C9 30%,       /* peach -> apricot */
      #FAEFD8 70%,       /* settling into cream */
      #FAEFD8 100%
    );
}

/* Subtle warm sun glow, softly diffused — not a hard disc */
.hero::before {
  content: '';
  position: absolute;
  top: -8rem; right: -8rem;
  width: 32rem; height: 32rem;
  background: radial-gradient(circle, rgba(255, 200, 150, 0.55) 0%, rgba(255, 200, 150, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: end;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--c-orange);
  position: relative;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1.5rem;
}

.hero__kicker::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--c-orange);
}

.hero__subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  max-width: 540px;
  line-height: 1.75;
}

.hero__cards { display: flex; flex-direction: column; gap: 1rem; }

.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 4px solid var(--c-orange);
  padding: 1.25rem 1.5rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__card:nth-child(2) { border-left-color: var(--c-blue); }
.hero__card:hover { transform: translateX(4px); background: var(--bg-card-hover); }

.hero__card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.375rem;
}

.hero__card:nth-child(2) .hero__card-label { color: var(--c-blue); }
.hero__card-title { font-size: 0.9375rem; font-weight: 500; }
.hero__card-arrow { font-size: 1.25rem; color: var(--text-secondary); }

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-orange);
  letter-spacing: -0.01em;
}

.hero__stat-label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0.125rem;
}

/* ============================================
   SECTION
   ============================================ */
.section { padding: 6rem 0; position: relative; }
.section--cream { background: var(--bg-warm); }
.section--white { background: var(--bg-card); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

/* Geometric accent on dark sections */
.section--dark::before {
  content: '';
  position: absolute;
  top: -8rem; right: -6rem;
  width: 22rem; height: 22rem;
  background: var(--c-orange);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.section__label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--c-orange);
}

.section--dark .section__label { color: var(--c-orange-soft); }
.section--dark .section__label::before { background: var(--c-orange-soft); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.875rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-top: 0.875rem;
  line-height: 1.15;
  color: var(--text);
}

.section--dark .section__title { color: var(--text-white); }

.section__title em {
  font-style: italic;
  color: var(--c-orange);
}

.section__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 580px;
  line-height: 1.75;
}

.section--dark .section__subtitle { color: var(--text-white-muted); }

.section__header { margin-bottom: 3.5rem; position: relative; z-index: 1; }
.section__header--center { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }
.section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }
.section__header--center .section__label { justify-content: center; }

/* ============================================
   PRODUCTS (Downloadable Resources)
   ============================================ */
.products__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.products__row--two { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 2.25rem 2rem 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.product-card:hover {
  border-color: var(--c-orange);
  box-shadow: 0 10px 32px rgba(224, 107, 79, 0.10);
  transform: translateY(-2px);
}

.product-card:hover::before { transform: scaleX(1); }

.product-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  border-radius: 4px;
}

.product-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: rgba(224, 107, 79, 0.10);
  padding: 0.3rem 0.75rem;
  border-radius: 0;
  margin-bottom: 1rem;
  width: fit-content;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-card__features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.product-card__features li {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
}

.product-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 14px; height: 1.5px;
  background: var(--c-orange);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-card);
}

.product-card__price-amount {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--c-orange);
  letter-spacing: -0.01em;
}

.product-card__price-period {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn--dark { background: var(--text); color: var(--text-white); }
.btn--dark:hover { background: var(--bg-dark-mid); }

.btn--orange { background: var(--c-orange); color: var(--text-white); }
.btn--orange:hover { background: var(--c-orange-hover); }

.btn--blue { background: var(--c-blue); color: var(--text-white); }
.btn--blue:hover { background: var(--c-blue-hover); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--bg); }

.btn--outline-orange {
  background: transparent;
  color: var(--c-orange);
  border: 1.5px solid var(--c-orange);
}
.btn--outline-orange:hover { background: var(--c-orange); color: var(--text-white); }

.btn--white { background: var(--bg); color: var(--text); }
.btn--white:hover { background: var(--bg-card); }

.btn--outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(250, 239, 216, 0.4);
}
.btn--outline-white:hover { border-color: var(--text-white); background: rgba(250, 239, 216, 0.08); }

.btn--full { width: 100%; }

.products__compare { text-align: center; margin-top: 3rem; position: relative; z-index: 1; }

/* ============================================
   SERVICES / 1:1 COACHING HANDOFF GRID
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-card {
  padding: 2rem 1.75rem;
  background: rgba(250, 239, 216, 0.04);
  border: 1px solid rgba(250, 239, 216, 0.12);
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  border-color: var(--c-orange);
  background: rgba(250, 239, 216, 0.08);
  transform: translateY(-2px);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--c-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  color: var(--text-white);
}

.service-card p {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-white-muted);
  line-height: 1.75;
}

/* ============================================
   COACHING PAGE — package cards
   ============================================ */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.coach-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.coach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--c-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}

.coach-card:hover {
  border-color: var(--c-orange);
  box-shadow: 0 10px 32px rgba(224, 107, 79, 0.10);
  transform: translateY(-2px);
}

.coach-card:hover::before { transform: scaleY(1); }

.coach-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.coach-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.coach-card__features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.coach-card__features li {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
}

.coach-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 14px; height: 1.5px;
  background: var(--c-orange);
}

.coach-card__foot {
  border-top: 1px solid var(--border-card);
  padding-top: 1.25rem;
}

.coach-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.coach-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-orange);
  letter-spacing: -0.01em;
}

.coach-card__hours {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step {
  position: relative;
  padding-top: 1rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--c-orange);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step__line {
  height: 2px;
  background: linear-gradient(90deg, var(--c-orange), transparent);
  margin-bottom: 1.25rem;
  position: absolute;
  top: 0; left: 0;
  width: 60%;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 2.25rem 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--c-orange);
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
  opacity: 0.4;
}

.testimonial__text {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial__author { display: flex; align-items: center; gap: 0.875rem; }

.testimonial__avatar {
  width: 40px; height: 40px;
  background: var(--c-orange);
  color: var(--text-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.8125rem;
}

.testimonial__name { font-size: 0.875rem; font-weight: 500; }
.testimonial__school { font-size: 0.75rem; color: var(--text-secondary); font-weight: 400; }

/* ============================================
   PRICING
   ============================================ */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 2.75rem 2rem 2rem;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover { border-color: var(--c-orange); box-shadow: 0 10px 32px rgba(224, 107, 79, 0.08); }

.pricing-card--featured {
  border: 2px solid var(--c-orange);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(244, 164, 122, 0.04) 100%);
}

.pricing-card--featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: var(--c-orange);
  color: var(--text-white);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-orange);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.125rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pricing-card__period {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.75rem;
}

.pricing-card__features { list-style: none; margin-bottom: 2rem; }

.pricing-card__features li {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-olive);
  font-weight: 700;
  font-size: 0.8125rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq__list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 1.5rem 2.5rem 1.5rem 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}

.faq-item__q:hover { color: var(--c-orange); }

.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-orange);
  transition: transform 0.3s;
}

.faq-item--open .faq-item__q::after { content: '−'; }

.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; }
.faq-item--open .faq-item__a { max-height: 400px; padding-bottom: 1.5rem; }
.faq-item__a p { font-size: 0.875rem; font-weight: 300; color: var(--text-secondary); line-height: 1.75; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -10rem; left: -8rem;
  width: 22rem; height: 22rem;
  background: var(--c-orange);
  border-radius: 50%;
  opacity: 0.10;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -8rem; right: -6rem;
  width: 18rem; height: 18rem;
  background: var(--c-blue);
  border-radius: 50%;
  opacity: 0.18;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.875rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.cta-section h2 em { font-style: italic; color: var(--c-orange-soft); }

.cta-section p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-white-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-section__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 4rem 0 2.5rem;
  position: relative;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250, 239, 216, 0.1);
}

.footer__getintouch {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-white);
}

.footer__contact {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  background: var(--c-orange);
  color: var(--text-white);
  border: none;
  transition: background 0.25s;
}

.footer__contact:hover { background: var(--c-orange-hover); }

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

.footer__copy { font-size: 0.8125rem; font-weight: 400; color: var(--text-white-muted); }

.footer__links { display: flex; gap: 1.75rem; }

.footer__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-white-muted);
  transition: color 0.25s;
}

.footer__links a:hover { color: var(--c-orange-soft); }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(30, 37, 48, 0.5);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay--active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  padding: 2.5rem 2.25rem;
  max-width: 460px;
  width: 90%;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
  border-top: 4px solid var(--c-orange);
}

.modal-overlay--active .modal { transform: translateY(0); }

.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.25rem; cursor: pointer;
  color: var(--text-light);
  transition: color 0.25s;
}

.modal__close:hover { color: var(--c-orange); }

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.modal__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-orange);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.modal__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.modal__features { list-style: none; margin-bottom: 1.75rem; }

.modal__features li {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}

.modal__features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--c-olive);
  font-weight: 700;
}

.modal__buy { width: 100%; text-align: center; }

.modal__secure {
  font-size: 0.6875rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.875rem;
  letter-spacing: 0.06em;
}

/* ============================================
   COMPARE PAGE — keep existing functional bits compatible
   ============================================ */
.page-header {
  padding: 9rem 0 5rem;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      #FFD9B8 0%,
      #FFE8C9 35%,
      #FAEFD8 90%,
      #FAEFD8 100%
    );
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -8rem; right: -8rem;
  width: 32rem; height: 32rem;
  background: radial-gradient(circle, rgba(255, 200, 150, 0.5) 0%, rgba(255, 200, 150, 0) 70%);
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header .label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1rem;
}

.page-header .label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--c-orange);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.15;
}

.page-header p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.compare-section { padding: 5rem 0; }
.compare-section--alt { background: var(--bg-warm); }

.compare-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.compare-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.875rem;
  color: var(--text);
}

.compare-section__header p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

.compare-table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.8125rem;
}

.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-card);
}

.compare-table thead th {
  background: var(--bg-warm);
  border-bottom: 2px solid var(--c-orange);
  font-weight: 500;
  vertical-align: top;
}

.th-product {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.th-price {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-orange);
}

.compare-table .check { color: var(--c-olive); font-weight: 700; }
.compare-table .dash { color: var(--text-light); }

.bundles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.bundle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
}

.bundle-card:hover { border-color: var(--c-orange); }

.bundle-card--featured { border: 2px solid var(--c-orange); }

.bundle-card--featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: var(--c-orange);
  color: var(--text-white);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.bundle-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.bundle-card__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--c-orange);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.bundle-card__savings {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 1.5rem;
}

.bundle-card__divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }

.bundle-card__includes {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.bundle-card__items { list-style: none; margin-bottom: 1.75rem; }

.bundle-card__items li {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
}

.bundle-card__items li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 14px; height: 1.5px;
  background: var(--c-orange);
}

.bundle-card__items li.excluded { color: var(--text-light); text-decoration: line-through; }
.bundle-card__items li.excluded::before { background: var(--text-light); }

.bundle-card__cta { width: 100%; text-align: center; margin-bottom: 1rem; }

.bundle-card__note {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-in--visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__cards { display: none; }
  .products__row { grid-template-columns: 1fr 1fr; }
  .products__row--two { grid-template-columns: 1fr; max-width: 440px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .coach-grid { grid-template-columns: 1fr; }
  .bundles__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero { padding: 9rem 0 4rem; }
  .hero::before { width: 18rem; height: 18rem; right: -8rem; }
  .hero::after { display: none; }
  .hero__stats { gap: 2rem; }
  .products__row { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 0; }
  .nav__links { display: none; }
  .nav__mobile { display: block; }
  .nav__links--open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border);
  }
  .footer__top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__getintouch { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .container { padding: 0 1.5rem; }
}
