:root {
  --navy: #0F1C2E;
  --navy-light: #1A2F47;
  --amber: #E8A838;
  --amber-light: #F5C76A;
  --cream: #FAF7F0;
  --white: #FFFFFF;
  --text-primary: #0F1C2E;
  --text-secondary: #4A5568;
  --text-muted: #718096;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 48px 0;
  overflow: hidden;
}

.hero-inner { max-width: 1100px; margin: 0 auto; }

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
  margin-bottom: 0;
}

.stat {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }

.stat-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TRUSTBAR ── */
.trustbar {
  background: var(--navy-light);
  padding: 0 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trustbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}

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

.features-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(15, 28, 46, 0.08);
  border-radius: 4px;
  padding: 40px 36px;
  box-shadow: 0 2px 12px rgba(15,28,46,0.05);
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(15,28,46,0.10);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.feature-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── PROCESS ── */
.process {
  background: var(--navy);
  padding: 96px 48px;
  color: var(--white);
}

.process-inner { max-width: 1100px; margin: 0 auto; }

.process-header {
  margin-bottom: 64px;
}

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

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  margin: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  flex-shrink: 0;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

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

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--cream);
  padding: 96px 48px;
}

.testimonials-inner { max-width: 1100px; margin: 0 auto; }

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(15,28,46,0.08);
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: 0 2px 8px rgba(15,28,46,0.05);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-attribution {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.testimonials-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── CLOSING ── */
.closing {
  background: var(--navy);
  padding: 96px 48px;
  color: var(--white);
  text-align: center;
}

.closing-inner { max-width: 720px; margin: 0 auto; }

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-light);
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }

  .hero { padding: 56px 24px 0; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 20px 0; }
  .stat:last-child { border-bottom: none; }

  .trustbar { padding: 0 24px; }
  .trustbar-inner { gap: 20px; }

  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }

  .process { padding: 64px 24px; }
  .process-steps { flex-direction: column; }
  .step-arrow { display: none; }

  .testimonials { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .closing { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .stat-value { font-size: 32px; }
  .section-title { font-size: 26px; }
}
