/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    /* Colors - Gradient Intelligence Theme */
    --bg-deep: #050a14;
    --bg-dark: #0a0f1c;
    --bg-panel: #111827;

    --primary-cyan: #00f2ff;
    --primary-blue: #0077ff;
    --accent-lavender: #b388ff;
    --accent-purple: #7c4dff;

    --text-white: #f3f4f6;
    --text-gray: #9ca3af;
    --text-dim: #6b7280;

    --gradient-main: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 242, 255, 0.2) 0%, rgba(124, 77, 255, 0.2) 100%);

    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-neon: 0 0 10px rgba(0, 242, 255, 0.5), 0 0 20px rgba(0, 242, 255, 0.3);
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-white);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
    position: relative;
}

/* Background Canvas */
#neural-network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
}

.header-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 20, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    transition: background 0.3s;
}

.main-header.scrolled .header-glass-overlay {
    background: rgba(5, 10, 20, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--primary-cyan));
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s;
    box-shadow: 0 0 8px var(--primary-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.5);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid var(--primary-cyan);
    background: transparent;
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-cyan);
    z-index: -1;
    transition: width 0.3s ease;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover {
    color: var(--bg-deep);
    box-shadow: var(--shadow-neon);
}

.cta-button.primary {
    background: var(--gradient-main);
    border: none;
    color: var(--bg-deep);
}

.cta-button.primary::before {
    background: white;
}

.cta-button.glow-effect {
    animation: border-pulse 2s infinite;
}

@keyframes border-pulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 242, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 242, 255, 0.2);
    }
}

/* Mobile Menu Trigger */
.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-cyan);
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
}

.mobile-nav-links a:hover {
    color: var(--primary-cyan);
    letter-spacing: 2px;
}

.mobile-cta-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border: 1px solid var(--primary-cyan);
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    color: var(--primary-cyan);
    margin-bottom: 20px;
    background: rgba(0, 242, 255, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 242, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
    }
}

.glitch-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Data Stream */
.data-stream-container {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.data-stream-item {
    display: flex;
    flex-direction: column;
}

.data-stream-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.data-stream-item .value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

/* 3D Visual */
.cube-wrapper {
    perspective: 1000px;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: spin 10s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 242, 255, 0.1);
    border: 2px solid var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2) inset;
    backdrop-filter: blur(5px);
}

.front {
    transform: rotateY(0deg) translateZ(100px);
}

.back {
    transform: rotateY(180deg) translateZ(100px);
}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.top {
    transform: rotateX(90deg) translateZ(100px);
    background: rgba(124, 77, 255, 0.1);
    border-color: var(--accent-purple);
}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

@keyframes spin {
    from {
        transform: rotateX(-20deg) rotateY(0deg);
    }

    to {
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

/* =========================================
   4. SERVICES SECTION
   ========================================= */
.services-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    margin: 0 auto 20px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.card-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-cyan);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary-cyan);
    color: var(--bg-deep);
    box-shadow: 0 0 15px var(--primary-cyan);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-lavender);
    font-size: 0.8rem;
}

/* =========================================
   5. CALCULATOR SECTION
   ========================================= */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calc-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
}

.calc-interface {
    background: var(--bg-dark);
    border: 1px solid var(--primary-cyan);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-neon);
    position: relative;
}

.calc-header {
    border-bottom: 1px solid rgba(0, 242, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-family: monospace;
    color: var(--primary-cyan);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--primary-cyan);
}

.range-value {
    display: block;
    text-align: right;
    font-family: monospace;
    color: var(--primary-cyan);
    margin-top: 5px;
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 4px;
}

.calc-results {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-purple);
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: monospace;
}

.big-result {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    font-weight: 700;
}

.highlight-green {
    color: #00ff9d;
}

.highlight-red {
    color: #ff4d4d;
}

/* =========================================
   6. ANALYTICS SECTION
   ========================================= */
.analytics-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-gradient-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.dashboard-mockup {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    height: 500px;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dash-sidebar {
    width: 70px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    gap: 30px;
}

.dash-icon {
    color: var(--text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.dash-icon:hover,
.dash-icon.active {
    color: var(--primary-cyan);
}

.dash-main {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-family: monospace;
}

.live-indicator {
    color: #ff4d4d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blink {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.dash-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    height: 100%;
}

.dash-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fake-graph {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-top: 20px;
}

.bar {
    flex: 1;
    background: var(--gradient-main);
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
    animation: bar-grow 2s ease-out forwards;
}

@keyframes bar-grow {
    from {
        height: 0;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 15px 0;
}

.stat-trend.positive {
    color: #00ff9d;
}

/* =========================================
   7. TESTIMONIALS & CTA
   ========================================= */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-scroller {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Hide scrollbar */
    scrollbar-width: none;
}

.testimonial-scroller::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 10px;
    border-top: 2px solid var(--accent-lavender);
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--accent-lavender);
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 30px;
    min-height: 80px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
}

.cta-banner {
    background: var(--gradient-main);
    padding: 80px 0;
    text-align: center;
    margin-top: 50px;
}

.cta-content h2 {
    color: var(--bg-deep);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--bg-deep);
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-button.primary.large {
    background: var(--bg-deep);
    color: var(--primary-cyan);
    font-size: 1rem;
    padding: 15px 40px;
}

/* =========================================
   8. FOOTER
   ========================================= */
.main-footer {
    background: #020408;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.branding-col p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-cyan);
    color: var(--bg-deep);
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--primary-cyan);
    margin-top: 5px;
}

.footer-bottom {
    background: black;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* =========================================
   9. PAGE SPECIFIC (CONTACT & LEGAL)
   ========================================= */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumbs {
    color: var(--text-gray);
}

.breadcrumbs a:hover {
    color: var(--primary-cyan);
}

.breadcrumbs span {
    color: var(--primary-cyan);
}

/* Contact Specifics */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--bg-panel);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-panel {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-glow {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.support-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 4px;
    color: #00ff9d;
}

.status-dot.online {
    width: 10px;
    height: 10px;
    background: #00ff9d;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff9d;
}

.contact-form-wrapper {
    padding: 40px;
}

.tech-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-form input,
.tech-form select,
.tech-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.tech-form input:focus,
.tech-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-cyan);
}

.scan-line {
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s;
}

.tech-form input:focus+.scan-line,
.tech-form textarea:focus+.scan-line {
    width: 100%;
}

.tech-form select {
    background: var(--bg-deep);
    /* Fix for select dropdown bg */
}

/* Legal Content */
.legal-content-section {
    padding: 60px 0 100px;
}

.legal-wrapper {
    background: var(--bg-panel);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-wrapper h2 {
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-wrapper p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.legal-wrapper ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* =========================================
   10. RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .data-stream-container {
        justify-content: center;
    }

    .hero-visual {
        display: none;
        /* Hide 3D cube on smaller screens for performance/space */
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    .header-actions .cta-button {
        display: none;
        /* Hide button on mobile header, moving to menu */
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .dash-grid {
        grid-template-columns: 1fr;
        overflow-y: scroll;
    }

    .legal-wrapper {
        padding: 30px;
    }

    .tech-form .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}