/* ===================================
   ENFORCEMENT & TRUST SECTION REDESIGN
   Clean, professional style inspired by backup
   =================================== */

/* Trust Section Background */
.trust-section {
    background: #ffffff;
    padding: 4rem 0;
}

/* Enforcement Stats Redesign */
.enforcement-stats {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

.stats-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Stats Grid - Clean Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.country-flag {
    font-size: 2rem;
    line-height: 1;
}

.stat-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.4;
}

.stat-text strong {
    color: #1e293b;
    font-weight: 600;
}

/* Trust Grid Redesign */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.trust-badge:hover {
    background: white;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #3b82f6;
}

.trust-badge h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Remove all excessive animations */
.enforcement-stats::before,
.enforcement-stats::after {
    display: none !important;
}

/* Clean section title */
.trust-section .section-title {
    font-size: 2rem !important;
    color: #1e293b !important;
    background: none !important;
    -webkit-text-fill-color: #1e293b !important;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.trust-section .section-title::after {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .enforcement-stats {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .country-flag {
        font-size: 1.5rem;
    }
}

/* Testimonials Section Redesign */
.testimonials {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.testimonials-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.testimonial-text strong {
    font-weight: 600;
    color: #0f172a;
}

.testimonial-metric {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

/* Remove animations from all elements */
.stats-grid *,
.trust-grid *,
.testimonial-grid * {
    animation: none !important;
}

/* Simple hover states only */
.trust-badge,
.stat-card,
.testimonial {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Ensure clean typography */
.trust-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Better spacing */
.container > * + * {
    margin-top: 2rem;
}