:root {
    --bg-dark: #0B0F19;
    --bg-card: #151B2B;
    --primary: #3B82F6;
    --accent: #8B5CF6;
    --gold: #FBBF24;
    --success: #10B981;
    --danger: #EF4444;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }
.text-gradient {
    background: linear-gradient(to right, #60A5FA, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}
.btn-sm { padding: 10px 24px; font-size: 0.95rem; }
.btn-block { width: 100%; text-align: center; }
.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -5px rgba(59, 130, 246, 0.7);
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
nav.scrolled {
    background: rgba(11, 15, 25, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* Logo with SVG */
.logo { 
    font-weight: 800; 
    font-size: 1.5rem; 
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 36px;
    height: 36px;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}
.nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-menu a:hover {
    color: var(--primary);
}
.nav-cta {
    color: var(--primary) !important;
    font-weight: 700 !important;
}
.nav-cta:hover {
    color: #60A5FA !important;
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        width: 280px;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        height: calc(100vh - 70px);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu a {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
    }
    .hamburger {
        display: flex;
    }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
/* Requirements Animation */
.requirements-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
}
.line {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}
.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 5s; }
.line-3 { animation-delay: 10s; }
.line-4 { animation-delay: 15s; }
.dot {
    fill: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}
.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.5s; }
.dot-3 { animation-delay: 1s; }
.dot-4 { animation-delay: 1.5s; }
@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}
.req-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.08;
    color: var(--primary);
    will-change: transform;
}
.req-icon svg {
    width: 100%;
    height: 100%;
}
.req-icon-1 {
    top: 10%;
    left: 8%;
    animation: floatReq1 20s ease-in-out infinite;
}
.req-icon-2 {
    top: 60%;
    left: 12%;
    animation: floatReq2 18s ease-in-out infinite;
}
.req-icon-3 {
    top: 25%;
    right: 15%;
    animation: floatReq3 22s ease-in-out infinite;
}
.req-icon-4 {
    top: 70%;
    right: 20%;
    animation: floatReq4 19s ease-in-out infinite;
}
.req-icon-5 {
    top: 45%;
    right: 8%;
    animation: floatReq5 21s ease-in-out infinite;
}
.req-icon-6 {
    top: 35%;
    left: 20%;
    animation: floatReq6 23s ease-in-out infinite;
}
.req-icon-7 {
    top: 80%;
    right: 12%;
    animation: floatReq7 19s ease-in-out infinite;
}
@keyframes floatReq1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(5deg); }
    66% { transform: translate(-20px, 30px) rotate(-5deg); }
}
@keyframes floatReq2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, 25px) rotate(-8deg); }
    66% { transform: translate(25px, -15px) rotate(8deg); }
}
@keyframes floatReq3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 20px) rotate(6deg); }
    66% { transform: translate(20px, -25px) rotate(-6deg); }
}
@keyframes floatReq4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(25px, -30px) rotate(-7deg); }
    66% { transform: translate(-30px, 20px) rotate(7deg); }
}
@keyframes floatReq5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -25px) rotate(5deg); }
    66% { transform: translate(30px, 25px) rotate(-5deg); }
}
@keyframes floatReq6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, 30px) rotate(-6deg); }
    66% { transform: translate(-25px, -20px) rotate(6deg); }
}
@keyframes floatReq7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-15px, -30px) rotate(7deg); }
    66% { transform: translate(20px, 20px) rotate(-7deg); }
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.badge-pill {
    color: var(--accent);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-sub {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.stat-item strong { color: white; display: block; font-size: 1.4rem; }
.guarantee-text { margin-top: 15px; font-size: 0.8rem; opacity: 0.7; }

/* VSL CONTAINER */
.hero-video-wrapper {
    position: relative;
    z-index: 2;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    background: #000;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-caption {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--danger);
    border-radius: 50%;
    animation: pulseRed 2s infinite;
}

/* --- PAIN POINTS --- */
.reality-check { padding: 100px 0; background: #080b12; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.pain-card {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0;
    border-radius: 16px;
    transition: 0.3s;
    overflow: hidden;
}
.pain-card:hover { 
    transform: translateY(-5px); 
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}
.pain-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.pain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pain-card:hover .pain-image img {
    transform: scale(1.05);
}
.pain-content {
    padding: 30px;
}
.pain-content h4 {
    margin-top: 5px;
    margin-bottom: 10px;
}
.pain-content p {
    margin: 0;
    line-height: 1.6;
}
.pain-icon { 
    color: var(--danger); 
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}

/* --- TRANSFORMATION --- */
.transformation { padding: 100px 0; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
}
.benefit-card:hover { 
    transform: translateY(-5px); 
    background: rgba(16, 185, 129, 0.1); 
}
.benefit-icon { color: var(--success); font-size: 2rem; margin-bottom: 15px; }

/* --- TESTIMONIALS --- */
.testimonials { 
    padding: 60px 0; 
    overflow: hidden; 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border); 
    background: #0d111c; 
}
.scroll-wrapper { width: 100%; overflow: hidden; }
.scroll-container {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 40s linear infinite;
}
.testi-card {
    width: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
    flex-shrink: 0;
}
.stars { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }

/* --- CURRICULUM ACCORDION --- */
.curriculum { padding: 100px 0; background: var(--bg-card); }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.accordion-item:hover { border-color: rgba(255,255,255,0.2); }
.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}
.accordion-header:hover { background: rgba(255,255,255,0.02); }
.module-title { display: flex; flex-direction: column; gap: 4px; }
.module-badge { 
    font-size: 0.75rem; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}
