:root {
  --bg: #F8F6F1;
  --surface: #FFFFFF;
  --fg: #0D1F17;
  --fg-muted: #4A5E52;
  --fg-faint: #8BA898;
  --green: #0D3B2E;
  --green-light: #1A5C47;
  --amber: #E8A838;
  --amber-dark: #C4891A;
  --red: #D44030;
  --border: #D8E4DC;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAVBAR */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  background: var(--green);
  color: #fff;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 36px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.stat-label em { font-style: normal; color: rgba(255,255,255,0.45); }

/* WIDGET */
.widget-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.widget-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.widget-dot.green { background: #3DD68C; }
.widget-dot.amber { background: var(--amber); }
.widget-dot.red { background: #FF6B6B; }
.widget-title { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 6px; font-weight: 500; }
.widget-metric { margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.metric-big { font-family: var(--font-display); font-size: 56px; font-weight: 800; color: #fff; display: block; line-height: 1; margin-bottom: 4px; }
.metric-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.widget-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.7); }
.bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.bar { height: 100%; border-radius: 3px; }
.bar.fill-green { background: #3DD68C; }
.bar.fill-amber { background: var(--amber); }
.bar-pct { font-size: 12px; color: rgba(255,255,255,0.5); min-width: 32px; text-align: right; }
.widget-footer { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* SECTIONS */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.section-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; letter-spacing: -1px; line-height: 1.1; color: var(--fg); margin-bottom: 48px; }

/* HOW IT WORKS */
.how-it-works { padding: 80px 0; background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { position: relative; }
.step-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--amber); display: block; margin-bottom: 16px; letter-spacing: 0.05em; }
.step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* SERVICES */
.services { padding: 80px 0; background: var(--bg); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: border-color 0.2s; }
.service-card:hover { border-color: var(--green); }
.service-icon { color: var(--green); margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--fg); }
.service-card > p { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.6; }
.service-card ul { list-style: none; }
.service-card ul li { font-size: 14px; color: var(--fg-muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 8px; }

/* RESULTS */
.results { padding: 80px 0; background: var(--green); color: #fff; }
.results .section-eyebrow { color: var(--amber); }
.results .section-headline { color: #fff; }
.results-body { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 440px; margin-bottom: 40px; line-height: 1.7; }
.results-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.result-stat { margin-bottom: 28px; }
.result-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--amber); display: block; line-height: 1; margin-bottom: 8px; }
.result-label { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.proof-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; margin-bottom: 16px; }
.proof-quote { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.proof-meta { display: flex; flex-direction: column; }
.proof-name { font-size: 14px; font-weight: 600; color: #fff; }
.proof-detail { font-size: 12px; color: rgba(255,255,255,0.45); }

/* PRICING */
.pricing { padding: 80px 0; background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.pricing-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 40px; position: relative; }
.pricing-card.featured { background: var(--green); color: #fff; border-color: var(--green); }
.pricing-badge { position: absolute; top: -12px; left: 32px; background: var(--amber); color: var(--fg); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 800; line-height: 1; }
.pricing-card.featured .price-amount { color: var(--amber); }
.price-period { font-size: 16px; color: var(--fg-muted); }
.pricing-card.featured .price-period { color: rgba(255,255,255,0.6); }
.pricing-tagline { font-size: 14px; color: var(--fg-muted); }
.pricing-card.featured .pricing-tagline { color: rgba(255,255,255,0.65); }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-features li strong { color: var(--green); }
.pricing-card.featured .pricing-features li strong { color: var(--amber); }
.pricing-note { font-size: 12px; color: var(--fg-faint); }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.4); }
.guarantee-strip { background: #FFF8EC; border: 1px solid #F0D890; border-radius: 12px; padding: 20px 28px; text-align: center; }
.guarantee-text { font-size: 14px; color: #7A5C1A; line-height: 1.6; }
.guarantee-text strong { color: #5A3E00; }

/* CLOSING */
.closing { padding: 80px 0; background: var(--bg); }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; color: var(--fg); margin-bottom: 20px; text-align: center; }
.closing-body { font-size: 18px; color: var(--fg-muted); max-width: 620px; margin: 0 auto; line-height: 1.7; text-align: center; }

/* FOOTER */
.footer { padding: 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--green); }
.footer p { font-size: 14px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-faint); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 28px; }
  .steps { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .results-split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .navbar, .hero, .section-inner, .footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .pricing-card { padding: 28px; }
}