.trusted-section {
    position: relative;
    padding: 96px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.trusted-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trusted-header h2 {
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.trusted-header p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.trusted-item {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 20px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.trusted-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.trusted-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    font-size: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.trusted-item strong {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 17px;
}

.trusted-item small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}