:root {
  --bg: #FAFAF5;
  --fg: #1a1a18;
  --muted: #6b6b65;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --cream: #F5F0E8;
  --border: #e2ddd5;
}

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

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

h1, h2, h3, h4, .hero-label, .stat-number, .nav-logo, .tag {
  font-family: 'Sora', sans-serif;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

/* Quote Card */
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
}
.quote-card-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.quote-key {
  font-size: 14px;
  color: var(--muted);
}
.quote-val {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.quote-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.quote-estimate {
  border: none;
}
.quote-price {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
}
.quote-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.quote-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

/* STATS */
.stats {
  background: var(--green);
  padding: 64px 48px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-block {
  padding: 0 40px;
}
.stat-block:first-child {
  padding-left: 0;
}
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* PROCESS */
.process {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  max-width: 600px;
  margin-bottom: 72px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  border-top: 2px solid var(--green);
  padding-top: 24px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* NICHE */
.niche {
  background: var(--cream);
  padding: 96px 48px;
}
.niche-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.niche-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.niche-headline {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.niche-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tag {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: #d8f3dc;
  padding: 6px 14px;
  border-radius: 20px;
}
.niche-expand {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

/* Persona Card */
.persona-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.persona-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  margin-bottom: 12px;
}
.persona-info {
  margin-bottom: 16px;
}
.persona-name {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.persona-context {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.persona-quote {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.6;
  font-style: italic;
  padding: 12px;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 16px;
}
.persona-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.persona-signal span {
  font-size: 12px;
  color: var(--muted);
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 780px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 48px;
}
.closing-statement {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.6);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-meta {
  text-align: right;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .niche-inner { grid-template-columns: 1fr; }
  .niche-visual { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}
@media (max-width: 640px) {
  .nav, .hero, .stats, .process, .niche, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .process-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 36px; }
}