.icon { font-size: 1.5rem; color: var(--text-muted); transition: 0.3s; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0,0,0,0.2);
}
.accordion-content.active { border-top: 1px solid var(--border); }
.module-desc { 
    padding: 20px 25px 10px; 
    font-style: italic; 
    color: var(--text-main); 
    font-size: 0.95rem; 
}
.topic-list {
    list-style: none;
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.topic-list li { 
    margin-bottom: 8px; 
    position: relative; 
    padding-left: 15px; 
}
.topic-list li::before { 
    content: '•'; 
    color: var(--primary); 
    position: absolute; 
    left: 0; 
}
.quiz-item { 
    color: var(--accent); 
    font-weight: 500; 
    margin-top: 12px; 
}

/* --- BONUSES --- */
.bonuses { padding: 100px 0; background: #080b12; }
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.bonus-card {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.05), rgba(0,0,0,0));
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
}
.bonus-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.bonus-card:hover .bonus-image img {
    transform: scale(1.08);
}
.bonus-content {
    padding: 25px 30px;
}
.bonus-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    margin-bottom: 15px; 
}
.bonus-header h4 { 
    color: var(--gold); 
    font-size: 1.1rem;
    margin: 0;
}
.bonus-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-muted);
}
.bonus-value { 
    background: var(--gold); 
    color: #000; 
    font-size: 0.7rem; 
    padding: 3px 8px; 
    border-radius: 4px; 
    font-weight: 700; 
    text-transform: uppercase; 
    white-space: nowrap;
}

/* --- INSTRUCTOR SECTION --- */
.instructor-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, #080b12 100%);
}
.instructor-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: start;
}
.instructor-image-container {
    text-align: center;
}
.instructor-image {
    position: relative;
    display: inline-block;
    padding: 6px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6, #EC4899);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}
.instructor-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.experience-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
    z-index: 2;
}
.instructor-name {
    font-size: 2.5rem;
    margin-top: 25px;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-weight: 700;
}
.instructor-credentials {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
}
.instructor-content {
    padding-top: 20px;
}
.instructor-title {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}
.instructor-bio p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-main);
    font-size: 1.05rem;
}
.instructor-cta {
    color: var(--primary) !important;
    font-weight: 600;
    margin-top: 30px !important;
}
.instructor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    animation: statPulse 6s ease-in-out infinite;
    animation-delay: calc(var(--stat-delay) * 2s);
}
.stat-box:nth-child(1) { --stat-delay: 0; }
.stat-box:nth-child(2) { --stat-delay: 1; }
.stat-box:nth-child(3) { --stat-delay: 2; }
.stat-box strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.stat-box span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes statPulse {
    0%, 33%, 100% { 
        transform: scale(1);
        background: rgba(59, 130, 246, 0.05);
        border-color: rgba(59, 130, 246, 0.1);
    }
    16.5% { 
        transform: scale(1.05);
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }
}

/* --- PRICING --- */
.pricing-section { padding: 100px 0 140px; position: relative; }
.pricing-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(59, 130, 246, 0.15);
    border: 1px solid var(--border);
}
.pricing-left { padding: 50px; }
.pricing-right { 
    padding: 50px; 
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-left: 1px solid var(--border);
    position: relative;
}
.bonus-list li { 
    margin-bottom: 15px; 
    list-style: none; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 1rem; 
}
.check-icon { color: var(--success); width: 22px; flex-shrink: 0; }
.highlight { color: var(--gold); font-weight: 600; }

