/* ============================================================
   AJ AERO SYSTEMS — Cinematic Stylesheet
   Pure CSS. No frameworks.
   ============================================================ */

:root {
    /* Brand */
    --red-deep: #8b1a1a;
    --red-electric: #c0392b;
    --red-glow: rgba(192, 57, 43, 0.55);
    --red-faint: rgba(192, 57, 43, 0.15);

    /* Surfaces */
    --void: #050508;
    --charcoal: #1a1a2e;
    --charcoal-soft: #14142a;
    --glass: rgba(20, 20, 42, 0.42);
    --glass-edge: rgba(192, 57, 43, 0.18);
    --hairline: rgba(255, 255, 255, 0.08);

    /* Text */
    --ink: #f5f3ef;
    --ink-dim: rgba(245, 243, 239, 0.62);
    --ink-faint: rgba(245, 243, 239, 0.38);

    /* Type */
    --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --sans: "Inter", system-ui, -apple-system, sans-serif;
    --mono: "JetBrains Mono", "Courier New", monospace;

    /* Motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--void);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* Reactivate native cursor on touch */
@media (pointer: coarse) { body { cursor: auto; } .cursor-trail { display: none; } }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--red-deep); color: var(--ink); }

/* ===== CURSOR TRAIL ===== */
.cursor-trail {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, var(--red-glow) 0%, rgba(192,57,43,0.12) 30%, transparent 65%);
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s var(--ease);
    opacity: 0;
    will-change: transform, opacity;
}
.cursor-trail.active { opacity: 0.55; }
.cursor-trail.click { animation: ripple 0.6s var(--ease-out); }
@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* ===== STAR FIELD ===== */
.star-field {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* ===== SECTION FLASH ===== */
.section-flash {
    position: fixed; inset: 0;
    background: var(--red-deep);
    pointer-events: none;
    opacity: 0;
    z-index: 9000;
    mix-blend-mode: screen;
}
.section-flash.fire { animation: flash 0.45s var(--ease-out); }
@keyframes flash {
    0%   { opacity: 0; }
    20%  { opacity: 0.22; }
    100% { opacity: 0; }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    right: 28px; top: 50%;
    transform: translateY(-50%);
    width: 2px; height: 220px;
    background: rgba(255,255,255,0.06);
    z-index: 50;
    overflow: hidden;
}
.scroll-indicator-fill {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, var(--red-electric), var(--red-deep));
    box-shadow: 0 0 12px var(--red-glow);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.15s linear;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(5, 5, 8, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    padding: 14px 48px;
    border-bottom: 1px solid var(--hairline);
}
.nav-logo img { width: 120px; height: auto; filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); }

.nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.nav-links a {
    position: relative;
    padding: 6px 2px;
    color: var(--ink-dim);
    transition: color 0.25s var(--ease);
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--red-electric);
    box-shadow: 0 0 10px var(--red-glow);
    transition: width 0.35s var(--ease-out), left 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; left: 0; }

.quote-btn {
    border: 1px solid var(--red-electric);
    color: var(--ink);
    padding: 10px 22px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 999px;
    background: transparent;
    box-shadow: 0 0 0 rgba(192,57,43,0);
    animation: quotePulse 2.6s ease-in-out infinite;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.quote-btn:hover { background: var(--red-deep); transform: translateY(-1px); }
@keyframes quotePulse {
    0%, 100% { box-shadow: 0 0 0px rgba(192,57,43,0.0); }
    50%      { box-shadow: 0 0 22px rgba(192,57,43,0.55); }
}

.nav-burger { display: none; width: 28px; height: 22px; position: relative; }
.nav-burger span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-burger span:nth-child(1) { top: 2px; }
.nav-burger span:nth-child(2) { top: 10px; }
.nav-burger span:nth-child(3) { top: 18px; }

/* ===== LOGO FALLBACK ===== */
.logo-fallback {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--serif);
    width: 120px;
}
.logo-fallback .a { color: var(--red-deep); font-weight: 800; font-size: 32px; line-height: 1; }
.logo-fallback .j { color: var(--ink); font-weight: 700; font-size: 32px; line-height: 1; }
.logo-fallback .divider { width: 1px; height: 26px; background: var(--ink-faint); }
.logo-fallback .text { color: var(--ink); font-size: 12px; letter-spacing: 0.14em; font-family: var(--sans); font-weight: 500; text-transform: lowercase; }
.logo-fallback.footer .a, .logo-fallback.footer .j { font-size: 22px; }
.logo-fallback.footer .divider { height: 20px; }
.logo-fallback.footer .text { font-size: 10px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 48px 80px;
    overflow: hidden;
}
.hero-content { width: 100%; max-width: 1400px; margin: 0 auto; }

