/* ─── TOKENS ─── */
:root {
    --navy-deep:    #07101f;
    --navy:         #0d1f3c;
    --navy-mid:     #122540;
    --navy-light:   #1a3358;
    --navy-border:  #1f3d60;
    --amber:        #f5a623;
    --amber-light:  #ffc14d;
    --amber-dim:    rgba(245,166,35,0.12);
    --amber-glow:   rgba(245,166,35,0.25);
    --teal:         #2dd4bf;
    --teal-dim:     rgba(45,212,191,0.10);
    --white:        #f4f7fb;
    --white-60:     rgba(244,247,251,0.6);
    --white-30:     rgba(244,247,251,0.3);
    --white-10:     rgba(244,247,251,0.07);
    --grid-line:    rgba(255,255,255,0.04);
    --radius:       10px;
    --radius-lg:    18px;
    --shadow:       0 4px 32px rgba(0,0,0,0.4);
    --font-display: 'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'DM Mono', monospace;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--navy-deep);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── UTILS ─── */
.mono { font-family: var(--font-mono); }
.amber { color: var(--amber); }
.teal  { color: var(--teal); }

/* ─── GRID BG ─── */
.grid-bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
}
.grid-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(13,31,60,0) 0%, var(--navy-deep) 70%);
}

/* ─── NAV ─── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(7,16,31,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--navy-border);
    transition: background 0.3s;
}
.nav.scrolled { background: rgba(7,16,31,0.97); }
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 2rem;
    padding: 0 2rem; height: 68px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
    letter-spacing: -0.02em; color: var(--white); flex-shrink: 0;
}
.nav-links {
    display: flex; gap: 2rem; margin-left: auto;
}
.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--white-60);
    transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1.5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white-60); transition: 0.3s; }
.nav-mobile { display: none; flex-direction: column; gap: 0; padding: 1rem 2rem 1.5rem; border-top: 1px solid var(--navy-border); }
.nav-mobile a { padding: 0.75rem 0; font-size: 0.9375rem; color: var(--white-60); border-bottom: 1px solid var(--navy-border); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amber); color: var(--navy-deep);
    font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
    padding: 0.6rem 1.25rem; border-radius: var(--radius);
    border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: 0 6px 24px var(--amber-glow); }
.btn-primary.lg { font-size: 1rem; padding: 0.875rem 2rem; border-radius: var(--radius-lg); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white-60);
    font-family: var(--font-body); font-weight: 500; font-size: 0.875rem;
    padding: 0.6rem 1.1rem; border-radius: var(--radius);
    border: 1px solid var(--navy-border); cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white-30); }
.btn-ghost.lg { font-size: 1rem; padding: 0.875rem 1.75rem; border-radius: var(--radius-lg); }

/* ─── HERO ─── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 2rem 80px; overflow: hidden;
}
.hero-glow {
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(245,166,35,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
    color: var(--amber); letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--amber-dim); border: 1px solid rgba(245,166,35,0.2);
    padding: 0.4rem 0.9rem; border-radius: 4px; margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--amber); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
    font-size: 1.125rem; color: var(--white-60); line-height: 1.7;
    max-width: 520px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3.5rem;
    padding-top: 2rem; border-top: 1px solid var(--navy-border);
}
.hero-stat-val {
    font-family: var(--font-display); font-size: 1.875rem; font-weight: 800;
    color: var(--white); letter-spacing: -0.03em;
}
.hero-stat-lbl { font-size: 0.8125rem; color: var(--white-60); margin-top: 2px; }

/* ─── DASHBOARD MOCKUP ─── */
.hero-visual {
    position: relative;
}
.dashboard-frame {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.dash-topbar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px; background: var(--navy);
    border-bottom: 1px solid var(--navy-border);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #ff5f57; }
.dash-dot.y { background: #febc2e; }
.dash-dot.g { background: #28c840; }
.dash-url {
    margin-left: 8px; flex: 1; background: var(--navy-mid);
    border: 1px solid var(--navy-border); border-radius: 5px;
    padding: 4px 12px; font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--white-30);
}
.dash-body { padding: 20px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.dash-card {
    background: var(--navy);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius); padding: 14px;
}
.dash-card-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--white-30); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.dash-card-val { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; }
.dash-card-val.amber { color: var(--amber); }
.dash-card-val.teal  { color: var(--teal); }
.dash-card-sub { font-size: 0.7rem; color: var(--white-30); margin-top: 3px; }
.dash-map {
    grid-column: span 3;
    background: var(--navy-light); border: 1px solid var(--navy-border);
    border-radius: var(--radius); height: 130px; overflow: hidden; position: relative;
}
.dash-map-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}
.hangar-unit {
    position: absolute; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
    cursor: default;
}
.hangar-unit.occ { background: rgba(245,166,35,0.25); border: 1px solid rgba(245,166,35,0.5); color: var(--amber); }
.hangar-unit.vac { background: rgba(45,212,191,0.15); border: 1px solid rgba(45,212,191,0.4); color: var(--teal); }
.hangar-unit.res { background: rgba(99,102,241,0.2); border: 1px solid rgba(99,102,241,0.5); color: #a5b4fc; }
.dash-chart-row { grid-column: span 3; display: flex; gap: 12px; }
.dash-chart { flex: 2; background: var(--navy); border: 1px solid var(--navy-border); border-radius: var(--radius); padding: 14px; }
.dash-chart-title { font-family: var(--font-mono); font-size: 0.65rem; color: var(--white-30); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.bar-group { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--navy-light); transition: 0.3s; }
.bar.filled { background: var(--amber); }
.bar.filled2 { background: rgba(245,166,35,0.4); }
.dash-recent { flex: 1; background: var(--navy); border: 1px solid var(--navy-border); border-radius: var(--radius); padding: 14px; }
.dash-recent-item { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid var(--navy-border); }
.dash-recent-item:last-child { border-bottom: none; }
.dash-recent-item span:first-child { font-size: 0.7rem; color: var(--white-60); }
.dash-recent-item span:last-child { font-family: var(--font-mono); font-size: 0.7rem; color: var(--teal); }

/* ─── SECTION COMMONS ─── */
section { position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
    color: var(--amber); letter-spacing: 0.12em; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--amber); }
