#customers {
    scroll-margin-top: 120px;
}
.customers {
    width: 1081px;
    padding: 0;
    margin-bottom: 200px;
}

.customers h2 {
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 200px;
    color: #fff;
    text-align: left;
    padding-left: 0;
}

/* Стили для карточек в карусели */
.customers .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 15px;
    box-sizing: border-box;
    gap: 15px;
    cursor: pointer;
}

.customer-logo {
    font-family: 'Ubuntu';
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    color: #666;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.customer-text {
    font-family: 'Ubuntu';
    font-size: 10px;
    line-height: 1.3;
    color: #fff;
    max-height: 120px;
    overflow-y: auto;
    padding: 0 5px;
    flex-grow: 1;
}

.customer-text::-webkit-scrollbar {
    width: 2px;
}

.customer-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.customer-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.customers, .customers h2, .customers-grid, .customer-block, .customer-logo, .customer-text {
    transition: all 0.5s cubic-bezier(.4,2,.6,1);
}

.customers h2, .customer-text {
    transition: color 0.5s cubic-bezier(.4,2,.6,1), text-shadow 0.5s cubic-bezier(.4,2,.6,1);
}

.customers-section {
    padding: 300px 0;
}

.customers-section h2 {
    font-size: 64px;
    margin-bottom: 200px;
}

.customers-carousel {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    height: 800px;
}

.customer-card {
    width: 90%;
    max-width: 700px;
    aspect-ratio: 3/2.4;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.customer-card img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 60px;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.1);
}

.customer-card h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.customer-card p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.customer-card .social-links {
    display: flex;
    gap: 40px;
}

.customer-card .social-links a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.customer-card .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.customer-card .social-links img {
    width: 32px;
    height: 32px;
    margin: 0;
    border: none;
}

.customer-block {
    background-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