.hero-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(48px, 9vw, 144px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-2 { color: var(--red-electric); font-style: italic; text-shadow: 0 0 40px rgba(192,57,43,0.35); }
.hero-title .char {
    display: inline-block;
    transform: translateY(120%);
    opacity: 0;
    animation: charIn 0.9s var(--ease-out) forwards;
}
.hero-title .char.space { width: 0.35em; }
@keyframes charIn {
    to { transform: translateY(0); opacity: 1; }
}

.hero-subtitle {
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink-dim);
    text-shadow: 0 0 18px rgba(192,57,43,0.25);
    opacity: 0;
    animation: fadeUp 1s 1.4s var(--ease-out) forwards;
}
@keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Drone stage */
.drone-stage {
    position: relative;
    width: min(640px, 100%);
    aspect-ratio: 1;
    margin: 60px auto 0;
}
.drone-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    animation: droneFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(192,57,43,0.35));
    opacity: 0;
    animation: droneFloat 6s ease-in-out infinite, droneIn 1.4s 1.2s var(--ease-out) forwards;
}
@keyframes droneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-14px) rotate(2deg); }
}
@keyframes droneIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}
.drone-svg .prop {
    transform-box: fill-box;
    transform-origin: center;
    animation: spin 0.3s linear infinite;
}
.drone-svg .prop[data-cx="90"][data-cy="90"]    { transform-origin: 90px 90px; }
.drone-svg .prop[data-cx="310"][data-cy="90"]   { transform-origin: 310px 90px; }
.drone-svg .prop[data-cx="90"][data-cy="310"]   { transform-origin: 90px 310px; }
.drone-svg .prop[data-cx="310"][data-cy="310"]  { transform-origin: 310px 310px; }
@keyframes spin { to { transform: rotate(360deg); } }

.scan-beam {
    position: absolute; inset: 5% 0;
    width: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, rgba(192,57,43,0.35) 49%, var(--red-electric) 50%, rgba(192,57,43,0.35) 51%, transparent 100%);
    background-size: 100% 8px;
    background-position: 0 0;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
    filter: blur(0.5px);
    animation: scan 3.6s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}
@keyframes scan {
    0%   { background-position: 0 0%; opacity: 0.2; }
    50%  { opacity: 0.9; }
    100% { background-position: 0 100%; opacity: 0.2; }
}

/* Orbiting stat badges */
.stat-badge {
    position: absolute;
    padding: 14px 20px;
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--glass-edge);
    border-radius: 14px;
    display: flex; flex-direction: column; gap: 2px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 0 1px rgba(255,255,255,0.06);
}
.stat-badge .stat-num { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--ink); line-height: 1; }
.stat-badge .stat-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.orbit-1 { top: 6%;  left: -6%;  animation: orbit1 9s ease-in-out infinite; }
.orbit-2 { top: 12%; right: -4%; animation: orbit2 10s ease-in-out infinite; }
.orbit-3 { bottom: 14%; left: -2%; animation: orbit3 11s ease-in-out infinite; }
.orbit-4 { bottom: 6%;  right: -6%; animation: orbit4 12s ease-in-out infinite; }
@keyframes orbit1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(18px,-14px); } }
@keyframes orbit2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-22px,18px); } }
@keyframes orbit3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(14px,22px); } }
@keyframes orbit4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-18px,-22px); } }

.hero-hint {
    margin-top: 32px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s 2s var(--ease-out) forwards;
}

