/* ==============================
   🟢 STATS — CLEAN + NO CLS
============================== */

.stats-block {
    padding: 60px 0;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1 1 200px;
    color: #8DAC99;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: #8DAC99;
}

.stat-label {
    font-size: 30px;
    margin-top: 8px;
    display: block;
    color: #8DAC99;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 42px;
    }
    .stat-label {
        font-size: 22px;
    }
}
