/* ============ Clients Section ============ */
.clients-section {
    background: var(--color-bg);
    padding: 8rem 0;
    text-align: center;
}

.section-statement {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

/* Full-width white "trust band" behind the marquee. All logos sit on one
   uniform white strip, so logos with white, transparent, or dark-on-white
   sources all read consistently. Soft gradient fade at the edges keeps the
   marquee animation looking polished as logos slide in and out. */
.clients-marquee {
    overflow: hidden;
    background: #ffffff;
    padding: 1.5rem 0;
    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);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.clients-track img {
    height: 104px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.clients-track img:hover {
    transform: translateY(-2px);
}

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

.clients-section .section-statement:last-child {
    margin-top: 2.5rem;
    margin-bottom: 0;
}