/* ===== SECTION HEAD ===== */
section { position: relative; padding: 140px 48px; }
.section-head { max-width: 1400px; margin: 0 auto 80px; }
.section-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red-electric);
    display: block;
    margin-bottom: 18px;
}
.section-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(40px, 6vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 1100px;
}
.section-title em { font-style: italic; color: var(--red-electric); text-shadow: 0 0 30px rgba(192,57,43,0.3); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== SERVICES ===== */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    padding: 32px 26px 30px;
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    min-height: 240px;
    display: flex; flex-direction: column;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
    will-change: transform;
    transform-style: preserve-3d;
}
.service-card[data-depth="1"] { transform: translateY(0); }
.service-card[data-depth="2"] { transform: translateY(24px); }
.service-card[data-depth="3"] { transform: translateY(-18px); }
.service-card:hover {
    border-color: var(--red-electric);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(192,57,43,0.25), inset 0 0 40px rgba(192,57,43,0.05);
}
.card-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--red-electric);
    margin-bottom: 22px;
}
.service-card h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 14px;
}
.service-card p { font-size: 14px; color: var(--ink-dim); }

/* ===== PROCESS ===== */
.process-track {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}
.process-line {
    position: absolute;
    top: 40px;
    left: 5%; right: 5%;
    width: 90%;
    height: 80px;
    z-index: 0;
    pointer-events: none;
}
.process-line path {
    stroke-dasharray: 10 8;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1.6s var(--ease-out);
    filter: drop-shadow(0 0 8px rgba(192,57,43,0.6));
}
.process-line.draw path { stroke-dashoffset: 0; }
.step {
    position: relative;
    z-index: 1;
    padding: 0 16px;
    text-align: center;
}
.step-number {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 1px solid var(--red-electric);
    background: var(--void);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    color: var(--ink);
    box-shadow: 0 0 0 0 rgba(192,57,43,0);
    transition: box-shadow 0.6s var(--ease);
}
.step.visible .step-number {
    animation: burst 0.9s var(--ease-out);
    box-shadow: 0 0 36px rgba(192,57,43,0.55);
}
@keyframes burst {
    0%   { transform: scale(0.6); box-shadow: 0 0 0 rgba(192,57,43,0); }
    40%  { transform: scale(1.18); box-shadow: 0 0 60px rgba(192,57,43,0.9); }
    100% { transform: scale(1); box-shadow: 0 0 36px rgba(192,57,43,0.55); }
}
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--ink-dim); max-width: 320px; margin: 0 auto; }

/* ===== COMPLIANCE BADGES ===== */
.badge-wall {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}
.badge {
    padding: 14px 24px;
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--glass-edge);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 18px rgba(192,57,43,0.12);
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.badge.drift { animation: drift 6s ease-in-out infinite; }
.badge:nth-child(2n).drift  { animation-duration: 7.2s; animation-delay: -1.5s; }
.badge:nth-child(3n).drift  { animation-duration: 8.1s; animation-delay: -3s; }
.badge:nth-child(5n).drift  { animation-duration: 9s; animation-delay: -2s; }
.badge:hover { border-color: var(--red-electric); box-shadow: 0 0 30px var(--red-glow); transform: translateY(-3px); }
@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ===== PORTFOLIO ===== */
.portfolio-list { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.project-card {
    padding: 56px 56px 48px;
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--hairline);
    border-radius: 22px;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 1s var(--ease-out), opacity 1s var(--ease-out), border-color 0.4s var(--ease);
    position: relative;
}
.project-card.visible { transform: scale(1); opacity: 1; }
.project-card:hover { border-color: var(--red-electric); }
.project-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--red-deep);
    color: var(--ink);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 0 22px rgba(192,57,43,0.5);
}
.project-card h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 14px;
    max-width: 800px;
}
.project-card p { font-size: 15px; color: var(--ink-dim); max-width: 600px; margin-bottom: 28px; }
.project-meta {
    display: flex; gap: 28px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    border-top: 1px solid var(--hairline);
    padding-top: 22px;
}