.offer-tag { 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    font-weight: 700; 
    color: var(--accent); 
}
.strike { 
    text-decoration: line-through; 
    opacity: 0.6; 
    font-size: 1.5rem; 
    margin-top: 10px; 
}
.price-tag { 
    font-size: 4.5rem; 
    font-weight: 800; 
    line-height: 1; 
    margin: 5px 0; 
    letter-spacing: -2px; 
}
.price-sub { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    margin-bottom: 25px; 
}
.daily-cost { 
    background: rgba(16, 185, 129, 0.2); 
    color: #6EE7B7; 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 0.85rem; 
    display: inline-block; 
    margin: 0 auto 30px; 
    font-weight: 600; 
}

/* --- GUARANTEE SECTION --- */
.guarantee-section {
    padding: 100px 0;
    background: var(--bg-card);
}
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.guarantee-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}
.guarantee-card:hover {
    transform: translateY(-5px);
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}
.guarantee-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--success);
}
.guarantee-icon svg {
    width: 100%;
    height: 100%;
}
.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}
.guarantee-card p {
    color: var(--text-muted);
    line-height: 1.6;
}
.guarantee-badge {
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}
.guarantee-badge img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* --- COMPARISON TABLE --- */
.comparison-section {
    padding: 100px 0;
    background: #080b12;
}
.comparison-table {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
.comparison-column {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}
.before-column {
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.after-column {
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.column-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.before-column .column-header {
    background: rgba(239, 68, 68, 0.05);
}
.after-column .column-header {
    background: rgba(16, 185, 129, 0.05);
}
.icon-badge {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}
.column-header h3 {
    font-size: 1.5rem;
    margin: 0;
}
.comparison-list {
    list-style: none;
    padding: 30px;
}
.comparison-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.comparison-list li:last-child {
    margin-bottom: 0;
}
.comparison-list .bullet {
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}
.before-column .bullet {
    color: var(--danger);
}
.after-column .bullet {
    color: var(--success);
}
.comparison-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-main);
}
.comparison-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    width: 60px;
}
.comparison-arrow svg {
    width: 100%;
    height: auto;
}

