/* ===================================
   FINAL CTA SECTION - COMPACT REDESIGN
   Clean, compact layout with proper spacing
   =================================== */

/* Override existing final-cta styles */
.final-cta {
    background: var(--color-primary) !important;
    padding: 3rem 0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Remove all animations and effects */
.final-cta::before,
.final-cta::after {
    display: none !important;
}

.final-cta * {
    animation: none !important;
    transition: all 0.2s ease !important;
}

/* Compact title */
.cta-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
}

/* Enforcement stats box - more compact */
.enforcement-stats-final {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 1.25rem !important;
    max-width: 500px !important;
    margin: 0 auto 1.5rem !important;
}

.enforcement-stats-final h3 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 0.75rem !important;
}

.stats-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.stats-list li {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
}

.stats-list li:last-child {
    margin-bottom: 0 !important;
}

/* Tagline */
.cta-tagline {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 2rem !important;
}

/* CTA button - centered */
.cta-actions {
    margin-bottom: 1.5rem !important;
}

.btn-white {
    background: white !important;
    color: var(--color-primary) !important;
    padding: 0.875rem 2rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    display: inline-block !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-1px) !important;
}

/* Trust badges - inline layout */
.trust-badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
}

.badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.badge-item:hover {
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
}

.badge-icon {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    opacity: 0.8 !important;
}

.badge-item span {
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

/* Remove all floating elements */
.cta-content {
    position: relative !important;
    z-index: 1 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .final-cta {
        padding: 2.5rem 0 !important;
    }
    
    .cta-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .enforcement-stats-final {
        padding: 1rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .stats-list li {
        font-size: 0.875rem !important;
    }
    
    .cta-tagline {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-white {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .trust-badges {
        gap: 1rem !important;
    }
    
    .badge-item {
        font-size: 0.8rem !important;
    }
}

/* Ensure section is compact */
.final-cta .container {
    max-width: 800px !important;
}