.trust-stats {
    background: var(--ocf-bg);
    padding-block: clamp(2rem, 5vw, 3rem);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--ocf-border-light);
}

.trust-stat {
    display: grid;
    gap: 0.2rem;
    padding: 1.4rem 1rem;
    border-right: 1px solid var(--ocf-border-light);
}

.trust-stat:last-child { border-right: 0; }

.trust-stat-value {
    color: var(--ocf-heading);
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 600;
    line-height: 1;
}

.trust-stat-label {
    color: var(--ocf-label);
    font-size: var(--text-sm);
}

@media (max-width: 760px) {
    .trust-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-stat:nth-child(2) { border-right: 0; }
    .trust-stat:nth-child(n+3) { border-top: 1px solid var(--ocf-border-light); }
}
