/* ========== NEON BUBBLE OVERHAUL ========== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=JetBrains+Mono:wght@400;700&display=swap');

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

:root {
    --bg-body: #020005;
    --bg-sidebar: rgba(10, 5, 20, 0.5);
    --bg-card: rgba(15, 10, 30, 0.4);
    --bg-input: rgba(5, 5, 15, 0.8);
    --border: rgba(255, 255, 255, 0.05);
    
    --text-primary: #ffffff;
    --text-secondary: #b0a8ba;
    --text-muted: #6b6376;
    
    --neon-cyan: #00f0ff;
    --neon-pink: #ff0055;
    --neon-purple: #b000ff;
    --neon-green: #39ff14;
    --neon-yellow: #ccff00;
    
    --accent: var(--neon-cyan);
    --accent-glow: rgba(0, 240, 255, 0.6);
    
    --purple: var(--neon-purple);
    --cyan: var(--neon-cyan);
    --emerald: var(--neon-green);
    --rose: var(--neon-pink);
    --amber: var(--neon-yellow);
    --orange: #ff5e00;
    
    --gradient-primary: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--neon-purple));
    
    --radius: 32px;
    --radius-lg: 40px;
    --radius-sm: 20px;
    
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px var(--accent-glow);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== REACTIVE BACKGROUND ========== */
.bg-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        radial-gradient(circle at center, rgba(255,255,255,0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: var(--neon-purple); top: -10%; left: -10%; }
.orb-2 { width: 500px; height: 500px; background: var(--neon-cyan); top: 50%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: var(--neon-pink); bottom: -10%; left: 30%; animation-delay: -10s; }

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -50px) scale(1.2); }
    100% { transform: translate(-50px, 100px) scale(0.9); }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 1000;
    padding: 12px 24px; display: flex; align-items: center; justify-content: space-between;
    background: rgba(10, 5, 20, 0.6); backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    width: 90%; max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient-primary); display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 20px; color: white;
    box-shadow: 0 0 20px rgba(176, 0, 255, 0.6);
}
.nav-logo-text { font-size: 22px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }
.nav-logo-text span { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 600;
    transition: all 0.3s; letter-spacing: 0.5px; text-transform: uppercase;
}
.nav-links a:hover { color: var(--text-primary); text-shadow: 0 0 10px rgba(255,255,255,0.5); transform: translateY(-2px); }

.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ========== BUBBLE NEON BUTTONS ========== */
.btn {
    padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px; 
    border: none; font-family: inherit; letter-spacing: 0.5px; text-transform: uppercase;
    position: relative; overflow: hidden;
}
.btn::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.5s;
}
.btn:hover::before { left: 100%; }

.btn:hover { transform: translateY(-4px) scale(1.05); }
.btn:active { transform: scale(0.95); }

.btn-ghost {
    background: rgba(255,255,255,0.05); color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); box-shadow: 0 0 20px rgba(255,255,255,0.1); }

.btn-primary {
    background: var(--gradient-primary); color: white;
    box-shadow: 0 0 20px rgba(176, 0, 255, 0.5);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-primary:hover { box-shadow: 0 0 40px rgba(0, 240, 255, 0.8); }

.btn-emerald { background: var(--neon-green); color: black; box-shadow: 0 0 20px rgba(57, 255, 20, 0.4); border: none; }
.btn-emerald:hover { box-shadow: 0 0 40px rgba(57, 255, 20, 0.8); color: black; }

.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-outline { 
    background: transparent; color: var(--accent); 
    border: 2px solid var(--accent); box-shadow: inset 0 0 10px var(--accent-glow), 0 0 10px var(--accent-glow); 
}
.btn-outline:hover { background: var(--accent); color: black; box-shadow: 0 0 30px var(--accent-glow); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; padding: 160px 20px 80px;
    position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px;
    border-radius: 50px; background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3); font-size: 14px; color: var(--neon-cyan);
    font-weight: 700; margin-bottom: 30px; animation: fadeUp 0.8s ease;
    text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 0 20px rgba(0,240,255,0.2);
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); animation: pulse 1s infinite alternate; }

