/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
  --bg-dark: #05050a;
  --bg-card: rgba(20, 20, 30, 0.6);
  --bg-card-hover: rgba(30, 30, 45, 0.8);
  
  --primary: #f97316;
  --primary-hover: #ea580c;
  --secondary: #3b82f6;
  --accent: #ec4899;
  --success: #10b981;
  --danger: #ef4444;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(249, 115, 22, 0.3);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    max-width: 100%; 
    overflow-x: hidden !important; 
    width: 100%; 
    position: relative;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
@media (max-width: 768px) {
    body { padding-bottom: 80px; }
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }
.text-gradient { background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Backgrounds */
.bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); z-index: -1; opacity: 0.4; pointer-events: none; }
.glow-1 { top: -10%; left: -10%; width: 50%; height: 50%; background: radial-gradient(circle, var(--primary) 0%, transparent 70%); }
.glow-2 { top: 40%; right: -20%; width: 60%; height: 60%; background: radial-gradient(circle, var(--secondary) 0%, transparent 70%); opacity: 0.2; }

/* Announcement Bar */
.announcement-bar { background: linear-gradient(90deg, #ea580c, #f97316); color: white; text-align: center; padding: 0.75rem; font-size: 0.875rem; font-weight: 500; display: flex; justify-content: center; align-items: center; gap: 0.5rem; position: relative; z-index: 101; }
.pulse-dot { width: 8px; height: 8px; background: #fbbf24; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(251, 191, 36, 0); } 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); } }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: linear-gradient(to right, var(--primary), var(--secondary)); color: white; padding: 1rem 2rem; border-radius: 50px; font-weight: 600; font-family: var(--font-heading); transition: var(--transition-normal); border: none; cursor: pointer; position: relative; overflow: hidden; }
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.125rem; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4); }
.glow-btn::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent); transform: rotate(45deg); animation: shimmer 3s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }
.btn-outline { display: inline-block; padding: 0.6rem 1.5rem; border: 1px solid var(--border-light); border-radius: 50px; font-weight: 500; transition: var(--transition-fast); cursor: pointer; position: relative; z-index: 10; pointer-events: auto; }
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: var(--primary); }

/* Glass Cards */
.glass-panel, .glass-card { background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-light); border-radius: var(--radius-lg); }
.glass-card { padding: 2rem; transition: var(--transition-normal); }
.hover-lift:hover { transform: translateY(-5px); border-color: var(--border-glow); box-shadow: 0 10px 30px rgba(0,0,0,0.5); background: var(--bg-card-hover); }

/* Badge */
.badge { display: inline-block; padding: 0.4rem 1rem; background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.3); color: #fdba74; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.urgency-badge { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.3); color: #fca5a5; }

/* Navbar */
.navbar { position: sticky; top: 0; left: 0; right: 0; width: auto; z-index: 1000; padding: 1rem 0; transition: var(--transition-normal); background: transparent; backdrop-filter: blur(0); border-bottom: 1px solid transparent; pointer-events: auto; }
.navbar.scrolled { background: rgba(5, 5, 10, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light); box-shadow: 0 10px 30px rgba(0,0,0,0.5); padding: 0.75rem 0; }
.nav-content { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1001; }
.logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.logo span { color: var(--primary); }

/* Hero */
.hero { padding: 6rem 0; min-height: 90vh; display: flex; align-items: center; text-align: center; position: relative; overflow: hidden; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero-subtext { font-size: 1.25rem; max-width: 700px; margin: 0 auto 3rem; color: #cbd5e1; }
.hero-subtext strong { color: white; }

/* VSL Container */
.vsl-container { margin: 0 auto 3rem; max-width: 800px; border-radius: var(--radius-lg); position: relative; padding: 10px; background: linear-gradient(135deg, rgba(249,115,22,0.5), rgba(59,130,246,0.5)); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.vsl-wrapper { position: relative; width: 100%; padding-top: 56.25%; /* 16:9 Aspect Ratio */ overflow: hidden; border-radius: var(--radius-md); background: #000; cursor: pointer; }
.vsl-thumbnail { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: 0.3s; }
.vsl-wrapper:hover .vsl-thumbnail { opacity: 0.4; transform: scale(1.05); }
.vsl-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; gap: 1rem; }
.vsl-overlay span { font-weight: 600; font-family: var(--font-heading); letter-spacing: 1px; text-transform: uppercase; }
.play-btn { width: 70px; height: 70px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 0 30px rgba(249,115,22,0.6); }
.play-btn::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 18px; border-color: transparent transparent transparent white; margin-left: 6px; }
.pulse-ring::before { content: ''; position: absolute; inset: -15px; border-radius: 50%; border: 2px solid var(--primary); animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.3); opacity: 0; } }

