/* ==========================================================================
   Design System Variables
   ========================================================================== */
   :root {
    /* Colors - Backgrounds (Void Black spectrum) */
    --bg-main: #070B12;
    --bg-main-alt: #0B1120;
    --bg-main-light: #101827;
    
    /* Colors - Secondary Backgrounds (Glassmorphism bases) */
    --bg-secondary: rgba(16, 24, 39, 0.7);
    --bg-secondary-alt: #0F172A;
    --bg-secondary-light: #132238;
    
    /* Colors - Accents (Cyber-Executive) */
    --accent-primary: #2EF2D0;
    --accent-secondary: #00D5FF;
    --accent-tertiary: #14B8A6;
    
    /* Colors - Alerts */
    --alert-primary: #F59E0B;
    --alert-secondary: #F97316;
    
    /* Colors - Text */
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    
    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --transition-speed: 0.3s;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: var(--section-padding);
}

.bg-secondary {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

.text-accent { color: var(--accent-primary); }
.text-alert { color: var(--alert-primary); }

.grid {
    display: grid;
    gap: 2rem;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* ==========================================================================
   Cyber-Executive Utilities
   ========================================================================== */
.cyber-grid {
    background-color: var(--bg-main);
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.label-caps {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-speed);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-main);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(46, 242, 208, 0.4);
    transform: translateY(-2px);
    color: var(--bg-main);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-secondary:hover {
    box-shadow: 0 0 20px rgba(46, 242, 208, 0.2);
    background-color: rgba(46, 242, 208, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
    display: block;
    width: 100%;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 11, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: all var(--transition-speed);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: all 0.3s ease-in-out;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 10px rgba(0, 213, 255, 0.2);
}

/* ==========================================================================
   Sections
   ========================================================================== */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 242, 208, 0.1) 0%, rgba(7, 11, 18, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-label-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(46, 242, 208, 0.1);
    border: 1px solid rgba(46, 242, 208, 0.3);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 242, 208, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 242, 208, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 242, 208, 0);
    }
}

.hero-content .label {
    color: var(--accent-primary);
    margin-bottom: 0;
    border: none;
    padding: 0;
    background: transparent;
}

.hero-content .subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-content .support-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(203, 213, 225, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    border-left: 2px solid rgba(46, 242, 208, 0.3);
    padding-left: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Command Center Visual (CSS Only) */
.command-center {
    background-color: var(--bg-secondary-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.dots { display: flex; gap: 6px; }
.dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}
.cc-header .title {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.8rem;
}

.cc-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background-color: var(--bg-main-light);
    padding: 1rem;
    border-radius: 4px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cc-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 4px;
}

.node-wrapper { text-align: center; }
.node {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--text-muted);
    margin: 0 auto 0.5rem;
    position: relative;
}
.node.active { background: var(--accent-primary); box-shadow: 0 0 10px var(--accent-primary); }
.node.accent { background: var(--alert-primary); box-shadow: 0 0 10px var(--alert-primary); }
.node-label { font-size: 0.75rem; color: var(--text-secondary); }

.line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
    margin-top: -1.5rem;
}

.cc-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.pulse {
    width: 8px; height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(46, 242, 208, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 242, 208, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 242, 208, 0); }
}

.cc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Problem Cards */
.card {
    background-color: var(--bg-secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 242, 208, 0.3);
}

.card-icon {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.alert-icon { color: var(--alert-primary); }
.accent-icon { color: var(--accent-primary); font-size: 2rem;}

.service-card .card-bullets {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}
.service-card .card-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card .card-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}
.card-result {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--accent-primary);
}

/* Ecosystem Pipeline */
.ecosystem-pipeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    overflow-x: auto;
}

.pipeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--bg-main);
    padding: 1rem;
    transition: transform var(--transition-speed);
}

.pipeline-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: text-shadow var(--transition-speed);
}

.pipeline-step:hover .step-icon {
    text-shadow: 0 0 15px var(--accent-primary);
}

.pipeline-step h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.pipeline-step p { font-size: 0.8rem; color: var(--text-muted); margin: 0;}

.pipeline-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--text-muted) 50%, transparent 50%);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: 1;
    min-width: 30px;
}

/* Projects */
.project-card {
    display: flex;
    flex-direction: column;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(46, 242, 208, 0.1);
    color: var(--accent-primary);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(46, 242, 208, 0.3);
}

.project-card h4 {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.project-stack {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.project-stack strong {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Method Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: transform var(--transition-speed);
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px rgba(46, 242, 208, 0.2);
    transition: all var(--transition-speed);
}

.timeline-item:hover .timeline-number {
    background: var(--accent-primary);
    color: var(--bg-main);
    box-shadow: 0 0 20px rgba(46, 242, 208, 0.6);
}

.method-quote {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-style: italic;
}

/* Target Section */
.target-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    transition: box-shadow var(--transition-speed), border-color var(--transition-speed);
}

.target-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(46, 242, 208, 0.15);
}

.check-list li {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    background: var(--bg-secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.check-list li:hover {
    transform: translateX(5px);
    border-color: rgba(46, 242, 208, 0.2);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 1.5rem 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-align: left;
}

.accordion-icon {
    color: var(--accent-primary);
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(46, 242, 208, 0.4); /* Accent lighting */
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.btn-submit {
    width: 100%;
    position: relative;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bg-main);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden { display: none !important; }

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(46, 242, 208, 0.1);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.form-message.error {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--alert-primary);
    border: 1px solid var(--alert-primary);
}

.microcopy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-main);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--text-secondary);
}

.footer-nav a:hover {
    color: var(--accent-primary);
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .hero-glow {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline::before {
        left: 24px;
        top: 0;
        width: 2px;
        height: 100%;
    }

    .timeline-item {
        display: flex;
        text-align: left;
        gap: 2rem;
    }

    .timeline-number {
        margin: 0;
        flex-shrink: 0;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-main);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        padding-bottom: 2rem;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 10px;
        display: inline-block;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .contact-form-container form {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-pipeline {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .pipeline-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--text-muted) 50%, transparent 50%);
        background-size: 2px 10px;
        margin: -10px 0;
    }
    
    .target-card {
        padding: 2rem 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .command-center {
        padding: 1.5rem;
    }

    .cc-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .cc-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .line {
        height: 20px;
        width: 1px;
        margin: -0.5rem 0;
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 1rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline::before {
        display: none;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1.2rem 0;
    }
}

/* Accessibility: Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
