/* Variables & Reset */
:root {
    --primary: #4158D0; /* Blue */
    --secondary: #C850C0; /* Purple */
    --accent: #FFCC70; /* Yellow/Gold */
    --highlight-orange: #FF512F; /* High contrast orange for CTA */
    --highlight-gold: #F09819; /* Gold for CTA gradient */
    --dark: #0f172a; /* Dark Blue Slate */
    --darker: #020617; /* Deep Blue Black */
    --card-bg: rgba(30, 41, 59, 0.7);
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --danger: #ef4444; /* Red */
    --success: #10b981; /* Green */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for mobile sticky CTA */
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-sub { color: #94a3b8; font-size: 1.1rem; margin-bottom: 3rem; }
.text-center { text-align: center; }

/* Sticky Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 0.8rem 0;
    background: rgba(15, 23, 42, 0.98); backdrop-filter: blur(10px);
    z-index: 1000; border-bottom: 1px solid var(--glass-border); transition: all 0.3s ease;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.3rem; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; }
.logo i { color: var(--accent); }
.spin-hover:hover { animation: spin 1s ease-in-out; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--secondary); }
.nav-cta { background: var(--secondary); padding: 0.6rem 1.4rem; border-radius: 50px; color: white !important; font-weight: 600; box-shadow: 0 5px 15px rgba(200, 80, 192, 0.3); }
.nav-cta:hover { background: var(--primary); transform: translateY(-2px); }
.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; padding-top: 100px; padding-bottom: 50px; overflow: hidden; }
.scrum-pattern-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px, 60px 100%; opacity: 0.5; z-index: -1;
}
.badge { background: var(--danger); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.9rem; border: 1px solid var(--danger); display: inline-block; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.hero-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 900; }
.gradient-text { background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.2rem; color: #cbd5e1; max-width: 800px; margin: 0 auto 3rem; font-weight: 300; }

.cta-group { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.btn { padding: 1.2rem 2.5rem; border-radius: 12px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 0.75rem; text-transform: uppercase; transition: all 0.3s; }
.btn-primary { 
    background: linear-gradient(135deg, var(--primary), var(--secondary)); 
    box-shadow: 0 10px 40px rgba(200, 80, 192, 0.4); 
    font-size: 1.1rem;
}
.btn-primary:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 15px 50px rgba(200, 80, 192, 0.6); }
.btn-secondary { 
    background: rgba(255,255,255,0.1); 
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); color: white; border-color: white; }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }

/* === FIXED: HERO STATS LAYOUT === */
.hero-social-proof { 
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 3rem; 
    justify-content: center; 
    align-items: center;
    margin-top: 3rem; 
    padding: 1.5rem; 
    border-top: 1px solid var(--glass-border); 
    max-width: 900px; 
    margin-inline: auto;
}
.guarantee-badge { 
    background: var(--darker); color: var(--success); font-weight: 700; 
    padding: 0.5rem 1rem; border-radius: 50px; display: flex; 
    align-items: center; gap: 10px; border: 1px solid var(--success); 
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--light); }
.stat-label { font-size: 0.9rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }

/* Logo Scroller */
.logo-scroller-section { padding: 2rem 0; background: rgba(0,0,0,0.3); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); overflow: hidden; }
.scroller-title { text-align: center; color: #64748b; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.marquee { white-space: nowrap; overflow: hidden; position: relative; }
.marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
.marquee-content span { font-size: 1.3rem; margin: 0 2rem; color: #94a3b8; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.marquee-content span i { font-size: 1.6rem; color: #cbd5e1; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Video */
.video-section { padding: 4rem 0; background: linear-gradient(to bottom, var(--dark), var(--darker)); }
.video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; border-radius: 20px;
    overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 2px solid var(--secondary);
    max-width: 900px; margin-inline: auto;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Audience */
.target-audience-section { padding: 6rem 0; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.audience-card { background: rgba(255,255,255,0.03); padding: 2rem; border-radius: 16px; border: 1px solid var(--glass-border); text-align: center; transition: 0.3s; }
.audience-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); border-color: var(--secondary); }
.audience-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; }
.audience-card h3 { margin-bottom: 1rem; color: var(--light); }
.audience-card p { color: #94a3b8; font-size: 0.95rem; }

/* Not For You */
.not-for-you-section { padding: 0 0 4rem 0; }
.warning-box {
    background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px; padding: 2.5rem; max-width: 900px; margin: 0 auto;
    display: flex; gap: 2rem; align-items: flex-start;
}
.warning-icon { font-size: 2.5rem; color: var(--danger); }
.warning-content h3 { color: #fff; margin-bottom: 1rem; font-size: 1.5rem; }
.warning-content p { color: #cbd5e1; margin-bottom: 1.5rem; }
.not-list { list-style: none; }
.not-list li { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.8rem; color: #cbd5e1; font-size: 0.95rem; }
.not-list li i { color: var(--danger); font-size: 1.1rem; }

/* Benefits */
.benefits-section { padding: 6rem 0; background: var(--darker); }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.glass-card { background: var(--glass); border: 1px solid var(--glass-border); padding: 2rem; border-radius: 20px; backdrop-filter: blur(10px); transition: 0.4s; }
.glass-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-10px); border-color: var(--primary); }
.icon-box { font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.glass-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.glass-card p { font-size: 0.95rem; color: #94a3b8; }

/* Roadmap */
.curriculum-section { padding: 6rem 0; }
.roadmap-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.module-item { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; transition: 0.3s; }
.module-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: rgba(255,255,255,0.02); }
.module-header:hover { background: rgba(255,255,255,0.05); }
.module-title { display: flex; align-items: center; gap: 1rem; }
.module-num { font-size: 1.5rem; font-weight: 800; color: var(--glass-border); }
.toggle-icon { transition: transform 0.3s; color: var(--accent); }
.module-item.active .toggle-icon { transform: rotate(180deg); }
.module-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: rgba(0,0,0,0.2); }
.module-desc { padding: 1.5rem 1.5rem 0.5rem; font-style: italic; color: #94a3b8; border-bottom: 1px dashed var(--glass-border); }
.lecture-list { list-style: none; padding: 1.5rem; }
.lecture-list li { padding: 0.6rem 0; color: #cbd5e1; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.lecture-list li i { color: var(--secondary); font-size: 0.8rem; }

/* Instructor */
.author-section { padding: 6rem 0; background: var(--darker); }
.author-card { display: flex; gap: 4rem; align-items: flex-start; max-width: 1000px; margin: 0 auto; }
.author-img-col { flex: 1; text-align: center; }
.img-wrapper { position: relative; display: inline-block; margin-bottom: 1.5rem; }
.img-wrapper img { width: 300px; border-radius: 20px; box-shadow: 15px 15px 0 var(--secondary); border: 4px solid var(--secondary); }
.exp-badge { position: absolute; bottom: -15px; right: -15px; background: var(--accent); color: var(--dark); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.author-credentials h4 { font-size: 1.8rem; color: #fff; margin-bottom: 0.5rem; }
.author-credentials p { color: #94a3b8; }
.author-bio-col { flex: 2; }
.bio-header { font-size: 2.2rem; margin-bottom: 1rem; color: var(--light); }
.bio-intro { font-size: 1.1rem; margin-bottom: 2rem; color: #cbd5e1; line-height: 1.8; }
.bio-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.bio-block h4 { color: var(--primary); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 1.1rem; }
.bio-block p { font-size: 0.95rem; color: #94a3b8; }

/* Bonus Section */
.bonuses-section { padding: 6rem 0; }
.bonus-list { max-width: 900px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 3rem; }
.bonus-row { display: flex; gap: 2rem; align-items: center; background: var(--card-bg); padding: 2rem; border-radius: 20px; border: 1px solid var(--glass-border); }
.bonus-img { flex: 1; min-width: 150px; max-width: 250px; }
.bonus-img img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.bonus-content { flex: 2; }
.bonus-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: 10px; }
.bonus-label { background: var(--primary); padding: 0.3rem 0.8rem; border-radius: 4px; font-size: 0.8rem; font-weight: 700; }
.bonus-value { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.strikethrough { text-decoration: line-through; opacity: 0.7; margin-left: 5px; color: #cbd5e1; }
.bonus-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.bonus-content p { color: #94a3b8; font-size: 0.95rem; }
.bonus-certificate-placeholder { background: linear-gradient(135deg, var(--secondary), var(--primary)); display: flex; align-items: center; justify-content: center; border-radius: 10px; min-height: 150px; }
.bonus-certificate-placeholder i { font-size: 3rem; color: white; }

/* Case Study */
.case-study-section { padding: 6rem 0; background: var(--dark); }
.case-study-box {
    max-width: 900px; margin: 3rem auto 0; background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent); border-radius: 20px; padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 204, 112, 0.15);
}
.case-study-header { text-align: center; margin-bottom: 2rem; }
.case-study-header i { font-size: 3rem; color: var(--accent); margin-bottom: 10px; }
.case-study-header h3 { font-size: 2rem; margin-bottom: 5px; color: white; }
.user-role { font-size: 1rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.case-study-content { display: flex; flex-direction: column; gap: 1.5rem; }
.case-study-content h4 { font-size: 1.2rem; color: var(--secondary); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 10px; }
.case-study-content h4 i { color: var(--secondary); }
.case-study-content p { color: #cbd5e1; font-size: 1rem; line-height: 1.6; }

/* Testimonials */
.testimonials-section { padding: 6rem 0; background: var(--darker); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { 
    background: var(--card-bg); padding: 2rem; border-radius: 16px; border: 1px solid var(--glass-border); 
    display: flex; flex-direction: column; height: 100%; text-align: center; align-items: center;
}
/* === FIXED: PROFILE IMAGES === */
.testimonial-img-wrapper { 
    width: 100px; height: 100px; margin: 0 auto 1.5rem; 
    border-radius: 50%; overflow: hidden; 
    border: 3px solid var(--accent); box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: #fff;
}
.testimonial-img-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stars { color: var(--accent); margin-bottom: 1rem; letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-card p { flex-grow: 1; font-style: italic; color: #cbd5e1; margin-bottom: 1.5rem; }
.user-info span { font-weight: 600; color: var(--secondary); font-size: 0.9rem; }

/* Guarantee */
.guarantee-section { padding: 6rem 0; }
.guarantee-box { background: linear-gradient(135deg, #fff, #f1f5f9); color: #1e293b; border-radius: 30px; padding: 4rem; display: flex; gap: 3rem; align-items: center; box-shadow: 0 20px 50px rgba(0,0,0,0.2); max-width: 1000px; margin: 0 auto; position: relative; overflow: hidden; }
.guarantee-box::before { content: ''; position: absolute; top: 0; left: 0; width: 10px; height: 100%; background: var(--primary); }
.seal-wrapper { flex-shrink: 0; }
.seal { width: 180px; }
.guarantee-text h2 { color: #b91c1c; margin-bottom: 1rem; font-size: 1.8rem; line-height: 1.2; }
.lead { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: #334155; }
.guarantee-text p { margin-bottom: 1rem; font-size: 1rem; color: #475569; }

/* Pricing */
.pricing-section { padding: 6rem 0; background: radial-gradient(circle at center, rgba(65, 88, 208, 0.15) 0%, transparent 70%); }
.pricing-grid { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.pricing-card { 
    background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); 
    padding: 3rem 2rem; border-radius: 20px; width: 350px; text-align: center; 
    position: relative; display: flex; flex-direction: column; transition: all 0.3s;
}
.featured-card { 
    border: 3px solid var(--secondary); transform: scale(1.08); 
    background: rgba(30, 41, 59, 0.95); 
    box-shadow: 0 20px 60px rgba(200, 80, 192, 0.4);
}
.featured-badge { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--danger); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; color: white; box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4); }
.price-header { margin-bottom: 1.5rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 1.5rem; }
.price-header h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.price-tag { font-size: 1rem; color: #94a3b8; }
.price-tag span { font-size: 2.8rem; font-weight: 900; color: #fff; }

.roi-statement { 
    background: rgba(255, 204, 112, 0.1); border-left: 4px solid var(--accent); 
    padding: 1rem; margin-bottom: 1.5rem; text-align: left; font-size: 0.9rem; color: #cbd5e1;
    display: flex; align-items: flex-start; gap: 10px;
}
.roi-statement i { color: var(--accent); font-size: 1.2rem; margin-top: 3px; }

.value-stack-list { text-align: left; margin-bottom: 1rem; background: rgba(0,0,0,0.2); padding: 1rem; border-radius: 8px; }
.stack-item { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.5rem; color: #cbd5e1; border-bottom: 1px dashed rgba(255,255,255,0.05); padding-bottom: 5px; }
.stack-item:last-child { border-bottom: none; }
.stack-item strong { color: #fff; }
.total-value-line { margin: 1rem 0; padding-top: 1rem; border-top: 2px solid var(--accent); display: flex; justify-content: space-between; font-size: 1.2rem; color: var(--accent); }

.price-features { list-style: none; margin-bottom: 2rem; text-align: left; flex-grow: 1; }
.price-features li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.price-features li i { color: var(--success); margin-top: 5px; }

/* === FIXED: HIGH CONTRAST CTA BUTTONS === */
.floating-btn {
    display: block; width: 100%; padding: 1.2rem; border-radius: 50px; font-weight: 800; 
    text-transform: uppercase; letter-spacing: 1px; transition: 0.5s; 
    position: relative; overflow: hidden; z-index: 1; text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); margin-top: auto;
}
.primary-btn { background: var(--primary); color: white; border: 2px solid transparent; }
.primary-btn:hover { background: transparent; border-color: var(--primary); color: white; }
.secondary-btn { 
    background: linear-gradient(135deg, var(--highlight-orange), var(--highlight-gold)); 
    color: white; box-shadow: 0 0 20px rgba(255, 81, 47, 0.6); border: none; font-size: 1.1rem;
}
.secondary-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 30px rgba(255, 81, 47, 0.8); }
.shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: 0.5s; z-index: -1; }
.floating-btn:hover .shine { left: 100%; transition: 0.5s; }

/* FAQ */
.faq-section { padding: 6rem 0; background: var(--darker); }
.faq-item { border-bottom: 1px solid var(--glass-border); margin-bottom: 1rem; }
.faq-question { width: 100%; background: none; border: none; color: #fff; font-size: 1.1rem; padding: 1.2rem 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; }
.faq-question:hover { color: var(--secondary); }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; color: #94a3b8; padding-right: 2rem; }
.faq-answer.active { padding-bottom: 1.5rem; }
.plus i { font-size: 0.9rem; color: var(--accent); }

/* Footer */
footer { padding: 4rem 0 2rem; border-top: 1px solid var(--glass-border); text-align: center; font-size: 0.9rem; background: #020617; }
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; display: inline-block; color: var(--light); }
.footer-nav { margin-bottom: 2rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { color: #94a3b8; text-transform: uppercase; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; position: relative; }
.footer-nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--secondary); transition: width 0.3s; }
.footer-nav a:hover { color: #fff; }
.footer-nav a:hover::after { width: 100%; }
.copyright { opacity: 0.4; font-size: 0.8rem; }

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(15, 23, 42, 0.98);
    border-top: 2px solid var(--secondary); padding: 10px 20px; z-index: 1001;
    display: none; justify-content: space-between; align-items: center;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.5); backdrop-filter: blur(5px);
}
.cta-price-info { display: flex; flex-direction: column; }
.cta-old { font-size: 0.9rem; text-decoration: line-through; color: var(--danger); }
.cta-new { font-size: 1.4rem; font-weight: 800; color: #fff; }
.cta-btn {
    background: linear-gradient(135deg, #FF512F, #F09819); color: white;
    padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(240, 152, 25, 0.4);
}

/* Mobile Resp */
@media (max-width: 900px) {
    .author-card { flex-direction: column; text-align: center; }
    .author-img-col { margin-bottom: 2rem; }
    .author-bio-col { flex: 1; }
    .img-wrapper img { margin: 0 auto; }
    .bio-details { grid-template-columns: 1fr; }
    .bonus-row { flex-direction: column; text-align: center; }
    .bonus-content { text-align: center; }
    .bonus-header { justify-content: center; }
    .bonus-img { margin: 0 auto 1rem; }
    .bonus-certificate-placeholder { margin: 0 auto 1rem; }
    .hero-social-proof { gap: 1.5rem; padding: 1rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%; background: var(--darker); flex-direction: column;
        padding: 2rem; border-bottom: 1px solid var(--glass-border); display: none; text-align: center;
    }
    .nav-links.active { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .hero-sub { font-size: 1.1rem; }
    .cta-group { flex-direction: column; }
    .hero-social-proof { flex-direction: column; gap: 1rem; }
    .stat-item { flex-direction: row; justify-content: space-between; width: 100%; padding: 0.5rem 0; border-bottom: 1px dashed var(--glass-border); }
    .guarantee-badge { justify-content: center; width: 100%; }
    .guarantee-box, .warning-box { flex-direction: column; text-align: center; padding: 2rem; }
    .warning-box { gap: 1rem; }
    .pricing-card.featured-card { transform: scale(1); }
    .footer-nav { flex-direction: column; gap: 1rem; }
    .mobile-sticky-cta.active { display: flex; }
}

/* Animations */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }
/* ============================================
   INTERACTIVE CAREER FIT QUIZ STYLES
   ============================================ */
.career-quiz-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.career-quiz-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(65, 88, 208, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.quiz-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(200, 80, 192, 0.3);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.quiz-screen {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
}

.quiz-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.quiz-card p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.quiz-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(200, 80, 192, 0.4);
}

.quiz-icon i {
    font-size: 3rem;
    color: white;
}

.quiz-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2.5rem;
}

.quiz-features li {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quiz-features li i {
    color: var(--success);
    font-size: 1.2rem;
}

.quiz-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.quiz-btn.primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.quiz-btn.primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 80, 192, 0.5);
}

.quiz-btn.secondary-gradient {
    background: linear-gradient(135deg, var(--highlight-orange), var(--highlight-gold));
    color: white;
}

.quiz-btn.secondary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 81, 47, 0.5);
}

.quiz-btn-link {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 1rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.quiz-btn-link:hover {
    color: white;
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-text {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--light);
    line-height: 1.4;
}

.answers-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.answer-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.answer-btn.selected {
    background: linear-gradient(135deg, rgba(65, 88, 208, 0.2), rgba(200, 80, 192, 0.2));
    border-color: var(--secondary);
    color: white;
}

.answer-btn.correct {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.2));
    border-color: var(--success);
    color: white;
}

.answer-btn.wrong {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border-color: var(--danger);
    color: #fecaca;
}

.answer-btn i {
    font-size: 1.2rem;
}

.answer-btn.selected i,
.answer-btn.correct i,
.answer-btn.wrong i {
    color: white;
}

.results-card {
    padding: 3rem 2rem;
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.result-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--highlight-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.result-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

.results-header h3 {
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 500;
}

.score-display {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.score-circle {
    position: relative;
}

.score-circle svg circle:last-of-type {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 1.5s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-text span {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    display: block;
    line-height: 1;
}

.result-content {
    text-align: left;
    margin: 2rem 0;
}

.result-role {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

.result-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

.result-strengths,
.result-next-steps {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.result-strengths h5,
.result-next-steps h5 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-strengths h5 i {
    color: var(--accent);
}

.result-next-steps h5 i {
    color: var(--secondary);
}

#strengths-list {
    list-style: none;
    padding: 0;
}

#strengths-list li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

#strengths-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

#next-step-text {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.result-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .career-quiz-section {
        padding: 4rem 0;
    }
    
    .quiz-card {
        padding: 2rem 1.5rem;
    }
    
    .quiz-card h3 {
        font-size: 1.5rem;
    }
    
    .quiz-icon {
        width: 80px;
        height: 80px;
    }
    
    .quiz-icon i {
        font-size: 2.5rem;
    }
    
    .quiz-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .answer-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .result-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .result-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .result-role {
        font-size: 1.5rem;
    }
    
    .score-text span {
        font-size: 2.5rem;
    }
}

/* ============================================
   ANIMATION ENHANCEMENTS
   ============================================ */

/* Hero content initial state - with fallback */
.hero-content > * {
    opacity: 0;
    animation: heroFallback 0.5s ease 0.5s forwards;
}

/* Fallback animation in case JS doesn't load */
@keyframes heroFallback {
    to {
        opacity: 1;
    }
}

/* If JS loaded successfully, this class prevents fallback */
.hero-content.js-loaded > * {
    animation: none;
    opacity: 0;
}

/* Section titles - ALWAYS visible with fallback */
section:not(.hero) .section-title,
section:not(.hero) .section-sub {
    opacity: 1 !important;
    /* Animation will override if JS loads */
}

/* Cards - ALWAYS visible with fallback */
.audience-card,
.pricing-card {
    opacity: 1 !important;
    /* Animation will override if JS loads */
}

/* Only hide if animations successfully initialized */
.animations-ready section:not(.hero) .section-title,
.animations-ready section:not(.hero) .section-sub {
    opacity: 0;
}

.animations-ready .audience-card,
.animations-ready .pricing-card {
    opacity: 0;
}

/* Button ripple effect */
.btn, .floating-btn, .quiz-btn {
    position: relative;
    overflow: hidden;
}

.button-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Smooth transitions for all interactive elements */
.btn,
.floating-btn,
.quiz-btn,
.answer-btn,
.nav-links a,
.audience-card,
.pricing-card,
.module-item,
.faq-item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card hover effects enhancement */
.audience-card {
    will-change: transform;
}

.audience-card:hover {
    transform: translateY(-8px) !important;
}

.pricing-card {
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
}

/* Smooth icon transitions */
.audience-icon,
.bonus-header i,
.result-icon-wrapper {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Logo hover enhancement */
.marquee-content span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parallax container */
.video-wrapper,
.bonus-img {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Icon animation initial state */
.audience-icon,
.bonus-header i {
    display: inline-block;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
.particles-canvas,
.hero-content,
.scroll-progress {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particles-canvas {
        display: none;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    /* Lighter animations on mobile */
    .button-ripple {
        display: none;
    }
    
    /* Disable parallax on mobile */
    .video-wrapper,
    .bonus-img {
        transform: none !important;
    }
    
    /* Simpler hover states */
    .audience-card:hover,
    .pricing-card:hover {
        transform: none !important;
    }
}

/* ============================================
   IMAGE ASPECT RATIO FIX
   ============================================ */
/* Prevent layout shift while maintaining correct proportions */
img {
    max-width: 100%;
    height: auto;
}

.instructor-img img,
.testimonial-img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.bonus-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.seal {
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
