/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px 120px 80px;
}

.hero__title {
  font-size: var(--text-hero);
  letter-spacing: -1.5px;
  text-align: center;
  max-width: 900px;
}

.hero__subtitle {
  font-size: var(--text-2xl);
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  color: var(--text-body);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* How It Works */
.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 120px;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.how-it-works .step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Core Features */
.core-features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 100px 120px;
}

.core-feature {
  display: flex;
  align-items: center;
  gap: 48px;
}

.core-feature--reverse {
  flex-direction: row-reverse;
}

.core-feature__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.core-feature__title {
  font-size: var(--text-5xl);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.core-feature__desc {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--text-body);
}

.core-feature__image {
  flex: 1;
}

/* Secondary Features */
.secondary-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 120px;
  background: var(--bg-card-alt);
}

.secondary-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.secondary-features .card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Social Proof */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 120px;
}

.social-proof__stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.social-proof__testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Pricing */
.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 120px;
  background: var(--bg-card-alt);
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.pricing__cards--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px 280px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Final CTA */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 100px 120px;
  background: linear-gradient(180deg, #F5F7FA 0%, #EDF0F7 50%, #F5F7FA 100%);
}

.final-cta__title {
  font-size: var(--text-9xl);
  letter-spacing: -1px;
  text-align: center;
}

.final-cta__subtitle {
  font-size: var(--text-2xl);
  color: var(--text-body);
  text-align: center;
}

.final-cta__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.final-cta__trust {
  font-size: var(--text-base);
  color: var(--text-muted);
}
