/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (DARK LUXURY GOLD + PURPLE THEME)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #090714;
    --bg-darker: #04030a;
    --bg-card: rgba(18, 14, 30, 0.65);
    --bg-card-hover: rgba(26, 21, 42, 0.85);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow-purple: rgba(139, 92, 246, 0.3);
    --border-glow-gold: rgba(245, 158, 11, 0.3);
    
    /* Primary brand colors */
    --primary-purple: #8b5cf6;
    --primary-purple-light: #a78bfa;
    --secondary-magenta: #d946ef;
    --accent-gold: #fbbf24;
    --accent-gold-dark: #d97706;
    --accent-cyan: #06b6d4;
    
    /* Text colors */
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    
    /* Gradients */
    --grad-purple: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --grad-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --grad-dark: linear-gradient(180deg, #090714 0%, #04030a 100%);
    --grad-card: linear-gradient(135deg, rgba(20, 16, 35, 0.7) 0%, rgba(10, 8, 18, 0.7) 100%);
    --grad-neon-purple: linear-gradient(90deg, #8b5cf6, #d946ef, #8b5cf6);
    --grad-premium-text: linear-gradient(135deg, #fff 30%, #fbbf24 100%);
    
    /* Shadows & Glows */
    --glow-purple: 0 0 25px rgba(139, 92, 246, 0.4);
    --glow-gold: 0 0 25px rgba(245, 158, 11, 0.4);
    --glow-cyan: 0 0 25px rgba(6, 182, 212, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-darker);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(217, 70, 239, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.6);
}

/* Selection */
::selection {
    background: var(--primary-purple);
    color: white;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6.5rem 0;
}

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

/* Typography Utilities */
.gradient-text-purple {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-premium {
    background: var(--grad-premium-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

/* Glassmorphism Card Base */
.glass-card {
    background: var(--grad-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-purple);
    color: white;
    box-shadow: var(--glow-purple);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--grad-gold);
    color: var(--bg-darker);
    box-shadow: var(--glow-gold);
    font-weight: 700;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.7);
    transform: translateY(-2px);
}

/* Badge Glow Styles */
.glow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-purple-light);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1) inset;
}

.glow-badge span.dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-magenta);
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow 1.5s infinite;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 7, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.navbar-scrolled {
    padding: 0.75rem 0;
    background: rgba(4, 3, 10, 0.9);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo i {
    font-size: 1.6rem;
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-fast);
    border-radius: 2px;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
    .nav-cta {
        display: block;
    }
    .menu-toggle {
        display: none;
    }
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--bg-darker);
    z-index: 999;
    padding: 3rem 2rem;
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    border-top: 1px solid var(--border-color);
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

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

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats-mini {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.hero-stat-item h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.hero-stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Floating Mockup (Hero Right) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mockup-wrapper {
    position: relative;
    width: 310px;
    height: 620px;
    perspective: 1000px;
}

.hero-mockup {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 6px solid #1a152d;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(139, 92, 246, 0.25);
    background: #000;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(10deg);
    animation: floatingMockup 6s ease-in-out infinite;
    position: relative;
}

.hero-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mockup.hero-book {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    transform: none;
    animation: floatingBook 6s ease-in-out infinite;
}

.hero-mockup.hero-book img {
    object-fit: contain;
}

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

/* Floating editing elements decorative */
.float-elem {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.float-timeline {
    bottom: 80px;
    left: -40px;
    background: rgba(18, 14, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 220px;
    transform: rotate(-4deg);
    animation: floatAnim2 5s ease-in-out infinite;
}

.float-timeline .timeline-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.float-timeline .timeline-fill {
    height: 100%;
    width: 65%;
    background: var(--grad-purple);
    border-radius: 3px;
}

.float-timeline .timeline-handle {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: -2px;
    left: 65%;
}

.float-card {
    top: 80px;
    right: -45px;
    background: rgba(18, 14, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 170px;
    transform: rotate(6deg);
    animation: floatAnim1 5s ease-in-out infinite;
}

.float-card i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.float-card .txt {
    font-size: 0.75rem;
}

.float-card .num {
    font-weight: 800;
    color: var(--accent-gold);
}

/* ==========================================================================
   SOCIAL PROOF SECTION
   ========================================================================== */
.social-proof {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.05), rgba(245, 158, 11, 0.03));
    border-y: 1px solid var(--border-color);
    padding: 3rem 0;
    position: relative;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.proof-number.gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   WHAT YOU'LL LEARN
   ========================================================================== */
.learn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .learn-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.learn-card {
    position: relative;
    overflow: hidden;
}

.learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 50%);
    pointer-events: none;
}

.learn-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.learn-card:hover .learn-icon-box {
    background: var(--grad-purple);
    color: white;
    box-shadow: var(--glow-purple);
    transform: scale(1.1) rotate(5deg);
}

.learn-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.learn-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.learn-bullets {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.learn-bullets li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-bullets li i {
    color: var(--accent-gold);
}

/* ==========================================================================
   BEFORE / AFTER SLIDER WIDGET
   ========================================================================== */
.showcase-slider-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow), 0 0 50px rgba(139, 92, 246, 0.1);
    overflow: hidden;
    position: relative;
    user-select: none;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .slider-wrapper {
        height: 300px;
    }
}

.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* JS will adjust this width */
    height: 100%;
    z-index: 2;
    overflow: hidden;
    border-right: 2px solid white;
}

.image-before img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

