/* =========================
   HERO — Minimal, impactful
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 720px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero-slogan {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

/* =========================
   FEATURES — Clean grid
========================= */
.features {
  padding: 100px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-section);
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 64px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.feature-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-gold);
  transition: color var(--transition);
}

.learn-more:hover {
  color: var(--accent-gold-light);
}

/* =========================
   HOW IT WORKS
========================= */
.how {
  padding: 120px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-section);
}

.how .section-title {
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.step {
  padding: 32px 28px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================
   STATS — Refined
========================= */
.stats {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-section);
  border-bottom: 1px solid var(--border-section);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat {
  padding: 40px 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
  padding: 120px 0;
  background: var(--bg-base);
  text-align: center;
  border-top: 1px solid var(--border-section);
}

.final-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.final-cta .hero-cta {
  justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .trust {
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 32px 24px;
  }

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

  .step {
    padding: 28px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat {
    padding: 32px 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-slogan {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .features,
  .how,
  .stats {
    padding: 80px 0;
  }

  .feature-title {
    font-size: 22px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 44px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .final-cta .hero-cta {
    flex-direction: column;
  }

  .final-cta .hero-cta .btn {
    width: 100%;
  }
}
