/* ============================
      MODULE 3 — TRUSTED BUYERS
   ============================ */

.trusted-wrapper {
    padding: 40px 20px 40px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #eef3ff);
}

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

.trusted-subtitle {
    font-size: 18px;
    opacity: 0.75;
    margin-bottom: 50px;
}

/* LOGO SLIDER */
.trusted-logos-slider {
    overflow: hidden;
    position: relative;
    height: 120px;
}

.slider-track {
    display: flex;
    width: calc(200px * 14);
    animation: slideLogos 35s linear infinite;
}

.logo-item {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: 140px;
    opacity: 0.75;
    transition: opacity .25s;
}

.logo-item img:hover {
    opacity: 1;
}

@keyframes slideLogos {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}