/* Trusted Section Styles */
.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;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
}

.trusted-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(77, 208, 225, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 85% 75%, rgba(77, 208, 225, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(77, 208, 225, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 25% 60%, rgba(77, 208, 225, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 75% 40%, rgba(77, 208, 225, 0.15) 2px, transparent 2px);
    background-size: 
        150px 150px,
        150px 150px,
        120px 120px,
        130px 130px,
        130px 130px;
    background-position:
        0 0,
        100% 100%,
        50% 50%,
        20% 60%,
        80% 40%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.trusted-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trusted-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trusted-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--color-text-white);
}

.trusted-title-highlight {
    color: var(--color-primary);
    background: var(--gradient-primary-full);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trusted-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0 0 60px 0;
    max-width: 700px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-white);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.trusted-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-white);
}

.trusted-logo-icon svg {
    width: 100%;
    height: 100%;
}

.trusted-logo-text {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

/* Network Pattern Lines - Add connecting lines effect */
.trusted-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, transparent 0%, rgba(77, 208, 225, 0.08) 50%, transparent 100%),
        linear-gradient(45deg, transparent 0%, rgba(77, 208, 225, 0.08) 50%, transparent 100%),
        linear-gradient(225deg, transparent 0%, rgba(77, 208, 225, 0.08) 50%, transparent 100%);
    background-size: 300px 300px, 300px 300px, 300px 300px;
    background-position: 15% 25%, 85% 75%, 50% 50%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Trusted Section Responsive */
@media (max-width: 1024px) {
    .trusted-section {
        padding: 80px 0;
    }

    .trusted-logos {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 0;
    }

    .trusted-title {
        margin-bottom: 16px;
    }

    .trusted-subtitle {
        margin-bottom: 40px;
        font-size: 16px;
    }

    .trusted-logos {
        gap: 40px;
        flex-direction: column;
    }

    .trusted-logo-item {
        gap: 10px;
    }

    .trusted-logo-icon {
        width: 36px;
        height: 36px;
    }

    .trusted-logo-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .trusted-section {
        padding: 50px 0;
    }

    .trusted-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .trusted-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .trusted-logos {
        gap: 30px;
    }

    .trusted-logo-icon {
        width: 32px;
        height: 32px;
    }

    .trusted-logo-text {
        font-size: 15px;
    }
}

