/* ── TRUSTED BY COMPONENT ── */
.trusted-by-section {
    padding: var(--spacing-2xl) 0;
    background:
        linear-gradient(180deg, rgba(67, 56, 202, 0.03) 0%, transparent 50%);
}

.trusted-by-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
}

.trusted-by-card {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 2px solid rgba(67, 56, 202, 0.12);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trusted-by-card:hover {
    border-color: rgba(67, 56, 202, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.trusted-by-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.10) 0%, rgba(99, 102, 241, 0.10) 100%);
    color: var(--accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.trusted-by-label {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    white-space: nowrap;
}