/* Homepage Conversion Optimization Styles */

/* Final CTA Section */
.final-cta-section {
    margin: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle, rgba(240, 147, 251, 0.2) 0%, transparent 50%);
    transform: translate(30%, -30%);
    animation: floatBg 6s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(30%, -30%) scale(1); }
    50% { transform: translate(40%, -40%) scale(1.1); }
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    color: white;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-cta small {
    font-weight: 500;
    opacity: 0.9;
}

.security-badges {
    opacity: 0.8;
}

/* Compatibility Section */
.compatibility-section {
    margin: 2rem 0;
}

.compatibility-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.compatibility-title {
    color: #667eea;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.compatibility-text {
    color: #495057;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.microchip-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.brand-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Legal Notice */
.legal-notice {
    margin: 2rem 0;
}

.legal-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #667eea;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Additional Mobile Responsive Updates */
@media (max-width: 768px) {
    .final-cta-section {
        margin: 3rem 0;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem 2rem;
    }
    
    .compatibility-card {
        padding: 2rem 1.5rem;
    }
    
    .microchip-brands {
        justify-content: center;
    }
    
    .brand-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}