/* ================================
   STILE SEZIONE STATISTICHE
=================================== */
.statistiche {
  background-color: #faf7f3;
  padding: 4rem 0;
  margin-top: 4rem;
}

/* Contenitore principale: due colonne flex */
.stat-final {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  flex-direction: row;
}

/* Colonna foto */
.stat-photo {
  flex: 1 1 40%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  order: 1;
}

.stat-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* Colonna testo + contatori */
.stat-numbers {
  flex: 1 1 55%;
  color: #04211A;
  order: 2;
}

.stat-numbers h2 {
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: center;
}

/* Lista contatori */
.counters {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
}

.counters li {
  flex: 1 1 30%;
  background: #c2380c;
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 15px rgba(233, 78, 26, 0.4);
  transition: transform 0.2s ease;
}

.counters li:hover {
  transform: translateY(-5px);
}

.counters strong {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.counters span {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .stat-final {
    flex-direction: column;
    margin-top: 4rem;
  }

  .stat-photo,
  .stat-numbers {
    flex: 1 1 100%;
    max-width: 100%;
    order: unset;
  }

  .counters {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 320px;
    padding: 0;
  }

  .counters li {
    width: 70%;
    max-width: 260px;
    margin-bottom: 1.2rem;
  }
}