:root {
    --bg-color: #050a14;
    --text-main: #f0f4ff;
    --text-muted: #a0aabf;
    --primary: #00e1ff;
    --secondary: #8e2de2;
    --accent: #4a00e0;
    --card-bg: rgba(15, 20, 35, 0.4);
    --card-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
}

/* Background Layers */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.bg-image {
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.bg-gradient {
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 80%);
    z-index: -1;
}

/* Floating Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.1); }
    100% { transform: translate(-20px, -30px) scale(0.9); }
}

/* Layout container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1.main-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 225, 255, 0.2);
}

.badge {
    display: inline-block;
    background: rgba(0, 225, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 225, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 225, 255, 0.2);
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 2rem;
}

.description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 225, 255, 0.3);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.highlight-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Reusable Glass Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Call to Action Buttons */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(142, 45, 226, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 35px rgba(142, 45, 226, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(142, 45, 226, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(142, 45, 226, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(142, 45, 226, 0); }
}

.pulse-fast {
    animation: pulse 1s infinite;
}

/* Sections & Grids */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.benefit-item .icon {
    font-size: 2rem;
    background: rgba(0, 225, 255, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 225, 255, 0.2);
}

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

.module-card {
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 225, 255, 0.4);
}

.module-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

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

/* Timeline */
.timeline {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
    margin-top: 2rem;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.timeline-item:last-child::before {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

.time-marker {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.time-marker.power {
    color: var(--secondary);
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

ul li {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.power-list li {
    color: var(--text-main);
    font-weight: 600;
}

/* Bonuses */
.bonus-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-card {
    border: 1px solid var(--secondary);
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.15);
}

.gift-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.bonus-card h3 {
    color: var(--secondary);
    letter-spacing: 2px;
}

.bonus-card h4 {
    margin: 0.5rem 0 1rem;
    font-size: 1.2rem;
}

.mini-list li::before {
    content: '→ ';
    color: var(--secondary);
}

/* Filters */
.filter-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.filter-card {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(10, 10, 20, 0.6);
}

.filter-card.red-glow {
    border-left: 4px solid #ff3366;
    box-shadow: -10px 0 30px rgba(255, 51, 102, 0.05);
}

.filter-card.green-glow {
    border-left: 4px solid #00ff88;
    box-shadow: -10px 0 30px rgba(0, 255, 136, 0.05);
}

.filter-card h3 {
    margin-bottom: 1rem;
}

.cross-list li {
    color: #ffb3c6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-card {
    padding: 1.5rem;
    text-align: center;
}

.stars {
    color: #ffcf00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.author {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pricing Base */
.pricing-section {
    text-align: center;
}

.pricing-container {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 225, 255, 0.2);
}

.value-stack {
    text-align: left;
    max-width: 300px;
    margin: 2rem auto;
}

.value-stack li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.strikethrough {
    text-decoration: line-through;
    color: #ff3366;
    opacity: 0.7;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.price-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
}

.huge-price {
    font-size: 4rem;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(0, 225, 255, 0.5);
    margin-bottom: 1rem;
}

.urgency-banner {
    display: inline-block;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.4);
    color: #ff3366;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    margin: 1rem 0;
}

.primary-cta {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    box-shadow: 0 0 30px rgba(0, 225, 255, 0.4);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.guarantee-icon {
    font-size: 2.5rem;
}

.final-question h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
    margin-top: 4rem;
}

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

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Scroll Animations */
.reveal { opacity: 0; }
.reveal.active { opacity: 1; transition: opacity 0.8s ease-out; }

.slide-up { transform: translateY(50px); opacity: 0; }
.slide-up.active { transform: translateY(0); opacity: 1; transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.slide-left { transform: translateX(-50px); opacity: 0; }
.slide-left.active { transform: translateX(0); opacity: 1; transition: all 0.8s ease-out; }

.slide-right { transform: translateX(50px); opacity: 0; }
.slide-right.active { transform: translateX(0); opacity: 1; transition: all 0.8s ease-out; }

.pop-in { transform: scale(0.9); opacity: 0; }
.pop-in.active { transform: scale(1); opacity: 1; transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* Mobile Optimization */
@media (max-width: 768px) {
    h1.main-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .container { padding: 3rem 1rem; gap: 3rem; }
    .huge-price { font-size: 3rem; }
    .guarantee-box { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    h1.main-title { font-size: 1.8rem; }
    .cta-button { padding: 1rem 1.5rem; font-size: 1rem; }
}
