/* ============================================================
   STATS.CSS — Key Stats Counter Section
   ============================================================ */

#stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

#stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(2) {
    border-right: none;
}

@media (max-width: 767px) {
    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .stat-item:nth-child(even) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (min-width: 768px) {
    .stat-item:nth-child(2) {
        border-right: 1px solid var(--border);
    }
}

.stat-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 94, 14, 0.1);
    border: 1px solid rgba(240, 94, 14, 0.2);
}

.stat-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-number .plus {
    color: var(--primary);
    font-size: 0.75em;
}

.stat-number .rupee {
    font-size: 0.65em;
    color: var(--primary);
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}