:root {
  --bg: #edf2f8;
  --surface: #ffffff;
  --surface-muted: #f5f8fc;
  --surface-strong: #091321;
  --surface-deep: #10233c;
  --surface-accent: #0b63ce;
  --text: #111827;
  --text-soft: #5c6678;
  --text-invert: #f8fbff;
  --line: rgba(15, 23, 42, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #0b63ce;
  --accent-deep: #084f9f;
  --accent-soft: rgba(11, 99, 206, 0.08);
  --accent-gold: #d1a439;
  --success: #157a4c;
  --shadow-sm: 0 18px 42px rgba(13, 24, 41, 0.06);
  --shadow-md: 0 26px 64px rgba(13, 24, 41, 0.10);
  --shadow-lg: 0 42px 110px rgba(8, 19, 33, 0.18);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1240px, calc(100% - 3rem));
  --transition: 180ms ease;
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-system);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 99, 206, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #edf2f8 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-system);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

h3 {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.6rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: var(--surface-strong);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, #091321 0%, #10233c 100%);
}

.top-strip__inner,
.nav-shell,
.footer-shell,
.mobile-bar__inner {
  width: var(--container);
  margin: 0 auto;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(232, 240, 255, 0.86);
}

.top-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.top-strip__items a,
.top-strip__items span {
  white-space: nowrap;
}

.top-strip a {
  text-decoration: none;
}

.top-strip a:hover,
.top-strip a:focus-visible {
  color: #ffffff;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__mark {
  width: min(176px, 24vw);
}

.brand__copy {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.05rem;
  padding: 0.86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible,
button:hover,
button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
  transform: translateY(-1px);
}

.btn:disabled,
button:disabled,
input[type="submit"]:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.btn-primary,
input[type="submit"] {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #2480ec 100%);
  box-shadow: 0 12px 24px rgba(11, 99, 206, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
  background: var(--accent-deep);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(180deg, #0b1728 0%, #162840 100%);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(180deg, #13243a 0%, #1d3353 100%);
}

.btn-tertiary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 99, 206, 0.18);
}

