:root {
    --bg-main: #060811;
    --bg-darker: #020306;
    --color-text: #f8fafc;
    --color-muted: #cbd5e1;
    
    --accent-cyan: #00f0ff;
    --accent-blue: #3b82f6;
    --accent-purple: #a855f7;
    --accent-red: #ef4444;
    --accent-green: #22c55e;
    --accent-gold: #fbbf24;
    
    --glass-bg: rgba(20, 25, 40, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* Base Styles */
h1, h2, h3, .product-title {
    font-family: var(--font-heading);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

a { text-decoration: none; color: inherit; }
strong { font-weight: 700; color: #fff; }

/* Backgrounds */
.pattern-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(var(--glass-border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    width: 60vw; height: 60vw;
    max-width: 800px; max-height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}
.top-orb {
    top: -20%; left: -10%;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
}
.bottom-orb {
    bottom: -20%; right: -10%;
    background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.top-bar-proof {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Utilities */
.container { max-width: 850px; margin: 0 auto; padding: 0 20px; }
.section-spacing { padding: 4.5rem 0; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; } .w-max { width: max-content; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }

.text-center { text-align: center; } .text-left { text-align: left; }
.text-large { font-size: 1.15rem; } .text-xl { font-size: 1.6rem; } .text-xxl { font-size: 2.3rem; }
.text-small { font-size: 0.9rem; } .text-tiny { font-size: 0.75rem; }
.text-muted { color: var(--color-muted); }
.italic { font-style: italic; }
.block { display: block; }
.font-bold { font-weight: 700; }

/* Highlights */
.highlight-text { font-weight: 800; color: #fff; }
.highlight-cyan { color: var(--accent-cyan); text-shadow: 0 0 12px rgba(0,240,255,0.3); }
.highlight-red { color: var(--accent-red); text-shadow: 0 0 12px rgba(239,68,68,0.3); }
.highlight-green { color: var(--accent-green); }
.highlight-purple { color: var(--accent-purple); }
.highlight-gold { color: var(--accent-gold); }

.highlight-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gradient-text-alt {
    background: linear-gradient(90deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg-subtle {
    background: linear-gradient(180deg, rgba(20,25,40,0.1) 0%, rgba(20,25,40,0.6) 100%);
}

.badge-accent, .badge-red, .badge-purple {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-accent { background: rgba(0, 240, 255, 0.1); color: var(--accent-cyan); border: 1px solid rgba(0, 240, 255, 0.3); }
.badge-red { background: rgba(239, 68, 68, 0.1); color: var(--accent-red); border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-purple { background: rgba(168, 85, 247, 0.1); color: var(--accent-purple); border: 1px solid rgba(168, 85, 247, 0.3); }

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.glass-panel.no-border { border: none; box-shadow: none; }
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.2); }
.hover-glow-cyan:hover { box-shadow: 0 10px 30px rgba(0,240,255,0.15); border-color: rgba(0,240,255,0.4); transform: translateY(-5px); }

/* Borders */
.border-red { border-color: rgba(239,68,68,0.3); }
.border-green { border-color: rgba(34,197,94,0.3); }
.border-subtle { border-color: rgba(255,255,255,0.1); }
.gradient-border-box {
    position: relative;
}
.gradient-border-box::after {
    content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 25px; z-index: -1; opacity: 0.5;
}

/* CTAs */
.cta-button {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: linear-gradient(135deg, var(--accent-blue), #6366f1);
    color: #fff;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem;
    padding: 1.3rem 2.8rem;
    border-radius: 14px; border: none; cursor: pointer;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-transform: uppercase; letter-spacing: 0.5px;
    position: relative; overflow: hidden;
}
.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-green), #15803d);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
}

.cta-button::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.15);
}

.cta-button.secondary-cta {
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}
.cta-button.secondary-cta:hover {
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.pulse-btn { animation: pulseGlowBtn 2.5s infinite; }
@keyframes pulseGlowBtn {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Sections - HERO */
.hero { margin-top: 2rem; }
.hero-badge.pulse-badge {
    animation: pulseObj 2s infinite;
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 0.4rem 1.2rem; border-radius: 30px; font-weight: 700; font-size: 0.9rem;
    margin-bottom: 1.5rem; display: inline-block;
}
.headline { font-size: clamp(2.2rem, 6vw, 3.5rem); letter-spacing: -0.5px; }
.subtitle { font-size: 1.25rem; max-width: 750px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-bullets {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
    align-items: center; justify-content: center; font-size: 1.1rem;
    color: var(--color-text); font-weight: 500;
}
.hero-bullets li { display: flex; align-items: center; gap: 8px; }
.icon-check { color: var(--accent-green); font-weight: bold; }

/* PAIN SECTION */
.pain-list { display: flex; flex-direction: column; gap: 15px; margin-top: 1.5rem; }
.pain-item {
    display: flex; align-items: center; gap: 15px;
    background: rgba(255,255,255,0.02); padding: 15px 20px;
    border-radius: 12px; border: 1px solid rgba(255,255,255,0.05);
}
.icon-x {
    width: 28px; height: 28px; background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-weight: bold; font-size: 0.9rem; flex-shrink: 0;
}

/* BEFORE AFTER GRID */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.before-card, .after-card { position: relative; overflow: hidden; }
.before-card { border-top: 4px solid var(--accent-red); }
.after-card { border-top: 4px solid var(--accent-green); background: rgba(34,197,94,0.03); }
.bullet-icon {
    width: 22px; height: 22px; border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center; font-size: 0.7rem; font-weight: bold; margin-right: 10px;
}
.bullet-icon.error { background: rgba(239,68,68,0.2); color: var(--accent-red); }
.bullet-icon.success { background: rgba(34,197,94,0.2); color: var(--accent-green); }
.danger-list li, .success-list li {
    display: flex; align-items: center; margin-bottom: 12px; font-size: 1.05rem;
}
.danger-list, .success-list { list-style: none; margin-top: 1rem; }

/* TESTIMONIALS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; }
.stars { font-size: 1.1rem; letter-spacing: 2px; }
.user-info { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--glass-border); padding-top: 15px; }
.avatar {
    width: 45px; height: 45px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: bold; font-size: 1.2rem; color: #fff;
}

/* SPLIT LAYOUT PRODUCT */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.product-title { font-size: 2.8rem; letter-spacing: -1px; }
.ebook-3d { width: 100%; max-width: 380px; display: block; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6)); }
.animate-float { animation: float 5s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* BENEFITS GRID */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.check-icon.large { font-size: 2rem; display: block; }
.cyan-shadow { text-shadow: 0 0 15px var(--accent-cyan); }

/* TRANSFORM GRID / IMAGINATION */
.transform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 2rem; }
.floating-icon { font-size: 3rem; display: inline-block; animation: subtleFloat 4s ease-in-out infinite; }
@keyframes subtleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* AUTHORITY */
.shield-icon { font-size: 4rem; display: inline-block; text-shadow: 0 0 30px rgba(255,255,255,0.2); }
.shrink-pulse { animation: shrinkPulse 4s infinite; }
@keyframes shrinkPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(0.92); } }

/* BONUS */
.glow-purple { position: relative; }
.glow-purple:hover { box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2); border-color: rgba(168, 85, 247, 0.4); }
.bonus-num { position: absolute; top: -20px; right: 20px; font-size: 4.5rem; font-weight: 800; color: rgba(168, 85, 247, 0.1); line-height: 1; z-index: -1; }
.pulse-fast { animation: pulseObj 1.5s infinite; }

/* OFFER & COUNTDOWN */
.super-glow { box-shadow: 0 0 50px rgba(34, 197, 94, 0.15), inset 0 0 20px rgba(255,255,255,0.05); border-color: rgba(34, 197, 94, 0.3); }
.timer-box { background: rgba(0,0,0,0.4); border: 1px solid var(--accent-red); border-radius: 12px; padding: 15px; display: inline-block; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 2rem; font-weight: 800; font-family: var(--font-heading); color: #fff; }
.time-box { display: flex; flex-direction: column; align-items: center; background: rgba(239, 68, 68, 0.15); padding: 5px 15px; border-radius: 8px; min-width: 70px; }
.time-label { font-size: 0.7rem; font-weight: 600; color: var(--accent-red); font-family: var(--font-body); letter-spacing: 1px; }

.price-wrap { display: flex; align-items: flex-start; justify-content: center; color: var(--accent-green); margin: 15px 0; }
.currency { font-size: 1.8rem; margin-top: 8px; margin-right: 5px; font-weight: 700; }
.price { font-size: 5rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); text-shadow: 0 0 30px rgba(34, 197, 94, 0.4); }
.cents { font-size: 1.8rem; margin-top: 8px; font-weight: 700; }

.secure-checkout { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 25px; filter: grayscale(1) invert(0.8) opacity(0.8); }
.payment-icon { height: 28px; width: auto; }

/* GUARANTEE */
.huge-icon { font-size: 3.5rem; display: block; }
.guarantee-box { flex-direction: row; align-items: center; padding: 2.5rem; gap: 20px; }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.zoom-in { transform: scale(0.95); opacity: 0; transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.zoom-in.visible { transform: scale(1); opacity: 1; }

@keyframes pulseObj { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* RESPONSIVE */
@media (max-width: 768px) {
    .split-layout, .comparison-grid { grid-template-columns: 1fr; gap: 30px; }
    .glass-panel { padding: 1.8rem; }
    .section-spacing { padding: 3.5rem 0; }
    .headline { font-size: 2rem; }
    .cta-button { padding: 1.1rem 1.2rem; font-size: 1rem; flex-direction: column; gap: 5px; }
    .cta-button span.cta-text { font-size: 0.95rem; text-align: center; }
    .guarantee-box { flex-direction: column; text-align: center; padding: 1.5rem; }
    .ml-2 { margin-left: 0; margin-top: 15px; }
    .top-orb, .bottom-orb { display: none; }
    .price { font-size: 4rem; }
}
