/* Trusted by Industry Leaders Section - Business Operations Support Page */
.trusted-section {
    background-color: var(--color-dark-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(77, 208, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(77, 208, 225, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}

.trusted-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(77, 208, 225, 0.05) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(77, 208, 225, 0.05) 50%, transparent 100%);
    background-size: 200px 200px, 200px 200px;
    background-position: 0 0, 0 0;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.trusted-section .container {
    position: relative;
    z-index: 1;
}

.trusted-header {
    text-align: center;
    margin-bottom: 60px;
}

.trusted-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-white);
    margin: 0 0 20px 0;
}

.trusted-title .highlight-text {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.trusted-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 20px 0;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.trusted-logo-item img {
    max-height: 50px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trusted-section {
        padding: 80px 0;
    }

    .trusted-logos {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 0;
    }

    .trusted-header {
        margin-bottom: 40px;
    }

    .trusted-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .trusted-subtitle {
        font-size: 16px;
    }

    .trusted-logos {
        gap: 40px;
    }

    .trusted-logo-item img {
        max-height: 40px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .trusted-section {
        padding: 50px 0;
    }

    .trusted-header {
        margin-bottom: 30px;
    }

    .trusted-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .trusted-subtitle {
        font-size: 15px;
    }

    .trusted-logos {
        gap: 30px;
    }

    .trusted-logo-item img {
        max-height: 35px;
        max-width: 120px;
    }
}

