/* Section commune */
.stats-section {
  padding: 64px 24px;
  margin: 0 auto;
  max-width: 1200px;
}

.stats-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

/* Style 1 : Cartes chiffres clés */
.stats-style-cards .stat-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
    flex: 1 1 220px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .stat-value {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .stat-label {
    margin-bottom: 0;
    margin-top: 0.5rem;
  }

.stats-style-cards .stat-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  min-width: 220px;
  text-align: center;
  flex: 1 1 220px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-style-cards .stat-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
}
.stat-label {
  font-size: 1.1rem;
  color: #444;
}

/* Style 2 : Barres de progression */
.stats-style-bars .stats-bars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.stat-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-bar-label {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}
.stat-bar {
  background: #e5e7eb;
  border-radius: 8px;
  height: 16px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.stat-bar-fill {
  height: 16px;
  border-radius: 8px;
  transition: width 0.7s cubic-bezier(.4,2,.6,1);
}
.stat-bar-value {
  font-size: 1rem;
  color: #2563eb;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Style 3 : Cercles */
.stats-style-circles .stats-circles {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.stat-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 0.5rem;
}
.stat-circle-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.stat-circle-label {
  font-size: 1.1rem;
  color: #444;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-style-cards .stats-cards,
  .stats-style-circles .stats-circles {
    gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .stats-section {
    padding: 40px 8px;
  }
  .stats-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  .stats-style-cards .stats-cards,
  .stats-style-circles .stats-circles {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    min-width: 0;
    width: 100%;
    padding: 1.5rem 1rem;
  }
  .stat-circle {
    width: 80px;
    height: 80px;
  }
  .stat-circle-value {
    font-size: 1.2rem;
  }
} 