@keyframes pulse { from { opacity: 0.5; transform: scale(0.8); } to { opacity: 1; transform: scale(1.2); } }

.hero h1 {
    font-size: clamp(50px, 8vw, 100px); font-weight: 900; line-height: 1.1;
    margin-bottom: 24px; animation: fadeUp 0.8s ease 0.1s both;
    max-width: 900px; letter-spacing: -2px; text-shadow: 0 0 40px rgba(255,255,255,0.1);
}
.hero h1 .gradient {
    background: var(--gradient-primary); background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 20px rgba(176,0,255,0.4));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 18px; color: var(--text-secondary); max-width: 600px;
    margin: 0 auto 40px; line-height: 1.8; animation: fadeUp 0.8s ease 0.2s both;
    font-weight: 300;
}

.hero-buttons { display: flex; gap: 20px; justify-content: center; animation: fadeUp 0.8s ease 0.3s both; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 60px; margin-top: 80px; animation: fadeUp 0.8s ease 0.4s both;
    background: rgba(10,5,20,0.4); padding: 30px 60px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px);
}
.hero-stat { text-align: center; }
.hero-stat-value {
    font-size: 40px; font-weight: 900; letter-spacing: -1px;
    color: var(--text-primary); text-shadow: 0 0 20px rgba(255,255,255,0.4);
}
.hero-stat-label { font-size: 14px; color: var(--accent); margin-top: 8px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; text-shadow: 0 0 10px var(--accent-glow); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== NEON SECTIONS & CARDS ========== */
section { position: relative; z-index: 1; padding: 120px 20px; }

.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
    display: inline-flex; align-items: center; gap: 10px; font-size: 14px;
    text-transform: uppercase; letter-spacing: 3px; color: var(--neon-pink);
    font-weight: 800; margin-bottom: 16px; text-shadow: 0 0 10px rgba(255,0,85,0.5);
    background: rgba(255,0,85,0.1); padding: 8px 20px; border-radius: 30px; border: 1px solid rgba(255,0,85,0.3);
}
.section-title { font-size: clamp(36px, 5vw, 56px); font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; text-shadow: 0 0 30px rgba(255,255,255,0.1); }
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; font-weight: 300;}

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

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden;
    backdrop-filter: blur(20px);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-primary); opacity: 0; transition: 0.3s;
}
.feature-card:hover { 
    border-color: rgba(255,255,255,0.15); transform: translateY(-10px) scale(1.02); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(176,0,255,0.2);
    background: rgba(25, 15, 45, 0.6);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin-bottom: 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02); transition: 0.4s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); background: rgba(0,240,255,0.1); border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0,240,255,0.4); text-shadow: 0 0 10px rgba(255,255,255,0.8); }

.feature-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.feature-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; font-weight: 300; }

/* ========== DETECTIONS ========== */
.detections-grid {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.detection-item {
    display: flex; align-items: center; gap: 12px; padding: 14px 24px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 50px;
    font-size: 15px; font-weight: 600; transition: all 0.3s; backdrop-filter: blur(10px);
}
.detection-item:hover {
    background: rgba(57, 255, 20, 0.1); border-color: var(--neon-green);
    color: white; transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2);
}
.detection-icon { font-size: 18px; filter: drop-shadow(0 0 5px rgba(255,255,255,0.5)); }

/* ========== PANEL PREVIEW ========== */
.panel-preview {
    background: #020005; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(0,240,255,0.15);
    max-width: 1000px; margin: 0 auto;
}
.panel-bar {
    background: #0a0514; padding: 16px 20px; display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.panel-dot { width: 14px; height: 14px; border-radius: 50%; }
.panel-dot.red { background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); }
.panel-dot.yellow { background: var(--neon-yellow); box-shadow: 0 0 10px var(--neon-yellow); }
.panel-dot.green { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }
.panel-content { padding: 40px; background: radial-gradient(circle at top, rgba(176,0,255,0.05), transparent 60%); }
.panel-demo { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.panel-stat-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius); padding: 24px; text-align: center; backdrop-filter: blur(10px);
    transition: 0.3s;
}
.panel-stat-card:hover { transform: scale(1.05); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.panel-stat-card .label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px; }
.panel-stat-card .value { font-size: 36px; font-weight: 900; text-shadow: 0 0 20px currentColor; }

