/* ============================================
   STATS COUNTER SECTION
   Animated numbers with PureCounter
   ============================================ */

.stats-section {
    background: var(--sn-gradient-primary);
    padding: var(--section-padding-sm) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
    min-width: 160px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-counter {
    font-size: var(--h1-size);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-suffix {
    font-size: var(--h3-size);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.stat-label {
    font-size: var(--small-size);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 767px) {
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        gap: 32px;
    }

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

    .stat-suffix {
        font-size: 24px;
    }

    .stat-block {
        min-width: 120px;
    }
}
