.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 24px;
  margin-bottom: 10px;
}

.main-hero-card,
.side-hero-card {
  padding: 30px;
}

.main-hero-card h2,
.side-hero-card h2,
.feature-card h3,
.review-card h3,
.stat-card h3 {
  color: #ffffff;
}

.main-hero-card h2,
.side-hero-card h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.15;
}

.main-hero-card p,
.side-hero-card p,
.feature-card p,
.review-card p,
.stat-card p {
  color: var(--muted);
  line-height: 1.7;
}

.side-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.small-badge,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: max-content;
}

.small-badge {
  margin-bottom: 18px;
}

.section {
  margin-top: 34px;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section-title p {
  color: var(--muted);
  line-height: 1.7;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-primary,
.btn-secondary,
.card-btn {
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: white;
  border: 1px solid var(--border);
}

.card-btn {
  margin-top: 24px;
  width: fit-content;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.feature-card h3,
.review-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.review-card span {
  display: block;
  margin-top: 14px;
  color: #d9d9d9;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .main-hero-card h2,
  .side-hero-card h2 {
    font-size: 1.6rem;
  }
}