.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.5s ease;
}
.theme-toggle-btn:hover {
    transform: scale(1.1);
}

/* Base Light Mode Fallbacks incase elements miss classes */
body.light .feature-card { background: #ffffff !important; border-color: rgba(0,0,0,0.05); box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
body.light .feature-card h3 { color: #0d1a12 !important; }
body.light .feature-card p { color: #64748b !important; }
body.light #process { background: #f8fafc; }
body.light .timeline-node { background: rgba(255,255,255,0.9); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
body.light .timeline-title { color: #0d1a12 !important; }
body.light .timeline-desc { color: #475569 !important; }

/* Dark mode overrides (since defaults were hacked to light mode recently) */
body.dark {
    --background: #07180d !important;
    --background-alt: #0c2615 !important;
    --foreground: #ffffff !important;
    --primary: #ffffff !important;
    --primary-foreground: #07180d !important;
    --text-muted: rgba(255, 255, 255, 0.7) !important;
    background-color: var(--background) !important;
    color: var(--foreground) !important;
}
body.dark .premium-nav { background: rgba(7, 24, 13, 0.4) !important; border-color: rgba(255,255,255,0.1) !important; }
body.dark .premium-nav.scrolled { background: rgba(7, 24, 13, 0.85) !important; }
body.dark .nav-link { color: #ffffff !important; }
body.dark .bento-item { background: rgba(255,255,255,0.03) !important; border-color: rgba(255,255,255,0.1) !important; box-shadow: none !important; }
body.dark .bento-item h3 { color: #ffffff !important; }
body.dark .bento-item p { color: rgba(255,255,255,0.7) !important; }
body.dark .bg-alt { background: #0c2615 !important; }
body.dark .counter-box { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.1) !important; box-shadow: none !important; }
body.dark .counter-num { color: #ffffff !important; }
body.dark .counter-box h4 { color: rgba(255,255,255,0.7) !important; }
body.dark .faq-item { background: rgba(255,255,255,0.03) !important; border-color: rgba(255,255,255,0.1) !important; }
body.dark .faq-header span { color: #ffffff !important; }
body.dark .faq-content p { color: rgba(255,255,255,0.7) !important; }
body.dark .tier-card { background: #07180d !important; border: 1px solid rgba(255,255,255,0.1); }
body.dark .tier-card::after { background: #07180d !important; }
body.dark .tier-title { color: #ffffff !important; }
body.dark .tier-features li { color: rgba(255,255,255,0.7) !important; }
body.dark .hero.bg-image { background-image: linear-gradient(to top, rgba(7, 24, 13, 1), rgba(7, 24, 13, 0.6)), url('https://picsum.photos/seed/hero/1920/1080') !important; }
body.dark .timeline-node { background: rgba(12, 38, 21, 0.8) !important; border-color: rgba(255,255,255,0.1) !important; box-shadow: none !important; }
body.dark .timeline-title { color: #ffffff !important; }
body.dark .timeline-desc { color: rgba(255,255,255,0.7) !important; }
body.dark .chat-window { background: #07180d !important; border-color: rgba(255,255,255,0.1) !important; }
body.dark .chat-option-btn { border-color: rgba(255,255,255,0.1) !important; color: #ffffff !important; }
body.dark .chat-option-btn:hover { background: rgba(255,255,255,0.05) !important; }
body.dark h1, body.dark h2, body.dark h3, body.dark h4 { color: #ffffff !important; }
body.dark p { color: rgba(255,255,255,0.7) !important; }\n
