.trusted {
    padding: 90px 20px;
    background: #fff;
    overflow: hidden;
}

.trusted-container {
    max-width: 1200px;
    margin: auto;
}

.trusted-badge {
    display: inline-block;
    padding: 10px 20px;
    background: #ebf7ed;
    color: #2E7D32;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.trusted-header {
    text-align: center;
    margin-bottom: 55px;
}

.trusted-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.2;
}

.trusted-header p {
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.trusted-slider {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.trusted-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: trusted-marquee 30s linear infinite;
}

.trusted-slider:hover .trusted-track {
    animation-play-state: paused;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 90px;
    transition: .35s;
}

.trusted-logo img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .65;
    transition: .35s;
}

.trusted-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
}

@keyframes trusted-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .trusted {
        padding: 60px 16px;
    }

    .trusted-header h2 {
        font-size: 30px;
    }

    .trusted-track {
        gap: 45px;
    }

    .trusted-logo {
        min-width: 120px;
    }

    .trusted-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}
