.home-trusted-by-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 1rem;
    gap: 32px;
    background: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
}

.home-trusted-by-section * {
    box-sizing: border-box;
}

.trusted-by-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 863px;
    width: 100%;
}

.trusted-by-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #0A1837;
    margin: 0;
}

.trusted-by-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #4A5565;
    margin: 0;
}

/* Outer wrapper — used for both static and marquee variants */
.trusted-by-logos-outer {
    width: 100%;
    overflow: hidden;
}

/* Fade edges in marquee mode */
.trusted-by-logos-outer.has-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trusted-by-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.7;
}

/* Marquee track variant */
.trusted-by-logos.marquee-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: none;
    margin: 0;
    width: max-content;
    gap: 32px;
    animation: trusted-by-marquee var(--marquee-duration, 30s) linear infinite;
}

.trusted-by-logos-outer.has-marquee:hover .trusted-by-logos.marquee-track {
    animation-play-state: paused;
}

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

.trusted-by-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

/* Prevent shrinking in marquee mode */
.trusted-by-logos.marquee-track .trusted-by-logo {
    flex-shrink: 0;
    padding: 12px 16px;
}

.trusted-by-logo img {
    max-height: 58px;
    width: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .home-trusted-by-section {
        padding: 40px 1rem;
        gap: 24px;
    }

    .trusted-by-title {
        font-size: 32px;
    }

    .trusted-by-subtitle {
        font-size: 16px;
    }

    .trusted-by-logos {
        gap: 24px;
    }

    .trusted-by-logo img {
        max-height: 48px;
    }

    .trusted-by-logos.marquee-track .trusted-by-logo img {
        max-height: 40px;
    }

    .trusted-by-logos-outer.has-marquee {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    }
}
@media (max-width: 480px) {
    .trusted-by-title {
        font-size: 28px;
    }
    .trusted-by-logo img {
        max-height: 40px;
    }
    .trusted-by-logos.marquee-track .trusted-by-logo img {
        max-height: 32px;
    }
}
