/* Extrait automatiquement de main.css lignes 421-482 — BLOC CHIFFRES CLÉS (section 2) */
/* =============================================
   BLOC CHIFFRES CLÉS (section 2)
   ============================================= */
.hp-stats {
  background: var(--marine);
  padding: 5rem 0;
}
.hp-stats__header {
  margin-bottom: 3.5rem;
}
.hp-stats__eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: .75rem;
}
.hp-stats__title {
  font-family: var(--font-titre);
  font-size: clamp(1.6rem, 3.5vw, 2.8125rem);
  font-weight: 400;
  color: var(--blanc);
  margin: 0;
  line-height: 1.2;
}
.hp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.hp-stats__item {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hp-stats__val {
  font-family: var(--font-titre);
  font-size: clamp(2.6rem, 4vw, 4rem);
  color: var(--blanc);
  line-height: 1;
  font-weight: 400;
}
.hp-stats__sub {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  color: var(--blanc);
  line-height: 1.2;
}
.hp-stats__label {
  font-family: var(--font-corps);
  font-size: .85rem;
  color: var(--blanc);
  line-height: 1.5;
  margin-top: .4rem;
}
@media (max-width: 900px) {
  .hp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
}
@media (max-width: 480px) {
  .hp-stats { padding: 3.5rem 0; }
  .hp-stats__grid { grid-template-columns: 1fr; }
}

