.ua-dort-bolum-wrapper {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #fff;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    border: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Counter Styles */
.ua-dort-bolum-counter {
    width: 100%;
    border: none;
    padding: 25px 20px;
    border-radius: 0;
    position: relative;
}

.ua-dort-bolum-counter:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 0;
    border-left: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.pxl-counter-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.counter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    width: 100%;
}

.pxl-counter--icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pxl-counter--icon i {
    font-size: 54px;
    line-height: 1;
}

.pxl-counter--icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pxl-counter--holder {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pxl-counter--number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    height: 54px;
}

.pxl-counter--prefix,
.pxl-counter--suffix {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    -webkit-text-stroke: 1.5px;
    -webkit-text-fill-color: transparent;
    text-stroke: 1.5px;
    transition: -webkit-text-stroke 3s ease-in-out, -webkit-text-fill-color 3s ease-in-out, text-stroke 3s ease-in-out;
}

.pxl-counter--value {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    -webkit-text-stroke: 2px;
    -webkit-text-fill-color: transparent;
    text-stroke: 2px;
    transition: -webkit-text-stroke 3s ease-in-out, -webkit-text-fill-color 3s ease-in-out, text-stroke 3s ease-in-out;
}

.ua-dort-bolum-counter:hover .pxl-counter--value,
.ua-dort-bolum-counter:hover .pxl-counter--prefix,
.ua-dort-bolum-counter:hover .pxl-counter--suffix {
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: currentColor;
    text-stroke: 0px transparent;
}

.pxl-counter--title {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: none;
    position: relative;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pxl-counter--title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px auto 0 auto;
}

.pxl-counter--content {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin-top: 5px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ua-dort-bolum-counter:nth-child(2n):not(:last-child)::after {
        display: none;
    }
    
    .ua-dort-bolum-counter:nth-child(2n+1):not(:last-child):not(:nth-last-child(2))::after {
        display: block;
    }
}

@media (max-width: 768px) {
    .ua-dort-bolum-wrapper {
        padding: 60px 0;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border: none;
    }
    
    .ua-dort-bolum-counter:not(:last-child)::after {
        display: none;
    }
    
    .ua-dort-bolum-counter:not(:last-child) {
        border-bottom: none;
    }
    
    .counter-header {
        gap: 15px;
    }
    
    .ua-dort-bolum-counter {
        padding: 20px 15px;
    }
    
    .pxl-counter--icon {
        width: 45px;
        height: 45px;
    }
    
    .pxl-counter--icon i {
        font-size: 45px;
    }
    
    .pxl-counter--number {
        height: 45px;
    }
    
    .pxl-counter--value {
        font-size: 60px;
    }
    
    .pxl-counter--prefix,
    .pxl-counter--suffix {
        font-size: 40px;
    }
    
    .pxl-counter--title {
        font-size: 13px;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .ua-dort-bolum-counter {
        padding: 18px 12px;
    }
    
    .pxl-counter--icon {
        width: 40px;
        height: 40px;
    }
    
    .pxl-counter--icon i {
        font-size: 40px;
    }
    
    .pxl-counter--number {
        height: 40px;
    }
    
    .pxl-counter--value {
        font-size: 50px;
    }
    
    .pxl-counter--prefix,
    .pxl-counter--suffix {
        font-size: 35px;
    }
    
    .pxl-counter--title {
        font-size: 12px;
        white-space: normal;
    }
}




