.trust-bar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
    color: var(--text);
    gap: 12px;
}

.trust-item {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 5px;
    text-align: center;
    border: 1px solid var(--border);
    background-color: var(--background-soft);
    border-radius: 5px;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--text);
}

.trust-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text {
    display: block;
    max-width: 90px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

@media (min-width: 480px) {
    .trust-bar {
        margin-top: 18px;
    }

    .trust-item {
        gap: 7px;
        padding: 9px 7px;
    }

    .trust-icon {
        width: 23px;
        height: 23px;
    }
}

@media (min-width: 768px) {
    .trust-bar {
        margin-top: 20px;
    }

    .trust-item {
        flex-direction: row;
        gap: 8px;
        padding: 10px 12px;
        text-align: left;
    }

    .trust-icon {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1200px) {
    .trust-item {
        gap: 9px;
        padding: 11px 14px;
    }

    .trust-icon {
        width: 25px;
        height: 25px;
    }
}