:root {
  --navy-950: #071522;
  --navy-900: #0b1d2c;
  --navy-800: #112b40;
  --navy-700: #183d59;
  --navy-600: #245675;
  --red-700: #a30f27;
  --red-600: #c31230;
  --red-500: #da2946;
  --gold-600: #a88743;
  --gold-500: #c5a25b;
  --gold-200: #ead9ae;
  --cream-100: #faf8f4;
  --cream-200: #f4f0e9;
  --cream-300: #ebe5dc;
  --ink-950: #151b20;
  --ink-800: #28333c;
  --ink-700: #44515b;
  --ink-600: #61707c;
  --ink-500: #7b8790;
  --line: #dfe4e7;
  --line-warm: #e7dfd5;
  --white: #ffffff;
  --success: #147451;
  --danger: #b42318;
  --shadow-xs: 0 1px 2px rgba(7, 21, 34, .05);
  --shadow-sm: 0 10px 28px rgba(7, 21, 34, .08);
  --shadow-md: 0 22px 55px rgba(7, 21, 34, .12);
  --shadow-lg: 0 34px 90px rgba(7, 21, 34, .18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(.22, .72, .24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-950);
  background: var(--white);
  font-family: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--red-600); }
:focus-visible { outline: 3px solid rgba(197, 162, 91, .72); outline-offset: 3px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-soft { background: var(--cream-100); border-block: 1px solid #f0ece6; }
.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; color: var(--ink-700); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--red-600);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 2px; background: var(--gold-500); content: ""; }
.eyebrow-light { color: #f1dca9; }
.eyebrow-light::before { background: rgba(255,255,255,.72); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; color: var(--navy-950); line-height: 1.08; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.25rem, 5.5vw, 5.8rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4rem); }
h3 { font-size: 1.28rem; letter-spacing: -.02em; }
p { margin-bottom: 0; }
.lead { color: var(--ink-700); font-size: 1.2rem; line-height: 1.72; }
.small-note { color: var(--ink-500); font-size: .8rem; line-height: 1.58; }
.small-note.light { color: rgba(255,255,255,.7); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy-950);
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.utility-bar { color: rgba(255,255,255,.78); background: var(--navy-950); font-size: .74rem; }
.utility-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.utility-inner p { display: flex; align-items: center; gap: 9px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #62c596; box-shadow: 0 0 0 4px rgba(98,197,150,.13); }
.utility-links { display: flex; gap: 24px; }
.utility-links a:last-child { color: #f0dba8; font-weight: 700; }
.utility-links a:hover { color: var(--white); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(223,228,231,.92);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(7,21,34,.08); }
.nav-shell { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 39px; height: 34px; position: relative; display: inline-block; }
.brand-mark i { position: absolute; display: block; height: 5px; border-radius: 999px; transform: rotate(-22deg); transform-origin: right center; }
.brand-mark i:nth-child(1) { width: 32px; right: 2px; top: 5px; background: var(--red-600); }
.brand-mark i:nth-child(2) { width: 25px; right: 3px; top: 15px; background: var(--gold-500); }
.brand-mark i:nth-child(3) { width: 18px; right: 4px; top: 25px; background: var(--navy-800); }
.brand-name { display: flex; flex-direction: column; line-height: .9; letter-spacing: -.02em; }
.brand-name strong { color: var(--navy-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.brand-name span { margin-top: 5px; color: var(--red-600); font-size: .64rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.desktop-nav ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.desktop-nav a { position: relative; display: block; padding: 15px 10px; color: var(--ink-700); font-size: .8rem; font-weight: 700; }
.desktop-nav a::after { position: absolute; left: 10px; right: 10px; bottom: 6px; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--red-600); content: ""; transition: transform .22s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--navy-950); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy-950); transition: .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary, .btn-orange { color: var(--white); background: var(--red-600); box-shadow: 0 10px 24px rgba(195,18,48,.2); }
.btn-primary:hover, .btn-orange:hover { background: var(--red-700); box-shadow: 0 14px 30px rgba(163,15,39,.26); }
.btn-secondary { color: var(--navy-900); border-color: #cbd3d8; background: var(--white); }
.btn-secondary:hover { border-color: var(--navy-600); box-shadow: var(--shadow-sm); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,.45); background: transparent; }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-compact { min-height: 44px; padding: 10px 17px; }
.btn-block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--red-600); font-size: .84rem; font-weight: 800; }
.text-link svg, .link-arrow { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg, a:hover .link-arrow { transform: translateX(4px); }

/* Home hero */
.hero { position: relative; overflow: hidden; }
.hero-home {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #fbf9f5 0%, #fbf9f5 58%, #eef2f4 58%, #eef2f4 100%);
}
.hero-home::before { position: absolute; inset: 0 0 0 58%; background: linear-gradient(145deg, rgba(195,18,48,.09), transparent 44%), radial-gradient(circle at 85% 18%, rgba(197,162,91,.2), transparent 28%); content: ""; }
.hero-atmosphere { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 0 61%, rgba(7,21,34,.035) 61% 61.1%, transparent 61.1%); }
.hero-atmosphere::after { position: absolute; width: 560px; height: 560px; right: -190px; bottom: -300px; border: 1px solid rgba(11,29,44,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(11,29,44,.025), 0 0 0 140px rgba(11,29,44,.018); content: ""; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; padding-block: 96px 108px; }
.hero-copy h1 { max-width: 770px; color: var(--navy-950); }
.hero-copy .eyebrow-light { color: var(--red-600); }
.hero-copy .eyebrow-light::before { background: var(--gold-500); }
.hero-lead { max-width: 680px; margin-top: 24px; color: var(--ink-700); font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-home .btn-ghost-light { color: var(--navy-900); border-color: #b8c3cb; background: rgba(255,255,255,.65); }
.hero-home .btn-ghost-light:hover { border-color: var(--navy-700); background: var(--white); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 720px; margin-top: 44px; border: 1px solid var(--line-warm); border-radius: 10px; overflow: hidden; background: rgba(255,255,255,.8); box-shadow: var(--shadow-xs); }
.hero-proof div { padding: 17px 18px; }
.hero-proof div + div { border-left: 1px solid var(--line-warm); }
.hero-proof strong { display: block; color: var(--navy-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; font-weight: 600; }
.hero-proof span { color: var(--ink-600); font-size: .69rem; }
.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }

.mission-board { width: min(100%, 530px); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; color: var(--white); background: var(--navy-950); box-shadow: 0 34px 85px rgba(7,21,34,.26); }
.mission-board-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 25px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mission-board-head > div span { display: block; color: rgba(255,255,255,.56); font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.mission-board-head > div strong { display: block; margin-top: 4px; font-size: .98rem; }
.mission-live { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.76); font-size: .68rem; font-weight: 700; }
.mission-live i { width: 7px; height: 7px; border-radius: 50%; background: #68d29d; box-shadow: 0 0 0 4px rgba(104,210,157,.13); }
.mission-map { position: relative; height: 260px; overflow: hidden; background: linear-gradient(135deg, #10283a, #0b1d2c); }
.map-grid { position: absolute; inset: 0; opacity: .27; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 38px 38px; }
.mission-map::before { position: absolute; width: 360px; height: 210px; right: -35px; top: 24px; border: 1px solid rgba(197,162,91,.23); border-radius: 50%; transform: rotate(-12deg); content: ""; }
.route-line { position: absolute; height: 2px; transform-origin: left center; background: linear-gradient(90deg, rgba(197,162,91,.15), var(--gold-500), rgba(197,162,91,.15)); box-shadow: 0 0 12px rgba(197,162,91,.25); }
.route-line-a { width: 185px; left: 88px; top: 157px; transform: rotate(-18deg); }
.route-line-b { width: 176px; left: 255px; top: 101px; transform: rotate(16deg); }
.route-node { position: absolute; min-width: 70px; display: grid; grid-template-columns: 12px 1fr; gap: 0 8px; align-items: center; color: var(--white); }
.route-node i { grid-row: 1 / 3; width: 10px; height: 10px; border: 2px solid #f0d69d; border-radius: 50%; background: var(--navy-950); box-shadow: 0 0 0 5px rgba(197,162,91,.12); }
.route-node b { font-size: .72rem; }
.route-node small { color: rgba(255,255,255,.55); font-size: .62rem; }
.route-node-origin { left: 52px; bottom: 45px; }
.route-node-hub { left: 235px; top: 71px; }
.route-node-destination { right: 34px; bottom: 46px; }
.mission-aircraft { position: absolute; width: 172px; left: 182px; top: 103px; color: #fff; filter: drop-shadow(0 10px 10px rgba(0,0,0,.35)); transform: rotate(-8deg); }
.mission-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); }
.mission-services > div { min-height: 122px; display: flex; align-items: flex-start; gap: 11px; padding: 19px 16px; background: #10283a; }
.mission-services > div > span { width: 35px; height: 35px; flex: 0 0 35px; display: grid; place-items: center; border-radius: 8px; color: #efd69d; background: rgba(255,255,255,.07); }
.mission-services svg { width: 18px; height: 18px; }
.mission-services p { margin: 0; }
.mission-services small { display: block; color: rgba(255,255,255,.52); font-size: .61rem; }
.mission-services strong { display: block; margin-top: 5px; color: var(--white); font-size: .73rem; line-height: 1.4; }
.mission-board-foot { display: flex; justify-content: space-between; gap: 20px; padding: 15px 24px; color: rgba(255,255,255,.52); background: #081724; font-size: .62rem; }

/* Core service ribbon */
.service-ribbon { position: relative; z-index: 4; margin-top: -32px; }
.service-ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-top: 4px solid var(--red-600); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-md); }
.service-ribbon-grid > a { min-height: 112px; display: grid; grid-template-columns: 42px 1fr 18px; gap: 14px; align-items: center; padding: 22px; border-right: 1px solid var(--line); transition: background .2s ease; }
.service-ribbon-grid > a:last-child { border-right: 0; }
.service-ribbon-grid > a:hover { background: var(--cream-100); }
.service-ribbon-grid > a > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; color: var(--red-600); background: #f9eaed; }
.service-ribbon-grid > a > span.orange { color: var(--gold-600); background: #f7f0df; }
.service-ribbon-grid svg { width: 21px; height: 21px; }
.service-ribbon-grid small { display: block; color: var(--ink-500); font-size: .64rem; line-height: 1.4; }
.service-ribbon-grid strong { display: block; color: var(--navy-950); font-size: .83rem; }

.split-heading { display: grid; grid-template-columns: 1.02fr .98fr; gap: 92px; align-items: end; margin-bottom: 52px; }
.split-heading p { color: var(--ink-700); font-size: 1.03rem; line-height: 1.72; }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 480px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-top: 4px solid var(--navy-800); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-xs); transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-top-color: var(--red-600); box-shadow: var(--shadow-md); }
.service-card-featured { border-top-color: var(--red-600); background: linear-gradient(180deg, #fff 0%, #fbf6f4 100%); }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 60px; border-radius: 10px; color: var(--red-600); background: #f8eaed; }
.card-icon svg { width: 27px; height: 27px; }
.card-index { position: absolute; right: 28px; top: 30px; color: var(--gold-600); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { color: var(--navy-950); font-size: 1.58rem; }
.service-card > p { margin-top: 16px; color: var(--ink-700); font-size: .91rem; line-height: 1.7; }
.micro-list { margin: 23px 0 0; padding: 0; color: var(--ink-700); list-style: none; }
.micro-list li { position: relative; padding: 11px 0 11px 19px; border-top: 1px solid var(--line); font-size: .82rem; }
.micro-list li::before { position: absolute; left: 0; top: 17px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); content: ""; }
.service-card .text-link { margin-top: auto; padding-top: 28px; }

.operating-model { display: grid; grid-template-columns: .8fr 1.2fr; gap: 86px; align-items: start; }
.model-copy { position: sticky; top: 130px; }
.model-copy p { margin: 21px 0 28px; color: var(--ink-700); }
.process-list, .timeline { margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li, .timeline li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li:first-child, .timeline li:first-child { padding-top: 0; }
.process-list li:last-child, .timeline li:last-child { border-bottom: 0; }
.process-list li > span, .timeline li > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid #eadfc6; border-radius: 50%; color: var(--red-600); background: #fbf6eb; font-size: .72rem; font-weight: 800; }
.process-list h3, .timeline h3 { margin-bottom: 8px; }
.process-list p, .timeline p { color: var(--ink-700); font-size: .9rem; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card, .solution-card, .matrix-card, .control-card, .checklist-card, .role-card, .link-card, .value-card { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-xs); transition: transform .24s var(--ease), box-shadow .24s ease, border-color .24s ease; }
.industry-card:hover, .solution-card:hover, .matrix-card:hover, .control-card:hover, .checklist-card:hover, .role-card:hover, .link-card:hover, .value-card:hover { transform: translateY(-5px); border-color: #c9d2d8; box-shadow: var(--shadow-sm); }
.industry-card > span, .solution-card > span, .matrix-card > span, .contact-method > span, .checklist-card > span, .role-card > span, .link-card > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 9px; color: var(--red-600); background: #f8eaed; }
.industry-card svg, .solution-card svg, .matrix-card svg, .checklist-card svg, .role-card svg, .link-card svg { width: 24px; height: 24px; }
.industry-card h3, .solution-card h3, .matrix-card h3, .checklist-card h3, .role-card h3, .link-card h3 { margin-bottom: 11px; }
.industry-card p, .solution-card p, .role-card p, .link-card p { color: var(--ink-700); font-size: .87rem; }

.feature-band { position: relative; overflow: hidden; padding: 108px 0; color: var(--white); background: linear-gradient(118deg, var(--navy-950), var(--navy-800)); }
.feature-band::before { position: absolute; inset: 0; background: radial-gradient(circle at 86% 24%, rgba(197,162,91,.18), transparent 26%), linear-gradient(90deg, transparent 0 63%, rgba(255,255,255,.04) 63% 63.1%, transparent 63.1%); content: ""; }
.feature-band-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; gap: 86px; align-items: center; }
.feature-band h2 { color: var(--white); }
.feature-band-copy > p { margin: 22px 0 32px; color: rgba(255,255,255,.76); }
.capability-panel { display: grid; grid-template-columns: repeat(2, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.capability-panel > div { min-height: 190px; padding: 28px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.capability-panel > div:nth-child(2n) { border-right: 0; }
.capability-panel > div:nth-last-child(-n+2) { border-bottom: 0; }
.capability-panel span { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 8px; color: #efd69d; background: rgba(255,255,255,.08); }
.capability-panel svg { width: 21px; height: 21px; }
.capability-panel h3 { color: var(--white); font-size: 1rem; }
.capability-panel p { margin-top: 9px; color: rgba(255,255,255,.68); font-size: .79rem; }

.trust-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 88px; align-items: center; }
.trust-visual, .feature-visual { position: relative; min-height: 490px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line-warm); border-radius: var(--radius-lg); background: linear-gradient(145deg, #f8f5ef, #ece5db); }
.trust-ring { position: absolute; border: 1px solid rgba(163,15,39,.14); border-radius: 50%; }
.ring-a { width: 390px; height: 390px; }
.ring-b { width: 270px; height: 270px; }
.trust-shield { position: relative; z-index: 2; width: 126px; height: 126px; display: grid; place-items: center; border-radius: 26px; color: var(--white); background: linear-gradient(145deg, var(--navy-800), var(--navy-600)); box-shadow: var(--shadow-lg); transform: rotate(-5deg); }
.trust-shield svg { width: 62px; height: 62px; }
.trust-stat, .metric-card { position: absolute; z-index: 3; right: 28px; bottom: 28px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.trust-stat strong, .metric-card strong { display: block; color: var(--navy-950); }
.trust-stat span, .metric-card span { color: var(--ink-500); font-size: .72rem; }
.trust-copy > p { margin: 22px 0 27px; color: var(--ink-700); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.check-grid span, .check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-700); font-size: .84rem; }
.check-grid svg, .check-list svg { flex: 0 0 19px; width: 19px; height: 19px; margin-top: 2px; color: var(--red-600); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro p { margin-top: 18px; color: var(--ink-700); }
.accordion article { border-bottom: 1px solid var(--line); }
.accordion button { width: 100%; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border: 0; color: var(--navy-950); background: transparent; text-align: left; font-weight: 750; }
.accordion button svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--red-600); transition: transform .25s ease; }
.accordion button[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-panel p { padding: 0 42px 27px 0; color: var(--ink-700); font-size: .9rem; }

/* Inner page heroes */
.page-hero { --hero-accent: var(--red-600); position: relative; overflow: hidden; padding: 104px 0; background: linear-gradient(90deg, #f8f6f2 0%, #f8f6f2 66%, var(--hero-accent) 66%, var(--hero-accent) 100%); }
.page-hero::before { position: absolute; width: 560px; height: 560px; right: -180px; top: -260px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 140px rgba(255,255,255,.02); content: ""; }
.page-hero-cargo { --hero-accent: #8e1328; }
.page-hero-passenger { --hero-accent: #a91b34; }
.page-hero-support { --hero-accent: #173d58; }
.page-hero-safety { --hero-accent: #1d4558; }
.page-hero-management { --hero-accent: #67543a; }
.page-hero-careers { --hero-accent: #8e1328; }
.page-hero-contact { --hero-accent: #123650; }
.page-hero-company { --hero-accent: #173d58; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.18fr .82fr; gap: 82px; align-items: center; }
.page-hero h1 { max-width: 840px; color: var(--navy-950); font-size: clamp(3rem, 5vw, 5.3rem); }
.page-hero p { max-width: 760px; margin-top: 24px; color: var(--ink-700); font-size: 1.04rem; }
.page-hero .eyebrow-light { color: var(--red-600); }
.page-hero .eyebrow-light::before { background: var(--gold-500); }
.page-hero .btn-ghost-light { color: var(--navy-900); border-color: #bac4ca; background: rgba(255,255,255,.55); }
.page-hero .btn-ghost-light:hover { border-color: var(--navy-700); background: var(--white); }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 32px; color: var(--ink-500); font-size: .72rem; }
.breadcrumb a:hover { color: var(--red-600); }
.page-hero-card { padding: 34px; border: 1px solid rgba(255,255,255,.45); border-top: 4px solid #f0d59a; border-radius: var(--radius-md); background: rgba(255,255,255,.96); box-shadow: 0 26px 60px rgba(7,21,34,.18); }
.page-hero-card > span { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 10px; color: var(--red-600); background: #f8eaed; }
.page-hero-card svg { width: 27px; height: 27px; }
.page-hero-card h2 { color: var(--navy-950); font-size: 1.75rem; }
.page-hero-card p { margin-top: 14px; color: var(--ink-700); font-size: .88rem; }
.page-hero-card a { color: var(--red-600); font-weight: 700; }

.editorial-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 96px; align-items: start; }
.editorial-sticky { position: sticky; top: 130px; }
.prose { max-width: 780px; }
.prose p { margin-bottom: 22px; color: var(--ink-700); }
.prose .lead { color: var(--ink-800); font-size: 1.18rem; }
.prose blockquote { margin: 38px 0 0; padding: 27px 30px; border-left: 4px solid var(--red-600); color: var(--navy-900); background: #faf3f4; font-size: 1.08rem; font-weight: 700; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { min-height: 260px; }
.value-card > span { display: inline-block; margin-bottom: 54px; color: var(--red-600); font-size: .73rem; font-weight: 800; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--ink-700); font-size: .86rem; }
.two-column-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.feature-visual { min-height: 520px; background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); border-color: transparent; }
.feature-visual .big-icon { width: 120px; height: 120px; display: grid; place-items: center; border-radius: 24px; color: var(--white); background: rgba(255,255,255,.1); box-shadow: var(--shadow-lg); }
.feature-visual .big-icon svg { width: 62px; height: 62px; }
.feature-visual::before, .feature-visual::after { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.feature-visual::before { width: 370px; height: 370px; }
.feature-visual::after { width: 510px; height: 510px; }
.metric-card { left: 26px; right: auto; bottom: 26px; }
.metric-card.secondary { left: auto; right: 26px; top: 26px; bottom: auto; }
.check-list { display: grid; gap: 14px; margin: 27px 0 0; padding: 0; list-style: none; }
.link-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.link-card { position: relative; }
.link-card p { padding-right: 18px; }
.link-card > .link-arrow { position: absolute; right: 24px; bottom: 24px; color: var(--red-600); }

.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { min-height: 290px; }
.solution-card > span { margin-bottom: 40px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fleet-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-xs); transition: transform .25s var(--ease), box-shadow .25s ease; }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fleet-art { height: 205px; display: grid; place-items: center; padding: 25px; overflow: hidden; color: var(--white); }
.fleet-art svg { width: 330px; filter: drop-shadow(0 18px 16px rgba(0,0,0,.15)); transform: rotate(-3deg); }
.fleet-art.sky { background: linear-gradient(135deg, #9f1b32, #5b1324); }
.fleet-art.blue { background: linear-gradient(135deg, var(--navy-700), var(--navy-950)); }
.fleet-art.orange { background: linear-gradient(135deg, #bd9a53, #695021); }
.fleet-card > div:last-child { padding: 28px; }
.tag, .status-pill { display: inline-flex; padding: 6px 9px; border-radius: 999px; color: var(--red-700); background: #f8eaed; font-size: .67rem; font-weight: 800; }
.fleet-card h3 { margin-top: 16px; }
.fleet-card p { margin-top: 11px; color: var(--ink-700); font-size: .86rem; }
.fleet-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 0; padding: 0; list-style: none; }
.fleet-card li { padding: 6px 9px; border-radius: 6px; color: var(--ink-700); background: var(--cream-100); font-size: .69rem; font-weight: 650; }
.cargo-art svg { width: 345px; }
.detail-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 86px; align-items: start; }
.detail-grid > div:first-child { position: sticky; top: 130px; }
.detail-grid > div:first-child p { margin-top: 20px; color: var(--ink-700); }
.detail-list article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.detail-list article:first-child { padding-top: 0; }
.detail-list article:last-child { border-bottom: 0; }
.detail-list > article > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 9px; color: var(--red-600); background: #f8eaed; }
.detail-list svg { width: 22px; height: 22px; }
.detail-list h3 { margin-bottom: 7px; }
.detail-list p { color: var(--ink-700); font-size: .87rem; }
.cargo-workflow { display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; }

.service-matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.matrix-card { min-height: 330px; }
.matrix-card > span { margin-bottom: 38px; }
.matrix-card h3 { margin-bottom: 18px; }
.matrix-card ul { margin: 0; padding-left: 18px; color: var(--ink-700); font-size: .84rem; }
.matrix-card li + li { margin-top: 7px; }
.dashboard-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.dashboard-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.dashboard-head small { display: block; color: var(--ink-500); }
.dashboard-head strong { color: var(--navy-950); }
.dashboard-route { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 12px; align-items: center; padding: 28px 0; color: var(--navy-700); font-size: .78rem; font-weight: 800; }
.dashboard-route i { height: 1px; background: repeating-linear-gradient(90deg, var(--gold-500) 0 5px, transparent 5px 9px); }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.dashboard-grid div { padding: 17px; border-radius: 9px; background: var(--cream-100); }
.dashboard-grid small { display: block; color: var(--ink-500); font-size: .67rem; }
.dashboard-grid strong { display: flex; align-items: center; gap: 7px; margin-top: 5px; color: var(--navy-900); font-size: .78rem; }
.dashboard-grid svg { width: 16px; height: 16px; color: var(--success); }
.dashboard-card > p { margin-top: 20px; color: var(--ink-500); font-size: .7rem; }
.control-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.control-card { position: relative; min-height: 330px; }
.control-card > span { position: absolute; right: 24px; top: 22px; color: var(--gold-600); font-size: .73rem; font-weight: 800; }
.control-card > div > svg { width: 45px; height: 45px; margin-bottom: 48px; padding: 10px; border-radius: 9px; color: var(--red-600); background: #f8eaed; }
.control-card h3 { margin-bottom: 12px; }
.control-card p { color: var(--ink-700); font-size: .85rem; }

/* Contact and forms */
.contact-grid, .application-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; align-items: start; }
.contact-info { position: sticky; top: 130px; }
.contact-info > p { margin: 19px 0 28px; color: var(--ink-700); }
.contact-method { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-method > span { margin: 0; }
.contact-method small { display: block; color: var(--ink-500); font-size: .68rem; }
.contact-method a, .contact-method strong { color: var(--navy-950); font-size: .86rem; font-weight: 750; }
.response-note { margin-top: 24px; padding: 18px; border-left: 3px solid var(--gold-500); border-radius: 8px; background: #fbf6eb; }
.response-note strong { display: block; color: var(--navy-950); font-size: .84rem; }
.response-note p { margin-top: 6px; color: var(--ink-700); font-size: .76rem; }
.inquiry-form { padding: 34px; border: 1px solid var(--line); border-top: 4px solid var(--red-600); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.form-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 25px; margin-bottom: 30px; }
.form-head p { margin-top: 9px; color: var(--ink-600); font-size: .8rem; }
.secure-note { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 8px; color: var(--success); background: #edf8f3; font-size: .67rem; font-weight: 800; white-space: nowrap; }
.secure-note svg { width: 15px; height: 15px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-size: .76rem; font-weight: 750; }
.field label span { color: var(--red-600); }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 12px 13px; border: 1px solid #cfd7dc; border-radius: 8px; color: var(--ink-950); background: var(--white); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(36,86,117,.09); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field-error { display: none; color: var(--danger); font-size: .68rem; }
.field.invalid .field-error { display: block; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-700); font-size: .76rem; }
.checkbox-field input { flex: 0 0 auto; margin-top: 4px; accent-color: var(--red-600); }
.checkbox-field a { color: var(--red-600); text-decoration: underline; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.form-status { min-height: 22px; margin-top: 16px; color: var(--success); font-size: .8rem; font-weight: 700; }
.form-status.error { color: var(--danger); }
.form-footnote { margin-top: 12px; color: var(--ink-500); font-size: .72rem; }
.checklist-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.checklist-card ul { margin: 0; padding-left: 18px; color: var(--ink-700); font-size: .83rem; }
.checklist-card li + li { margin-top: 8px; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.role-card { min-height: 310px; }
.role-card > span { margin-bottom: 36px; }
.role-card > div { display: flex; gap: 7px; margin-top: 23px; }
.role-card > div span { padding: 5px 8px; border-radius: 999px; color: var(--navy-700); background: #edf3f6; font-size: .63rem; font-weight: 800; }

/* Legal and 404 */
.legal-hero { padding: 90px 0 74px; background: var(--cream-100); border-bottom: 1px solid var(--line-warm); }
.legal-hero h1 { max-width: 850px; font-size: clamp(2.8rem, 5vw, 5rem); }
.legal-hero p { margin-top: 18px; color: var(--ink-500); }
.legal-hero .breadcrumb { color: var(--ink-500); }
.legal-hero .breadcrumb a:hover { color: var(--red-600); }
.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 80px; align-items: start; }
.legal-layout aside { position: sticky; top: 130px; display: grid; gap: 9px; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream-100); }
.legal-layout aside strong { margin-bottom: 7px; color: var(--navy-950); font-size: .78rem; }
.legal-layout aside a { color: var(--ink-700); font-size: .76rem; }
.legal-layout aside a:hover { color: var(--red-600); }
.legal-copy { max-width: 820px; }
.legal-copy section { padding-bottom: 35px; margin-bottom: 35px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.legal-copy section:last-child { border-bottom: 0; }
.legal-copy h2 { margin-bottom: 18px; font-size: 1.65rem; }
.legal-copy p { margin-bottom: 13px; color: var(--ink-700); }
.legal-copy a { color: var(--red-600); text-decoration: underline; }
.not-found { min-height: 680px; display: grid; place-items: center; padding: 90px 0; text-align: center; background: radial-gradient(circle at 50% 35%, #f8eaed, transparent 35%); }
.not-found .container { max-width: 760px; }
.error-code { display: block; margin-bottom: 13px; color: #f4e7e9; font-size: clamp(7rem, 20vw, 14rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; text-shadow: 0 1px 0 #d7bac0; }
.not-found p { margin: 22px auto 30px; color: var(--ink-700); }
.not-found .button-row { justify-content: center; }

.cta-band { position: relative; overflow: hidden; padding: 78px 0; color: var(--white); background: linear-gradient(110deg, var(--red-700), var(--red-600)); }
.cta-band::after { position: absolute; width: 460px; height: 460px; right: -110px; top: -230px; border: 1px solid rgba(236,211,157,.24); border-radius: 50%; box-shadow: 0 0 0 65px rgba(236,211,157,.035), 0 0 0 130px rgba(255,255,255,.02); content: ""; }
.cta-band-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-band h2 { color: var(--white); font-size: clamp(2.4rem, 4vw, 4.1rem); }
.cta-band p { max-width: 780px; margin-top: 15px; color: rgba(255,255,255,.8); }
.cta-band-actions { display: flex; flex-direction: column; gap: 11px; min-width: 230px; }
.cta-band .btn-orange { color: var(--navy-950); background: #f1d99f; box-shadow: 0 12px 26px rgba(45,31,12,.22); }
.cta-band .btn-orange:hover { background: #f6e4b7; }

.site-footer { color: rgba(255,255,255,.68); border-top: 4px solid var(--red-600); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 60px; padding: 72px 0 50px; }
.site-footer .brand-name strong { color: var(--white); }
.site-footer .brand-name span { color: #e3c57e; }
.site-footer .brand-mark i:nth-child(1) { background: var(--red-500); }
.site-footer .brand-mark i:nth-child(2) { background: var(--gold-500); }
.site-footer .brand-mark i:nth-child(3) { background: var(--white); }
.footer-brand-col > p { max-width: 430px; margin: 25px 0 20px; font-size: .82rem; }
.footer-email { color: var(--white); font-size: .82rem; font-weight: 700; }
.footer-grid h3 { margin-bottom: 20px; color: #e5cd93; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li + li { margin-top: 10px; }
.footer-grid li a { font-size: .8rem; }
.footer-grid li a:hover { color: var(--white); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; gap: 50px; padding: 22px 0 32px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { font-size: .67rem; }
.footer-bottom p:last-child { text-align: right; }
.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 50%; opacity: 0; pointer-events: none; color: var(--white); background: var(--red-600); box-shadow: var(--shadow-sm); transform: translateY(10px); transition: .25s ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top svg { width: 20px; height: 20px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }

@media (max-width: 1100px) {
  .desktop-nav a { padding-inline: 7px; font-size: .75rem; }
  .desktop-nav a::after { left: 7px; right: 7px; }
  .hero-grid { gap: 42px; }
  .mission-board { width: 100%; }
  .service-ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .service-ribbon-grid > a:nth-child(2) { border-right: 0; }
  .service-ribbon-grid > a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-card-grid, .solution-grid, .service-matrix, .control-grid, .role-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid, .value-grid, .checklist-columns { grid-template-columns: repeat(2, 1fr); }
  .link-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .utility-bar { display: none; }
  .desktop-nav, .desktop-cta { display: none; }
  .site-header { background: var(--white); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    z-index: 1001;
    inset: var(--header-height) 0 0;
    display: block;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 22px 20px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    color: var(--navy-950);
    background: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 18px 40px rgba(7,21,34,.14);
    overscroll-behavior: contain;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu ul { margin: 0 0 22px; padding: 0; list-style: none; }
  .mobile-menu a:not(.btn) { display: block; padding: 15px 4px; border-bottom: 1px solid var(--line); color: var(--navy-950); font-weight: 750; }
  .hero-home { min-height: auto; background: linear-gradient(180deg, #fbf9f5 0%, #fbf9f5 58%, #eef2f4 58%, #eef2f4 100%); }
  .hero-home::before { inset: 58% 0 0; }
  .hero-grid, .page-hero-grid, .split-heading, .operating-model, .feature-band-grid, .trust-grid, .faq-layout, .editorial-grid, .two-column-feature, .detail-grid, .cargo-workflow, .contact-grid, .application-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; padding-block: 74px 95px; }
  .hero-visual { min-height: auto; }
  .mission-board { max-width: 650px; margin-inline: auto; }
  .page-hero { padding: 82px 0; background: var(--cream-100); }
  .page-hero::before { display: none; }
  .page-hero-grid { gap: 48px; }
  .page-hero-card { max-width: 650px; border-color: var(--line); }
  .split-heading, .feature-band-grid, .trust-grid, .two-column-feature, .editorial-grid, .detail-grid, .contact-grid, .application-grid { gap: 48px; }
  .model-copy, .faq-intro, .editorial-sticky, .detail-grid > div:first-child, .contact-info { position: static; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .fleet-art { height: 100%; min-height: 250px; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-layout aside { position: static; display: flex; flex-wrap: wrap; }
  .legal-layout aside strong { width: 100%; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: row; min-width: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .nav-shell { min-height: 68px; }
  .mobile-menu { top: 68px; }
  .brand-mark { width: 34px; }
  .brand-name strong { font-size: 1.15rem; }
  .brand-name span { font-size: .57rem; }
  .hero-grid { padding-block: 62px 82px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions, .button-row, .cta-band-actions, .form-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .button-row .btn, .cta-band-actions .btn, .form-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div + div { border-left: 0; border-top: 1px solid var(--line-warm); }
  .mission-board-head { padding: 18px; }
  .mission-map { height: 220px; }
  .route-node-origin { left: 28px; }
  .route-node-hub { left: 43%; }
  .route-node-destination { right: 16px; }
  .route-line-a { width: 145px; left: 64px; top: 142px; }
  .route-line-b { width: 132px; left: 50%; top: 95px; }
  .mission-aircraft { width: 135px; left: 35%; top: 94px; }
  .mission-services { grid-template-columns: 1fr; }
  .mission-services > div { min-height: auto; align-items: center; }
  .mission-board-foot { flex-direction: column; gap: 5px; }
  .service-ribbon { margin-top: -20px; }
  .service-ribbon-grid { grid-template-columns: 1fr; }
  .service-ribbon-grid > a { min-height: 91px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-ribbon-grid > a:last-child { border-bottom: 0; }
  .service-card-grid, .industry-grid, .value-grid, .solution-grid, .service-matrix, .control-grid, .role-grid, .checklist-columns, .link-card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 28px 24px; }
  .service-card .text-link { margin-top: 22px; }
  .card-icon { margin-bottom: 42px; }
  .capability-panel { grid-template-columns: 1fr; }
  .capability-panel > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12) !important; }
  .capability-panel > div:last-child { border-bottom: 0 !important; }
  .check-grid { grid-template-columns: 1fr; }
  .trust-visual, .feature-visual { min-height: 390px; }
  .trust-stat { right: 16px; bottom: 16px; }
  .page-hero { padding: 68px 0; }
  .page-hero h1 { font-size: clamp(2.65rem, 12vw, 4.1rem); }
  .page-hero-card > span { margin-bottom: 34px; }
  .fleet-card { display: block; }
  .fleet-art { min-height: 210px; }
  .detail-list article { grid-template-columns: 44px 1fr; gap: 14px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-route { grid-template-columns: auto 1fr auto; }
  .dashboard-route span:nth-of-type(2), .dashboard-route i:nth-of-type(2) { display: none; }
  .inquiry-form { padding: 24px 18px; border-radius: 18px; }
  .form-head { display: block; }
  .secure-note { margin-top: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .legal-section { padding-top: 55px; }
  .legal-layout aside { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