/* --- SUCCESS STORY SECTION --- */
.success-story-section {
    padding: 100px 0;
    background: var(--bg-dark);
}
.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.story-header {
    display: flex;
    gap: 20px;
    padding: 40px;
    border-bottom: 1px solid var(--border);
    background: rgba(16, 185, 129, 0.05);
}
.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.story-meta h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.story-meta > p {
    color: var(--text-muted);
    margin-bottom: 15px;
}
.story-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tag {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.story-body {
    padding: 40px;
}
.story-challenge,
.story-solution {
    margin-bottom: 35px;
}
.story-body h4 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.story-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.challenge-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}
.stat-item-small {
    text-align: center;
    padding: 15px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
}
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 5px;
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.story-results {
    list-style: none;
    padding: 0;
}
.story-results li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.story-results-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.story-results-box h4 {
    margin-bottom: 25px;
    text-align: center;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
}
.result-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.result-content {
    flex: 1;
}
.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}
.result-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.story-quote {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 8px;
}
.story-quote blockquote {
    margin: 0;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* --- COMPANY LOGOS SECTION --- */
.companies-section {
    padding: 60px 0;
    background: #0d111c;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.logos-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}
.logos-scroll-container {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}
.company-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.company-logo:hover {
    opacity: 1;
}
.company-logo svg {
    height: 100%;
    width: auto;
}

/* --- FOOTER --- */
footer { 
    background: #0d111c;
    border-top: 1px solid var(--border); 
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand {
    max-width: 350px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 1.3rem;
}
.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}
.social-links a:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}
.social-links svg {
    width: 20px;
    height: 20px;
}
.footer-column h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 12px;
}
.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-bottom p {
    margin: 5px 0;
}
.footer-bottom p:last-child {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes pulseRed { 
    0% { opacity: 1; transform: scale(1); } 
    50% { opacity: 0.5; transform: scale(1.2); } 
    100% { opacity: 1; transform: scale(1); } 
}
@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

.fade-in { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: 0.8s ease-out; 
}
.fade-in.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* --- ROI CALCULATOR SECTION --- */
.roi-calculator-section {
    padding: 100px 0;
    background: var(--bg-card);
}
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-dark);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.input-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 600;
}
.tooltip-icon {
    display: inline-block;
    margin-left: 6px;
    width: 18px;
    height: 18px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: help;
    position: relative;
    vertical-align: middle;
}
.tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 10px 15px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 400;
    white-space: normal;
    width: 250px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    line-height: 1.4;
}
.tooltip-icon:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--primary);
    z-index: 1001;
}
.input-group input[type="number"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
}
.input-with-prefix {
    position: relative;
}
.input-with-prefix .prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-weight: 600;
}
.input-with-prefix input {
    padding-left: 35px;
}
.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.slider-container input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}
.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    cursor: pointer;
    border-radius: 50%;
}
.slider-container input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}
.slider-value {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}
.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.calculator-results h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}
.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}
.result-card.highlighted {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}
.result-card.large {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid var(--primary);
}
.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}
.result-value.red {
    color: var(--danger);
}
.result-value.green {
    color: var(--success);
}
.result-value.primary {
    color: var(--primary);
    font-size: 3rem;
}
.result-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.roi-summary {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.roi-summary p {
    margin: 5px 0;
    color: var(--text-muted);
}
.roi-multiplier {
    font-size: 1.2rem !important;
    color: var(--text-main) !important;
}
.calculator-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 20px;
    font-style: italic;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover {
    border-color: rgba(255,255,255,0.2);
}
.faq-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-header:hover {
    background: rgba(255,255,255,0.02);
}
.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
}
.faq-icon {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0,0,0,0.2);
}
.faq-content.active {
    border-top: 1px solid var(--border);
}
.faq-content p,
.faq-content ul,
.faq-content ol {
    padding: 0 30px;
    margin: 20px 0;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-content p:first-child {
    margin-top: 25px;
}
.faq-content p:last-child,
.faq-content ul:last-child,
.faq-content ol:last-child {
    margin-bottom: 25px;
}
.faq-content ul,
.faq-content ol {
    padding-left: 60px;
}
.faq-content li {
    margin-bottom: 8px;
}
.faq-content a {
    color: var(--primary);
    text-decoration: none;
}
.faq-content a:hover {
    text-decoration: underline;
}

/* --- EXIT-INTENT POPUP --- */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.exit-popup.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}
.exit-popup-content {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease;
}
.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 3;
}
.exit-popup-close:hover {
    background: var(--danger);
    transform: rotate(90deg);
}
.exit-popup-inner {
    padding: 50px 40px 40px;
    text-align: center;
}
.exit-popup-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}
.exit-popup-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.exit-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}
.exit-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
}
.exit-check {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}
.exit-benefit-item p {
    margin: 0;
    color: var(--text-main);
    font-weight: 600;
}
.exit-offer {
    background: rgba(59, 130, 246, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}
.exit-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.exit-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-right: 10px;
}
.exit-new-price {
    color: var(--primary);
}
.exit-note {
    color: var(--text-muted);
    margin: 0;
}
.exit-cta {
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding: 18px 40px;
}
.exit-guarantee {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid, .pricing-wrapper, .instructor-wrapper { 
        grid-template-columns: 1fr; 
    }
    .hero-text { 
        text-align: center; 
        margin-bottom: 30px; 
    }
    .hero-stats { 
        justify-content: center; 
    }
    .pricing-right { 
        order: -1; 
        border-left: none; 
        border-bottom: 1px solid var(--border); 
        padding: 40px 20px; 
    }
    .pricing-left { 
        padding: 30px 20px; 
    }
    .bonus-grid { 
        grid-template-columns: 1fr; 
    }
    .instructor-wrapper {
        gap: 40px;
    }
    .instructor-image {
        max-width: 400px;
        margin: 0 auto;
    }
    .instructor-stats {
        grid-template-columns: 1fr;
    }
    .nav-menu a {
        font-size: 1.1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand {
        max-width: 100%;
    }
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    /* New sections responsive */
    .comparison-table {
        grid-template-columns: 1fr;
    }
    .comparison-arrow {
        transform: rotate(90deg);
        width: auto;
        height: 40px;
        margin: 15px auto;
    }
    .comparison-arrow svg {
        width: 40px;
        height: 40px;
    }
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    .avatar-placeholder {
        margin: 0 auto;
    }
    .challenge-stats,
    .results-grid {
        grid-template-columns: 1fr;
    }
    .calculator-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .exit-popup-inner {
        padding: 50px 25px 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { 
        font-size: 2.5rem; 
    }
    .price-tag { 
        font-size: 3.5rem; 
    }
    .instructor-content h2 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    .logo {
        font-size: 1.1rem;
    }
    .footer-logo {
        font-size: 1.1rem;
    }
    .footer-logo .logo-icon {
        width: 28px;
        height: 28px;
    }
}
