:root {
  --bg: #f5f4f0;
  --bg-alt: #ffffff;
  --fg: #1c1c1c;
  --fg-muted: #6b6b6b;
  --accent: #E85D04;
  --accent-dark: #c44d03;
  --surface: #ffffff;
  --border: #e0ddd6;
  --font-head: 'Bitter', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

*, *::before, *::after { 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;
}

/* NAV */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  padding: 72px 24px 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}
.hero-stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.hero-stat {
  padding: 16px 0;
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero-stat-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* PROBLEM */
.problem {
  background: var(--fg);
  color: #f5f4f0;
  padding: 80px 24px;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.problem-card {}
.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 93, 4, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 15px;
  color: rgba(245, 244, 240, 0.65);
  line-height: 1.55;
}

/* SERVICES */
.services { padding: 80px 24px; background: var(--bg); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.services-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 600px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(232,93,4,0.08);
  padding: 4px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; }

/* HOW IT WORKS */
.howitworks { padding: 80px 24px; background: var(--bg-alt); }
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.howitworks-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0;
}
.step { padding: 0 16px; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; }
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
}

/* PRICING */
.pricing { padding: 80px 24px; background: var(--bg); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-card-header { margin-bottom: 16px; }
.pricing-plan {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.price-amount {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
}
.price-period { font-size: 15px; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.5; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 24px;
  text-align: center;
}

/* CLOSING */
.closing { background: var(--accent); padding: 96px 24px; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

/* FOOTER */
.footer { background: var(--fg); color: #f5f4f0; padding: 64px 24px 32px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,244,240,0.1);
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}
.footer-desc { font-size: 14px; color: rgba(245,244,240,0.5); max-width: 280px; line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,244,240,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 14px; color: rgba(245,244,240,0.65); padding: 5px 0; }
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  font-size: 13px;
  color: rgba(245,244,240,0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step-connector { width: 1px; height: 40px; margin: 0 auto; background: var(--border); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 56px; }
  .problem, .services, .howitworks, .pricing, .closing { padding: 56px 20px; }
  .nav-tagline { display: none; }
}