/* ================================================
   HEAL YOURSELF WITH EFT — Main Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700;900&display=swap');

/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
  --navy-900: #071524;
  --navy-800: #0d1e33;
  --navy-700: #142845;
  --navy-600: #1a3a5c;
  --navy-500: #244f7a;
  --navy-400: #2e6499;
  --blue-300: #4d89c8;
  --blue-200: #78aad8;
  --blue-100: #a8cce8;
  --blue-50:  #d4eaf7;
  --blue-25:  #eaf4fb;

  --warm-gold:   #c8852a;
  --warm-amber:  #e8a83a;
  --warm-light:  #fdf6e3;
  --warm-coral:  #d96a44;

  --cream:      #faf8f5;
  --cream-dark: #f0ebe3;
  --white:      #ffffff;

  --text-dark:  #0d1e33;
  --text-body:  #2c3e50;
  --text-muted: #567080;
  --text-light: #8aa0b0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad:    80px;
  --container-max:  1140px;
  --container-pad:  24px;

  --transition:      0.3s ease;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --shadow-blue: 0 4px 20px rgba(26,58,92,0.28);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-300); }

ul { list-style: none; }

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.22;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

p { margin-bottom: 1em; font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }

/* ================================================
   LAYOUT
   ================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad) 0; }
.section--cream     { background: var(--cream); }
.section--blue-pale { background: var(--blue-25); }
.section--warm      { background: var(--warm-light); }
.section--navy      { background: var(--navy-700); }

.section--navy h2,
.section--navy h3 { color: var(--white); }

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.75rem;
}

.section--navy .section__label { color: var(--blue-100); }

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.section--navy .section__subtitle { color: var(--blue-100); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.btn--primary {
  background: var(--warm-gold);
  color: var(--white);
  border-color: var(--warm-gold);
  box-shadow: 0 4px 16px rgba(200,133,42,0.38);
}

.btn--primary:hover {
  background: var(--warm-amber);
  border-color: var(--warm-amber);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200,133,42,0.48);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy-700);
  border-color: var(--white);
}

.btn--lg {
  padding: 18px 52px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.btn--full { width: 100%; display: block; text-align: center; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-800);
  padding: 16px 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo__main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.site-logo__sub {
  font-size: 0.68rem;
  color: var(--blue-100);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav__link {
  color: var(--blue-100);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.header-nav__link:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 780px) {
  .hamburger { display: flex; }
  .header-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .header-nav.open { display: flex; }
  .header-nav__link { font-size: 1rem; }
  .header-nav .btn { width: 100%; text-align: center; }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-500) 100%);
  padding-top: 90px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(77,137,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(200,133,42,0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77,137,200,0.18);
  pointer-events: none;
}
.hero__circle--1 { width: 640px; height: 640px; top: -120px; right: -180px; }
.hero__circle--2 { width: 400px; height: 400px; bottom: -80px; left: -120px; border-color: rgba(200,133,42,0.12); }

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

.hero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0 56px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,137,200,0.18);
  border: 1px solid rgba(77,137,200,0.4);
  color: var(--blue-100);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--warm-amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero__title em { font-style: italic; color: var(--blue-200); }

.hero__subtitle {
  color: var(--blue-100);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.hero__program {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--warm-amber);
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 3rem;
}

@media (min-width: 540px) {
  .hero__cta { flex-direction: row; justify-content: center; }
}

.hero__note { font-size: 0.82rem; color: var(--blue-100); opacity: 0.75; }

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.13);
  padding-top: 2rem;
}

.hero__stat { text-align: center; }

.hero__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-amber);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--blue-100);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ================================================
   IS THIS YOU? (PROBLEM SECTION)
   ================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 14px;
  margin-top: 2.5rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--blue-300);
}

.problem-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.problem-item p { margin: 0; font-size: 0.97rem; }

/* ================================================
   VIDEO SECTION
   ================================================ */
.video-section { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); }

.video-section .section__subtitle { color: var(--blue-100); }

.video-wrap {
  max-width: 720px;
  margin: 2.5rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  position: relative;
  background: var(--navy-900);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================
   WHY THIS IS DIFFERENT
   ================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 2.5rem;
}

.diff-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--blue-300);
  transition: transform var(--transition), box-shadow var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diff-card__icon { font-size: 2.2rem; margin-bottom: 12px; }

.diff-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy-700);
  margin-bottom: 6px;
}

.diff-card__body { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* ================================================
   4-WEEK CURRICULUM
   ================================================ */
.curriculum-grid {
  display: grid;
  gap: 20px;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
}

.week-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }

