.sago-trust {
    width: 100%;
    background: var(--sago-dark-footer);
    border: 1px solid rgba(255, 255, 255, .15); 
    border-radius: 17px;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.sago-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, .15);
    padding: 1rem;
    border-radius: 10px;
    transition: 
        background-color .25s ease, 
        transform .25s ease, 
        box-shadow .25s ease;
}

.trust-item:hover {
    background: var(--sago-bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--sago-green);
    font-size: 1.6rem;
    transition: color .25s ease, transform .25s ease;
}

.trust-item:hover .trust-icon {
    color: var(--sago-primary);
    transform: scale(1.08);
}

.trust-content {
    min-width: 0;
}

.trust-content h3 {
    margin: 0;
    color: var(--sago-white);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.trust-content p {
    margin: .2rem 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    line-height: 1.4;
}
/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 992px) {
    .sago-trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: .75rem;
    }

    .trust-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: .8rem .5rem;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .trust-content h3 {
        font-size: 0.9rem;
    }

    .trust-content p {
        font-size: .72rem;
    }
}

/* ==========================================================
   MOBILE (4 → 2)
   ========================================================== */

@media (max-width: 768px) {
    .sago-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-item {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        min-height: 70px;
    }

    .trust-content h3 {
        font-size: 0.8rem;
    }
}

/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {
    .trust-item {
        min-height: 63px;
        padding: .6rem;
    }

    .trust-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}