:root {
    --neon-green: #39FF14;
    --dark-bg: #121212;
    --panel-grey: #1E1E1E;
    --text-grey: #B0B0B0;
    --white: #ffffff;
    
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark-bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.stream-header { background: rgba(18, 18, 18, 0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--panel-grey); backdrop-filter: blur(10px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.neon { color: var(--neon-green); }
.arrow-icon { color: var(--neon-green); margin-right: 5px; letter-spacing: -2px; }

.flow-nav a { margin-left: 25px; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--text-grey); }
.flow-nav a:hover, .flow-nav a.active { color: var(--neon-green); }

.btn-neon { border: 1px solid var(--neon-green); color: var(--neon-green) !important; padding: 8px 20px; border-radius: 0; }
.btn-neon:hover { background: var(--neon-green); color: var(--dark-bg) !important; box-shadow: 0 0 15px var(--neon-green); }

/* Mobile Menu */
.mobile-toggle { display: none; font-family: var(--font-head); font-size: 2rem; cursor: pointer; color: var(--neon-green); transform: rotate(90deg); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--dark-bg); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; border-left: 2px solid var(--neon-green); }
.mobile-menu.open { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--white); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; }

/* Hero */
.hero-stream { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(to right, rgba(18,18,18,0.95), rgba(18,18,18,0.3)); display: flex; align-items: center; }
.hero-content { margin-left: 10%; max-width: 600px; padding: 20px; }
.status-line { font-family: var(--font-head); color: var(--neon-green); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.blink { animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: var(--text-grey); margin-bottom: 40px; }

.quote-widget { background: var(--panel-grey); padding: 25px; border-left: 4px solid var(--neon-green); }
.quote-widget h3 { font-family: var(--font-head); margin-bottom: 15px; }
#quickQuote { display: flex; flex-direction: column; gap: 10px; }
.input-row { display: flex; gap: 10px; }
#quickQuote input { flex: 1; padding: 10px; background: var(--dark-bg); border: 1px solid #333; color: var(--white); font-family: var(--font-body); }
#quickQuote input:focus { border-color: var(--neon-green); outline: none; }
#quickQuote button { background: var(--neon-green); color: var(--dark-bg); border: none; padding: 12px; font-weight: bold; font-family: var(--font-head); cursor: pointer; font-size: 1.1rem; }
#quickQuote button:hover { box-shadow: 0 0 10px var(--neon-green); }
#quoteResult { margin-top: 10px; color: var(--neon-green); font-weight: bold; font-family: var(--font-head); }

/* Services */
.section-title { margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; }
.neon-bar { width: 100px; height: 4px; background: var(--neon-green); }
.neon-bar.left { margin: 20px 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--panel-grey); padding: 30px; border: 1px solid #333; position: relative; overflow: hidden; transition: 0.3s; }
.service-card:hover { border-color: var(--neon-green); transform: translateY(-5px); }
.service-card.highlight { background: rgba(57, 255, 20, 0.05); border-color: var(--neon-green); }
.num { font-family: var(--font-head); font-size: 4rem; color: #333; position: absolute; top: -10px; right: 10px; opacity: 0.5; }
.service-card h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 15px; position: relative; z-index: 1; }
.service-card p { color: var(--text-grey); position: relative; z-index: 1; }

/* KPI Strip */
.kpi-strip { background: var(--panel-grey); padding: 40px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; margin-top: 50px; }
.kpi-flex { display: flex; justify-content: space-around; text-align: center; }
.kpi strong { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--neon-green); line-height: 1; }
.kpi span { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); }

/* About & Contact */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-content h1 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; }
.features-list { list-style: none; margin-top: 30px; font-family: var(--font-head); font-size: 1.3rem; }
.features-list li { margin-bottom: 10px; color: var(--text-grey); }
.img-content { position: relative; }
.img-content img { width: 100%; border: 1px solid #333; filter: grayscale(50%); }
.img-caption { position: absolute; bottom: 0; right: 0; background: var(--neon-green); color: var(--dark-bg); padding: 5px 15px; font-family: var(--font-head); font-weight: bold; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--panel-grey); padding: 50px; border: 1px solid #333; }
.contact-data h2 { font-family: var(--font-head); color: var(--neon-green); margin-bottom: 20px; }
.data-block p { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 10px; }

.stream-form .form-group, .stream-form .form-row { margin-bottom: 20px; }
.stream-form .form-row { display: flex; gap: 20px; }
.col { flex: 1; }
.stream-form label { display: block; font-family: var(--font-head); color: var(--text-grey); margin-bottom: 5px; }
.stream-form input, .stream-form select, .stream-form textarea { width: 100%; padding: 12px; background: var(--dark-bg); border: 1px solid #444; color: var(--white); font-family: var(--font-body); }
.stream-form input:focus { border-color: var(--neon-green); outline: none; }
.btn-submit { width: 100%; background: var(--neon-green); color: var(--dark-bg); border: none; padding: 15px; font-weight: bold; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #fff; }

/* Reviews & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--panel-grey); padding: 30px; border-left: 2px solid var(--neon-green); }
.review-card.highlight { background: rgba(57, 255, 20, 0.05); }
.client-logo { font-family: var(--font-head); font-weight: bold; font-size: 1.2rem; color: var(--white); margin-bottom: 15px; }
.review-card p { font-style: italic; color: var(--text-grey); margin-bottom: 15px; }
.review-card span { font-size: 0.8rem; color: var(--neon-green); }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--panel-grey); padding: 50px; border: 1px solid #333; }
.legal-content h1 { font-family: var(--font-head); }
.legal-content h3 { color: var(--neon-green); margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.stream-footer { background: var(--dark-bg); padding: 60px 0 20px; margin-top: 80px; border-top: 1px solid #333; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { font-family: var(--font-head); color: var(--white); margin-bottom: 5px; font-size: 1.5rem; }
.f-col.right a { color: var(--text-grey); margin-left: 20px; font-family: var(--font-head); }
.f-col.right a:hover { color: var(--neon-green); }
.copyright { text-align: center; color: #555; font-size: 0.8rem; }

/* Cookie */
.cookie-bar { position: fixed; bottom: 20px; left: 20px; background: var(--panel-grey); border: 1px solid var(--neon-green); padding: 15px 25px; display: flex; gap: 20px; align-items: center; z-index: 9999; display: none; box-shadow: 0 0 20px rgba(57, 255, 20, 0.1); }
.cookie-bar.active { display: flex; }
.cookie-bar button { background: var(--neon-green); color: var(--dark-bg); border: none; padding: 5px 15px; font-family: var(--font-head); font-weight: bold; cursor: pointer; }

@media (max-width: 900px) {
    .flow-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .input-row { flex-direction: column; }
    .service-grid, .about-flex, .contact-grid, .review-grid, .form-row, .kpi-flex { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}