.sw-trusted-by {
    padding: 80px 0;
    background: #ffffff;
}

.sw-trusted-by__title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: #0f172a;
}

.sw-trusted-by__logos-row {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto 3rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.sw-trusted-by__logos-track {
    display: flex;
    align-items: center;
    gap: 96px;
    width: max-content;
    animation: swClientLogosScroll 28s linear infinite;
}

.sw-trusted-by__logos-row:hover .sw-trusted-by__logos-track {
    animation-play-state: paused;
}

.sw-trusted-by__logos-row img {
    height: 88px;
    max-width: 220px;
    width: auto;
    flex: 0 0 auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.56;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-trusted-by__logos-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes swClientLogosScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 48px)); }
}

@media (prefers-reduced-motion: reduce) {
    .sw-trusted-by__logos-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 2rem;
    }
}

.sw-trusted-by__testimonial {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem 2rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin: 0 auto 1.5rem;
    max-width: 900px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sw-trusted-by__testimonial:hover {
    transform: translateY(-4px);
}

.sw-trusted-by__testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #c41e3a 0%, #9f1239 100%);
}

.sw-trusted-by__testimonial blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.sw-trusted-by__author {
    margin: 1.5rem 0 0;
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
}

.sw-trusted-by__author span {
    display: block;
    font-weight: 500;
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .sw-trusted-by { padding: 60px 0; }
    .sw-trusted-by__logos-row img { height: 64px; max-width: 160px; }
}
