.trusted-partners {
    /* background: radial-gradient(103.69% 95.35% at 10.25% 0%, #10347E 0%, #0755E9 100%); */
    background-image: url('../../assets/images/performance.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 48px 0;
}

/* Dot Pattern Overlay */
.dot-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(135, 206, 250, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.4;
    z-index: 0;
    animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
    0% {
        background-position: 0 0, 20px 20px;
    }

    100% {
        background-position: 40px 40px, 60px 60px;
    }
}

/* Stats */
.stat-number {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 12px;
    color: #ffffff;
    text-align: left;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.stat-number .stat-number {
    display: inline-block;
}

/* Postfix positioning - Top (for M, K, etc.) */
.post-fix.top {
    font-size: 32px;
    font-weight: 400;
    vertical-align: super;
    margin-left: 2px;
    position: relative;
    top: -9px;
    line-height: 1;
    display: inline-block;
}

/* Postfix positioning - Bottom (for numbers without suffix) */
.post-fix.bottom {
    font-size: 32px;
    font-weight: 400;
    position: absolute;
    right: -17px;
    bottom: 28px;
    line-height: 1;
    vertical-align: baseline;
    margin-left: 2px;
    display: inline-block;
}

.post-fix.center {
    font-size: 32px;
    font-weight: 400;
    position: absolute;
    right: -22px;
    bottom: 14px;
    line-height: 1;
    vertical-align: baseline;
    margin-left: 2px;
    display: inline-block;
}

.stat-label {
    text-align: left;
    line-height: 25px;
    font-size: 20px !important;
    margin-bottom: 0;
}
.stats-row .col-6 {
    padding: 24px;
}
/* Logo Slider */
.logo-slider {
    position: relative;
    padding: 40px 0 0;
    overflow: hidden;
}

.logo-slider img {
    max-height: 70px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.4s ease;
    filter: brightness(0) invert(1);
    /* makes logos white */
}

.logo-slider .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slider .swiper-slide:hover img {
    opacity: 1;
}

/* Fade edges */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}




/* Responsive */
@media (max-width: 991.98px) {
    .trusted-headline {
        font-size: 2.5rem;
    }

    .trusted-subtext {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .post-fix.top {
        font-size: 1rem;
    }

    .post-fix.bottom {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .trusted-headline {
        font-size: 2rem;
    }

    .trusted-subtext {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .post-fix.top {
        font-size: 0.9rem;
    }

    .post-fix.bottom {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 17px !important;
    }
    .stats-row .col-6 {
        padding: 12px;
    }
}

@media (min-width: 992px) {
    .stats-row .col-lg {
        border-left: 1px solid rgb(255 255 255 / 35%);
    }

    .stats-row .col-lg:last-child {
        border-right: 1px solid rgb(255 255 255 / 35%);
    }
}

.page-id-17286 .stats-row > div:nth-child(2) .post-fix.center {
    right: -58px;
}