/* Before & After Labels */
.slider-label {
    position: absolute;
    bottom: 20px;
    z-index: 3;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slider-label.before {
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-label.after {
    right: 20px;
    background: rgba(139, 92, 246, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* Drag Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Adjusted by JS */
    width: 44px;
    height: 100%;
    margin-left: -22px;
    z-index: 4;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Pointer events are handled by wrapper click/touch */
}

.handle-button {
    width: 44px;
    height: 44px;
    background: white;
    color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    pointer-events: auto;
}

/* ==========================================================================
   WHY THIS COURSE IS DIFFERENT
   ========================================================================== */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .diff-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.diff-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-item {
    display: flex;
    gap: 1.25rem;
}

.diff-check-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.diff-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

.diff-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.diff-visual:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}

.diff-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/11;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.diff-visual:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   INCOME POTENTIAL SECTION (INTERACTIVE CALCULATOR)
   ========================================================================== */
.income {
    position: relative;
}

.income::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.05);
    filter: blur(120px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.calculator-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(24, 18, 43, 0.75) 0%, rgba(10, 8, 18, 0.75) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.05);
}

.calculator-body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.calc-slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
}

.slider-val {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.15rem;
}

/* Custom Range Input styling */
.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: var(--glow-gold);
    transition: var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Calculator Output display */
.calc-result {
    text-align: center;
    background: rgba(4, 3, 10, 0.6);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.calc-result-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.calc-result-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.calc-result-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.calc-result-note strong {
    color: var(--accent-cyan);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.test-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    object-fit: cover;
}

.test-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.test-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.test-stars {
    color: var(--accent-gold);
    display: flex;
    gap: 3px;
    font-size: 0.85rem;
    margin-top: 2px;
}

.testimonial-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* ==========================================================================
   ROADMAP / TIMELINE MODULES
   ========================================================================== */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--secondary-magenta), var(--accent-gold));
}

@media (min-width: 768px) {
    .timeline-container {
        padding-left: 0;
    }
    .timeline-container::before {
        left: 50%;
        margin-left: -1px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

.timeline-badge {
    position: absolute;
    left: -2rem;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 4px solid var(--primary-purple);
    box-shadow: var(--glow-purple);
    z-index: 5;
}

.timeline-item:nth-child(even) .timeline-badge {
    border-color: var(--secondary-magenta);
}

.timeline-item:last-child .timeline-badge {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

@media (min-width: 768px) {
    .timeline-badge {
        left: 50%;
        margin-left: -8px;
    }
}

.timeline-panel {
    width: 100%;
    float: right;
    position: relative;
}

@media (min-width: 768px) {
    .timeline-panel {
        width: 44%;
    }
    .timeline-item:nth-child(odd) .timeline-panel {
        float: left;
    }
    .timeline-item:nth-child(even) .timeline-panel {
        float: right;
    }
}

.timeline-card {
    padding: 2rem;
}

.timeline-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-purple-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-item:nth-child(even) .timeline-num {
    color: var(--secondary-magenta);
}

.timeline-item:last-child .timeline-num {
    color: var(--accent-gold);
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.timeline-topics {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-topics li {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    color: var(--text-light);
}

/* ==========================================================================
   BONUS SECTION
   ========================================================================== */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus-card {
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.1);
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--grad-gold);
    color: var(--bg-darker);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.bonus-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.bonus-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.bonus-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    background: rgba(18, 14, 30, 0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.25);
    background: rgba(18, 14, 30, 0.6);
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    gap: 1.5rem;
}

.faq-icon-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.faq-item.active {
    background: var(--bg-card);
    border-color: rgba(139, 92, 246, 0.35);
}

.faq-item.active .faq-icon-indicator {
    transform: rotate(45deg);
    background: var(--grad-purple);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   FINAL CTA SECTION & FOOTER
   ========================================================================== */
.final-cta {
    position: relative;
    padding: 7rem 0;
}

.final-cta-card {
    text-align: center;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15) 0%, rgba(10, 8, 18, 0.8) 70%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.1);
    max-width: 900px;
    margin: 0 auto;
    padding: 4.5rem 2rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3.2rem;
    }
}

.final-cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Timer styles */
.timer-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.timer-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.timer-divider {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    background: var(--bg-darker);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    list-style: none;
}

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

/* ==========================================================================
   MODAL VIDEO PLAYER
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 3, 10, 0.95);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 90%;
    max-width: 800px;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.modal-overlay.open .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive aspect ratio container */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe, .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Float Animations Keyframes */
@keyframes floatingMockup {
    0% {
        transform: rotateY(-10deg) rotateX(10deg) translateY(0);
    }
    50% {
        transform: rotateY(-10deg) rotateX(10deg) translateY(-15px);
    }
    100% {
        transform: rotateY(-10deg) rotateX(10deg) translateY(0);
    }
}

@keyframes floatAnim1 {
    0% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-8px); }
    100% { transform: rotate(6deg) translateY(0); }
}

@keyframes floatAnim2 {
    0% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(8px); }
    100% { transform: rotate(-4deg) translateY(0); }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.7);
    }
    70% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(217, 70, 239, 0);
    }
    100% {
        transform: scale(0.9);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(217, 70, 239, 0);
    }
}

/* ==========================================================================
   WHATSAPP FLOATING CHAT WIDGET
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-sans);
}

.whatsapp-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    font-size: 2.2rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
    background-color: #20ba59;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: whatsappPulse 2.5s infinite ease-out;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(9, 7, 20, 0.9);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--glass-shadow);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(9, 7, 20, 0.9);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

