:root {
  --bg: #F9F7F4;
  --fg: #1A1A1A;
  --muted: #6B6864;
  --accent: #C4561A;
  --accent-warm: #E8834A;
  --surface: #FFFFFF;
  --border: #E8E4DF;
}

* { 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 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-headline {
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-warm); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg); }

/* Stats */
.stats {
  background: var(--fg);
  color: #fff;
  padding: 40px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  margin: 0 48px;
}

/* Section title */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
}

/* How it works */
.hiw { padding: 80px 40px; }
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.hiw-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.hiw-heading {
  font-size: 20px;
  margin-bottom: 10px;
}
.hiw-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Features */
.features {
  background: var(--surface);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Process */
.process { padding: 80px 40px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.process-lead {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 16px;
  font-weight: 500;
}
.process-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
}
.process-check {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

/* Pricing */
.pricing {
  background: var(--fg);
  color: #fff;
  padding: 80px 40px;
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing .section-title { color: #fff; }
.pricing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.pricing-card.featured {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
}
.pricing-tier {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
}
.pricing-cta:hover { background: var(--accent-warm); }

/* Testimonials */
.testimonials { padding: 80px 40px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.testimonial-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* Closing */
.closing {
  background: #1A1A1A;
  padding: 100px 40px;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* Footer */
.footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hiw-steps,
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-inner {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
    margin: 0;
  }
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 24px 40px; }
  .hiw, .features, .process, .pricing, .testimonials { padding: 60px 24px; }
  .stats { padding: 32px 24px; }
  .closing { padding: 70px 24px; }
  .nav { padding: 16px 24px; }
}