/* =========================
   SECTION STATS (COMPACT)
========================= */

.stats-section {
  padding: 80px 0;
  background: var(--green-dark);
  color: white;
}

.stats-container {
  width: 92%;
  max-width: 1000px;
  margin: auto;
}

.stats-header {
  text-align: center;
  margin-bottom: 50px;
}

.stats-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

/* GRID */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

/* CHIFFRE */

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

/* LABEL */

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-light);
}

/* ICONES */
.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px auto;

  border-radius: 12px;
  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: white;

  transition: 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
}


/* RESPONSIVE */

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
