/* Section "Pourquoi participer" — styles autonomes (n'utilise pas Tailwind) */

.ix-wave-top {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -2px;
  background: #f9fafb;
}
.ix-wave-top svg { display: block; width: 100%; height: auto; }

.ix-stats-section {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding: 64px 0;
  background: linear-gradient(to right, #000000, #0d1b2a, #1b263b);
}

.ix-stats-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.ix-stats-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 24px;
}
@media (min-width: 768px) { .ix-stats-title { font-size: 3rem; } }

.ix-stats-subtitle {
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.ix-gradient-text {
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.ix-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) { .ix-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ix-stats-grid { grid-template-columns: repeat(5, 1fr); } }

.ix-stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
}
.ix-stat-card:hover { transform: scale(1.04); box-shadow: 0 16px 36px rgba(0,0,0,0.18); }

.ix-stat-card-top {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 16px;
  box-sizing: border-box;
}
.ix-stat-number {
  font-family: var(--ix-serif, Georgia, serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1;
}
.ix-stat-number sup { font-size: 1.25rem; font-weight: 400; }
.ix-stat-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 300;
  color: #4b5563;
  margin-top: 6px;
}

.ix-stat-card-wave { display: block; width: 100%; height: 48px; }
.ix-stat-card-wave svg { display: block; width: 100%; height: 100%; }

.ix-stat-card-bottom {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ix-stat-card-bottom p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}
