:root {
  --bg: #F8F6F1;
  --fg: #1C2B1E;
  --fg-mid: #3A4D3C;
  --fg-light: #6B7D6A;
  --accent: #7B9E87;
  --accent-dark: #4E6E57;
  --accent-warm: #C4845A;
  --surface: #EDEAE3;
  --surface-2: #E2DED5;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--accent-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--fg); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--surface-2);
  transition: background 0.2s, transform 0.1s;
}
.btn-secondary:hover { background: var(--surface); }
.btn-secondary:active { transform: scale(0.98); }

/* NAV */
.nav { padding: 1.5rem 2rem; border-bottom: 1px solid var(--surface); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--fg); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--fg-light); letter-spacing: 0.04em; text-transform: uppercase; }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
  font-weight: 300;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1rem;
  color: var(--fg-mid);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-image {
  width: 100%;
  max-width: 460px;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(28,43,30,0.10);
}

/* SHARED SECTION STYLES */
.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.section-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--fg);
  margin-bottom: 1.2rem;
  font-weight: 300;
  max-width: 620px;
}
.section-body {
  font-size: 1rem;
  color: var(--fg-mid);
  max-width: 580px;
  line-height: 1.8;
}

/* PROBLEM */
.problem { padding: 5rem 2rem; background: var(--white); }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem .section-headline { max-width: 540px; }
.problem .section-body { margin-bottom: 1rem; }
.problem .section-body:last-child { margin-bottom: 0; }

/* WHY */
.why { padding: 5rem 2rem; background: var(--surface); }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why .section-body { margin-bottom: 1rem; }
.why .section-body:last-child { margin-bottom: 0; }

/* WHAT IS / NEUORESET */
.whatis { padding: 5rem 2rem; }
.whatis-inner { max-width: 1100px; margin: 0 auto; }
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}
.whatis-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--fg);
}
.whatis-item p { font-size: 0.88rem; color: var(--fg-mid); line-height: 1.6; }
.whatis-icon {
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 0.65rem;
  border-radius: 2px;
}
.whatis-note {
  font-size: 0.95rem;
  color: var(--fg-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 1rem;
}

/* TRACKS */
.tracks { padding: 5rem 2rem; background: var(--surface); }
.tracks-inner { max-width: 1100px; margin: 0 auto; }
.tracks-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.track {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--surface-2);
}
.track:last-child { border-bottom: 1px solid var(--surface-2); }
.track-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.track-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--fg);
}
.track-content p { font-size: 0.9rem; color: var(--fg-mid); line-height: 1.6; }

/* HOW IT WORKS */
.howitworks { padding: 5rem 2rem; }
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.steps { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}
.step-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.step-body p { font-size: 0.9rem; color: var(--fg-mid); line-height: 1.65; }

/* QUIZ SECTION */
.quiz-section { padding: 5rem 2rem; background: var(--fg); color: var(--white); }
.quiz-section-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.quiz-section .section-eyebrow { color: var(--accent); }
.quiz-section .section-headline { color: var(--white); margin: 0 auto 1rem; max-width: 480px; }
.quiz-section .section-body { color: #A8B8A8; margin: 0 auto 3rem; max-width: 500px; }
.quiz-tracks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  text-align: left;
}
.quiz-track {
  font-size: 0.9rem;
  color: #A8B8A8;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
}
.quiz-track strong { color: var(--white); }

/* PROGRAM */
.program { padding: 5rem 2rem; background: var(--white); }
.program-inner { max-width: 1100px; margin: 0 auto; }
.program-features { display: flex; flex-direction: column; gap: 1.25rem; margin: 2.5rem 0 3rem; }
.program-feature {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.feature-check {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.program-feature div > strong { display: block; font-size: 0.95rem; color: var(--fg); margin-bottom: 0.15rem; }
.program-feature div > span { font-size: 0.85rem; color: var(--fg-light); }
.program-price { margin-bottom: 1.75rem; display: flex; align-items: baseline; gap: 1.25rem; flex-wrap: wrap; }
.price-amount { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 600; color: var(--fg); }
.price-note { font-size: 0.85rem; color: var(--fg-light); line-height: 1.5; }
.program-upsell { font-size: 0.82rem; color: var(--fg-light); margin-top: 1rem; }

/* WHO IS IT */
.whoisit { padding: 5rem 2rem; background: var(--surface); }
.whoisit-inner { max-width: 1100px; margin: 0 auto; }
.whoisit-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.whoisit-item {
  font-size: 0.95rem;
  color: var(--fg-mid);
  padding: 0.75rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.whoisit-not {
  background: rgba(28,43,30,0.04);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.whoisit-not p { font-size: 0.9rem; color: var(--fg-mid); line-height: 1.65; }
.whoisit-disclaimer { font-size: 0.78rem; color: var(--fg-light); font-style: italic; margin-top: 1rem; }

/* FAQ */
.faq { padding: 5rem 2rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--surface-2); }
.faq-item:first-child { border-top: 1px solid var(--surface-2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg);
  gap: 1rem;
}
.faq-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { font-size: 0.9rem; color: var(--fg-mid); line-height: 1.7; padding-bottom: 1.25rem; }

/* CLOSING */
.closing { background: var(--fg); padding: 5rem 2rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1rem;
  color: #8FAF8F;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.closing-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--surface); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { margin-bottom: 1rem; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; color: var(--fg); display: block; margin-bottom: 0.4rem; }
.footer-desc { font-size: 0.85rem; color: var(--fg-light); max-width: 360px; }
.footer-note { font-size: 0.75rem; color: var(--fg-light); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.75rem; color: var(--fg-light); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2rem; }
  .hero-image { max-width: 100%; height: 240px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .whatis-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .quiz-tracks { max-width: 100%; }
  .program-feature { grid-template-columns: 24px 1fr; gap: 1rem; }
  .closing-actions { flex-direction: column; align-items: center; }
  .nav { padding: 1rem 1.5rem; }
  .problem, .why, .whatis, .howitworks, .quiz-section, .program, .whoisit, .faq, .closing { padding: 3.5rem 1.5rem; }
  .tracks { padding: 3.5rem 1.5rem; }
}