/* Stats Section - Fun Facts */
.stats {
    position: absolute;
    width: 1440px;
    height: 308px;
    left: 0;
    top: 916px;
}

/* Stats background */
.stats__bg {
    position: absolute;
    width: 1440px;
    height: 310px;
    left: 0;
    top: calc(50% - 310px/2 + 1px);
    background: #131114;
}

/* Stats container */
.stats__container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Stat items */
.stats__item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Stat numbers */
.stats__number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 78px;
    text-align: center;
    color: #FFFFFF;
}

.stats__unit {
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
}

/* Stat descriptions */
.stats__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #B3B3B3;
}

/* Item 1 - 850Մբիթ/վ */
.stats__item:nth-child(1) {
    left: 141px;
    top: 80px;
    width: 260px;
}

/* Item 2 - 160Ալիք */
.stats__item:nth-child(2) {
    left: 492px;
    top: 80px;
    width: 200px;
}

/* Item 3 - 99.9% */
.stats__item:nth-child(3) {
    left: 783px;
    top: 80px;
    width: 250px;
}

/* Item 4 - 24/7 */
.stats__item:nth-child(4) {
    left: 1108px;
    top: 80px;
    width: 200px;
}

/* Separators */
.stats__separator {
    position: absolute;
    width: 30px;
    height: 1px;
    background: #333333;
    top: 154px;
}

.stats__separator:nth-child(5) {
    left: 437px;
}

.stats__separator:nth-child(6) {
    left: 735px;
}

.stats__separator:nth-child(7) {
    left: 1052px;
}

/* Mobile Adaptation */
@media (max-width: 1440px) {
    .stats {
        width: 100%;
    }
    
    .stats__bg {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .stats__container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 60px 20px;
        gap: 20px;
    }
    
    .stats__item {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
    }
    
    .stats__separator {
        display: none;
    }
    
    .stats__number {
        font-size: 48px;
        line-height: 1.2;
    }
    
    .stats__desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .stats {
        position: relative;
        top: auto;
        height: auto;
        margin-top: 0;
        padding: 40px 0;
    }
    
    .stats__bg {
        position: relative;
        height: auto;
        top: auto;
    }
    
    .stats__container {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 16px;
        gap: 32px;
    }
    
    .stats__number {
        font-size: 36px;
    }
    
    .stats__unit {
        font-size: 18px;
    }
    
    .stats__desc {
        font-size: 13px;
        line-height: 130%;
    }
}

@media (max-width: 480px) {
    .stats__container {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        gap: 24px;
    }
    
    .stats__item {
        padding: 20px;
        background: rgba(255, 108, 0, 0.03);
        border-radius: 12px;
        border: 1px solid rgba(255, 108, 0, 0.1);
    }
}