/* ==========================================
   CUSTOMERS SECTION STYLES (SCOPED & OPTIMIZED)
   ========================================== */

.customers-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        rgba(5,5,5,0.95) 0%,
        rgba(5,5,5,0.85) 50%,
        rgba(5,5,5,0.95) 100%
    );
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ------------------------------
   STAR BACKGROUND
-------------------------------- */

.customers-section .star-field {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.customers-section .star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.3;
}

/* ------------------------------
   HERO CONTENT
-------------------------------- */

.customers-section .hero-content {
    position: relative;
    z-index: 30;
    margin-bottom: 4rem;
}

/* ------------------------------
   METALLIC TITLE
-------------------------------- */

.customers-section .metallic-text {
    background: linear-gradient(
        90deg,
        #666 0%,
        #ffffff 45%,
        #ffffff 55%,
        #666 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: customers-scan 4s linear infinite;
}

@keyframes customers-scan {
    from { background-position: 200% center; }
    to   { background-position: -200% center; }
}

/* ------------------------------
   MARQUEE
-------------------------------- */

.customers-section .marquee-section {
    position: relative;
    z-index: 20;
    margin: 3rem 0;
}

.customers-section .marquee-wrapper {
    overflow: hidden;
    margin-bottom: 1.5rem;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.customers-section .marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.customers-section .scroll-left {
    animation: customers-scroll-left 40s linear infinite;
}

.customers-section .scroll-right {
    animation: customers-scroll-right 40s linear infinite;
}

@keyframes customers-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes customers-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.customers-section .marquee-content:hover {
    animation-play-state: paused;
}

/* ------------------------------
   LOGO CARD
-------------------------------- */

.customers-section .logo-card {
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.25rem;
    padding: 1.5rem 2rem;
    min-width: 280px;
    height: 120px;

    display: flex;
    align-items: center;
    gap: 1.5rem;

    transition: all 0.3s ease;
}

.customers-section .logo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}

/* Logo image */

.customers-section .logo-img-box {
    width: 4rem;
    height: 4rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.75rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customers-section .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    transition: filter 0.3s ease;
}

.customers-section .logo-card:hover .logo-img {
    filter: grayscale(0%) brightness(1);
}

/* Logo text */

.customers-section .logo-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.customers-section .logo-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.customers-section .logo-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    font-family: monospace;
}

/* ------------------------------
   FOOTER
-------------------------------- */

.customers-section .footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 0.8em;
    opacity: 0.2;
    z-index: 25;
    pointer-events: none;
}

/* ------------------------------
   VIGNETTE
-------------------------------- */

.customers-section .vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 200px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 15;
}