.section-h2 {
    font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.25rem;
}
.section-sub { font-size: 1.0625rem; color: var(--white-60); max-width: 580px; line-height: 1.7; }

/* ─── LOGOS ─── */
.logos-band {
    padding: 48px 0; border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    background: var(--navy);
}
.logos-label {
    text-align: center; font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--white-30); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2rem;
}
.logos-row {
    display: flex; justify-content: center; align-items: center; gap: 3.5rem; flex-wrap: wrap;
    padding: 0 2rem;
}
.logo-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
    color: var(--white-30); letter-spacing: 0.02em;
    border: 1px solid var(--navy-border); padding: 8px 18px; border-radius: 6px;
    transition: color 0.2s, border-color 0.2s;
}
.logo-pill:hover { color: var(--white-60); border-color: var(--navy-light); }

/* ─── HOW IT WORKS ─── */
.how { padding: 100px 0; }
.how-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    margin-top: 4rem; border: 1px solid var(--navy-border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--navy-border);
}
.how-step {
    background: var(--navy); padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: background 0.3s;
}
.how-step:hover { background: var(--navy-mid); }
.how-step-num {
    font-family: var(--font-mono); font-size: 0.7rem; color: var(--white-30);
    letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.how-step-icon {
    width: 48px; height: 48px; background: var(--amber-dim); border: 1px solid rgba(245,166,35,0.2);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; font-size: 1.375rem;
}
.how-step h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.how-step p { font-size: 0.9375rem; color: var(--white-60); line-height: 1.65; }
.how-step::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--amber), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.how-step:hover::after { opacity: 1; }

/* ─── FEATURES OVERVIEW ─── */
.features-overview { padding: 100px 0; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem;
}
.feat-card {
    background: var(--navy); border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}
