/* --- RESULTS SECTION (STATS 47/57) --- */
.results-section {
    background: #000;
    color: #fff;
    padding: 6rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-box {
    text-align: center;
}

.stat-number-wrapper {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
}

.stat-number {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.stat-number.filled {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    clip-path: inset(100% 0 0 0);
}

.stat-desc {
    color: #fff;
    opacity: 0.7;
    margin-top: 1rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .results-section {
        flex-direction: column;
        gap: 4rem;
    }
}

