:root {
    --bg-color: #0F172A;
    --bg-darker: #0B1120;
    --text-main: #FFFFFF;
    --text-muted: #CBD5E1;
    --primary: #DFBB00;
    --primary-hover: #FACC15;
    --secondary: #1E293B;
    --secondary-hover: #334155;
    --accent: #F59E0B;
    --green: #10B981;
    --red: #EF4444;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 20px rgba(223, 187, 0, 0.4);
    --font-family: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-hover);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 80px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-darker { background-color: var(--bg-darker); }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 2rem; }
.justify-center { justify-content: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-small { padding: 8px 16px; font-size: 0.9rem; }
.btn-large { padding: 14px 28px; font-size: 1.1rem; }
.btn-full { width: 100%; padding: 12px; margin-top: 15px; }

.btn-primary { background: var(--primary); color: var(--bg-darker); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); background: var(--primary-hover); }
.btn-secondary { background: var(--secondary); color: #fff; border: 1px solid var(--glass-border); }
.btn-secondary:hover { background: var(--secondary-hover); }
.btn-accent { background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; }

.glow { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(223, 187, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(223, 187, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(223, 187, 0, 0); }
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Header (Sticky Banner) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.header-top { display: flex; justify-content: space-between; align-items: center; flex: 1; min-width: max-content; }
.logo { font-size: 1.6rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: #fff; white-space: nowrap; letter-spacing: 0.5px; }
.logo i { color: var(--primary); font-size: 1.8rem; }

.header-action { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.btn-header { padding: 6px 16px; font-size: 0.85rem; border-radius: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.mini-countdown { font-size: 0.85rem; font-weight: 700; color: var(--primary); background: rgba(223, 187, 0, 0.1); padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(223, 187, 0, 0.3); }

/* FOMO Tags */
.fomo-tags-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin: 0 15px;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.fomo-tags { display: flex; gap: 10px; animation: scrollMarquee 20s linear infinite; white-space: nowrap; }
.fomo-tags:hover { animation-play-state: paused; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.fomo-tag {
    transform: skewX(-15deg);
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.fomo-tag span { transform: skewX(15deg); display: inline-block; }

.f-blue { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.f-green { background: linear-gradient(135deg, #10B981, #047857); }
.f-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.f-orange { background: linear-gradient(135deg, #F59E0B, #C2410C); }
.f-red { background: linear-gradient(135deg, #EF4444, #B91C1C); }

/* Glow Orbs */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 187, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}
.glow-orb.top-left { top: -100px; left: -100px; }
.glow-orb.bottom-right { bottom: -100px; right: -100px; background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0,0,0,0) 70%); }
.glow-orb.center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; }
.glow-orb.top-right { top: 0; right: 0; }

/* Sections */
section { padding: 100px 0; position: relative; }
.section-header { margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* Hero */
.hero { min-height: calc(100vh - 120px); display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.badge { display: inline-block; padding: 6px 12px; background: rgba(223, 187, 0, 0.15); color: var(--primary); border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(223, 187, 0, 0.4); }
.hero-content h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 0 30px rgba(255,255,255,0.1); }
.subheadline { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; }
.mockup-img { width: 100%; height: auto; border-radius: 15px; display: block; border: 1px solid var(--glass-border); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* Grid Layouts */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

/* Problem Cards */
.problem-card { padding: 30px; text-align: center; transition: transform 0.3s; }
.problem-card:hover { transform: translateY(-5px); border-color: rgba(239, 68, 68, 0.4); }
.icon-box { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px auto; }
.icon-box.red { background: rgba(239, 68, 68, 0.1); color: var(--red); }
.icon-box.primary { background: rgba(223, 187, 0, 0.15); color: var(--primary); margin: 0 15px 0 0; }
.problem-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.problem-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Feature Cards */
.feature-card { padding: 30px; transition: transform 0.3s; position: relative; overflow: hidden; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-color: rgba(223, 187, 0, 0.4); }
.feature-header { display: flex; align-items: center; margin-bottom: 15px; flex-wrap: wrap; }
.feature-header h3 { font-size: 1.3rem; margin-right: auto; }
.tag { font-size: 0.75rem; background: var(--secondary); padding: 4px 8px; border-radius: 4px; border: 1px solid var(--glass-border); }
.feature-card p { color: var(--text-muted); margin-bottom: 15px; }
.feature-card ul li { margin-bottom: 10px; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 8px; color: #d1d5db; }
.feature-card ul li i { margin-top: 4px; }
.feature-full { grid-column: 1 / -1; }

/* Feature Themes */
.feat-blue { border-top: 3px solid #3B82F6; }
.feat-blue:hover { border-color: #3B82F6; box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15); }
.feat-blue .icon-box { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }

.feat-green { border-top: 3px solid #10B981; }
.feat-green:hover { border-color: #10B981; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15); }
.feat-green .icon-box { background: rgba(16, 185, 129, 0.15); color: #10B981; }

.feat-purple { border-top: 3px solid #8B5CF6; }
.feat-purple:hover { border-color: #8B5CF6; box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15); }
.feat-purple .icon-box { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }

.feat-orange { border-top: 3px solid #F59E0B; }
.feat-orange:hover { border-color: #F59E0B; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15); }
.feat-orange .icon-box { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }

.feat-red { border-top: 3px solid #EF4444; }
.feat-red:hover { border-color: #EF4444; box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15); }
.feat-red .icon-box { background: rgba(239, 68, 68, 0.15); color: #EF4444; }

/* Demo Flow */
.steps-container { display: flex; justify-content: space-between; align-items: flex-start; position: relative; }
.step-card { flex: 1; text-align: center; position: relative; z-index: 2; }
.step-number { width: 60px; height: 60px; background: var(--primary); color: var(--bg-darker); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px auto; box-shadow: 0 0 20px rgba(223, 187, 0, 0.5); }
.step-content h3 { margin-bottom: 10px; }
.step-content p { color: var(--text-muted); }
.step-connector { flex: 0.5; height: 2px; background: linear-gradient(90deg, transparent, var(--glass-border), transparent); margin-top: 30px; }

/* Benefits */
.benefit-flex { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.benefit-content { width: 100%; max-width: 800px; }
.benefit-content h2 { font-size: 2.2rem; margin-bottom: 30px; color: var(--primary); text-align: center; }
.benefit-list li { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.benefit-list li i { font-size: 2rem; background: rgba(223, 187, 0, 0.15); padding: 12px; border-radius: 12px; color: var(--primary); }
.benefit-list li strong { display: block; font-size: 1.1rem; margin-bottom: 5px; color: #fff; }
.benefit-list li div { color: var(--text-muted); }
.benefit-image { padding: 40px; text-align: center; width: 100%; max-width: 600px; margin: 0 auto; }
.revenue-mockup { display: flex; flex-direction: column; gap: 20px; }
.rev-stat { background: rgba(0,0,0,0.5); padding: 25px; border-radius: 12px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 12px; border: 1px solid var(--glass-border); text-align: center; }
.rev-label { font-weight: 600; font-size: 1.1rem; color: #fff; }
.rev-value { font-size: 2rem; font-weight: 800; }

/* Social Proof */
.stats-row { display: flex; justify-content: center; gap: 50px; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-item .number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-item .label { color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.feedback-card { padding: 30px; }
.stars { color: var(--primary); font-size: 1.2rem; margin-bottom: 15px; }
.quote { font-style: italic; color: #d1d5db; margin-bottom: 20px; }
.user-info { display: flex; align-items: center; gap: 15px; }
.avatar { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; background: var(--primary); color: var(--bg-darker); }
.user-details strong { display: block; line-height: 1.2; }
.user-details span { font-size: 0.85rem; color: var(--text-muted); }

/* Pricing */
.pricing-grid { display: flex; flex-direction: column; gap: 20px; align-items: center; margin-bottom: 30px; }
.pricing-grid > * { width: 100%; max-width: 800px; }
.pricing-card { display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 30px; text-align: left; position: relative; overflow: hidden; transition: transform 0.3s; }
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(223, 187, 0, 0.4); }
.pricing-card.pkg-1 { border-color: #3B82F6; box-shadow: 0 5px 30px rgba(59, 130, 246, 0.1); }
.pricing-card.popular { border-color: var(--primary); box-shadow: 0 10px 40px rgba(223, 187, 0, 0.15); }
.pricing-card.pkg-6 { border-color: var(--green); box-shadow: 0 5px 30px rgba(16, 185, 129, 0.1); }
.pricing-card.pkg-12 { border-color: #8B5CF6; box-shadow: 0 5px 30px rgba(139, 92, 246, 0.1); }
.pricing-card.lifetime { border-color: #f59e0b; box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15); }
.popular-badge, .lifetime-badge, .pkg1-badge, .pkg6-badge, .pkg12-badge { position: absolute; top: 0; left: 0; right: 0; padding: 8px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; text-align: center; }
.popular-badge { background: var(--primary); color: var(--bg-darker); }
.lifetime-badge { background: linear-gradient(90deg, #f59e0b, #ef4444); color: white; }
.pkg1-badge { background: #3B82F6; color: white; }
.pkg6-badge { background: var(--green); color: white; }
.pkg12-badge { background: #8B5CF6; color: white; }
.pricing-card.popular, .pricing-card.lifetime, .pricing-card.pkg-1, .pricing-card.pkg-6, .pricing-card.pkg-12 { padding-top: 50px; }
.pkg-info { flex: 1; padding-right: 30px; border-right: 1px solid var(--glass-border); margin-right: 30px; }
.pkg-action { flex: 0 0 250px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.pkg-name { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.pkg-price { font-size: 2.2rem; font-weight: 800; margin-bottom: 5px; color: #fff; }
.pkg-original { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.pkg-desc { font-size: 1rem; color: #d1d5db; min-height: auto; margin-bottom: 0; }
.pkg-features { margin-top: 15px; text-align: left; }
.pkg-features li { margin-bottom: 5px; display: flex; gap: 10px; align-items: center; }
.pkg-features li i { color: var(--green); }

/* FAQ */
.faq-container { max-width: 800px; }
.accordion { display: flex; flex-direction: column; gap: 15px; }
.accordion-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; }
.accordion-header { width: 100%; padding: 20px; background: transparent; border: none; color: white; text-align: left; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-family); }
.accordion-content { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-muted); }
.accordion-item.active .accordion-content { padding: 0 20px 20px 20px; max-height: 200px; }
.accordion-item.active .accordion-header i { transform: rotate(180deg); color: var(--primary); }

/* Footer */
.footer { padding: 30px 0; border-top: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.9rem; }

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 999;
    transition: transform 0.3s ease;
    border: 3px solid rgba(255,255,255,0.4);
}
.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--bg-darker);
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .benefit-flex { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: auto; padding-top: 50px; text-align: center; }
    .hero-cta { justify-content: center; }
}
@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; gap: 30px; }
    .step-connector { display: none; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 2rem; }
    .pricing-card { flex-direction: column; text-align: center; }
    .pkg-info { padding-right: 0; border-right: none; margin-right: 0; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--glass-border); }
    .pkg-action { flex: auto; width: 100%; }
    .floating-btn { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.5rem; }
    
    /* Header Mobile */
    .header-inner { flex-direction: column; padding: 5px 0; gap: 5px; width: 100%; }
    .header-top { width: 100%; justify-content: space-between; min-width: auto; flex: none; }
    .logo-text { font-size: 1.1rem; }
    .logo img { height: 28px !important; }
    .mini-countdown { display: none; }
    .btn-header { padding: 4px 10px; font-size: 0.7rem; }
    .fomo-tags-container { width: 100%; margin: 0; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.05); }
}