.purple { color: var(--neon-purple); }
.rose { color: var(--neon-pink); }
.cyan { color: var(--neon-cyan); }
.emerald { color: var(--neon-green); }

/* ========== PRICING ========== */
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 50px 40px; width: 100%; max-width: 360px; backdrop-filter: blur(20px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative;
}
.pricing-card:hover { transform: translateY(-15px); border-color: rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(176,0,255,0.15); background: rgba(25, 15, 45, 0.7); }
.pricing-card.featured {
    border-color: var(--neon-purple); background: rgba(176,0,255,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(176,0,255,0.05);
    transform: scale(1.05); z-index: 2;
}
.pricing-card.featured:hover { transform: scale(1.08) translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(176,0,255,0.3); }

.pricing-name { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.featured .pricing-name { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,240,255,0.5); }
.pricing-desc { color: var(--text-secondary); font-size: 15px; margin-bottom: 30px; font-weight: 300; }
.pricing-price { margin-bottom: 40px; }
.pricing-price .amount { font-size: 56px; font-weight: 900; color: white; text-shadow: 0 0 20px rgba(255,255,255,0.3); }
.pricing-price .currency { font-size: 24px; vertical-align: top; margin-right: 4px; color: var(--text-muted); }
.pricing-price .period { color: var(--text-muted); font-size: 16px; font-weight: 600; }

.pricing-features { list-style: none; margin-bottom: 40px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--text-primary); font-size: 15px; font-weight: 500;}
.pricing-features .check { color: var(--neon-green); font-weight: bold; font-size: 18px; text-shadow: 0 0 10px rgba(57,255,20,0.5); }
.pricing-features .cross { color: rgba(255,255,255,0.2); font-weight: bold; font-size: 16px; }
.pricing-features .disabled { color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid var(--border); padding: 60px 20px; text-align: center;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(20px);
}
.footer p { color: var(--text-muted); font-size: 14px; font-weight: 500;}

/* ========== UTILS ========== */
.reveal { animation: fadeUp 1s ease both; animation-timeline: view(); animation-range: entry 10% cover 30%; }

/* MODAL */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center; z-index: 2000;
    opacity: 0; pointer-events: none; transition: 0.4s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box {
    background: var(--bg-body); width: 100%; max-width: 440px; padding: 40px;
    border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 40px rgba(0,240,255,0.1);
    transform: translateY(30px) scale(0.95); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.modal-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary);
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h2 { font-size: 32px; font-weight: 900; margin-bottom: 8px; text-shadow: 0 0 20px rgba(255,255,255,0.2);}
.modal-header p { color: var(--text-secondary); font-size: 15px; font-weight: 300;}

.form-group { margin-bottom: 24px; text-align: left; }
.form-group label { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px;}
.form-group input {
    width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; color: white; font-size: 15px; font-family: inherit; transition: 0.3s;
}
.form-group input:focus { outline: none; border-color: var(--neon-cyan); background: rgba(0,240,255,0.05); box-shadow: 0 0 20px rgba(0,240,255,0.2); }

.auth-switch { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); font-weight: 500;}
.auth-switch a { color: var(--neon-cyan); text-decoration: none; font-weight: 700; cursor: pointer; transition: 0.2s; }
.auth-switch a:hover { color: white; text-shadow: 0 0 10px var(--neon-cyan); }

