:root {
    --bg-primary: #060C1A;
    --bg-secondary: #0A1628;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --accent-teal: #06B6D4;
    --accent-green: #10B981;
    --accent-purple: #6366F1;
    --accent-orange: #F59E0B;
    --accent-gradient: linear-gradient(135deg, #06B6D4 0%, #6366F1 100%);
    --text-primary: #E2E8F0;
    --text-muted: #64748B;
    --text-heading: #F1F5F9;
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(6,182,212,0.25);
    --glow-teal: rgba(6,182,212,0.2);
    --glow-purple: rgba(99,102,241,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--text-heading); }

a { text-decoration: none; color: inherit; transition: color 0.2s; }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.25);
    color: var(--accent-teal);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6,12,26,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-heading);
    background: rgba(255,255,255,0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--accent-gradient);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(6,182,212,0.25);
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(6,182,212,0.35); }

.nav-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-left: auto;
    font-size: 16px;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 24px rgba(6,182,212,0.3);
    transition: all 0.25s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(6,182,212,0.45); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--border-accent); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(6,182,212,0.4);
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
}

.btn-outline:hover { background: rgba(6,182,212,0.1); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(6,182,212,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(16,185,129,0.07) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.2);
    color: var(--accent-teal);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease forwards;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s 0.4s ease both;
}

.stat { text-align: center; padding: 0 32px; }

.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 14px;
    animation: bounce 2s infinite;
    z-index: 1;
}

/* ── SECTION HEADER ──────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto;
}

/* ── FEATURES SECTION ────────────────────────────── */
.features { padding: 100px 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover { background: var(--bg-card-hover); border-color: var(--border-accent); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-icon.teal { background: rgba(6,182,212,0.12); color: var(--accent-teal); }
.feature-icon.purple { background: rgba(99,102,241,0.12); color: var(--accent-purple); }
.feature-icon.green { background: rgba(16,185,129,0.12); color: var(--accent-green); }
.feature-icon.orange { background: rgba(245,158,11,0.12); color: var(--accent-orange); }

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }

.feature-card > p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.feature-list li i { color: var(--accent-green); font-size: 11px; flex-shrink: 0; }

/* ── WHY US ──────────────────────────────────────── */
.why-us { padding: 100px 0; background: linear-gradient(180deg, transparent 0%, rgba(6,182,212,0.03) 50%, transparent 100%); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.why-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }

.why-content > p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 36px; }

.why-points { display: flex; flex-direction: column; gap: 24px; }

.why-point { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
    width: 44px;
    height: 44px;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 16px;
    flex-shrink: 0;
}

.why-point h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── TERMINAL MOCKUP ─────────────────────────────── */
.terminal-mockup {
    background: #0D1B2E;
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(6,182,212,0.1), 0 24px 64px rgba(0,0,0,0.4);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.terminal-title { margin-left: 8px; font-size: 12px; color: var(--text-muted); font-family: 'Inter', monospace; }

.terminal-body { padding: 24px; font-family: 'Courier New', monospace; font-size: 13px; line-height: 2; }

.t-row { display: flex; gap: 8px; align-items: center; }

.t-green { color: #10b981; }
.t-cyan { color: #06b6d4; }
.t-yellow { color: #f59e0b; }
.t-purple { color: #a78bfa; }

.t-cursor { color: var(--text-muted); }

.blink { animation: blink 1s step-end infinite; color: var(--accent-teal); }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section { padding: 100px 0; }

.cta-card {
    background: rgba(6,182,212,0.05);
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 16px; }
.cta-card p { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-section { padding: 80px 0; }

.about-mission {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.about-mission h2 { font-size: 2rem; margin-bottom: 20px; }
.about-mission p { color: var(--text-muted); font-size: 17px; line-height: 1.8; max-width: 680px; margin: 0 auto; }

.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.pillar-card:hover { background: var(--bg-card-hover); border-color: var(--border-accent); transform: translateY(-4px); }

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.pillar-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.pillar-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-section { padding: 80px 0 120px; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 700px; margin: 0 auto 60px; }

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card.email-card::before { background: linear-gradient(90deg, #06B6D4, #6366F1); }
.contact-card.phone-card::before { background: linear-gradient(90deg, #10B981, #06B6D4); }

.contact-card:hover { background: var(--bg-card-hover); border-color: var(--border-accent); transform: translateY(-5px); }
.contact-card:hover::before { opacity: 1; }

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 24px;
}

.contact-card.email-card .contact-icon { background: rgba(6,182,212,0.1); color: var(--accent-teal); }
.contact-card.phone-card .contact-icon { background: rgba(16,185,129,0.1); color: var(--accent-green); }

.contact-card h3 { font-size: 15px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }

.contact-card a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    transition: color 0.2s;
    word-break: break-all;
}

.contact-card.email-card a:hover { color: var(--accent-teal); }
.contact-card.phone-card a:hover { color: var(--accent-green); }

.contact-tagline {
    text-align: center;
    padding: 36px;
    background: rgba(6,182,212,0.04);
    border: 1px solid rgba(6,182,212,0.15);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}

.contact-tagline p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.contact-tagline strong { color: var(--accent-teal); }

/* ── PRODUCTS PAGE ──────────────────────────────── */
.products-section { padding: 80px 0 120px; }

.product-showcase {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    transition: all 0.3s;
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.product-showcase:hover { box-shadow: 0 0 60px rgba(6,182,212,0.12); }

.product-header {
    padding: 48px 56px;
    display: flex;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(6,182,212,0.06) 0%, rgba(99,102,241,0.06) 100%);
}

.product-logo-wrap img { height: 76px; width: auto; }

.product-name { font-size: 2.2rem; font-weight: 800; margin-bottom: 6px; }
.product-tagline { color: var(--text-muted); font-size: 15px; }

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    color: var(--accent-green);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.product-body { padding: 48px 56px; }

.product-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.product-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.product-feature h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.product-feature p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.product-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.brokers-strip { padding: 60px 0; text-align: center; }
.brokers-strip p { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
.broker-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.broker-badge {
    padding: 8px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s;
}

.broker-badge:hover { border-color: var(--border-accent); color: var(--text-primary); }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }

.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.7; max-width: 240px; }

.footer-links-col { display: flex; flex-direction: column; gap: 12px; }

.footer-links-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 4px; }

.footer-links-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--accent-teal); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-header { flex-direction: column; text-align: center; padding: 36px 32px; }
    .product-body { padding: 36px 32px; }
    .product-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .nav-links, .nav-cta { display: none; }
    .nav-mobile-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(6,12,26,0.97);
        backdrop-filter: blur(20px);
        padding: 20px 24px 32px;
        border-bottom: 1px solid var(--border);
        gap: 8px;
    }
    .nav-links.open .nav-cta-mobile { display: flex; }
    .contact-grid { grid-template-columns: 1fr; max-width: 380px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 60px; height: 1px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-card { padding: 48px 24px; }
    .about-mission { padding: 40px 24px; }
}
