.stats-section {
    background-color: #f8f9fa;
    padding: 0.3125rem 0; /* ~5px 0 */
    border-bottom: 0.125rem solid rgba(3, 169, 244, 0.1); /* ~2px, Linea di transizione verso il footer */
}

.stats-box {
    transition: transform 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-0.5rem); /* ~ -8px */
}

/* Icone del colore del tuo Brand */
.stats-icon-wrapper i {
    font-size: 2.5rem;
    margin-bottom: 0.9375rem; /* ~15px */
    color: var(--bs-blue);
}

/* Numeri del colore del tuo Brand */
.stats-count {
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: rgb(var(--itw-primary-rgb));
}

/* Testo grigio scuro per leggibilità sul chiaro */
.stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #495057;
    margin-top: 0.3125rem; /* ~5px */
}