.company-section {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

.hero-section--home {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-section--home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/home/usd.jpg") center/cover no-repeat;
    filter: blur(0px);
    transform: scale(1.05);
    z-index: 0;
}

.hero-section--home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-section--home > .container {
    position: relative;
    z-index: 2;
}

.company-marquee {
    --marquee-gap: 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    padding: 36px 0;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
}

.company-marquee::before,
.company-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.company-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.company-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.company-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.company-marquee__group {
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    padding: 0 1.5rem;
}

.company-logo {
    width: 190px;
    height: 160px;
    padding: 14px;
    border-radius: 16px;
    background: #f8f9fa;
    box-shadow: 0 6px 18px rgba(44, 62, 80, 0.1);
    object-fit: contain;
    flex: 0 0 auto;
}

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

@media (max-width: 768px) {
    .company-marquee {
        padding: 28px 0;
    }

    .company-marquee::before,
    .company-marquee::after {
        width: 70px;
    }

    .company-logo {
        width: 150px;
        height: 130px;
        padding: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .company-marquee__track {
        animation: none;
    }
}
