/* --- ROBUST LIGHT THEME DEPLOYMENT --- */
:root {
    --background: #ffffff;
    --background-alt: #f8fafc;
    --foreground: #0d1a12;
    --primary: #0d1a12;
    --primary-foreground: #ffffff;
    --accent: #06993b;
    --accent-hover: #033f23;
    --text-muted: #475569;
    --text-faded: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow-lift: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 10px 30px rgba(10, 124, 73, 0.2);
}

body {
    background-color: var(--background) !important;
    color: var(--foreground) !important;
}

/* Base Typo Re-map */
.text-white { color: var(--foreground) !important; }
.text-white-70 { color: var(--text-muted) !important; }
.text-white-50 { color: var(--text-faded) !important; }
h1, h2, h3, h4, h5, h6 { color: var(--primary) !important; }
p { color: var(--text-muted) !important; }

/* Navbar */
.premium-nav {
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}
.premium-nav.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}
.nav-link { color: #334155 !important; font-weight: 600 !important; }
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }

/* Hero */
.hero.bg-image {
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.85)) !important;
}
.hero-flare { background: radial-gradient(circle, rgba(10, 124, 73, 0.05) 0%, transparent 60%) !important; }
.hero-flare-2 { background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 60%) !important; }

/* Process Sticky Layer fixes */
.visual-layer i { color: var(--accent) !important; }
.process-sticky-visual {
    background: #f1f5f9 !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

/* Chatbot & UI Overrides */
.chat-window {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    color: var(--foreground) !important;
}
.chat-option-btn {
    border-color: rgba(0,0,0,0.1) !important;
    color: var(--foreground) !important;
}
.chat-option-btn:hover { background: #f1f5f9 !important; }

/* Testimonials */
.testimonial-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04) !important;
}

/* Footer */
.footer {
    background: #0d1a12 !important; /* Keep footer dark for solid anchor */
}
.footer .text-white-50 { color: rgba(255,255,255,0.6) !important; }
.footer .text-white { color: #ffffff !important; }
.footer h4 { color: #ffffff !important; }
.footer a { color: rgba(255,255,255,0.8) !important; }
.footer a:hover { color: var(--accent) !important; }\n
