/* Stats Section — the four "why it works" numbers under the hero */
.stats-section {
  background: #0b0b0d;
  padding: 0 40px 64px;
}

.stats-container {
  max-width: 1307px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-card {
  flex: 1 1 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(
    180deg,
    rgba(127, 127, 152, 0.2) 0%,
    rgba(255, 255, 255, 0.02) 76.44%
  );
  border-radius: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    180deg,
    rgba(127, 127, 152, 0.3) 0%,
    rgba(255, 255, 255, 0.04) 76.44%
  );
}

.stat-card-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 58px;
  color: #3a7cff;
}

.stat-card-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .stats-section {
    padding: 0 20px 56px;
  }

  .stats-container {
    gap: 16px;
  }

  .stat-card {
    flex: 1 1 45%;
  }

  .stat-card-number {
    font-size: 40px;
    line-height: 48px;
  }

  .stat-card-text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 0 16px 48px;
  }

  .stat-card {
    flex: 1 1 100%;
  }
}
