/* =========================================================================
   TRUST SECTION
   ========================================================================= */
.trust {
    padding: 4rem 0;
    background: #f8fafc;
}

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

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.trust-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.trust-item:hover {
    border-color: #f97316;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    color: #f97316;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
}

.trust-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.trust-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #1e3a5f;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}
