/* ====== STATS SECTION MODERN ====== */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(230, 86, 22, 0.2);
    border-bottom: 1px solid rgba(230, 86, 22, 0.2);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

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

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

.stat-number-large {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-heading);
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    display: inline-block;
    margin-left: 0.25rem;
}

.stat-label-modern {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-top: 1rem;
    font-weight: 600;
}

/* Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: countUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Hover Effect */
.stat-card:hover .stat-number-large {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stat-card::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number-large {
        font-size: 3.5rem;
    }

    .stat-plus {
        font-size: 2.5rem;
    }

    .stat-label-modern {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}