.customers-section {
    padding-bottom: 80px;
    background: #fff;
}

/* VIP Строка */
.customers-vip-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.vip-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    padding: 25px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vip-item:hover {
    border-color: var(--theme-palette-color-1, #0073aa);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.vip-logo-box {
    width: 80px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

.vip-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vip-name {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.2;
}

.vip-meta {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
    display: block;
}

/* Бегущая строка */
.customers-marquee-container {
    overflow: hidden;
    padding: 30px 0;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.marquee-scroll {
    display: flex;
    width: max-content;
    animation: marquee-move linear infinite;
}

.marquee-scroll:hover {
    animation-play-state: paused; /* Остановка при наведении */
}

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

.marquee-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 200px;
    margin: 0 30px;
}

.marquee-logo-link {
    display: block;
    text-decoration: none;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.marquee-logo-link:hover {
    filter: grayscale(0);
    opacity: 1;
}

.marquee-logo-link img {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.marquee-item-name {
    display: block;
    font-size: 11px;
    color: #475569;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .customers-vip-row { flex-direction: column; align-items: center; padding: 0 20px; }
    .vip-item { width: 100%; min-width: unset; }
}