:root {
  --bg: #faf8f5;
  --bg-warm: #f3efe8;
  --bg-dark: #1a1612;
  --fg: #1a1612;
  --fg-muted: #6b5e50;
  --accent: #d4622b;
  --accent-light: #f0a06c;
  --accent-glow: rgba(212, 98, 43, 0.12);
  --card-bg: #ffffff;
  --border: #e5ddd3;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 14px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 60px;
  max-width: 840px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: var(--bg-dark);
  color: #faf8f5;
  padding: 100px 32px;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

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

.step-icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #faf8f5;
}

.step p {
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.6;
}

/* ---- WHY ---- */
.why {
  padding: 100px 32px;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.why-intro {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-style: italic;
}

.why-text p:last-child {
  font-weight: 500;
  color: var(--fg);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.why-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 32px;
  background: var(--bg-warm);
}

.pricing h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 8px;
}

.pricing-sub {
  text-align: center;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px var(--accent-glow);
  position: relative;
}

.pricing-tier {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
  color: var(--accent);
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--fg);
  margin-bottom: 24px;
}

.pricing-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
}

.pricing-card.featured li::before {
  background: var(--accent);
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 32px;
  background: var(--bg);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing p {
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(250, 248, 245, 0.5);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #faf8f5;
}

.footer-details {
  text-align: right;
  font-size: 0.85rem;
}

.footer-details p {
  margin-bottom: 4px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 60px 24px 40px;
  }

  .hero-stat-row {
    gap: 32px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-details {
    text-align: center;
  }

  .how-it-works,
  .why,
  .pricing,
  .closing {
    padding: 72px 24px;
  }
}
/* ---- CTA BUTTONS (landing page) ---- */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-cta:hover { opacity: 0.88; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

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

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

/* Pricing card CTAs */
.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.pricing-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-cta-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pricing-cta-accent:hover {
  opacity: 0.88;
  color: #fff;
}
