* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #111827;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

section {
  padding: 72px 0;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  text-align: center;
  padding: 100px 0 88px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 14px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 20px;
  color: rgba(255,255,255,0.88);
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #22c55e;
  color: #081018;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
}

.problem,
.solution,
.how-it-works,
.social-proof {
  background: white;
}

.problem h2,
.solution h2,
.what-you-get h2,
.how-it-works h2,
.social-proof h2,
.final-cta h2 {
  font-size: 34px;
  margin-top: 0;
  margin-bottom: 18px;
}

.bullets {
  padding-left: 20px;
}

.what-you-get {
  background: #eef2ff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 0;
  font-size: 22px;
}

.mini {
  margin-top: 20px;
  color: #475569;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.step {
  background: #f8fafc;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.quotes {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.quote {
  background: #f8fafc;
  border-left: 4px solid #22c55e;
  padding: 18px;
  border-radius: 12px;
}

.final-cta {
  background: #0f172a;
  color: white;
  text-align: center;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 18px;
  }

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

  .problem h2,
  .solution h2,
  .what-you-get h2,
  .how-it-works h2,
  .social-proof h2,
  .final-cta h2 {
    font-size: 28px;
  }
}