/* Clean Counter Section Styles */
.clean-counter-section {
    width: 100%;
    padding: 80px 0;
    background: transparent !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.clean-counter-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
}

.clean-counter-item {
    text-align: center;
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.clean-counter-number {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    white-space: nowrap;
    letter-spacing: -0.04em;
    
    /* Gradient Text Effect matching site theme */
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #cc0000; /* Fallback */
}

.clean-counter-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    opacity: 1;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .clean-counter-number {
        font-size: 2.55rem;
    }
}

@media (max-width: 768px) {
    .clean-counter-container {
        justify-content: center;
        gap: 50px;
    }
    
    .clean-counter-item {
        flex-basis: 40%; /* 2 per row on tablets/large phones */
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .clean-counter-item {
        flex-basis: 100%; /* 1 per row on mobile */
    }
    .clean-counter-number {
        font-size: 2.1rem;
    }
    .clean-counter-label {
        font-size: 1rem;
    }
}

@media (max-width: 350px) {
    .clean-counter-number {
        font-size: 1.55rem;
    }
    .clean-counter-label {
        font-size: 0.9rem;
    }
}
