:root {
    --bg-main: #05030a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    --purple-primary: #7c3aed;
    --purple-light: #9f67ff;
    --purple-dark: #4c1d95;
    --purple-glow: rgba(124, 58, 237, 0.3);
    --purple-border: rgba(255, 255, 255, 0.1);
    
    --card-bg: rgba(255, 255, 255, 0.03);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(76, 29, 149, 0.15), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(139, 92, 246, 0.1), transparent 40%);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-primary);
}

h1, h2, h3, h4, .logo-text, .text-gradient {
    font-family: 'Outfit', sans-serif;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header & Nav */
.header {
    padding: 16px 0;
    position: fixed;
    top: 40px; /* Below status bar */
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(5, 3, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(5, 3, 10, 0.85);
    border-bottom-color: var(--purple-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--purple-glow));
    animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.02); }
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-fallback {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px var(--purple-glow);
    border: 1px solid rgba(255,255,255,0.1);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a:not(.nav-highlight) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-highlight)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--purple-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-highlight):hover {
    color: white;
}

.nav-links a:not(.nav-highlight):hover::after {
    width: 100%;
}

.nav-highlight {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.1));
    border: 1px solid var(--purple-border);
    padding: 10px 20px;
    border-radius: 12px;
    color: white !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-highlight:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(124, 58, 237, 0.2));
    border-color: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
}

/* Hero Section */
.hero-container {
    position: relative;
    padding: 220px 0 100px; /* Increased padding for fixed header + status bar */
    text-align: center;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.4) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: white;
    border: 1px solid var(--purple-light);
    box-shadow: 0 10px 20px rgba(107, 33, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(107, 33, 168, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section-container {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255,255,255,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    z-index: -1;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.5), 0 0 30px rgba(139, 92, 246, 0.2);
}

.col-span-2 { grid-column: span 2; }

.full-width { grid-column: 1 / -1; }

.bento-glow {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(76, 29, 149, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.bento-icon {
    width: 50px; height: 50px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.3rem; margin-bottom: 10px;
}
.bento-card p {
    color: var(--text-secondary); line-height: 1.5; font-size: 0.95rem;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255,255,255,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 10;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.5), 0 0 30px rgba(139, 92, 246, 0.2);
}

.product-status {
    position: absolute;
    top: 20px; right: 20px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-updating { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.status-testing { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.status-undetected { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }

.product-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: white; margin-bottom: 20px;
}

.product-name { font-size: 1.5rem; margin-bottom: 10px; }
.product-desc { color: var(--text-secondary); margin-bottom: 30px; min-height: 45px; }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.product-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--purple-light);
}

.btn-buy {
    background: rgba(168, 85, 247, 0.2);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}
.btn-buy:hover { background: var(--purple-primary); }

/* --- GUIDE PORTAL STYLES (guide.html) --- */
.guide-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

.guide-category-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.4);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
}

.guide-card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.guide-list {
    list-style: none;
}

.guide-list li {
    margin-bottom: 16px;
}

.guide-list li:last-child {
    margin-bottom: 0;
}

.guide-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    font-size: 1.05rem;
    background: rgba(0,0,0,0.2);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}

.guide-link:hover {
    color: white;
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(5px);
}

.guide-link .lucide {
    width: 18px;
    height: 18px;
    color: var(--purple-primary);
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.guide-link:hover .lucide {
    opacity: 1;
    transform: scale(1.1);
}

/* --- MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(180deg, #150824 0%, #0a0514 100%);
    border: 1px solid var(--purple-border);
    border-radius: 24px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh; /* Added to limit height */
    display: flex; /* Added for layout */
    flex-direction: column; /* Added for layout */
    padding: 32px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(107, 33, 168, 0.3);
}

.modal-overlay.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-icon {
    width: 44px;
    height: 44px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.modal-title {
    font-size: 1.6rem;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    overflow-y: auto;
    padding-right: 10px; /* Space for scrollbar */
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.5);
    border-radius: 4px;
}

/* AI Chat Custom Styles (Injected by JS) */
.ai-chat-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-message {
    background: rgba(20, 10, 30, 0.8);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--purple-border);
    box-shadow: inset 0 0 20px rgba(147, 51, 234, 0.1);
    position: relative;
}

.ai-message::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168,85,247,0.4) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.5;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.ai-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.ai-name {
    color: white;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--purple-glow);
}

.ai-text {
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.ai-input-area {
    display: flex;
    gap: 12px;
    background: rgba(0,0,0,0.3);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.ai-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 12px 16px;
    outline: none;
    font-size: 1rem;
}

.ai-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.ai-send-btn {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: white;
    border: none;
    padding: 0 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ai-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}


/* Footer */
.footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer-column a {
    display: block; color: var(--text-secondary);
    text-decoration: none; margin-bottom: 12px;
    transition: color 0.3s;
}
.footer-column a:hover { color: var(--purple-light); }

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--purple-primary);
}

