:root {
  --bg: #FAFAF8;
  --surface: #F0EDE6;
  --fg: #1C1C1E;
  --fg-muted: #6B6B6B;
  --accent: #E8A838;
  --accent-dark: #C48A1A;
  --border: #E2DDD6;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, 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;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 40px 80px;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, #F5EDD8 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* STATS */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat {
  padding: 0 32px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* SECTION TITLE */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--fg);
  margin-bottom: 56px;
  line-height: 1.2;
}

/* HOW */
.how {
  padding: 100px 40px;
  background: var(--bg);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* NICHES */
.niches {
  padding: 100px 40px;
  background: var(--fg);
}
.niches .section-title {
  color: #FAFAF8;
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #2E2E30;
  border: 1px solid #2E2E30;
}
.niche-card {
  background: var(--fg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.niche-card:hover {
  background: #252527;
}
.niche-icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.niche-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 12px;
}
.niche-card p {
  font-size: 0.875rem;
  color: #A8A8A6;
  line-height: 1.65;
}

/* PRICING */
.pricing {
  padding: 100px 40px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  max-width: 540px;
  border: 1px solid var(--border);
  padding: 48px;
}
.pricing-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-setup {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--fg);
}
.pricing-setup-note {
  font-size: 1rem;
  color: var(--fg-muted);
}
.pricing-divider {
  font-size: 1.5rem;
  color: var(--border);
}
.pricing-monthly {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--fg);
}
.pricing-monthly-note {
  font-size: 1rem;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-footnote {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 20px;
}

/* OBJECTIONS / FAQ */
.objections {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.objections-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--fg);
  max-width: 760px;
  margin-bottom: 24px;
}
.closing-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
}

/* FOOTER */
.footer {
  padding: 56px 40px;
  background: var(--fg);
  border-top: 1px solid #2E2E30;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #FAFAF8;
  display: block;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.8rem;
  color: #A8A8A6;
  max-width: 360px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.8rem;
  color: #6B6B6B;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .steps { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .hero { padding: 60px 24px 60px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-amount { flex-wrap: wrap; }
  .nav { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .how, .niches, .pricing, .objections, .closing { padding: 64px 24px; }
}