/* ===================================
   STATS SECTION STYLES
   =================================== */

.stats {
    padding: var(--space-20) 0;
    background-color: var(--color-white);
    position: relative;
    border-top: 1px solid var(--color-gray-100);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-item__icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-item__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-item__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-item__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: capitalize;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .stats {
        padding: var(--space-12) 0;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }

    .stat-item__number {
        font-size: 2rem;
    }
}