/* 
===================================================================
MARVIA SYSTEM - CONVERSION BOOST & CRO LAYER
Focus: Lead Capture, Trust Signals, High-Contrast CTAs
===================================================================
*/

:root {
    --cro-primary: #1D4ED8;
    --cro-cta: #22C55E;
    --cro-cta-hover: #16A34A;
    --cro-warning: #EF4444;
    --cro-text-light: #F8FAFC;
    --cro-text-muted: #94A3B8;
}

/* Lead Capture Form Hero */
.lead-form-hero {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    max-width: 450px;
    width: 100%;
    margin: 40px auto 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.lead-form-hero h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--cro-text-light);
    text-align: center;
}

.form-group-cro {
    margin-bottom: 15px;
    text-align: left;
}

.form-group-cro input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.form-group-cro input:focus {
    border-color: var(--cro-primary);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.btn-cro-submit {
    width: 100%;
    padding: 16px;
    background: var(--cro-cta);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4);
}

.btn-cro-submit:hover {
    background: var(--cro-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.5);
}

/* Trust Badges / Microcopy */
.trust-signals {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--cro-text-muted);
}

.trust-signals span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-signals i {
    color: var(--cro-cta);
}

/* Results Section Styles */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.result-item {
    padding: 40px;
    border-left: 4px solid var(--cro-primary);
    background: rgba(30, 41, 59, 0.3);
    border-radius: 0 20px 20px 0;
}

.result-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.result-item p {
    color: var(--cro-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Floating WhatsApp Button for conversion */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.7);
}

/* Intermediate CTA */
.intermediate-cta {
    background: linear-gradient(90deg, #1E293B 0%, #0F172A 100%);
    padding: 60px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive CRO */
@media (max-width: 768px) {
    .lead-form-hero {
        padding: 20px;
        margin-top: 30px;
    }
    
    .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