.feat-card:hover {
    border-color: rgba(245,166,35,0.3); transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.08);
}
.feat-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.25rem;
}
.feat-icon.a { background: var(--amber-dim); }
.feat-icon.t { background: var(--teal-dim); }
.feat-icon.p { background: rgba(99,102,241,0.1); }
.feat-card h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.625rem; }
.feat-card p { font-size: 0.9rem; color: var(--white-60); line-height: 1.65; }
.feat-card .feat-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--amber);
    margin-top: 1.25rem; transition: gap 0.2s;
}
.feat-card:hover .feat-link { gap: 10px; }

/* ─── REVENUE HIGHLIGHT ─── */
.revenue { padding: 100px 0; }
.revenue-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.revenue-visual {
    background: var(--navy); border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden;
}
.revenue-visual::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.rev-header { font-family: var(--font-mono); font-size: 0.7rem; color: var(--white-30); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.rev-metric {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; border-bottom: 1px solid var(--navy-border);
}
.rev-metric:last-of-type { border-bottom: none; }
.rev-metric-label { font-size: 0.9rem; color: var(--white-60); }
.rev-metric-val { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.rev-metric-val.up { color: var(--teal); }
.rev-metric-val.amber { color: var(--amber); }
.rev-bar-wrap { margin-top: 1.5rem; }
.rev-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--white-60); margin-bottom: 6px; }
.rev-bar-track { height: 8px; background: var(--navy-light); border-radius: 99px; overflow: hidden; margin-bottom: 10px; }
.rev-bar-fill { height: 100%; border-radius: 99px; background: var(--amber); }
.rev-bar-fill.teal { background: var(--teal); }
.revenue-content .section-h2 { margin-bottom: 1.25rem; }
.revenue-bullets { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.revenue-bullets li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9375rem; color: var(--white-60);
}
.revenue-bullets li::before {
    content: ''; display: block; width: 18px; height: 18px; flex-shrink: 0;
    background: var(--amber-dim); border: 1px solid rgba(245,166,35,0.3);
    border-radius: 4px; margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23f5a623' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}

/* ─── PRICING ─── */
.pricing { padding: 100px 0; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem;
}
.price-card {
    background: var(--navy); border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg); padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.price-card.featured {
    border-color: var(--amber); background: var(--navy-mid);
    position: relative; transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.15);
}
.price-card:not(.featured):hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.price-badge {
    display: inline-block; background: var(--amber); color: var(--navy-deep);
    font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 4px; margin-bottom: 1.5rem;
}
.price-tier { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--white-60); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.price-val { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; }
.price-val sup { font-size: 1.25rem; vertical-align: top; margin-top: 8px; }
.price-val span { font-size: 0.875rem; font-weight: 400; color: var(--white-60); margin-left: 2px; }
.price-desc { font-size: 0.875rem; color: var(--white-60); margin: 0.75rem 0 1.75rem; line-height: 1.6; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2rem; }
.price-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem; color: var(--white-60);
}
.price-features li .chk { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.price-features li .chk-off { color: var(--navy-border); flex-shrink: 0; margin-top: 1px; }
.price-cta { margin-top: auto; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem;
}
.testi-card {
    background: var(--navy); border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg); padding: 2rem;
}
.testi-quote {
    font-size: 0.9375rem; line-height: 1.75; color: var(--white-60);
    margin-bottom: 1.5rem; font-style: italic;
}
.testi-quote::before { content: '"'; font-size: 3rem; line-height: 0; vertical-align: -0.6em; color: var(--amber); opacity: 0.4; margin-right: 4px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--navy-light); border: 1px solid var(--navy-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--amber);
}
.testi-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; }
.testi-role { font-size: 0.8rem; color: var(--white-30); }

