/* ==================================
   VARIABLES & SETUP
================================== */
:root {
    --bg-dark: #0A0D10;
    --bg-card: rgba(20, 25, 30, 0.7);
    --bg-glass: rgba(10, 255, 65, 0.05);
    
    --neon-green: #00FF41;
    --neon-glow: 0 0 15px rgba(0, 255, 65, 0.5);
    --neon-glow-strong: 0 0 30px rgba(0, 255, 65, 0.8);
    
    --text-main: #F4F4F6;
    --text-muted: #A0AAB2;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-neon: rgba(0, 255, 65, 0.3);
    
    --font-sans: 'Inter', sans-serif;
    --font-sans: 'Inter', sans-serif;
    --border-radius: 12px;
    --border-radius-mobile: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Utils */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.w-100 { width: 100%; }
.py-section { padding: 80px 0; }
.neon-text { color: var(--neon-green); text-shadow: var(--neon-glow); font-weight: 800; }
.section-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
.glass-panel { background: rgba(20, 24, 30, 0.6); backdrop-filter: blur(16px); border: 1px solid var(--border-neon); border-radius: 24px; }
.gold-text { color: #ffc107; text-shadow: 0 0 10px rgba(255,193,7,0.4); }

/* Buttons */
.btn-primary {
    display: inline-block; background-color: var(--neon-green); color: #000;
    padding: 16px 32px; font-size: 1.1rem; font-weight: 800; border-radius: 8px;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
    box-shadow: var(--neon-glow); text-align: center; border: none; cursor: pointer;
}
.btn-primary:hover { box-shadow: var(--neon-glow-strong); transform: translateY(-3px); background-color: #33ff66; }
.btn-large { font-size: 1.3rem; padding: 20px 40px; }
.btn-outline {
    display: inline-block; background: transparent; color: var(--neon-green);
    border: 2px solid var(--neon-green); padding: 10px 24px; font-weight: 600;
    border-radius: 8px; transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--neon-green); color: #000; box-shadow: var(--neon-glow); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0); }
}
.animate-pulse { animation: pulse 2s infinite; }

/* Sub CTA under button fixed */
.sub-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 0.95rem; color: var(--text-main); font-weight: 600; margin-top: 4px;
}
.sub-cta-icon {
    width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
}

/* ==================================
   QUIZ OVERLAY
================================== */
body.quiz-locked { overflow: hidden; height: 100vh; }
.quiz-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 7, 9, 0.95); backdrop-filter: blur(10px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease; padding: 24px;
}
.quiz-container { max-width: 600px; width: 100%; padding: 40px; position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center;}
.quiz-step { display: none; width: 100%; text-align: center; animation: fadeIn 0.4s ease forwards; }
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quiz-icon { font-size: 3rem; margin-bottom: 16px; }
.glow-icon { text-shadow: 0 0 20px #00FF41; }
.quiz-step h2 { font-size: 1.5rem; margin-bottom: 8px; line-height: 1.3; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.btn-quiz {
    background: rgba(255,255,255,0.05); color: #FFF; border: 1px solid var(--border-color);
    padding: 18px 24px; border-radius: 8px; font-size: 1.1rem; cursor: pointer;
    transition: all 0.2s; text-align: left;
}
.btn-quiz:hover { background: rgba(0,255,65,0.1); border-color: var(--neon-green); box-shadow: 0 0 10px rgba(0,255,65,0.2); transform: translateX(5px); }
.progress-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; margin-bottom: 24px; overflow: hidden; }
.progress { height: 100%; background: var(--neon-green); transition: width 0.4s ease; box-shadow: 0 0 10px var(--neon-green); }
.spinner {
    width: 60px; height: 60px; margin: 0 auto; border: 5px solid rgba(0,255,65,0.2); border-top: 5px solid var(--neon-green);
    border-radius: 50%; animation: spin 1s linear infinite; box-shadow: 0 0 15px rgba(0,255,65,0.5);
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* INSTALL TERMINAL CSS */
.install-terminal {
    max-width: 500px; width: 100%; margin: 0 auto;
    background: #0D1117; border: 1px solid var(--border-neon);
    border-radius: 12px; overflow: hidden; box-shadow: var(--neon-glow);
    text-align: left; font-family: 'Courier New', Courier, monospace;
}
.terminal-header {
    background: #161B22; padding: 10px 15px; display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }
.terminal-title { font-size: 0.8rem; color: #8B949E; margin-left: 10px; }
.terminal-body { padding: 30px 25px; }
.install-status { font-size: 1rem; color: #FFF; margin-bottom: 15px; font-weight: bold; }
.progress-bar-container {
    width: 100%; height: 20px; background: rgba(255,255,255,0.05);
    border-radius: 10px; overflow: hidden; margin-bottom: 20px;
    border: 1px solid rgba(0,255,65,0.2);
}
.progress-fill {
    height: 100%; width: 82%; background: linear-gradient(90deg, #00FF41, #33ff66);
    box-shadow: 0 0 15px var(--neon-green);
    animation: progressAnim 3s ease-in-out infinite;
}
@keyframes progressAnim {
    0% { width: 82%; opacity: 0.8; }
    50% { width: 85%; opacity: 1; }
    100% { width: 82%; opacity: 0.8; }
}
.terminal-logs { font-size: 0.85rem; color: #8B949E; line-height: 1.5; }
.terminal-logs div { margin-bottom: 5px; }

/* EXIT INTENT POPUP */
.exit-popup {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
    z-index: 10000; display: none; align-items: center; justify-content: center;
    transition: opacity 0.5s ease; padding: 20px; opacity: 0;
}
.exit-container { max-width: 450px; width: 100%; padding: 40px 30px; border-color: #FF4141; box-shadow: 0 0 30px rgba(255, 65, 65, 0.2); }
.exit-price-box { background: rgba(0,0,0,0.4); padding: 20px; border-radius: 12px; margin: 20px 0; border: 1px dashed rgba(255,255,255,0.2); }
.exit-close-btn { background: none; border: none; color: #555; font-size: 0.8rem; margin-top: 15px; cursor: pointer; text-decoration: underline; }
.exit-close-btn:hover { color: #888; }

/* Header */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: rgba(10, 13, 16, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); z-index: 1000; padding: 16px 0; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; }

/* Hero */
.hero { position: relative; padding: 160px 0 80px; background-image: linear-gradient(to bottom, rgba(10,13,16,0.5), var(--bg-dark)), url('assets/hero_bg.png'); background-position: center; background-size: cover; background-attachment: scroll; }
.hero-content { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.badge { display: inline-block; background: var(--bg-glass); border: 1px solid var(--border-neon); color: var(--neon-green); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; max-width: 500px; }
.hero-cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

/* Hero Features Grid (Replaced Image) */
.hero-image-grid { flex: 1; display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; }
.pack-feature-card {
    background: rgba(20, 24, 30, 0.8); backdrop-filter: blur(10px);
    border: 1px solid var(--border-color); border-radius: 16px;
    padding: 20px 32px; display: flex; align-items: center; gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); width: 100%; max-width: 360px;
}
.pack-feature-card svg { width: 32px; height: 32px; color: var(--neon-green); }
.pack-feature-card span { font-size: 1.1rem; font-weight: 600; color: #fff; }
.main-feature-card { background: rgba(0, 255, 65, 0.05); border-color: var(--neon-green); box-shadow: var(--neon-glow); padding: 32px; transform: scale(1.05); z-index: 2; }
.huge-number { font-size: 3rem; line-height: 1; font-weight: 900; }
.floating-1 { animation: float 6s ease-in-out infinite; }
.floating-2 { animation: float 5s ease-in-out infinite 1s; }
.floating-3 { animation: float 7s ease-in-out infinite 2s; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* Problem Section */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.problem-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 40px 24px; transition: transform 0.3s; }
.problem-card:hover { transform: translateY(-5px); }
.icon-danger { color: #FF4141; margin-bottom: 20px; }
.icon-success { margin-bottom: 20px; }
.success-card { background: linear-gradient(180deg, rgba(0, 255, 65, 0.05) 0%, rgba(20, 25, 30, 0.7) 100%); border-color: var(--border-neon); position: relative; overflow: hidden; }
.success-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--neon-green); box-shadow: var(--neon-glow); }
.problem-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.problem-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Solution */
.split-layout { display: flex; align-items: center; gap: 60px; }
.solution-image { flex: 1; position: relative; }
.tech-border { border: 2px solid var(--border-neon); box-shadow: var(--neon-glow); border-radius: var(--border-radius); }
.solution-text { flex: 1; display: flex; flex-direction: column; justify-content: center;}
.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; background: var(--bg-card); padding: 24px; border-radius: var(--border-radius); border: 1px solid var(--border-color); }
.neon-icon { width: 32px; height: 32px; color: var(--neon-green); flex-shrink: 0; display: flex;}

/* BONUSES GRID */
.glow-badge { background: rgba(255,193,7,0.1); color: #ffc107; border-color: #ffc107; }
.grid-card-bonuses { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: left; }
.bonus-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255,193,7, 0.3); padding: 32px; border-radius: var(--border-radius); transition: transform 0.3s; display: flex; flex-direction: column;}
.bonus-card:hover { transform: translateY(-4px); background: rgba(255, 193, 7, 0.05); }
.bonus-tag { display: inline-block; align-self: flex-start; font-size: 0.75rem; font-weight: 900; background: #ffc107; color: #000; padding: 4px 8px; border-radius: 4px; letter-spacing: 1px; }
.premium-tag { background: var(--neon-green); color: #000; }
.bonus-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.bonus-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; flex-grow: 1;}
.bonus-value { font-size: 0.95rem; font-weight: 600; color: #aaa; margin-top: auto;}
.strike { text-decoration: line-through; color: #FF4141; margin-left: 6px; }
.premium-bonus { border: 2px solid var(--neon-green); background: rgba(0,255,65,0.05); }
.premium-bonus:hover { background: rgba(0,255,65,0.1); }

/* PRICING & GUARANTEE */
.pricing-section { position: relative; }
.pricing-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: var(--neon-green); filter: blur(200px); opacity: 0.1; z-index: -1; }
.pricing-card { max-width: 600px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,255,65,0.1); padding: 40px; }
.price-box { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 32px; }
.old-price { display: block; color: #FF4141; text-decoration: line-through; font-size: 1.1rem; margin-bottom: 8px; }
.new-price { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.large-price { font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.large-price .number { font-size: 5.5rem; letter-spacing: -3px; }
.cash-price { display: block; color: var(--text-muted); font-size: 1rem; }

/* Timer CSS */
.timer-wrapper { background: rgba(255, 65, 65, 0.1); border: 1px solid #FF4141; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; }
.timer-wrapper h4 { color: #FF4141; margin-bottom: 12px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;}
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 12px; }
.time-box { display: flex; flex-direction: column; background: #FF4141; color: #FFF; padding: 12px 16px; border-radius: 8px; min-width: 70px; }
.time-box span { font-size: 2rem; font-weight: 900; line-height: 1; }
.time-box small { font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; }
.colon { font-size: 2rem; font-weight: 900; color: #FF4141; margin-bottom: 8px; }

/* Secure Checkout Link CSS */
.secure-checkout-info { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--neon-green); margin-top: 16px; font-size: 0.95rem; font-weight: 600; }
.secure-checkout-info svg { width: 18px; height: 18px; }

/* Guarantee Box Layout Fix */
.guarantee-box { 
    display: flex; align-items: center; text-align: left; gap: 24px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    padding: 24px; border-radius: 12px; margin-top: 32px;
}
.g-icon { background: var(--neon-green); color: #000; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; flex-shrink: 0; box-shadow: var(--neon-glow); }
.g-text strong { display: block; font-size: 1.1rem; margin-bottom: 4px; color: #FFF; }
.g-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }

/* CHECKLIST IN PRICING */
.checklist-box {
    text-align: left;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.checklist-item strong { color: #fff; }
.check-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.highlight-item {
    border-color: var(--border-neon);
    background: rgba(0,255,65,0.04);
    color: var(--text-main);
}

/* FOOTER */
footer { border-top: 1px solid var(--border-color); padding: 60px 0; text-align: center; background: #050709; }
.footer-logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 16px; }
.footer-links { margin: 24px 0; display: flex; justify-content: center; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--neon-green); }

/* AUTHOR SECTION */
.author-card {
    display: flex; align-items: center; gap: 50px;
    padding: 50px 40px;
}
.author-photo-wrap { flex-shrink: 0; text-align: center; }
.author-photo {
    width: 180px; height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-green);
    box-shadow: var(--neon-glow-strong);
    margin-bottom: 12px;
}
.author-badge {
    font-size: 0.8rem; font-weight: 700;
    background: var(--neon-green); color: #000;
    padding: 4px 12px; border-radius: 50px; display: inline-block;
}
.author-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* SOCIAL PROOF TOAST */
.social-toast {
    position: fixed;
    bottom: 24px; left: 24px;
    display: flex; align-items: center; gap: 12px;
    background: rgba(15, 20, 26, 0.95);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    padding: 14px 18px;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-toast.show { transform: translateY(0); opacity: 1; }
.toast-avatar {
    font-size: 1.8rem;
    background: rgba(0,255,65,0.1);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.toast-text { font-size: 0.85rem; line-height: 1.5; color: var(--text-main); }
.toast-text small { display: block; color: var(--text-muted); font-size: 0.75rem; margin-top: 2px; }

@media (max-width: 992px) {
    .author-card { flex-direction: column; text-align: center; padding: 30px 20px; }
    .author-photo { width: 140px; height: 140px; }
}


/* TESTIMONIALS STYLES */
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}
.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: scale(1.02); }
.testimonial-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* FAQ ACCORDION STYLES */
.faq-section { background: rgba(0,0,0,0.2); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--border-neon); background: rgba(255,255,255,0.05); }
.faq-item.active { border-color: var(--neon-green); background: rgba(0,255,65,0.02); box-shadow: 0 0 20px rgba(0,255,65,0.05); }

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.3s ease;
}
.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--neon-green);
    flex-shrink: 0;
}
.faq-item.active .faq-question { color: var(--neon-green); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0,0,0,0.2);
}
.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .hero-content, .split-layout { flex-direction: column; text-align: center; }
    .py-section { padding: 50px 0; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 20px; }
    .hero p { margin: 0 auto 30px; }
    .hero-cta-group { align-items: center; margin: 0 auto; width: 100%; }
    .btn-primary { width: 100%; padding: 18px 20px; font-size: 1rem; }
    .cards-grid, .grid-card-bonuses { grid-template-columns: 1fr; gap: 15px; }
    .guarantee-box { flex-direction: column; text-align: center; gap: 16px; padding: 20px;}
    
    /* Remove borders/shadows for clean mobile look & PageSpeed */
    .problem-card, .feature-item, .bonus-card, .program-cat-card { 
        border: none; 
        background: rgba(255,255,255,0.03); 
        padding: 30px 20px;
    }
    .pricing-card { border: none; padding: 30px 15px; background: rgba(15,18,22,0.9); box-shadow: none; width: 100%; }
    .price-box { padding: 25px 15px; }
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .btn-outline { display: none; }
    .navbar { padding: 12px 0; }
    .logo { font-size: 1.2rem; }
    .hero { padding: 100px 0 50px; }
    .hero h1 { font-size: 2rem; }
    .large-price .number { font-size: 4rem; }
    .quiz-container { padding: 30px 20px; margin: 0 10px; width: calc(100% - 20px); }
    .pack-feature-card { margin: 0 auto; padding: 15px 20px; border: none; background: rgba(255,255,255,0.02); }
    .main-feature-card { transform: scale(1); margin-bottom: 15px; border: 1px solid var(--neon-green); }
    .huge-number { font-size: 2.5rem; }
    .timer-wrapper { padding: 15px 10px; }
    .time-box { min-width: 60px; padding: 10px; }
    .time-box span { font-size: 1.5rem; }
    
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}
