.customers-section {
    padding: 90px 20px;
    background: linear-gradient(to right,
            var(--color-bg),
            var(--color-bg-alt),
            var(--color-bg));
}

.customers-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.customers-section h2 {
    font-size: 2.8rem;
    color: var(--color-brand);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.customers-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 60px 0 30px;
    color: var(--color-brand);
    text-align: center;
    letter-spacing: 1px;
    text-shadow:
        0 0 6px rgba(212, 160, 52, 0.25),
        0 0 10px rgba(212, 160, 52, 0.15);
}

.customers-intro {
    max-width: 820px;
    margin: 0 auto 42px;
    color: var(--color-text-soft);
    line-height: 1.7;
    font-size: 1.05rem;
}

.featured-customers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.customer-logo-card {
    background: #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
            0 0 1px rgba(212, 160, 52, 0.12),
            0 0 8px rgba(212, 160, 52, 0.06);
   
    
}
  .customer-logo-card img{
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .25s ease;
}

.customer-logo-card:hover img{
    transform: scale(1.12);
    box-shadow:
            0 0 1px rgba(212, 160, 52, 0.12),
            0 0 8px rgba(212, 160, 52, 0.06);
}
    .customer-directory h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-top: 60px;
        margin-bottom: 25px;
        text-align: center;
        color: var(--color-brand);
        letter-spacing: 0.5px;
    }

.customer-name-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-name-grid > * {
    background: rgba(255,255,255,0.03);
    border-left: 2px solid rgba(212,160,52,0.35);
    padding: 8px 12px;
    color: #f2f2f2;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.35;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.customer-name-grid > *:hover {
    background: rgba(255,255,255,0.05);
    border-left-color: var(--color-brand);
    transform: translateX(2px);
}

@media (max-width: 900px) {
    .customer-name-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 18px;
    }

    .customer-name-grid > * {
        font-size: 14px;
        padding: 8px 10px;
    }
}

@media (max-width: 520px) {
    .customer-name-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .customer-name-grid > * {
        font-size: 15px;
        padding: 10px 12px;
    }
}

    .customer-note {
        margin-top: 34px;
        font-size: 1.84rem;
        color: var(--color-text-muted);
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .customers-section h2 {
            font-size: 2.2rem;
        }

        .customers-section h3 {
            font-size: 1.6rem;
        }

        .customer-directory h3 {
            font-size: 1.35rem;
        }

        .customer-note {
            font-size: 1.1rem;
        }
    }