.our-client-section {
    padding: clamp(4rem, 7vw, 5.4rem) 0;
    background: #f5f0eb;
}

.our-client-header {
    max-width: 48rem;
    margin: 0 auto 1.9rem;
}

.our-client-title {
    margin: 0 0 0.55rem;
    color: #0f172a;
    font-size: clamp(1.95rem, 3.4vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.our-client-subtitle {
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.72;
}

.our-client-label-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(22, 138, 64, 0.08);
}

.our-client-label {
    color: #168a40;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.our-client-label-separator {
    color: rgba(15, 23, 42, 0.34);
    font-size: 0.72rem;
}

.our-client-groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo-group {
    padding: 0.35rem 0 0.45rem;
}

.logo-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.logo-group-title {
    margin: 0;
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.45rem 0;
}

.logo-marquee-inner {
    width: 100%;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    animation: logo-marquee 22s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 148px;
    height: 76px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
    filter: grayscale(0.08);
    opacity: 0.92;
}

.logo-item:hover .logo-img {
    transform: translateY(-1px);
    filter: grayscale(0);
    opacity: 1;
}

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

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991.98px) {
    .logo-item {
        width: 126px;
        height: 68px;
    }
}

@media (max-width: 575.98px) {
    .our-client-section {
        padding: 3.5rem 0;
    }

    .our-client-label-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-group {
        padding: 1rem;
    }

    .logo-item {
        width: 112px;
        height: 60px;
    }
}
