/* ========================================
   TRUST BAR
   ======================================== */
.trust {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 0;
    position: relative;
    z-index: 3;
}
.trust .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
}
.trust__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-light);
    letter-spacing: -0.01em;
}
.trust__icon {
    width: 32px; height: 32px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}
.trust__icon svg { width: 16px; height: 16px; }
.trust__item strong { color: var(--slate); }