.cta-group { display: flex; flex-direction: column; align-items: center; gap: 1rem; position: relative; z-index: 100; pointer-events: auto; }
.guarantee { font-size: 0.875rem; color: #10b981; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 500;}

/* Pain Points / Comparison */
.pain-points { padding: 5rem 0; background: rgba(255,255,255,0.02); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; }
.card-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-light); }
.comparison-grid ul li { margin-bottom: 1rem; padding-left: 1.5rem; position: relative; color: var(--text-muted); }
.comparison-grid ul li::before { content: '•'; position: absolute; left: 0; color: #475569; font-size: 1.5rem; line-height: 1; top: -2px; }
.bad-way { border-top: 4px solid var(--danger); opacity: 0.8; }
.good-way { border-top: 4px solid var(--success); background: rgba(16, 185, 129, 0.05); }
.good-way ul li { color: var(--text-main); font-weight: 500; }
.good-way ul li::before { color: var(--success); }

/* Modules */
.modules { padding: 6rem 0; }
.grid-3, .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.module-number { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.5rem; }
.highlight-card { border-color: var(--primary); background: linear-gradient(180deg, rgba(139,92,246,0.1) 0%, rgba(20,20,30,0.6) 100%); }

/* Social Proof */
.social-proof { padding: 5rem 0; background: rgba(255,255,255,0.02); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.rating { margin-bottom: 1rem; letter-spacing: 2px; }
.review { font-style: italic; font-size: 1.1rem; color: var(--text-main); margin-bottom: 1.5rem; }
.student { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border-light); padding-top: 1rem; }
.student-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; }
.student-info { display: flex; flex-direction: column; }
.student-info strong { font-size: 0.9rem; }
.student-info span { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ Section */
.faq-section { padding: 6rem 0; max-width: 800px; margin: 0 auto; }
.faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; color: var(--text-main); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition-fast); }
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-icon { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.faq-question.active .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 1.5rem 1.5rem; margin: 0; }

/* Pricing */
.pricing { padding: 6rem 0; position: relative; z-index: 10;}
.pricing-wrapper { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; padding: 4rem; align-items: center; }
.feature-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem;}
.feature-list li { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; font-weight: 500; color: #e2e8f0; }
.feature-list svg { width: 24px; height: 24px; flex-shrink: 0;}

.pricing-card { background: linear-gradient(180deg, var(--bg-card) 0%, rgba(5,5,10,1) 100%); padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-glow); box-shadow: 0 0 40px rgba(139, 92, 246, 0.2); text-align: center; position: relative; overflow: hidden; }
.scarcity-text { background: rgba(239, 68, 68, 0.15); color: #fca5a5; padding: 0.5rem; font-size: 0.875rem; font-weight: 600; margin: -2.5rem -2.5rem 2rem; border-bottom: 1px solid rgba(239, 68, 68, 0.3); }
.price-header { margin-bottom: 2rem; }
.original-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.2rem; }
.price { font-size: 3.5rem; font-weight: 900; font-family: var(--font-heading); color: var(--text-main); line-height: 1; margin: 0.5rem 0; }
.payment-methods { font-size: 0.875rem; color: var(--text-muted); }

