:root {
    --primary: #2563eb;       /* Electric Blue */
    --secondary: #0f172a;     /* Deep Navy */
    --accent: #38bdf8;        /* Sky Blue */
    --dark: #020617;          /* Almost Black */
    --light: #f1f5f9;         /* Off-white */
    --text: #475569;          /* Grey Text */
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { color: var(--text); line-height: 1.6; background-color: var(--white); scroll-behavior: smooth; }

/* Global Styles */
.container { max-width: 1150px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; }
ul { list-style: none; }
.relative-z { position: relative; z-index: 2; }

/* Buttons */
.btn { display: inline-block; padding: 14px 35px; border-radius: 6px; font-weight: 600; transition: 0.3s; cursor: pointer; border: none; }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; background: #e2e8f0; color: var(--secondary); border-radius: 4px; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3); }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.3); color: var(--white); margin-left: 10px; }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-block { width: 100%; background: var(--secondary); color: var(--white); font-size: 1rem; }
.btn-block:hover { background: var(--primary); }

/* Navigation */
.navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: fixed; width: 100%; top: 0; z-index: 1000; height: 80px; display: flex; align-items: center; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--secondary); letter-spacing: -1px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { color: var(--secondary); font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-nav { background: var(--primary); color: var(--white) !important; padding: 10px 24px; border-radius: 6px; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--secondary); }

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background: url('https://images.unsplash.com/photo-1611974765270-ca1258634369?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    color: var(--white);
    overflow: hidden;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.85); z-index: 1; }

.hero-section .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; font-weight: 800; }
.highlight { color: var(--accent); }
.hero-sub { font-size: 1.2rem; margin-bottom: 35px; color: #cbd5e1; max-width: 90%; }
.trust-badges { margin-top: 40px; display: flex; gap: 20px; color: #94a3b8; font-size: 0.9rem; }
.trust-badges i { color: var(--success); margin-right: 8px; }

/* Hero Image/Mockup Styling */
.mockup-container { position: relative; }
.floating-img { width: 100%; border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); animation: float 6s ease-in-out infinite; }
.glass-card {
    position: absolute; bottom: -20px; left: -20px;
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
    padding: 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2);
    display: flex; gap: 20px; color: white;
}
.glass-card strong { display: block; font-size: 1.2rem; color: var(--success); }
.glass-card small { font-size: 0.8rem; color: #cbd5e1; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Stats Bar */
.stats-bar { background: var(--white); padding: 40px 0; margin-top: -50px; position: relative; z-index: 5; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.stats-bar .container { display: flex; justify-content: space-around; text-align: center; }
.stat-item h2 { font-size: 2.5rem; color: var(--primary); font-weight: 800; }
.stat-item p { color: var(--text); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Sections General */
.section { padding: 100px 0; }
.bg-light { background: var(--light); }
.section-title { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; font-weight: 700; }

/* About / Split Section */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-image img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.tag { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.split-text h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; line-height: 1.2; }
.check-list { margin-top: 30px; }
.check-list li { margin-bottom: 15px; font-size: 1.05rem; display: flex; align-items: center; }
.check-list i { color: var(--success); margin-right: 15px; background: rgba(16, 185, 129, 0.1); padding: 5px; border-radius: 50%; width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

/* MyFxBook Placeholder */
.results-container { text-align: center; max-width: 800px; margin: 0 auto; }
.myfxbook-placeholder { border: 2px dashed #cbd5e1; padding: 60px; border-radius: 10px; background: white; color: #94a3b8; }
.myfxbook-placeholder i { font-size: 3rem; margin-bottom: 20px; color: var(--primary); }

/* Pricing */
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.pricing-card { background: var(--white); padding: 50px 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; width: 350px; position: relative; border: 1px solid #e2e8f0; transition: 0.3s; }
.pricing-card:hover { transform: translateY(-10px); }
.pricing-card.popular { border: 2px solid var(--primary); transform: scale(1.05); z-index: 2; }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 6px 20px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3); }
.price { font-size: 3rem; font-weight: 800; color: var(--secondary); margin: 20px 0; }
.pricing-card ul { margin-bottom: 35px; text-align: left; }
.pricing-card li { margin-bottom: 12px; color: var(--text); font-size: 1rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 8px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.faq-item { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.faq-item h4 { color: var(--secondary); margin-bottom: 10px; font-size: 1.1rem; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--secondary); padding: 60px; border-radius: 20px; color: white; }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.contact-info p { opacity: 0.8; margin-bottom: 30px; }
.contact-details li { margin-bottom: 20px; font-size: 1.1rem; opacity: 0.9; }
.contact-details i { color: var(--accent); margin-right: 15px; }

.contact-form-box { background: var(--white); padding: 40px; border-radius: 12px; color: var(--text); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 1rem; transition: 0.3s; background: #f8fafc; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: white; outline: none; }
.error-msg { color: var(--error); font-size: 0.85rem; display: none; margin-top: 5px; }
.form-group.error input { border-color: var(--error); }
.form-group.error .error-msg { display: block; }
#formStatus { margin-top: 15px; text-align: center; font-weight: 600; }
#formStatus.success { color: var(--success); }
#formStatus.error { color: var(--error); }

/* Footer */
footer { background: var(--dark); color: #64748b; padding: 60px 0 30px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 30px; }
.social-links a { color: var(--white); font-size: 1.2rem; margin-left: 20px; transition: 0.3s; }
.social-links a:hover { color: var(--primary); }
.disclaimer { font-size: 0.75rem; line-height: 1.6; opacity: 0.6; text-align: justify; }

/* Responsive / Mobile Styles */
@media (max-width: 960px) {
    .hero-section .container, .split-layout, .contact-wrapper { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-image { order: -1; margin-bottom: 40px; }
    .hero-btns { justify-content: center; }
    .trust-badges { justify-content: center; }
    .stats-bar .container { flex-wrap: wrap; gap: 30px; }
    .pricing-card.popular { transform: scale(1); }
    
    /* MOBILE MENU STYLES */
    .menu-toggle { display: block; z-index: 1001; }
    
    .nav-links { 
        display: none; /* Hidden by default */
        position: absolute;
        top: 80px; /* Height of the navbar */
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #f1f5f9;
    }

    /* This class is added by JS when clicked */
    .nav-links.active {
        display: flex;
    }

    .nav-links li { 
        margin: 15px 0; 
        text-align: center;
        width: 100%;
    }
    
    .nav-links .btn-nav {
        display: inline-block;
        margin-top: 10px;
    }
    
    .faq-grid { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 30px; }
}