/* ── Hero ─────────────────────────────────────────────────────────────────── */
.section-hero {
  padding: 7rem 0 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Stats ────────────────────────────────────────────────────────────────── */
.section-stats {
  background: #fff;
  padding: 3rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.stat-item { text-align: center; }
.stat-value-lg {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: .4rem;
}
.stat-label-lg {
  font-size: .9rem;
  color: #9ca3af;
  font-weight: 500;
}

/* ── Features ─────────────────────────────────────────────────────────────── */
.section-features { padding: 5rem 0; }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.section-pricing { padding: 5rem 0; }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.section-testimonials { padding: 5rem 0; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.section-faq {
  padding: 5rem 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.section-cta { padding: 6rem 0; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── Benefits ─────────────────────────────────────────────────────────────── */
.section-benefits { padding: 5rem 0; }

/* ── How it works ─────────────────────────────────────────────────────────── */
.section-how { padding: 5rem 0; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.section-footer {
  background: #111827;
  padding: 3rem 0 1.5rem;
  color: #9ca3af;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.footer-tagline { font-size: .9rem; color: #6b7280; }
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #9ca3af;
  font-size: .9rem;
  transition: color .15s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .section-hero { padding: 4rem 0 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; }
  .section-features,
  .section-pricing,
  .section-testimonials,
  .section-faq,
  .section-how,
  .section-benefits { padding: 3.5rem 0; }
}
