/* =========================
   TRUST
========================= */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    margin-top: 4rem;
    text-align: center;
}

.trust-item {
    position: relative;
    padding: 0 2rem;
}

.trust-value {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.trust-label {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

/* vertical separator */
.trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 3px;
    height: 80%;
    background: linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,0.18),
            transparent
    );
}

/* =========================
   TRUST RESPONSIVE
========================= */

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trust-item {
        padding: 0;
    }

    .trust-item::after {
        display: none;
    }
}
