/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    /* Color Palette - Vibrant Dark Mode */
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --primary: #6366f1; /* Indigo */
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-orange: #f97316;

    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.4);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    --nav-height: 70px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CRITICAL SCROLL FIX */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glow */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   2. UTILITIES & TYPOGRAPHY
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.narrow-container {
    max-width: 800px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-3 { margin-top: 2rem; }

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* =========================================
   3. NAVIGATION - UPDATED LOGO
   ========================================= */
.navbar {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-symbol {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-calendar {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.logo-arrow {
    font-size: 1rem;
    color: var(--accent-cyan);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-main {
    font-weight: 800;
    font-size: 1.3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-cta {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* =========================================
   4. HERO SECTION - REPOSITIONED BADGES
   ========================================= */
.hero {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(236, 72, 153, 0.2);
    color: var(--accent-pink);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.cta-button.primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.cta-button .small-text {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.cta-button.full-width {
    width: 100%;
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Hero Image with Repositioned Badges */
.hero-image {
    position: relative;
}

.bundle-badges-top,
.bundle-badges-bottom {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.floating-badge {
    background: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.badge-top { 
    color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(6,182,212,0.05));
    border: 1px solid rgba(6,182,212,0.3);
}

.badge-bottom { 
    color: var(--accent-green);
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05));
    border: 1px solid rgba(16,185,129,0.3);
}

.image-wrapper {
    position: relative;
    padding: 10px;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.image-wrapper-large {
    max-width: 100%;
    width: 100%;
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-product-img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 5px);
    display: block;
}

/* Social Proof Mini */
.social-proof-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
}

.avatars { display: flex; }
.avatars span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #334155;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
}
.avatars span:first-child { margin-left: 0; }

.avatars .avatar-img {
    overflow: hidden;
    padding: 0;
}

.avatars .avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   5. LOGO TRACK (Infinite Scroll)
   ========================================= */
.logos-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
}

.logo-track-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 1.5rem;
}

.logo-track {
    display: inline-flex;
    animation: scroll 25s linear infinite;
    gap: 4rem;
}

.logo-track span {
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================
   6. CHECKLIST / PROBLEM
   ========================================= */
.section { padding: 6rem 0; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.check-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.check-item:hover { transform: translateY(-5px); }

.check-icon {
    width: 30px;
    height: 30px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.check-content p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* =========================================
   7. ENHANCED URGENCY SECTION
   ========================================= */
.urgency-section {
    background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(249,115,22,0.1));
    border-top: 2px solid rgba(236,72,153,0.2);
    border-bottom: 2px solid rgba(236,72,153,0.2);
}

.urgency-box-enhanced {
    background: linear-gradient(145deg, rgba(30,41,59,0.95), rgba(15,23,42,0.95));
    border: 2px solid var(--accent-pink);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(236,72,153,0.3);
    position: relative;
    overflow: hidden;
}

.urgency-box-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.urgency-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgency-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.urgency-subtitle {
    font-size: 1.2rem;
    color: var(--accent-pink);
    margin-bottom: 2rem;
    font-weight: 600;
}

.urgency-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.urgency-item-enhanced {
    background: rgba(30,41,59,0.5);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.urgency-item-enhanced:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 10px 30px rgba(236,72,153,0.2);
}

.urgency-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgency-item-enhanced p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main);
}

.urgency-footer {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(236,72,153,0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(236,72,153,0.2);
}

.urgency-deadline {
    font-size: 1.1rem;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

.urgency-warning {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.urgency-cta-wrapper {
    margin-top: 2rem;
}

.urgency-features {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* =========================================
   8. SYSTEMS CARDS WITH SPLASH IMAGES
   ========================================= */
.systems-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(30,41,59,0.5) 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.system-card {
    margin-bottom: 3rem;
    padding: 0;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    overflow: hidden;
}

.system-card:hover {
    background: rgba(40, 50, 70, 0.8);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.system-splash-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.splash-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: all 0.5s ease;
}

.system-card:hover .splash-img {
    filter: brightness(0.8);
    transform: scale(1.05);
}

.splash-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.system-card:hover .splash-overlay {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
}

.system-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 0;
}

.system-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-blue { background: rgba(99,102,241,0.2); color: var(--primary); }
.icon-pink { background: rgba(236,72,153,0.2); color: var(--accent-pink); }
.icon-orange { background: rgba(249,115,22,0.2); color: var(--accent-orange); }
.icon-green { background: rgba(16,185,129,0.2); color: var(--accent-green); }

.system-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.system-outcome {
    color: var(--accent-green);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.system-body {
    padding: 0 2rem 2rem;
}

.problem-statement {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.system-body h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.course-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.course-list li {
    font-size: 0.9rem;
    color: var(--text-main);
}

.course-list li i {
    color: var(--primary);
    margin-right: 8px;
}

.course-list a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* =========================================
   9. QUESTION BOX
   ========================================= */
.question-box {
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(6,182,212,0.1));
    border: 2px solid rgba(99,102,241,0.3);
}

.question-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* =========================================
   10. WHAT YOU GET SECTION
   ========================================= */
.what-you-get-section {
    background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(6,182,212,0.05));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.feature-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.feature-card li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* =========================================
   11. TWO COLUMN LIST (WORKS / DOESN'T WORK)
   ========================================= */
.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.two-column-list ul li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.two-column-list ul li i {
    margin-right: 10px;
}

/* =========================================
   12. PROCESS STEPS
   ========================================= */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5rem;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary);
}

/* =========================================
   13. VALUE STACK (Receipt)
   ========================================= */
.receipt-container {
    background: #fff;
    color: #1e293b;
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate(-1deg);
}

.receipt-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: radial-gradient(circle, transparent 70%, #fff 75%) 0 -10px;
    background-size: 20px 20px;
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.line-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.divider {
    border-bottom: 2px dashed #ccc;
    margin: 15px 0;
}

.total-value { font-weight: 700; color: #64748b; text-decoration: line-through; }
.you-pay { font-weight: 800; font-size: 1.2rem; align-items: center; }
.highlight-price { background: #fee2e2; color: #ef4444; padding: 2px 8px; transform: rotate(-2deg); display: inline-block; }

.receipt-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* =========================================
   14. TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars { color: #facc15; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { font-style: italic; font-size: 0.95rem; margin-bottom: 1rem; }
.author strong { display: block; color: var(--primary); }
.author span { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================
   15. PRICING & FAQ
   ========================================= */
.pricing-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.9), rgba(15,23,42,0.95));
    padding: 3rem;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(99,102,241,0.2);
}

.glow-border {
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(99,102,241,0.2); }
    50% { box-shadow: 0 0 60px rgba(99,102,241,0.4); }
}

.pricing-header h3 { 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 1rem; 
}

.price { 
    font-size: 5rem; 
    font-weight: 800; 
    color: white; 
    line-height: 1; 
    margin: 10px 0; 
}

.currency { font-size: 2rem; vertical-align: top; }
.period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.price-subtitle { 
    color: var(--accent-pink); 
    font-weight: 600; 
    margin-top: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    max-width: 350px;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-features li i { color: var(--accent-green); margin-right: 10px; }

.pricing-cta {
    margin-top: 2rem;
}

.secure-note, .urgency-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.guarantee-box {
    background: rgba(30,41,59,0.5);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.guarantee-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.guarantee-badge {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Accordion */
.accordion {
    margin-top: 3rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-header::after { 
    content: '+'; 
    font-size: 1.5rem; 
    color: var(--primary); 
}

.accordion-item.active .accordion-header::after { 
    content: '-'; 
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content { 
    max-height: 500px; 
    padding-bottom: 1.5rem; 
}

/* =========================================
   16. INSTRUCTOR BIO
   ========================================= */
.instructor-bio {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
}

.instructor-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(99,102,241,0.3);
    object-fit: cover;
}

/* =========================================
   17. FINAL PUSH SECTION
   ========================================= */
.final-push-section {
    background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(236,72,153,0.05));
}

.ps-box {
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   18. FOOTER & MOBILE STICKY
   ========================================= */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a { 
    color: var(--text-muted); 
    margin: 0 10px; 
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-mobile-cta .info { display: flex; flex-direction: column; }
.sticky-mobile-cta .price { font-size: 1.2rem; margin: 0; font-weight: 700; }
.sticky-mobile-cta .timer { font-size: 0.75rem; color: var(--accent-pink); }
.sticky-mobile-cta .cta-button.small { padding: 0.75rem 1.5rem; font-size: 0.9rem; }

/* =========================================
   19. MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .hero-subtitle { 
        margin: 0 auto 2.5rem; 
    }
    
    .hero-image { 
        margin-top: 3rem; 
        width: 95%; 
        margin-left: auto; 
        margin-right: auto; 
    }
    
    .course-list { 
        grid-template-columns: 1fr; 
    }
    
    .system-header { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
    
    .two-column-list {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title { 
        font-size: 2.2rem; 
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-cta { 
        display: none; 
    }
    
    .logo-text-main {
        font-size: 1.1rem;
    }
    
    .logo-text-sub {
        font-size: 0.7rem;
    }
    
    .receipt-container { 
        transform: rotate(0); 
        margin: 1rem; 
        width: auto; 
    }
    
    .price {
        font-size: 4rem;
    }
    
    .urgency-title {
        font-size: 2rem;
    }
    
    .system-splash-image {
        height: 150px;
    }
}

@media (min-width: 769px) {
    .sticky-mobile-cta { 
        display: none; 
    }
}

/* =========================================
   20. ANIMATIONS
   ========================================= */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Scroll Reveal Animations */
.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}