:root {
  --bg: #F5F0E8;
  --bg-dark: #1B4332;
  --fg: #1A1A1A;
  --fg-light: #4A4A4A;
  --fg-muted: #7A7A7A;
  --accent: #E9A84C;
  --accent-dark: #C8872A;
  --white: #FFFFFF;
  --border: rgba(26,26,26,0.1);
  --radius: 8px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--bg-dark);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  background: rgba(27,67,50,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--bg-dark);
}

/* Section shared */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}

/* Hero */
.hero {
  padding: 80px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: rgba(27,67,50,0.1);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--bg-dark);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-light);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-main {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
}
.price-sub {
  font-size: 15px;
  color: var(--fg-muted);
}

/* Stat block */
.hero-stat-block {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 12px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}
.stat-detail {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.55;
  margin-bottom: 28px;
}
.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 24px;
}
.stat-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}
.stat-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* How it works */
.how-it-works {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.6;
}
.timeline-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 12px 20px;
  background: rgba(27,67,50,0.06);
  border-radius: 8px;
  display: inline-block;
}

/* What you get */
.what-you-get {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.wyg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.wyg-sub {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.65;
  margin-top: 16px;
}
.wyg-list {
  list-style: none;
}
.wyg-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.wyg-item:last-child { border-bottom: none; }
.wyg-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(27,67,50,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  margin-top: 2px;
}
.wyg-item-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.wyg-item-desc {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.55;
}

/* Outcomes */
.outcomes {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-card {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 32px;
}
.outcome-stat {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}
.outcome-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.outcome-desc {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.6;
}

/* Promise */
.promise {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.promise-content {
  max-width: 680px;
}
.promise-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}
.promise-body {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 80px 0;
  background: var(--bg-dark);
  color: var(--white);
}
.closing-content {
  max-width: 680px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  opacity: 0.8;
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-offer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.co-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.co-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
}
.co-label {
  font-size: 16px;
  opacity: 0.7;
}
.co-note {
  font-size: 15px;
  opacity: 0.6;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  opacity: 0.5;
  color: var(--white);
}
.footer-note {
  font-size: 13px;
  opacity: 0.5;
  color: var(--white);
  max-width: 340px;
  text-align: right;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stat-block { display: none; }
  .wyg-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-row { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-note { text-align: center; max-width: 100%; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0; }
  .hero-headline { font-size: 40px; }
  .section-headline { font-size: 30px; }
  .closing-headline { font-size: 36px; }
  .co-amount { font-size: 48px; }
}