/* ===== ЦИФРЫ ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    margin: 20px 0 0;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-yellow-bright);
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-number {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--accent-yellow-bright);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
