:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a0aabf;
    --primary-glow: #00f0ff;
    --secondary-glow: #ff0055;
    --gold: #ffb703;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background-color: var(--bg-color); color: var(--text-main); overflow-x: hidden; scroll-behavior: smooth; }

.navbar {
    position: fixed; top: 0; width: 100%; padding: 20px 50px;
    background: rgba(11, 15, 25, 0.8); backdrop-filter: blur(10px);
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; border-bottom: 1px solid var(--glass-border);
}

.logo { font-size: 24px; font-weight: 700; }
.logo span { color: var(--primary-glow); }

.nav-links { display: flex; gap: 15px; }

.nav-btn {
    color: var(--bg-color); background: var(--gold);
    padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: 600;
    transition: all 0.4s ease;
}
.nav-btn:hover { box-shadow: 0 0 15px var(--gold); transform: scale(1.05); }

.highlight { color: var(--primary-glow); }
.cta-button {
    display: inline-block; padding: 15px 40px; font-size: 18px; font-weight: 600;
    color: #fff; background: linear-gradient(45deg, #0051ff, #00f0ff);
    border: none; border-radius: 30px; cursor: pointer; text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.primary-glow:hover { box-shadow: 0 0 25px var(--primary-glow); transform: translateY(-3px) scale(1.02); }

.hidden-animate { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.show-animate { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 100px 20px 20px 20px;
    background: radial-gradient(circle at top, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
}
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 30px; }
.trust-badges { margin-bottom: 40px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;}
.trust-badges span { background: var(--card-bg); padding: 10px 20px; border-radius: 20px; border: 1px solid var(--glass-border); }
.trust-badges i { color: var(--gold); margin-right: 8px; }

.doubts { padding: 100px 20px; text-align: center; max-width: 1200px; margin: auto; }
.doubts .subtitle { color: var(--text-muted); margin-bottom: 50px; }
.cards-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.doubt-card {
    background: var(--card-bg); padding: 30px 15px; border-radius: 15px;
    border: 1px solid var(--glass-border); transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}
.doubt-card:hover { transform: translateY(-10px); border-color: var(--secondary-glow); box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2); }
.doubt-card i { font-size: 30px; color: var(--secondary-glow); margin-bottom: 15px; }
.doubt-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.doubt-card p { font-size: 0.9rem; color: var(--text-muted); }

.expert { padding: 100px 50px; background: rgba(0,0,0,0.3); }
.expert-container { display: flex; align-items: center; gap: 50px; max-width: 1200px; margin: 0 auto; }
.expert-image { flex: 1; }
.image-placeholder { 
    height: 400px; border-radius: 20px; background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex; align-items: center; justify-content: center; border: 2px solid var(--glass-border);
}
.expert-icon { font-size: 100px; color: var(--text-muted); }
.expert-details { flex: 1; }
.fluff-list { list-style: none; margin-top: 20px; }
.fluff-list li { margin-bottom: 15px; color: var(--text-muted); display: flex; align-items: center; }
.fluff-list i { color: var(--primary-glow); margin-right: 15px; font-size: 20px; }

.offer { padding: 100px 20px; text-align: center; }
.offer-box {
    max-width: 600px; margin: 0 auto; background: var(--card-bg);
    padding: 50px; border-radius: 20px; border: 1px solid var(--primary-glow);
    position: relative; box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
}
.pulse-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--secondary-glow); color: #fff; padding: 5px 20px;
    border-radius: 20px; font-weight: 600; animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 0, 85, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0); } }
.offer-features { list-style: none; margin: 30px 0; text-align: left; }
.offer-features li { margin-bottom: 15px; font-size: 1.1rem; }
.offer-features i { color: var(--primary-glow); margin-right: 10px; width: 20px; }
.pricing { margin: 30px 0; }
.old-price { display: block; color: var(--secondary-glow); font-size: 1.2rem; margin-bottom: 5px; }
.new-price { display: block; color: var(--gold); font-size: 2.5rem; font-weight: 700; }
.fomo-text { color: var(--text-muted); font-size: 0.9rem; font-style: italic; margin-top: 10px; }

/* Lead Form Popup */
.lead-popup {
    position: fixed; bottom: -100%; right: -100%; width: 350px; max-width: 90%;
    background: #1e293b; padding: 30px; border-radius: 15px; border: 1px solid var(--primary-glow);
    box-shadow: 0 0 30px rgba(0,240,255,0.2); z-index: 3000; transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.lead-popup.active { top: 50%; left: 50%; bottom: auto; right: auto; transform: translate(-50%, -50%); }
.lead-popup h3 { margin-bottom: 5px; color: var(--primary-glow); }
.lead-popup p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.lead-popup input {
    width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 8px; border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5); color: #fff; outline: none;
}
.lead-popup input:focus { border-color: var(--primary-glow); }
.lead-popup button { width: 100%; padding: 12px; font-size: 16px; }
.close-popup { position: absolute; top: 15px; right: 15px; font-size: 24px; cursor: pointer; color: var(--text-muted); }

/* Modals (Payment & Auth) */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 2000; align-items: center; justify-content: center; }
.modal-content { background: #1e293b; padding: 40px; border-radius: 15px; text-align: center; max-width: 400px; width: 90%; position: relative; border: 1px solid var(--glass-border); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 24px; cursor: pointer; color: var(--text-muted); }

/* Payment Specific */
.payment-step { text-align: center; }
.payment-step p { margin-bottom: 20px; color: var(--text-muted); }
.payment-step input {
    width: 100%; padding: 15px; margin-bottom: 15px; border-radius: 8px; border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5); color: #fff; font-size: 16px; outline: none; text-align: center; letter-spacing: 1px;
}
.payment-step input:focus { border-color: var(--primary-glow); box-shadow: 0 0 15px rgba(0,240,255,0.2); }
.dummy-qr { border-radius: 10px; margin-bottom: 15px; border: 4px solid #fff; }

/* Auth Modal Specific */
.auth-toggle { display: flex; justify-content: center; margin-bottom: 20px; gap: 10px; }
.auth-toggle button { background: transparent; color: var(--text-muted); border: none; font-size: 18px; cursor: pointer; padding: 5px 10px; }
.auth-toggle button.active { color: var(--primary-glow); border-bottom: 2px solid var(--primary-glow); }
.auth-form { display: none; text-align: left; }
.auth-form.active { display: block; }
.auth-form input { width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 8px; border: 1px solid var(--glass-border); background: rgba(0,0,0,0.5); color: #fff; outline: none; }
.auth-form input:focus { border-color: var(--primary-glow); }
.otp-row { display: flex; gap: 10px; }
.otp-row input { flex: 1; }
.otp-row button { background: #28a745; color: white; border: none; border-radius: 8px; padding: 0 15px; cursor: pointer; margin-bottom: 15px; }

footer { padding: 40px 20px; text-align: center; border-top: 1px solid var(--glass-border); background: #05080f; }
.footer-badges { max-width: 800px; margin: 0 auto 30px; text-align: left; }
.badge { background: var(--card-bg); padding: 15px; margin-bottom: 10px; border-radius: 8px; font-size: 0.9rem; color: var(--text-muted); }
.badge i { color: var(--gold); margin-right: 10px; }

@media (max-width: 768px) {
    .expert-container { flex-direction: column; }
    .hero-content h1 { font-size: 2.2rem; }
    .navbar { padding: 15px 20px; flex-direction: column; gap: 10px;}
    .nav-btn { padding: 8px 12px; font-size: 14px; }
}