.full-width { width: 100%; text-align: center; }
.secure-checkout { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: #94a3b8; font-weight: 500; }

/* Footer */
footer { padding: 3rem 0; border-top: 1px solid var(--border-light); margin-top: 4rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a:hover { color: white; }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.float-animation { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .pricing-wrapper { grid-template-columns: 1fr; padding: 2.5rem; gap: 3rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; line-height: 1.1; margin-bottom: 0.75rem; }
  h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .hero { padding: 0.75rem 0 0.5rem; min-height: auto; }
  .hero-subtext { font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.5; }
  .urdu-text { font-size: 1.4rem !important; margin-bottom: 0.5rem !important; }
  .section-header { margin-bottom: 2rem; }
  .navbar { padding: 0.75rem 0; }
  .nav-content { padding: 0 1.5rem; }
  .logo { font-size: 1.15rem; }
  .btn-primary { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .glass-card { padding: 1.5rem; overflow: hidden; }
  section { padding: 3rem 0 !important; }
  .vsl-container { margin-bottom: 1.5rem; padding: 6px; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing-wrapper { padding: 1rem; }
  .badge { margin-bottom: 1rem !important; }
  .footer-content { flex-direction: column; text-align: center; }
}

/* Instructor Section */
.instructor-section { padding: 5rem 0; }
.instructor-card { display: grid; grid-template-columns: 350px 1fr; gap: 3rem; align-items: center; padding: 0; overflow: hidden; }
.instructor-image { height: 100%; min-height: 400px; }
.instructor-image img { width: 100%; height: 100%; object-fit: cover; }
.instructor-bio { padding: 3rem 3rem 3rem 0; }
.instructor-stats { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; color: var(--primary); font-family: var(--font-heading); }
.stat span { font-size: 0.875rem; color: var(--text-muted); }

/* Timeline Steps */
.timeline-steps { display: flex; justify-content: center; align-items: flex-start; max-width: 800px; margin: 0 auto 4rem; text-align: center; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.step-circle { width: 50px; height: 50px; border-radius: 50%; background: rgba(139, 92, 246, 0.2); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.step h4 { font-size: 1.1rem; margin: 0; }
.step p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.step-connector { height: 2px; flex: 1; background: var(--border-light); margin-top: 25px; }

/* Guarantee Badge */
.guarantee-badge { margin-top: 2rem; padding: 1.5rem; background: rgba(16, 185, 129, 0.1); border: 1px dashed rgba(16, 185, 129, 0.4); border-radius: var(--radius-sm); display: flex; gap: 1rem; align-items: flex-start; text-align: left; }
.guarantee-icon { font-size: 2rem; }
.guarantee-text strong { display: block; color: var(--success); font-size: 1.1rem; margin-bottom: 0.25rem; }
.guarantee-text p { margin: 0; font-size: 0.875rem; color: #cbd5e1; }

/* Income Potential Cards */
.income-card {
    text-align: center;
    position: relative;
    padding-top: 3rem;
}

.income-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
}

.income-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--success);
}

.income-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roadmap Visualization */
.roadmap-container {
    position: relative;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--success));
    opacity: 0.3;
    z-index: 1;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.roadmap-step {
    text-align: center;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.roadmap-step.highlight .step-marker {
    background: var(--success);
    color: white;
    border-color: var(--success);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

/* Comparison Table */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    padding: 2.5rem;
}

.comparison-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.comparison-card.bad h3 { color: #ef4444; }
.comparison-card.good h3 { color: var(--success); }

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.comparison-card.highlight-border {
    border: 2px solid var(--success);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .roadmap-line {
        display: none;
    }
    .comparison-wrapper {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 25px; width: 60px; height: 60px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 10000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); color: white; }
.whatsapp-float svg { width: 32px; height: 32px; }

@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 15px; width: 55px; height: 55px; }
}

@media (max-width: 768px) {
  .instructor-card { grid-template-columns: 1fr; }
  .instructor-bio { padding: 1.5rem; }
  .instructor-image { min-height: 250px; }
  .timeline-steps { flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
  .step-connector { display: none; }
  section { padding: 3.5rem 0 !important; }
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    padding: 0.75rem 1rem;
    background: rgba(5, 5, 10, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-light);
    z-index: 9998;
    display: none;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
    display: flex;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
    .mobile-sticky-cta .btn-primary {
        width: 100%;
        padding: 0.85rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    /* Move WhatsApp float up when CTA is visible */
    .mobile-sticky-cta.visible ~ .whatsapp-float {
        bottom: 85px;
    }
}


