:root {
  --bg: #faf8f3;
  --bg-alt: #f2efe8;
  --fg: #0f1f3d;
  --fg-muted: #4a5568;
  --accent: #be4a2f;
  --accent-dark: #9c3a22;
  --navy: #0f1f3d;
  --white: #ffffff;
  --border: #e2ddd5;
}

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

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

/* ─── NAV ─── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: baseline; gap: 10px; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.brand-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links { display: flex; gap: 36px; }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  padding: 96px 64px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--fg); }

/* Hero aside */
.hero-aside { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}

.card-stat {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.card-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ─── PROOF ─── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 28px 64px;
}

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.proof-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-item {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: -0.3px;
  opacity: 0.6;
}

/* ─── SECTION SHARED ─── */
.section-header { margin-bottom: 56px; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.2;
}

/* ─── HOW ─── */
.how {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step { position: relative; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── FEATURES ─── */
.features {
  background: var(--navy);
  padding: 96px 64px;
}

.features .section-tag { color: #c8926e; }

.features .section-title { color: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.feature { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }

.feature-icon {
  color: #c8926e;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── OBJECTIONS / PRICING ─── */
.objections {
  padding: 96px 64px;
  background: var(--bg-alt);
}

.objections-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.objections-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.objections-right { display: flex; flex-direction: column; gap: 20px; }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.pricing-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.pricing-note {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* ─── VISION ─── */
.vision {
  background: var(--bg);
  padding: 96px 64px;
  text-align: center;
}

.vision-inner { max-width: 800px; margin: 0 auto; }

.vision-quote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.vision-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  padding: 40px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .brand-name { color: var(--white); }

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 2px;
}

.footer-links { display: flex; gap: 28px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .navbar { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 48px;
    gap: 40px;
  }
  .hero-headline { font-size: 38px; }
  .hero-aside { padding-top: 0; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .objections-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof { padding: 24px; }
  .proof-logos { gap: 24px; }
  .how, .features, .objections, .vision { padding: 64px 24px; }
  .section-title { font-size: 30px; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .vision-quote { font-size: 20px; }
  .pricing-price { font-size: 28px; }
}