/* =========================
   SECTION CONSTAT
========================= */

.fact-section {
  padding: 100px 0;
  background: #f2faf5; /* vert très clair */
}

.fact-container {
  width: 92%;
  max-width: 900px;
  margin: auto;
}

/* HEADER */

.fact-header {
  text-align: center;
  margin-bottom: 70px;
}

.fact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dc2626; /* rouge sérieux */
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.fact-badge i {
  font-size: 14px;
}

.fact-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

/* GRID */

.fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* CARDS */

.fact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  background: white;
  padding: 26px 28px;
  border-radius: 16px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);

  transition: 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ICÔNE */

.fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;

  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  font-size: 18px;
}

.fact-card p {
  font-weight: 500;
  color: #222;
  line-height: 1.5;
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .fact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact-header h2 {
    font-size: 3rem;
  }
}