@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .col-span-2 { grid-column: auto; }
    
    .status-flex { gap: 15px; }
    .status-item { font-size: 0.8rem; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 5, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px;
        gap: 25px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--purple-border);
        z-index: 1000;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -20px 0 50px rgba(0,0,0,0.5);
    }
    
    .nav-links a {
        width: 100%;
        font-size: 1.1rem !important;
    }
    
    .nav-highlight {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    .status-bar { height: auto; padding: 10px 0; display: none; }
    .header { top: 0; } /* Remove gap on mobile since status bar is hidden */
    .hero-container { padding-top: 160px; }
    
    .product-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-brand { margin: 0 auto; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .trust-badges { gap: 20px; }
    
    .modal-content {
        padding: 24px;
        width: 92%;
    }
    
    .modal-title { font-size: 1.3rem; }
    
    .social-ticker {
        left: 20px;
        right: 20px;
        bottom: 100px;
        transform: translateY(200px);
    }
    
    .ai-fab {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    
    .logo-text { font-size: 1.3rem; }
    .logo-img { height: 45px; }
    
    .status-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .status-item { justify-content: center; }
    
    .review-card { width: 280px; }
}

/* Background Abstract Orbs for Glass Refraction */
.bg-orb { position: fixed; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; opacity: 0.5; }
.orb-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: rgba(139, 92, 246, 0.4); }
.orb-2 { bottom: -20%; right: -10%; width: 800px; height: 800px; background: rgba(76, 29, 149, 0.3); }
.orb-3 { top: 40%; left: 60%; width: 500px; height: 500px; background: rgba(59, 130, 246, 0.15); }

/* Background Particles */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.status-bar {
    background: rgba(10, 5, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.status-text-online {
    color: #34d399;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.status-flex {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px currentColor;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.3;
    animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Reviews Marquee */
.reviews-marquee {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.review-card {
    width: 350px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    user-select: none;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--purple-primary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0.6;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.trust-badge i {
    font-size: 1.2rem;
    color: var(--purple-light);
}

/* Page Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #05030a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 8px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px var(--purple-glow));
    animation: pulse-glow 2s infinite;
}

.loader-bar {
    width: 600px;
    max-width: 90vw;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.loader-progress {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--purple-primary);
    box-shadow: 0 0 15px var(--purple-primary);
    animation: loader-anim 2s infinite ease-in-out;
}

@keyframes loader-anim {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* Custom Cursor */
.cursor-dot {
    pointer-events: none;
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px 5px rgba(139, 92, 246, 0.6);
    transition: width 0.3s, height 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.cursor-outline { display: none; }

/* Contact Section Styling */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateX(10px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    flex-shrink: 0;
}

.contact-info-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea, .form-select {
    width: 100%;
    background: rgba(10, 5, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus, .form-group textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15), inset 0 0 10px rgba(124, 58, 237, 0.05);
    background: rgba(10, 5, 20, 0.6);
    transform: translateY(-2px);
}

.form-select option {
    background: #0a0514;
    color: white;
}

.contact-status {
    margin-top: 25px;
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    display: none;
    animation: slideIn 0.4s ease;
}

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

.contact-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.contact-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.1);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Hide default cursor on desktop */
@media (min-width: 1024px) {
    * { cursor: none !important; }
}

/* Hide custom cursor on mobile/touch devices */
@media (max-width: 1024px) {
    .cursor-dot { display: none !important; }
    * { cursor: auto !important; }
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
    background: rgba(139, 92, 246, 0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: white;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-secondary);
}

.check-icon { color: #34d399; }
.cross-icon { color: #f87171; }

.table-highlight {
    background: rgba(139, 92, 246, 0.05);
    border-left: 2px solid var(--purple-primary);
}

/* Social Proof Ticker */
.social-ticker {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 10, 25, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--purple-border);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    transform: translateY(150px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.social-ticker.show {
    transform: translateY(0);
}

.ticker-icon {
    width: 36px; height: 36px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-light);
}

.ticker-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.ticker-text strong { color: var(--purple-light); }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--purple-primary), var(--purple-light));
    box-shadow: 0 0 10px var(--purple-primary);
    z-index: 10001;
}

/* 3D Tilt & Magnetic Effects */
.tilt-card {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Floating Support FAB */
.support-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 20px var(--purple-glow), 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--purple-light);
}

.support-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 30px var(--purple-primary), 0 15px 40px rgba(0,0,0,0.6);
}

.support-fab-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #05030a;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
}

/* Contact Chatbox (Corner Popup) */
.chatbox-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    background: rgba(15, 10, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--purple-border);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chatbox-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chatbox-header {
    background: linear-gradient(to right, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.05));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbox-icon {
    width: 40px;
    height: 40px;
    background: var(--purple-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chatbox-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.chatbox-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.chatbox-close:hover {
    color: white;
}

.chatbox-body {
    padding: 25px;
    max-height: 500px;
    overflow-y: auto;
}

.chatbox-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Mobile Adjustments for Chatbox */
@media (max-width: 480px) {
    .chatbox-container {
        right: 15px;
        left: 15px;
        width: auto;
        bottom: 90px;
    }
}

/* Scanline Effect (Subtle) */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    left: 0;
    pointer-events: none;
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}



