/* ==============================
   STATS SECTION
================================ */
.stats-section {
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 50px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 700;
    color: rgba(17, 24, 39, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .stat-num {
        font-size: 36px;
    }
}