.btn-tertiary:hover,
.btn-tertiary:focus-visible {
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero,
.section,
.footer-shell,
.page-hero,
.live-ticker {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 1.5rem;
  padding: 1.5rem 0 1rem;
}

.hero__panel,
.hero__signal,
.card,
.panel,
.step,
.coverage-map,
.coverage-card,
.faq-card,
.detail-card,
.review-card,
.footer-card,
.vehicle-card,
.trust-pillar {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.hero__panel {
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border: 0;
  background:
    radial-gradient(circle at top right, rgba(36, 128, 236, 0.22), transparent 24%),
    linear-gradient(135deg, #07111f 0%, #10233c 58%, #15355a 100%);
  box-shadow: var(--shadow-lg);
}

.hero__panel::before,
.page-hero__inner::before,
.card::before,
.panel::before,
.step::before,
.coverage-card::before,
.faq-card::before,
.cta-band::before {
  display: none;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: var(--accent-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.hero__panel .eyebrow,
.page-hero__inner .eyebrow,
.icon-kicker,
.service-note,
.vehicle-size {
  color: #8fbefc;
}

.lead {
  max-width: 58ch;
  font-size: 0.97rem;
  line-height: 1.68;
}

.hero__panel h1 {
  max-width: 12ch;
  color: #f8fbff;
  font-size: clamp(2.55rem, 4vw, 4.15rem);
  line-height: 0.98;
}

.hero__panel .lead {
  color: rgba(232, 240, 255, 0.86);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding-top: 0.45rem;
  border-top: 0;
}

.metric {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-top: 1px solid transparent;
}

.hero__stats .metric {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.metric strong {
  color: var(--text);
  font-family: var(--font-system);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.metric span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero__stats .metric strong {
  color: #f8fbff;
}

.hero__stats .metric span {
  color: rgba(232, 240, 255, 0.76);
}

.hero__signal {
  display: grid;
  gap: 1rem;
  padding: 0;
  background: transparent;
}

.brand-stage {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(11, 99, 206, 0.10);
  border-radius: calc(var(--radius) - 4px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  box-shadow: var(--shadow-md);
}

.brand-stage__logo {
  width: min(100%, 210px);
  margin-bottom: 0;
}

.ops-card,
.hero-console,
.ops-stack .metric,
.vehicle-card,
.trust-pillar {
  background: #ffffff;
}

.ops-stack .metric {
  padding: 1.1rem;
  border: 1px solid rgba(11, 99, 206, 0.10);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.ops-card,
.hero-console {
  padding: 1.05rem;
  border: 1px solid rgba(11, 99, 206, 0.10);
  border-radius: 22px;
  background: rgba(245, 248, 252, 0.92);
}

.ops-card h2 {
  max-width: 16ch;
  margin-bottom: 0.35rem;
}

.ops-stack,
.service-points,
.fleet-grid,
.trust-grid,
.sector-grid,
.cards-2,
.cards-3,
.cards-4,
.steps,
.form-grid,
.footer-grid,
.coverage-grid {
  display: grid;
  gap: 1rem;
}

.ops-stack,
.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.fleet-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.service-points {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.coverage-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.hero-console {
  display: grid;
  gap: 0.8rem;
}

.hero-console__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.hero-console__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-console__label {
  color: #123a6a;
  font-family: var(--font-system);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-console__value {
  max-width: 28ch;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: right;
}

.live-ticker {
  display: none;
}

.live-ticker__track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  min-width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  animation: tickerMove 26s linear infinite;
}

.live-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-ticker__item::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 3.6rem 0;
}

.section--spaced {
  padding: 4.5rem 0;
}

.section-header {
  display: grid;
  gap: 0.7rem;
  max-width: 60ch;
}

.section-header h2 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  line-height: 1.08;
}

.section-header p {
  max-width: 58ch;
  font-size: 0.97rem;
}

.card,
.panel,
.step,
.coverage-card,
.faq-card,
.detail-card,
.review-card,
.vehicle-card,
.trust-pillar {
  padding: 1.45rem;
}

.section > .section-header + .service-points,
.section > .section-header + .trust-grid,
.section > .section-header + .fleet-grid,
.section > .section-header + .sector-grid,
.section > .section-header + .cards-2,
.section > .section-header + .cards-3,
.section > .section-header + .cards-4,
.section > .section-header + .steps,
.section > .section-header + .split,
.section > .section-header + .cta-band {
  margin-top: 1.35rem;
}

.card:hover,
.panel:hover,
.coverage-card:hover,
.faq-card:hover,
.vehicle-card:hover,
.trust-pillar:hover {
  border-color: rgba(11, 99, 206, 0.20);
  box-shadow: var(--shadow-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.icon-kicker,
.service-note,
.vehicle-size {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.icon-kicker::before,
.service-note::before,
.vehicle-size::before {
  display: none;
}

.service-card,
.vehicle-card,
.sector-card,
.trust-pillar {
  min-height: 100%;
}

.card,
.panel,
.vehicle-card,
.trust-pillar,
.detail-card,
.review-card,
.faq-card,
.coverage-card {
  border-color: rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.service-card__top,
.vehicle-card__top,
.sector-card__top {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.vehicle-card h3,
.sector-card h3,
.trust-pillar strong {
  line-height: 1.12;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.section-link::after {
  content: ">";
  color: var(--accent);
  transition: transform var(--transition);
}

.section-link:hover::after,
.section-link:focus-visible::after {
  transform: translateX(3px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 1rem;
  align-items: start;
}

.panel,
.coverage-card,
.coverage-map {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.data-panel {
  display: grid;
  gap: 1rem;
}

.data-panel__row {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.data-panel__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.data-panel__row strong,
.trust-pillar strong {
  color: var(--text);
  font-family: var(--font-system);
  font-size: 0.98rem;
  font-weight: 600;
}

.checklist {
  display: grid;
  gap: 0.8rem;
}

.checklist div {
  padding: 1rem 1.05rem 1rem 1.15rem;
  border: 1px solid rgba(11, 99, 206, 0.10);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  color: var(--text);
  font-weight: 500;
}

.chip-row,
.trust-strip,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip,
.trust-pill,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.98rem;
  border: 1px solid rgba(11, 99, 206, 0.10);
  border-radius: 999px;
  background: rgba(245, 248, 252, 0.95);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__panel .trust-pill {
  color: rgba(248, 251, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
}

.coverage-map {
  min-height: 0;
  padding: 1.9rem;
  border-color: rgba(11, 99, 206, 0.10);
  background:
    radial-gradient(circle at top right, rgba(36, 128, 236, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: var(--shadow-md);
}

.coverage-map::after {
  display: none;
}

.coverage-map h3,
.coverage-map p,
.coverage-map .tag {
  position: relative;
  z-index: 1;
}

.coverage-map h3,
.coverage-map p {
  color: var(--text);
}

.coverage-map .tag {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.coverage-card .sector-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coverage-grid {
  align-items: start;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-system);
  font-weight: 600;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(36, 128, 236, 0.24), transparent 24%),
    linear-gradient(135deg, #091321 0%, #11263f 100%);
  box-shadow: var(--shadow-lg);
}

.cta-band h2,
.cta-band h3,
.cta-band p {
  color: var(--text-invert);
}

.cta-band .eyebrow {
  color: #bcd4ff;
}

.cta-band .eyebrow::before {
  background: #7dacff;
}

form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
}

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

label,
.field span {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(14, 99, 255, 0.16);
  outline-offset: 2px;
}

.small,
.form-note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.form-feedback {
  display: none;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(21, 122, 76, 0.18);
  border-radius: 14px;
  background: rgba(21, 122, 76, 0.08);
  color: var(--success);
  font-weight: 700;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-error {
  border-color: rgba(185, 28, 28, 0.18);
  background: rgba(185, 28, 28, 0.08);
  color: #b91c1c;
}

details {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

details p {
  margin-top: 0.8rem;
}

.page-hero {
  padding: 0.9rem 0 0.5rem;
}

.page-hero__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.35rem, 2.3vw, 1.95rem);
  border: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(36, 128, 236, 0.20), transparent 24%),
    linear-gradient(135deg, #091321 0%, #10233c 100%);
  box-shadow: var(--shadow-lg);
}

.page-hero__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.16;
}

.page-hero__inner > * {
  position: relative;
  z-index: 1;
}

.page-hero__inner h1 {
  max-width: 13ch;
  color: #f8fbff;
  font-size: clamp(1.8rem, 2.45vw, 2.7rem);
  line-height: 1.05;
}

.page-hero__inner .lead {
  max-width: 54ch;
  font-size: 0.98rem;
  color: rgba(232, 240, 255, 0.82);
}

.page-hero__inner .eyebrow {
  color: #8fbefc;
}

.hero__panel h1,
.page-hero__inner h1,
.section-header h2,
.card h3,
.panel h2,
.cta-band h2,
.cta-band h3 {
  text-wrap: balance;
}

.trust-meta {
  display: grid;
  gap: 0.65rem;
}

.trust-meta span {
  color: var(--text-soft);
  line-height: 1.6;
}

.footer {
  margin-top: 2rem;
  padding: 2.4rem 0 6.3rem;
  background: linear-gradient(180deg, #091321 0%, #10233c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell {
  display: grid;
  gap: 1rem;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

.footer-card {
  padding: 1.15rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
}

.footer-card h2,
.footer-card h3,
.footer-card p,
.footer-card span,
.legal-note {
  color: rgba(232, 240, 255, 0.76);
}

.footer-card h2,
.footer-card h3 {
  color: #f8fbff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-card a {
  color: #f8fbff;
  text-decoration: none;
}

.footer-card a:hover,
.footer-card a:focus-visible {
  color: var(--accent);
}

.footer-list {
  display: grid;
  gap: 0.65rem;
}

.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  display: none;
  background: rgba(9, 19, 33, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.mobile-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem 0 1rem;
}

.mobile-bar .btn {
  width: 100%;
  min-height: 3rem;
  padding-inline: 0.4rem;
}

.fade-up {
  animation: fadeUp 720ms ease both;
}

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1160px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-shell nav {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .split,
  .coverage-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-points,
  .trust-grid,
  .fleet-grid,
  .sector-grid,
  .cards-4,
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1.5rem;
    right: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 1.25rem, 100%);
  }

  .top-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-strip__items {
    gap: 0.6rem 1rem;
  }

  .brand__mark {
    width: min(155px, 52vw);
  }

  .top-strip__inner {
    font-size: 0.69rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .cards-2,
  .service-points,
  .trust-grid,
  .fleet-grid,
  .sector-grid,
  .ops-stack,
  .form-grid,
  .hero__stats,
  .coverage-card .sector-grid {
    grid-template-columns: 1fr;
  }

  .hero-console__row {
    flex-direction: column;
  }

  .hero-console__value {
    max-width: none;
    text-align: left;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .mobile-bar {
    display: block;
  }

  .footer {
    padding-bottom: 7.5rem;
  }

  .hero__panel h1,
  .page-hero__inner h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
