/* =========================================
   Trust Section – Matmoe Modern
   ========================================= */

.trust {
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(144,192,39,0.08), transparent 32%),
        linear-gradient(180deg, #0b0d0a 0%, #050505 100%);
}

.trust-inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.trust-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--matmoe-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-content h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.trust-content h2 span {
    color: var(--matmoe-primary);
}

.trust-content p {
    margin: 0;
    max-width: 560px;
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.75;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.trust-card {
    padding: 28px;
    min-height: 150px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

.trust-card strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
}

.trust-card span {
    display: block;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .trust-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 600px) {
    .trust {
        padding: 76px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .trust-card {
        min-height: auto;
        padding: 24px;
    }
}