/* ============================================
   STATS SECTION - "In Numbers"
   ============================================ */
.stats-section {
    background: var(--primary-dark);
    padding: var(--space-2xl) 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    padding: var(--space-lg);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: var(--font-5xl);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
    display: block;
}

.stat-label {
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .stat-item::after {
        display: none;
    }
}