.week-card__head {
  background: var(--navy-700);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.week-card__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--warm-gold);
  color: var(--white);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.week-card__meta { display: flex; flex-direction: column; gap: 2px; }

.week-card__week {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-100);
}

.week-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}

.week-card__body {
  background: var(--white);
  padding: 20px 24px;
}

.week-card__body p { font-size: 0.93rem; color: var(--text-muted); margin: 0; }

/* ================================================
   WHAT'S INCLUDED
   ================================================ */
.included-grid {
  display: grid;
  gap: 20px;
  margin-top: 2.5rem;
}

@media (min-width: 560px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .included-grid { grid-template-columns: repeat(4, 1fr); } }

.included-item {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--blue-300);
}

.included-item__icon { font-size: 2.5rem; margin-bottom: 12px; }

.included-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy-700);
  margin-bottom: 8px;
}

.included-item__body { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Bonuses */
.bonus-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin: 2.5rem 0 1.25rem;
}

.bonus-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 600px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--warm-light);
  border: 1px solid rgba(200,133,42,0.22);
  border-radius: 10px;
  padding: 16px 18px;
}

.bonus-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.bonus-item__text { font-size: 0.95rem; font-weight: 600; color: var(--navy-700); margin: 0; }

/* ================================================
   PRICING
   ================================================ */
.pricing-wrap {
  max-width: 620px;
  margin: 2.5rem auto 0;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--blue-50);
}

.pricing-card__head {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  padding: 32px;
  text-align: center;
}

.pricing-card__head h3 { color: var(--white); margin-bottom: 4px; }
.pricing-card__head p { color: var(--blue-100); font-size: 0.9rem; margin: 0; }

.pricing-price {
  padding: 28px 32px;
  text-align: center;
  border-bottom: 1px solid var(--blue-25);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.7rem;
  display: inline-block;
}

.price-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 10px; }

.price-plan {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--blue-50);
}

.price-plan strong { color: var(--navy-600); }

.pricing-includes {
  padding: 24px 32px;
}

.pricing-includes__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.check-list { display: flex; flex-direction: column; gap: 10px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  color: var(--blue-300);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta { padding: 0 32px 28px; }

.doors-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--warm-coral);
  font-weight: 700;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(217,106,68,0.07);
  border-radius: 6px;
}

/* ================================================
   INSTRUCTOR BIO
   ================================================ */
.bio-section {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-600) 100%);
}

.bio-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .bio-inner { grid-template-columns: 1fr 1.7fr; }
}

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

.bio-photo__img {
  width: 280px;
  height: 340px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.18);
}

.bio-photo__placeholder {
  width: 280px;
  height: 340px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy-500), var(--blue-300));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow-lg);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
}

.bio-photo__placeholder span { font-size: 4rem; }

.bio-content .section__label { color: var(--blue-200); }
.bio-content h2 { color: var(--white); margin-bottom: 1rem; }
.bio-content p { color: var(--blue-100); }

.bio-credentials { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 10px; }

.bio-cred {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blue-100);
  font-size: 0.95rem;
}

.bio-cred__icon { flex-shrink: 0; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  gap: 24px;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--blue-300);
}

.testimonial-card__stars {
  color: var(--warm-amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card__quote {
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}

.testimonial-card__author { font-weight: 700; color: var(--navy-700); font-size: 0.92rem; }
.testimonial-card__location { font-size: 0.82rem; color: var(--text-muted); }

/* ================================================
   ELIGIBILITY (WHO IS IT FOR)
   ================================================ */
.eligibility-grid {
  display: grid;
  gap: 28px;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .eligibility-grid { grid-template-columns: repeat(2, 1fr); }
}

.elig-card { border-radius: 12px; padding: 28px; }
.elig-card--yes { background: rgba(77,137,200,0.07); border: 1.5px solid rgba(77,137,200,0.28); }
.elig-card--no  { background: rgba(217,106,68,0.06);  border: 1.5px solid rgba(217,106,68,0.22); }

.elig-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.elig-list { display: flex; flex-direction: column; gap: 11px; }

.elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.elig-list--yes li::before { content: '✓'; color: var(--blue-300); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.elig-list--no  li::before { content: '✗'; color: var(--warm-coral); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ================================================
   SCHEDULE
   ================================================ */
.schedule-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.schedule-table th,
.schedule-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.92rem;
}

.schedule-table thead tr { background: var(--navy-700); color: var(--white); }
.schedule-table thead th { font-weight: 700; letter-spacing: 0.04em; }
.schedule-table tbody tr:nth-child(odd)  { background: var(--white); }
.schedule-table tbody tr:nth-child(even) { background: var(--blue-25); }
.schedule-table td:first-child { font-weight: 700; color: var(--navy-600); }

/* ================================================
   GUARANTEE
   ================================================ */
.guarantee-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--blue-50);
}

.guarantee-badge {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--blue-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-blue);
}

