
.stats-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #FFFAE5 0%, #FFF0F0 100%);
  font-family: 'Segoe UI', sans-serif;
}

.stats-title {
  font-size: 42px;
  color: #B11C1C;
  margin-bottom: 10px;
}

.stats-subtitle {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-box {
  background: linear-gradient(135deg, #B11C1C, #FF4D4D);
  color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.stats-description {
  font-size: 17px;
  color: #555;
  max-width: 850px;
  margin: 15px auto 40px;
  line-height: 1.7;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #FF4D4D, #B11C1C);
}

.stat-number {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: linear-gradient(90deg, #FFD700, #FF4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-number.visible {
  opacity: 1;
}

.stat-label {
  font-size: 18px;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stats-title {
    font-size: 34px;
  }
  .stats-subtitle {
    font-size: 16px;
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 16px;
  }
}