/* ========== MODAL FIXES ========== */
.modal {
    background: rgba(15, 10, 30, 0.8); width: 100%; max-width: 440px; padding: 50px 40px 40px;
    border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), inset 0 0 40px rgba(176,0,255,0.1);
    backdrop-filter: blur(30px);
    transform: translateY(30px) scale(0.95); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--gradient-primary); box-shadow: 0 0 20px rgba(176,0,255,0.8);}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute; top: 15px; right: 20px; background: none; border: none;
    color: var(--text-muted); font-size: 32px; cursor: pointer; transition: 0.3s;
    line-height: 1; padding: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--neon-pink); text-shadow: 0 0 15px rgba(255,0,85,0.8); transform: scale(1.2) rotate(90deg); }
.form-error { color: var(--neon-pink); font-size: 13px; font-weight: 700; text-align: center; margin-bottom: 16px; text-shadow: 0 0 10px rgba(255,0,85,0.3); background: rgba(255,0,85,0.1); padding: 8px; border-radius: 10px;}
.form-toggle { margin-top: 24px; text-align: center; font-size: 14px; color: var(--text-muted); font-weight: 500;}
.form-toggle a { color: var(--neon-cyan); cursor: pointer; font-weight: 800; transition: 0.3s; margin-left: 6px; text-decoration: none;}
.form-toggle a:hover { text-shadow: 0 0 15px rgba(0,240,255,0.8); color: white;}
.subtitle { color: var(--text-secondary); font-size: 15px; font-weight: 300; margin-bottom: 30px; text-align: center;}

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px;}
.testimonial-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg); padding: 40px; position: relative;
    backdrop-filter: blur(20px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.testimonial-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(176,0,255,0.2); border-color: rgba(176,0,255,0.3); background: rgba(176,0,255,0.05); }
.testimonial-stars { color: var(--neon-yellow); font-size: 20px; letter-spacing: 2px; margin-bottom: 20px; text-shadow: 0 0 10px rgba(204,255,0,0.5); }
.testimonial-text { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 30px; font-style: italic; font-weight: 300;}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 20px;
    box-shadow: 0 0 20px rgba(176,0,255,0.5);
}
.testimonial-name { font-weight: 800; font-size: 16px; color: white; margin-bottom: 4px;}
.testimonial-role { color: var(--neon-cyan); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 120px 20px; text-align: center; background: radial-gradient(circle at center, rgba(0,240,255,0.05), transparent 60%);
    border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(176,0,255,0.05), transparent 40%);
}
.cta-section h2 { font-size: clamp(40px, 6vw, 60px); font-weight: 900; margin-bottom: 24px; text-shadow: 0 0 30px rgba(255,255,255,0.1); letter-spacing: -1px;}
.cta-section p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; font-weight: 300;}

/* ========== FOOTER OVERHAUL ========== */
.footer {
    padding: 80px 20px 40px; background: rgba(0,0,0,0.6); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; text-align: left;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: span 1; } }

.footer-brand p { margin-top: 24px; font-size: 15px; color: var(--text-muted); line-height: 1.8; font-weight: 300;}
.footer h4 { font-size: 14px; font-weight: 800; color: white; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 2px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; }
.footer-links li { display: block; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 15px; transition: 0.3s; font-weight: 500; }
.footer-links a:hover { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,240,255,0.5); transform: translateX(5px); display: inline-block; }
.footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 14px; text-align: center; font-weight: 300;}

/* ========== RESPONSIVE MOBILE FIXES ========== */
@media (max-width: 800px) {
    .navbar { padding: 12px 16px; width: 95%; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .nav-logo-text { font-size: 18px; }
    .nav-links { display: none; }
    .nav-actions .btn { padding: 8px 16px; font-size: 13px; }
    .hero { padding: 150px 20px 80px; }
    .hero-title { font-size: clamp(32px, 8vw, 50px); }
    .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .modal { padding: 30px 20px; width: 90%; }
    .modal-close { top: 10px; right: 10px; }
    .input-group input { padding: 12px; }
    .form-row { grid-template-columns: 1fr; gap: 15px; }
}