/* ===== WHY ===== */
.why-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
}
.why-panel {
    padding: 48px 42px;
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--hairline);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.why-panel.from-left  { transform: translateX(-80px); }
.why-panel.from-right { transform: translateX(80px); }
.why-panel.visible    { opacity: 1; transform: translateX(0); }
.panel-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--ink-dim);
}
.panel-label-new { color: var(--red-electric); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.why-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px;
    color: var(--ink);
    font-weight: 400;
}
.why-list-old li { color: var(--ink-dim); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.15); }
.mark {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}
.mark.x     { background: rgba(192,57,43,0.18); color: var(--red-electric); border: 1px solid rgba(192,57,43,0.35); }
.mark.check { background: var(--red-deep); color: var(--ink); box-shadow: 0 0 16px rgba(192,57,43,0.55); }
.why-divider { width: 1px; background: linear-gradient(to bottom, transparent, var(--red-electric), transparent); }

/* ===== CONTACT ===== */
.contact-panel {
    max-width: 880px;
    margin: 0 auto;
    padding: 56px 56px 48px;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--glass-edge);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 50px rgba(192,57,43,0.18), inset 0 0 1px rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.field input, .field textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--hairline);
    padding: 10px 0;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    transition: border-color 0.3s var(--ease);
    resize: vertical;
    cursor: none;
}
.field input:focus, .field textarea:focus { outline: 0; border-bottom-color: var(--red-electric); }

.submit-btn {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding: 16px 36px;
    border: 1px solid var(--red-electric);
    border-radius: 999px;
    background: var(--red-deep);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(192,57,43,0.45);
    animation: submitPulse 2.4s ease-in-out infinite;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    justify-self: start;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(192,57,43,0.75); }
@keyframes submitPulse {
    0%, 100% { box-shadow: 0 0 22px rgba(192,57,43,0.35); }
    50%      { box-shadow: 0 0 44px rgba(192,57,43,0.75); }
}

.contact-meta {
    max-width: 880px;
    margin: 48px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.meta-item { transition: color 0.3s var(--ease); }
.meta-item:hover { color: var(--red-electric); text-shadow: 0 0 18px rgba(192,57,43,0.5); }
.social-row { display: flex; gap: 14px; }
.social-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-dim);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-btn:hover { color: var(--red-electric); border-color: var(--red-electric); box-shadow: 0 0 22px var(--red-glow); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { padding: 70px 48px 50px; position: relative; }
.footer-line { height: 1px; background: linear-gradient(to right, transparent, var(--red-electric), transparent); margin-bottom: 48px; box-shadow: 0 0 22px rgba(192,57,43,0.4); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; max-width: 1400px; margin: 0 auto; }
.footer-logo img { width: 96px; }
.footer-copy { text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); }
.footer-tag { text-align: right; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-faint); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .navbar { padding: 18px 22px; }
    .navbar.scrolled { padding: 12px 22px; }
    section { padding: 100px 22px; }
    .hero { padding: 130px 22px 60px; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 78%; height: 100vh;
        background: rgba(5,5,8,0.96); backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 60px 30px;
        transition: right 0.4s var(--ease);
        z-index: 95;
    }
    .nav-links.open { right: 0; }
    .nav-burger { display: block; z-index: 110; }
    .quote-btn { display: none; }
    .process-track { grid-template-columns: 1fr; gap: 60px; }
    .process-line { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .why-divider { width: 60%; height: 1px; margin: 0 auto; background: linear-gradient(to right, transparent, var(--red-electric), transparent); }
    .why-panel.from-left, .why-panel.from-right { transform: translateY(40px) translateX(0); }
    .why-panel.visible { transform: translateY(0) translateX(0); }
    .contact-panel { grid-template-columns: 1fr; padding: 36px 26px; }
    .project-card { padding: 36px 28px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-tag { text-align: center; }
    .footer-logo { display: flex; justify-content: center; }
    .scroll-indicator { right: 12px; height: 140px; }
    .stat-badge { padding: 10px 14px; }
    .stat-badge .stat-num { font-size: 18px; }
    .stat-badge .stat-label { font-size: 9px; }
    .section-head { margin-bottom: 50px; }
    body { cursor: auto; }
    .cursor-trail { display: none; }
    .field input, .field textarea, button { cursor: auto; }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(40px, 13vw, 76px); }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