.guarantee-box h3 { color: var(--navy-700); margin-bottom: 0.75rem; }
.guarantee-box p  { color: var(--text-muted); font-size: 1rem; }

/* ================================================
   WAITLIST FORM
   ================================================ */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-50);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input {
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(255,255,255,0.95);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(77,137,200,0.2);
}

.form-group input::placeholder { color: var(--text-light); }

.form-privacy {
  font-size: 0.78rem;
  color: rgba(168,204,232,0.75);
  text-align: center;
  margin-top: 4px;
}

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-600));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta__circle--1 {
  width: 500px; height: 500px;
  border: 1px solid rgba(77,137,200,0.18);
  bottom: -200px; left: -80px;
}

.final-cta__circle--2 {
  width: 380px; height: 380px;
  border: 1px solid rgba(200,133,42,0.14);
  top: -130px; right: -80px;
}

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

.final-cta h2 {
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 0.75rem;
}

.final-cta > .container > p {
  color: var(--blue-100);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--blue-50);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-700);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--blue-25); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-600);
  line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  user-select: none;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--navy-600);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer__inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--blue-100);
  padding: 44px 0 28px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--blue-200);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--blue-100);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.8rem; color: var(--text-light); }

.footer-disclaimer {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ================================================
   QUIZ PAGE
   ================================================ */
.quiz-page-hero {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  padding: 120px 0 56px;
  text-align: center;
}

.quiz-page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.quiz-page-hero p {
  color: var(--blue-100);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.quiz-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.quiz-progress-bar {
  height: 6px;
  background: var(--blue-50);
  border-radius: 100px;
  margin-bottom: 32px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-300), var(--warm-gold));
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-q {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}

.quiz-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 2rem;
}

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border: 1.5px solid var(--blue-100);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  user-select: none;
}

.quiz-opt:hover { border-color: var(--blue-300); background: var(--blue-25); }

.quiz-opt.selected { border-color: var(--navy-600); background: var(--blue-25); }

.quiz-opt__dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.quiz-opt.selected .quiz-opt__dot {
  border-color: var(--navy-600);
  background: var(--navy-600);
}

.quiz-opt.selected .quiz-opt__dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
}

.quiz-opt__label { font-size: 0.97rem; color: var(--text-body); }

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

.quiz-step-count { font-size: 0.85rem; color: var(--text-muted); }

.quiz-btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  cursor: pointer;
  padding: 8px 0;
  transition: color var(--transition);
}
.quiz-btn-back:hover { color: var(--navy-600); }

/* Quiz Result */
.quiz-result { display: none; text-align: center; padding: 32px 0; }
.quiz-result.active { display: block; }

.quiz-result__emoji { font-size: 4rem; margin-bottom: 12px; }

.quiz-result__type {
  display: inline-block;
  background: var(--blue-25);
  color: var(--navy-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.quiz-result h2 { color: var(--navy-700); margin-bottom: 0.75rem; }

.quiz-result__body {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.quiz-result__list {
  text-align: left;
  max-width: 440px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-result__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text-body);
}

.quiz-result__list li::before {
  content: '✓';
  color: var(--blue-300);
  font-weight: 700;
  flex-shrink: 0;
}

.quiz-result__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* ================================================
   THANK YOU PAGE
   ================================================ */
.ty-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.ty-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.ty-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounceIn 0.65s ease both;
}

@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.ty-inner h1 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(2rem, 5vw, 3rem); }
.ty-inner > p { color: var(--blue-100); font-size: 1.05rem; margin-bottom: 2rem; }

.ty-steps {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 2rem;
}

.ty-steps h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }

.ty-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--blue-100);
  font-size: 0.97rem;
  margin-bottom: 14px;
}

.ty-step:last-child { margin-bottom: 0; }

.ty-step__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--warm-gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ty-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ================================================
   RESPONSIVE TWEAKS
   ================================================ */
@media (max-width: 600px) {
  :root { --section-pad: 56px; }

  .guarantee-box { padding: 28px 20px; }

  .pricing-includes,
  .pricing-cta { padding-left: 20px; padding-right: 20px; }

  .pricing-price { padding: 20px; }
  .pricing-card__head { padding: 24px 20px; }

  .bio-photo__placeholder,
  .bio-photo__img { width: 220px; height: 270px; }

  .ty-steps { padding: 20px; }

  .hero__stats { gap: 20px; }
}