/* ─── CTA BAND ─── */
.cta-band {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-top: 1px solid var(--navy-border); border-bottom: 1px solid var(--navy-border);
}
.cta-band::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.cta-band-inner { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 2rem; position: relative; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.cta-band p { font-size: 1.0625rem; color: var(--white-60); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--white-60); letter-spacing: 0.08em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
    background: var(--navy); border: 1px solid var(--navy-border);
    border-radius: var(--radius); padding: 0.75rem 1rem;
    font-family: var(--font-body); font-size: 0.9375rem; color: var(--white);
    transition: border-color 0.2s;
    outline: none; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-30); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(245,166,35,0.4); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--white-60); line-height: 1.6; }

/* ─── FOOTER ─── */
.footer { background: var(--navy-deep); border-top: 1px solid var(--navy-border); padding: 64px 0 0; }
.footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem 48px;
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--white-60); line-height: 1.65; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white-30); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--white-60); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding: 1.25rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--navy-border);
}
.footer-bottom .mono { font-size: 0.75rem; color: var(--white-30); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--white-30); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white-60); }

/* ─── FEATURES PAGE ─── */
.features-hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.features-hero .grid-bg { opacity: 0.5; }
.features-list { padding: 0 0 100px; }
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    padding: 80px 0; border-bottom: 1px solid var(--navy-border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-row-visual { order: -1; }
.feature-row-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.7rem; color: var(--teal);
    background: var(--teal-dim); border: 1px solid rgba(45,212,191,0.2);
    padding: 4px 10px; border-radius: 4px; margin-bottom: 1rem;
}
.feature-row h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.feature-row p { font-size: 1rem; color: var(--white-60); line-height: 1.75; margin-bottom: 1.5rem; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-bullets li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9375rem; color: var(--white-60);
}
.feature-bullets li .bul { color: var(--amber); flex-shrink: 0; }
.feature-row-visual {
    background: var(--navy); border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.feat-ui {
    padding: 1.5rem;
}
.feat-ui-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.25rem;
}
.feat-ui-title { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; }
.feat-ui-tag {
    font-family: var(--font-mono); font-size: 0.65rem; padding: 3px 8px;
    border-radius: 4px; background: var(--teal-dim); color: var(--teal);
    border: 1px solid rgba(45,212,191,0.2);
}
.feat-ui-tag.amber { background: var(--amber-dim); color: var(--amber); border-color: rgba(245,166,35,0.2); }
.feat-table { width: 100%; border-collapse: collapse; }
.feat-table th { font-family: var(--font-mono); font-size: 0.65rem; color: var(--white-30); text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 8px; border-bottom: 1px solid var(--navy-border); text-align: left; }
.feat-table td { font-size: 0.8rem; padding: 8px 8px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.feat-table tr:last-child td { border-bottom: none; }
.status-pill {
    display: inline-block; font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500;
    padding: 2px 8px; border-radius: 4px;
}
.status-pill.active { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(45,212,191,0.2); }
.status-pill.overdue { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.status-pill.pending { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(245,166,35,0.2); }
.map-placeholder { height: 220px; background: var(--navy-light); position: relative; overflow: hidden; }
.map-grid-lines {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}
.map-unit {
    position: absolute; border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500;
}
.map-unit.occ { background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.5); color: var(--amber); }
.map-unit.vac { background: rgba(45,212,191,0.1); border: 1px solid rgba(45,212,191,0.4); color: var(--teal); }
.map-unit.res { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.4); color: #a5b4fc; }
.map-legend {
    display: flex; gap: 1rem; padding: 10px 16px;
    background: var(--navy); border-top: 1px solid var(--navy-border);
}
.map-legend-item { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.65rem; color: var(--white-60); }
.map-legend-dot { width: 8px; height: 8px; border-radius: 2px; }
.map-legend-dot.occ { background: var(--amber); }
.map-legend-dot.vac { background: var(--teal); }
.map-legend-dot.res { background: #a5b4fc; }

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .how-steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .price-card.featured { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .revenue-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; }
    .feature-row.reverse .feature-row-visual { order: 0; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .logos-row { gap: 1.5rem; }
}