:root {
  --bg: #faf8f2;
  --surface: #ffffff;
  --surface-tint: #eff5ee;
  --primary: #1e7a4e;
  --primary-deep: #145034;
  --primary-darkest: #0e3b26;
  --accent: #ff8a3d;
  --fresh: #2fa36b;
  --text: #1c2520;
  --muted: #68726b;
  --border: #e6e3d8;
  --fact-bg: #fff4e8;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 18px 48px rgba(28, 37, 32, 0.08);
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.15; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Brand mark */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #145034, #1e7a4e 55%, #2fa36b);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px; }

/* Nav */
header.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 248, 242, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 27px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(30, 122, 78, 0.28); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }

/* Hero */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-tint); color: var(--primary);
  font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 99px; margin-bottom: 20px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fresh); }
.hero h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 700; }
.hero h1 .hl { color: var(--primary); }
.hero p.lead { font-size: 19px; color: var(--muted); margin: 20px 0 28px; max-width: 30em; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted); }
.hero-art {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-art::before {
  content: ""; position: absolute; width: 78%; height: 78%; border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 163, 107, 0.18), transparent 70%);
  filter: blur(8px);
}
.phone-shot {
  position: relative;
  width: 290px; max-width: 80%;
  border-radius: 40px;
  border: 8px solid #14201a;
  box-shadow: 0 28px 64px rgba(28, 37, 32, 0.24);
}

/* Stat band */
.stats { background: var(--primary-deep); color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 38px; }
.stat .lbl { color: #ffffffc0; font-size: 14px; margin-top: 4px; }
.stat .num.accent { color: #ffb27d; }

/* Sections */
section.block { padding: 72px 0; }
.section-head { text-align: center; max-width: 36em; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 12px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step .n { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--primary); font-size: 14px; margin-bottom: 12px; }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.feature .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-tint); display: grid; place-items: center; margin-bottom: 16px; }
.feature .ic svg { width: 22px; height: 22px; color: var(--primary); }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 24px; justify-content: center; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.plan.featured { border-color: var(--primary); box-shadow: var(--shadow); position: relative; }
.plan .tag { position: absolute; top: -12px; right: 24px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 99px; }
.plan h3 { font-size: 20px; }
.plan .price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 40px; margin: 10px 0 4px; }
.plan .price span { font-size: 16px; color: var(--muted); font-weight: 400; font-family: 'Inter'; }
.plan ul { list-style: none; margin: 20px 0 24px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; color: var(--text); font-size: 15px; }
.plan li svg { width: 18px; height: 18px; color: var(--fresh); flex-shrink: 0; margin-top: 3px; }

/* Honesty note */
.honesty { background: var(--fact-bg); border: 1px solid #f3e3cf; border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 18px; align-items: flex-start; }
.honesty .ic { width: 40px; height: 40px; border-radius: 12px; background: #ffe3c8; display: grid; place-items: center; flex-shrink: 0; }
.honesty .ic svg { width: 22px; height: 22px; color: var(--accent); }
.honesty h3 { font-size: 17px; margin-bottom: 4px; }
.honesty p { color: var(--muted); font-size: 15px; }

/* CTA */
.cta-final { text-align: center; background: linear-gradient(135deg, #0e3b26, #145034 55%, #1e7a4e); color: #fff; border-radius: var(--radius-lg); padding: 56px 32px; }
.cta-final h2 { font-size: clamp(26px, 3.4vw, 34px); }
.cta-final p { color: #ffffffcc; margin: 12px auto 28px; max-width: 30em; }
.cta-final .btn-primary { background: #fff; color: var(--primary-deep); }

/* Footer */
footer.site { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 24px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 14px; }
.foot-links a:hover { color: var(--text); }
.foot-copy { color: var(--muted); font-size: 13px; }

/* Legal pages */
.legal { padding: 56px 0 24px; max-width: 760px; }
.legal h1 { font-size: 36px; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 32px 0 10px; }
.legal h3 { font-size: 17px; margin: 20px 0 6px; }
.legal p, .legal li { color: #36403a; font-size: 16px; }
.legal ul { margin: 8px 0 8px 22px; }
.legal li { margin: 6px 0; }
.legal a { color: var(--primary); text-decoration: underline; }
.legal .back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; margin-bottom: 24px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
