/* ===================================
   AKOMA GROUP PARTNERS VFO FUNNEL
   Wojo-Style High-Converting Design
   =================================== */

   :root {
    /* Brand Colors - Bold & Authoritative */
    --primary-gold: #D4AF37;
    --primary-navy: #0A1628;
    --accent-red: #C41E3A;
    --accent-green: #2ECC71;
    --neutral-light: #F8F9FA;
    --neutral-dark: #212529;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--neutral-dark);
    line-height: 1.6;
    background: var(--neutral-light);
}

/* ===================================
   HERO SECTION (index.html)
   =================================== */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
    color: white;
    padding: 60px 20px;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.hero-headline .highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.hero-headline .subtext {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #94a3b8;
}

.hero-subheadline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.pain-points {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pain-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 300px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.pain-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pain-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Box */
.cta-box {
    background: white;
    color: var(--neutral-dark);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.cta-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #64748b;
}

/* Form Styling */
.optin-form .form-group {
    margin-bottom: 1.5rem;
}

.optin-form input {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.optin-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-primary-large {
    width: 100%;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-red) 0%, #a01628 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.6);
}

.privacy-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 3rem;
}

.trust-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #cbd5e1;
}

/* ===================================
   VSL PAGE (vsl.html)
   =================================== */

.vsl-section {
    min-height: 100vh;
    background: var(--neutral-light);
    padding: 60px 20px;
}

.vsl-headline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.vsl-subheadline {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.video-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.video-note {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.cta-button-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    border: 3px solid var(--primary-gold);
}

.cta-headline-vsl {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.cta-subtext-vsl {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Proof Section */
.proof-section {
    margin-top: 5rem;
    padding: 4rem 0;
    background: white;
    border-radius: 16px;
}

.proof-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.proof-card {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}

.proof-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.proof-caption {
    font-size: 1.1rem;
    color: #334155;
    margin: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.testimonial {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #334155;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
}

/* ===================================
   QUALIFY PAGE (qualify.html)
   =================================== */

.qualify-section {
    min-height: 100vh;
    background: var(--neutral-light);
    padding: 60px 20px;
}

.qualify-headline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.qualify-subheadline {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.qualify-form .form-group {
    margin-bottom: 2rem;
}

.qualify-form label {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.qualify-form select,
.qualify-form input,
.qualify-form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.qualify-form select:focus,
.qualify-form input:focus,
.qualify-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.trust-section {
    margin-top: 2rem;
}

.trust-note {
    font-size: 1rem;
    color: #64748b;
}

/* ===================================
   THANK YOU PAGE (thank-you.html)
   =================================== */

.thank-you-section {
    min-height: 100vh;
    background: var(--neutral-light);
    padding: 60px 20px;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thank-you-headline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.thank-you-subheadline {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.next-steps-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.next-steps-headline {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    margin: 0;
}

.immediate-action-box {
    background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.action-headline {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.action-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.action-list {
    list-style: none;
    padding: 0;
}

.action-list li {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action-list li:last-child {
    border-bottom: none;
}

.social-proof-mini {
    margin-top: 3rem;
}

.social-text {
    font-size: 1.1rem;
    color: #64748b;
    font-style: italic;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--primary-navy);
    color: white;
    padding: 2rem 0;
    margin-top: 5rem;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-headline .subtext {
        font-size: 1.5rem;
    }
    
    .pain-points {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pain-item {
        max-width: 100%;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vsl-headline,
    .qualify-headline,
    .thank-you-headline {
        font-size: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}