/* Trusted Brands Section Styles */
.fanli-trusted-brands {
    padding: var(--fanli-space-20) 0;
    background: #f8f8f8;
    position: relative;
}

.fanli-trusted-brands__header {
    text-align: center;
    margin-bottom: var(--fanli-space-12);
}

.fanli-trusted-brands__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #2772fa;
    letter-spacing: -0.02em;
    margin: 0;
}

.fanli-trusted-brands__content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Logos Grid */
.fanli-brand-logos-grid {
    display: flex;
    flex-direction: column;
    gap: var(--fanli-space-6);
    max-width: 1000px;
    margin: 0 auto;
}

.fanli-brand-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--fanli-space-4);
    justify-items: center;
    align-items: center;
}

.fanli-brand-logo {
    width: 100%;
    height: auto;
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.fanli-brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile-first responsive design */
@media screen and (max-width: 768px) {
    .fanli-trusted-brands {
        padding: var(--fanli-space-16) 0;
    }

    .fanli-brand-logos-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--fanli-space-3) !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        justify-items: center !important;
        align-items: center !important;
    }

    .fanli-brand-row {
        display: contents !important;
    }

    .fanli-brand-logo {
        max-width: 120px !important;
        max-height: 50px !important;
        margin: 0 auto !important;
    }
}

@media screen and (max-width: 480px) {
    .fanli-trusted-brands__content {
        padding: 0 var(--fanli-space-4) !important;
    }

    .fanli-brand-logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--fanli-space-4) !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        justify-items: center !important;
        align-items: center !important;
    }

    .fanli-brand-logo {
        max-width: 100px !important;
        max-height: 40px !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fanli-trusted-brands [data-animate="fadeInUp"] {
    animation: fadeInUp 0.6s ease forwards;
}

.fanli-trusted-brands [data-animate="fadeInUp"][data-delay="200"] {
    animation-delay: 0.2s;
    opacity: 0;
}

/* Brand Logo Hover Effects - Simplified */
