/* ═══════════════════════════════════════════════════════
   GUARD FORCE SECURITY — v3
   Cinematic dark-navy · Khand display · Supreme body
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* palette */
  --navy-950: #060D1B;
  --navy-900: #0B1F3A;   /* brand */
  --navy-850: #0D2342;
  --navy-800: #10294D;
  --navy-700: #16345F;
  --yellow:   #F5C400;
  --yellow-2: #D9AE00;
  --white:    #ffffff;
  --text:     #EDF2FA;
  --muted:    #8FA0BC;
  --muted-2:  #C3CFE2;
  --line:     rgba(160, 180, 214, 0.14);
  --line-y:   rgba(245, 196, 0, 0.28);

  /* type */
  --font-display: 'Khand', 'Arial Narrow', sans-serif;
  --font-body: 'Supreme', system-ui, sans-serif;

  /* layout */
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(72px, 10vw, 132px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--yellow); color: var(--navy-900); }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--yellow); color: var(--navy-900);
  padding: 10px 18px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── shared type ── */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

.kicker {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--yellow);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.kicker::before { content: ''; width: 34px; height: 1px; background: var(--yellow); opacity: 0.7; }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.h2 em { font-style: normal; color: var(--yellow); }

.lede { color: var(--muted); max-width: 560px; font-size: 1.02rem; }
.lede a { color: var(--yellow); text-decoration-color: rgba(245,196,0,0.4); }

.section { padding-block: var(--section-pad); position: relative; }
.section--flush { padding-block: 0; }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .kicker::before { display: none; }
.section-head--center .lede { margin-inline: auto; }

/* giant watermark */
.watermark {
  position: absolute; top: 8px; right: -0.06em;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.8; text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(160, 180, 214, 0.09);
  pointer-events: none; user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 30px 13px;
  text-decoration: none; cursor: pointer;
  border: none; border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn--solid {
  background: var(--yellow); color: var(--navy-900);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn--solid:hover { background: #ffd103; transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(245,196,0,0.45); }
.btn--solid:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255,255,255,0.02); color: var(--text);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn--ghost svg { transition: transform 0.3s var(--ease-out); }
.btn--ghost:hover svg { transform: translateX(4px); }

/* ── pulse dot ── */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow); display: inline-block;
  position: relative; flex-shrink: 0;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--yellow);
  animation: ping 1.9s var(--ease-out) infinite;
}
.pulse-dot--dark { background: var(--navy-900); }
.pulse-dot--dark::after { border-color: var(--navy-900); }
@keyframes ping { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

/* ═══ NAV ═══ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(6, 13, 27, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.nav--hidden { transform: translateY(-100%); }
.nav--solid { background: rgba(6, 13, 27, 0.95); }
.nav__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  height: 74px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo img { border-radius: 4px; }
.nav__wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; line-height: 1.02; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
  display: flex; flex-direction: column;
}
.nav__wordmark em { font-style: normal; color: var(--yellow); font-weight: 600; letter-spacing: 0.22em; font-size: 0.78em; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.nav__links > a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--muted-2); position: relative; padding: 4px 0;
  transition: color 0.2s;
}
.nav__links > a:not(.nav__quote):not(.nav__call)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--yellow);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links > a:not(.nav__quote):not(.nav__call):hover { color: var(--white); }
.nav__links > a:not(.nav__quote):not(.nav__call):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__quote {
  border: 1px solid rgba(255,255,255,0.3); border-radius: 2px;
  padding: 9px 16px 8px !important; color: var(--white) !important;
  transition: border-color 0.25s, color 0.25s !important;
}
.nav__quote:hover { border-color: var(--yellow); color: var(--yellow) !important; }
.nav__call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--navy-900) !important;
  font-weight: 700 !important; border-radius: 2px;
  padding: 10px 16px 9px !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.25s !important;
}
.nav__call:hover { background: #ffd103; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--white); transition: transform 0.3s var(--ease-out), opacity 0.2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 55%;
  animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--navy-950) 0%, rgba(6,13,27,0.25) 34%, rgba(6,13,27,0.55) 100%),
    linear-gradient(100deg, rgba(6,13,27,0.94) 22%, rgba(11,31,58,0.55) 58%, rgba(11,31,58,0.18) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.5;
  background-image:
    linear-gradient(rgba(160,180,214,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,180,214,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 45%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 45%, black 30%, transparent 75%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1320px; margin: 0 auto;
  padding: clamp(140px, 18vh, 200px) clamp(16px, 3vw, 32px) clamp(40px, 6vh, 72px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--line-y); border-radius: 2px;
  background: rgba(11,31,58,0.5);
  padding: 9px 16px 7px; margin-bottom: 26px;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.4rem, 11.5vw, 8.6rem);
  line-height: 0.92; letter-spacing: 0.01em;
  text-transform: uppercase; margin-bottom: 26px;
}
.hero__title em { font-style: normal; color: var(--yellow); }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; transform: translateY(110%); animation: heroLine 0.9s var(--ease-out) forwards; }
.hero__line:nth-child(2) > span { animation-delay: 0.12s; }
@keyframes heroLine { to { transform: translateY(0); } }
.hero__sub {
  max-width: 540px; color: var(--muted-2);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  margin-bottom: 34px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero__sub strong { color: var(--yellow); font-weight: 700; }
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}
.hero__meta {
  margin-top: 22px; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero__stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-y);
  background: rgba(6,13,27,0.72);
  backdrop-filter: blur(8px);
}
.hero__stat {
  padding: 26px clamp(16px, 3vw, 36px) 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.hero__stat:last-child { border-right: 0; }
.hero__stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1;
  color: var(--yellow);
}
.hero__stat-label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ═══ TICKER ═══ */
.ticker {
  background: var(--yellow); color: var(--navy-900);
  overflow: hidden; padding: 12px 0;
  border-block: 3px solid var(--navy-950);
  transform: rotate(-0.6deg) scale(1.01);
  position: relative; z-index: 3; margin-block: -6px 0;
}
.ticker__track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; letter-spacing: 0.22em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker__track i { font-style: normal; font-size: 0.6rem; opacity: 0.65; }
@keyframes ticker { to { transform: translateX(calc(-100% / 3)); } }

/* ═══ RESPONSE ═══ */
.response { background: var(--navy-950); overflow: hidden; }
.response__head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 64px); }
.response__body {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.response__copy p { color: var(--muted-2); margin-bottom: 18px; max-width: 46ch; }
.response__copy p:last-child { margin-bottom: 0; }

.race {
  display: flex; flex-direction: column; gap: 26px;
  background: linear-gradient(140deg, var(--navy-850), var(--navy-950) 80%);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 3.4vw, 40px);
}
.race__label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.race__row--gfs .race__label { color: var(--yellow); font-weight: 700; }
.race__label img { border-radius: 3px; }
.race__bar {
  height: 12px; border-radius: 999px;
  background: rgba(160,180,214,0.1);
  overflow: visible; position: relative;
}
.race__fill {
  display: block; height: 100%; width: 0; border-radius: 999px;
  position: relative;
}
.race__fill--slow { background: linear-gradient(90deg, rgba(143,160,188,0.35), rgba(143,160,188,0.6)); }
.race__fill--fast { background: linear-gradient(90deg, rgba(245,196,0,0.5), var(--yellow)); box-shadow: 0 0 18px rgba(245,196,0,0.35); }
.race.is-run .race__fill--slow { width: 38%; transition: width 3.2s cubic-bezier(0.3, 0, 0.7, 1); }
.race.is-run .race__fill--fast { width: 96%; transition: width 1.15s var(--ease-out) 0.1s; }
.race__car {
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-52%);
  font-style: normal; font-size: 1.15rem; line-height: 1;
  color: var(--white);
}
.race__fill--fast .race__car { color: var(--yellow); text-shadow: 0 0 10px rgba(245,196,0,0.8); }
.race__note { margin-top: 8px; font-size: 0.82rem; color: var(--muted); }
.race__note--gfs { color: var(--muted-2); }
.race__note--gfs::before { content: '✓ '; color: var(--yellow); font-weight: 700; }

.trustrow {
  list-style: none; margin-top: clamp(48px, 7vw, 80px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden;
}
.trustrow li {
  padding: 26px clamp(16px, 2.4vw, 32px) 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(13, 35, 66, 0.35);
  transition: background 0.3s;
}
.trustrow li:hover { background: rgba(13, 35, 66, 0.75); }
.trustrow li:last-child { border-right: 0; }
.trustrow strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; line-height: 1.05; color: var(--yellow);
}
.trustrow span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ═══ SERVICES ═══ */
.services { background: var(--navy-900); }
.services::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-y), transparent);
}
.services__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.svc {
  position: relative;
  background: linear-gradient(160deg, var(--navy-850), var(--navy-950) 90%);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 3.6vw, 44px);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s var(--ease-out);
}
.svc::before {
  content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent 70%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.svc:hover { transform: translateY(-6px); border-color: rgba(245,196,0,0.35); box-shadow: 0 24px 48px -20px rgba(0,0,0,0.6); }
.svc:hover::before { transform: scaleX(1); }
.svc__num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 3rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(160,180,214,0.22);
  transition: -webkit-text-stroke-color 0.3s;
}
.svc:hover .svc__num { -webkit-text-stroke-color: rgba(245,196,0,0.55); }
.svc__icon {
  width: 58px; height: 58px; margin-bottom: 24px;
  border: 1px solid var(--line-y); border-radius: 4px;
  background: rgba(245,196,0,0.07);
  color: var(--yellow);
  display: grid; place-items: center;
  transition: background 0.3s, transform 0.4s var(--ease-out);
}
.svc__icon svg { width: 30px; height: 30px; }
.svc:hover .svc__icon { background: rgba(245,196,0,0.14); transform: rotate(-4deg) scale(1.05); }
.svc h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; line-height: 1.1; letter-spacing: 0.03em;
  text-transform: uppercase; margin-bottom: 12px;
}
.svc p { color: var(--muted); font-size: 0.95rem; max-width: 52ch; }
.svc__points { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.svc__points li {
  font-size: 0.88rem; color: var(--muted-2);
  padding-left: 22px; position: relative;
}
.svc__points li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 10px; height: 2px; background: var(--yellow);
}
.svc__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--yellow); text-decoration: none;
}
.svc__link svg { transition: transform 0.3s var(--ease-out); }
.svc__link:hover svg { transform: translateX(5px); }

/* ═══ FLEET ═══ */
.fleet { background: var(--navy-950); }
.fleet__split {
  display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: 560px; align-items: stretch;
}
.fleet__media { position: relative; overflow: hidden; }
.fleet__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.82) saturate(0.92);
  transform: scale(1.04);
  transition: transform 1.1s var(--ease-out), filter 0.5s;
}
.fleet__media:hover img { transform: scale(1); filter: brightness(0.95) saturate(1); }
.fleet__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--navy-950));
}
.fleet__tag {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy-900); background: var(--yellow);
  padding: 7px 14px 5px; border-radius: 2px;
}
.fleet__text {
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 88px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.fleet__text > p { color: var(--muted-2); max-width: 50ch; }
.checklist { list-style: none; margin: 26px 0 34px; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.94rem; color: var(--muted-2);
}
.checklist li::before {
  content: '✓';
  min-width: 22px; height: 22px; margin-top: 2px;
  background: rgba(245,196,0,0.12); border: 1px solid var(--line-y);
  color: var(--yellow); border-radius: 3px;
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fleet__strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  border-block: 3px solid var(--navy-900);
}
.fleet__strip img {
  width: 100%; height: clamp(140px, 20vw, 240px); object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: filter 0.4s;
}
.fleet__strip img:hover { filter: brightness(0.95) saturate(1); }

/* ═══ COVERAGE ═══ */
.coverage { background: var(--navy-900); overflow: hidden; }
.coverage__grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.coverage__map {
  background: radial-gradient(circle at 50% 48%, var(--navy-850), var(--navy-950) 78%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(12px, 2vw, 24px);
  position: sticky; top: 96px;
}
.radar { width: 100%; height: auto; display: block; }
.radar__sweep { animation: sweep 6s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.radar__ping { animation: radarPing 2.4s var(--ease-out) infinite; transform-origin: center; transform-box: fill-box; }
.radar__ping--d1 { animation-delay: 0.6s; }
.radar__ping--d2 { animation-delay: 1.2s; }
@keyframes radarPing { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }
.radar__name {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.18em; fill: var(--muted-2);
}
.radar__name--hq { fill: var(--yellow); font-size: 17px; font-weight: 700; }
.radar__meta { font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.12em; fill: var(--muted); }
.coverage__mapnote {
  text-align: center; padding: 10px 0 6px;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.areas { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.area {
  background: rgba(6,13,27,0.55);
  border: 1px solid var(--line); border-left: 3px solid var(--yellow);
  border-radius: 4px;
  padding: 16px 22px 14px;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.area:hover { transform: translateX(6px); background: rgba(6,13,27,0.85); }
.area strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.area span { font-size: 0.84rem; color: var(--muted); }
.promise {
  margin-top: 26px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line-y); border-radius: 6px;
  padding: clamp(24px, 3vw, 36px);
}
.promise h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 18px;
}
.promise ol { list-style: none; counter-reset: promise; display: flex; flex-direction: column; gap: 18px; }
.promise ol li {
  counter-increment: promise;
  position: relative; padding-left: 56px;
  font-size: 0.87rem; color: var(--muted);
}
.promise ol li::before {
  content: '0' counter(promise);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; line-height: 1; color: var(--yellow);
}
.promise ol li strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 2px; }

/* ═══ GALLERY ═══ */
.gallery { background: var(--navy-950); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px; gap: 10px;
}
.g-item { position: relative; overflow: hidden; border-radius: 4px; margin: 0; }
.g-item--wide { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72) saturate(0.85);
  transform: scale(1.02);
  transition: transform 0.7s var(--ease-out), filter 0.4s;
}
.g-item:hover img { transform: scale(1.08); filter: brightness(0.95) saturate(1); }
.g-item figcaption {
  position: absolute; inset: auto 0 0;
  padding: 42px 16px 13px;
  background: linear-gradient(transparent, rgba(6,13,27,0.92));
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow);
  transform: translateY(8px); opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.g-item:hover figcaption, .g-item:focus-within figcaption { transform: translateY(0); opacity: 1; }

/* ═══ WHY ═══ */
.why { background: var(--navy-900); }
.why__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
.why__item { text-align: center; }
.why__icon {
  width: 66px; height: 66px; margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid var(--line-y);
  background: rgba(245,196,0,0.06);
  color: var(--yellow);
  display: grid; place-items: center;
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-out);
}
.why__icon svg { width: 30px; height: 30px; }
.why__item:hover .why__icon { background: var(--yellow); color: var(--navy-900); transform: translateY(-4px); }
.why__item h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.why__item p { font-size: 0.85rem; color: var(--muted); }

/* ═══ OFFICE ═══ */
.office { background: var(--navy-950); }
.office__grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.office__media { position: relative; margin: 0; border-radius: 6px; overflow: hidden; border: 1px solid var(--line-y); }
.office__media img { width: 100%; transition: transform 0.8s var(--ease-out); }
.office__media:hover img { transform: scale(1.03); }
.office__badge {
  position: absolute; left: 18px; bottom: 16px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--yellow); color: var(--navy-900);
  padding: 7px 14px 5px; border-radius: 2px;
}
.office__text > p { color: var(--muted-2); margin-bottom: 16px; max-width: 52ch; }
.office__card {
  margin-top: 10px; font-style: normal;
  background: rgba(13,35,66,0.5);
  border: 1px solid var(--line); border-left: 3px solid var(--yellow);
  border-radius: 4px;
  padding: 22px 26px; line-height: 1.8; font-size: 0.95rem;
}
.office__card strong {
  display: block; font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 6px;
}
.office__card a {
  color: var(--yellow); font-weight: 700; text-decoration: none;
  font-size: 1.15rem; font-family: var(--font-display); letter-spacing: 0.08em;
}

/* ═══ EMERGENCY ═══ */
.emergency {
  background: var(--yellow); color: var(--navy-900);
  padding-block: clamp(44px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.emergency::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(11,31,58,0.05) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.emergency__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; position: relative;
}
.kicker--dark { color: var(--navy-900); }
.kicker--dark::before { background: var(--navy-900); }
.emergency__copy h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1;
  text-transform: uppercase; margin-bottom: 6px;
}
.emergency__copy p { font-weight: 500; opacity: 0.85; max-width: 44ch; }
.emergency__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1;
  color: var(--navy-900); text-decoration: none;
  border: 2px solid var(--navy-900); border-radius: 4px;
  padding: 18px 34px 12px;
  display: inline-flex; align-items: center; gap: 16px;
  transition: background 0.25s, color 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.emergency__num:hover {
  background: var(--navy-900); color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -12px rgba(11,31,58,0.55);
}

/* ═══ FAQ ═══ */
.faq { background: var(--navy-950); }
.faq__grid {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.faq__head { position: sticky; top: 110px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: linear-gradient(160deg, var(--navy-850), var(--navy-950));
  border: 1px solid var(--line); border-radius: 5px;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: var(--line-y); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 24px 17px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.12rem; letter-spacing: 0.03em; line-height: 1.25;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--yellow); }
.faq__x { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__x::before, .faq__x::after {
  content: ''; position: absolute; background: var(--yellow);
  transition: transform 0.35s var(--ease-out);
}
.faq__x::before { inset: 7px 0; }
.faq__x::after { inset: 0 7px; }
.faq__item[open] .faq__x::after { transform: rotate(90deg) scaleY(0); }
.faq__a { padding: 0 24px; overflow: hidden; }
.faq__a p { color: var(--muted); font-size: 0.94rem; padding-bottom: 22px; max-width: 65ch; }

/* ═══ CONTACT ═══ */
.contact { background: var(--navy-900); }
.contact__grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
.contact__side { display: flex; flex-direction: column; gap: 14px; }
.c-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(6,13,27,0.55);
  border: 1px solid var(--line); border-left: 3px solid var(--yellow);
  border-radius: 4px; padding: 20px 24px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.c-card:hover { background: rgba(6,13,27,0.85); transform: translateX(4px); }
.c-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 4px; border: 1px solid var(--line-y);
  background: rgba(245,196,0,0.07); color: var(--yellow);
  display: grid; place-items: center;
}
.c-card strong {
  display: block; font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 3px;
}
.c-card a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: 0.06em; line-height: 1.1;
  color: var(--white); text-decoration: none;
}
.c-card a:hover { color: var(--yellow); }
.c-card__big { font-weight: 700; font-size: 1.05rem; color: var(--white); }
.c-card p { font-size: 0.84rem; color: var(--muted); margin-top: 2px; }
.contact__photo { margin: 4px 0 0; border-radius: 4px; overflow: hidden; }
.contact__photo img { width: 100%; height: 190px; object-fit: cover; filter: brightness(0.65) saturate(0.9); }

.quote-form {
  background: linear-gradient(155deg, var(--navy-850), var(--navy-950) 85%);
  border: 1px solid var(--line); border-radius: 8px;
  padding: clamp(24px, 3.4vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
}
.quote-form::before {
  content: ''; position: absolute; inset: 0 auto auto 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent 60%);
}
.qf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.qf__field label {
  display: block; margin-bottom: 7px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-2);
}
.qf__field input, .qf__field select, .qf__field textarea {
  width: 100%;
  background: rgba(6,13,27,0.6);
  border: 1px solid var(--line); border-radius: 3px;
  color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 13px 16px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.qf__field input::placeholder, .qf__field textarea::placeholder { color: rgba(143,160,188,0.55); }
.qf__field input:focus, .qf__field select:focus, .qf__field textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,0.14);
  background: rgba(6,13,27,0.85);
}
.qf__field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5C400' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.qf__field select option { background: var(--navy-900); }
.qf__field textarea { resize: vertical; min-height: 110px; }
.qf__submit { align-self: flex-start; }
.qf__submit.is-sent { background: #2f9e44; color: #fff; pointer-events: none; }
.qf__note { font-size: 0.84rem; color: var(--muted); }
.qf__note a { color: var(--yellow); }

/* ═══ FOOTER ═══ */
.footer { background: var(--navy-950); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 80px); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 60px);
}
.footer__brand p { margin-top: 16px; font-size: 0.88rem; color: var(--muted); max-width: 34ch; }
.footer__nap { margin-top: 18px; font-size: 0.86rem; color: var(--muted-2); line-height: 1.8; }
.footer__nap strong, .footer__col h3 {
  display: block; font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.footer__nap a { color: var(--yellow); font-weight: 700; text-decoration: none; }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h3 { margin-bottom: 8px; }
.footer__col > a {
  color: var(--muted); text-decoration: none; font-size: 0.88rem;
  width: fit-content; transition: color 0.2s, transform 0.25s var(--ease-out);
}
.footer__col > a:hover { color: var(--yellow); transform: translateX(3px); }
.footer__psa {
  font-size: 0.82rem; color: var(--muted); line-height: 1.7;
  background: rgba(245,196,0,0.05);
  border: 1px solid var(--line-y); border-radius: 4px;
  padding: 14px 18px;
}
.footer__psa strong { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; letter-spacing: 0.2em; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.78rem; color: var(--muted);
}
.footer__bottom a { color: var(--yellow); text-decoration: none; }

/* ═══ STICKY CALL BAR (mobile) ═══ */
.callbar {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: var(--yellow); color: var(--navy-900);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  align-items: center; justify-content: center; gap: 10px;
  padding: 15px 18px 13px;
  border-radius: 4px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.6), 0 0 0 1px rgba(11,31,58,0.2);
  transform: translateY(120%);
  transition: transform 0.45s var(--ease-out);
}
.callbar.is-visible { transform: translateY(0); }
.callbar__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--navy-900); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

/* ═══ REVEAL ═══ */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--d, 0s); }
html.js .reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; } }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1020px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-950);
    box-shadow: 0 40px 60px -20px rgba(0,0,0,0.7);
    border-bottom: 2px solid var(--yellow);
    padding: 10px 20px 22px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a { padding: 14px 4px; font-size: 0.95rem; border-bottom: 1px solid var(--line); }
  .nav__links > a::after { display: none; }
  .nav__quote { margin-top: 14px; text-align: center; border-color: var(--yellow) !important; color: var(--yellow) !important; }
  .nav__call { margin-top: 10px; justify-content: center; }
  .nav__burger { display: flex; }

  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat { border-bottom: 1px solid var(--line); }

  .response__body { grid-template-columns: 1fr; }
  .trustrow { grid-template-columns: 1fr 1fr; }
  .trustrow li:nth-child(2n) { border-right: 0; }
  .trustrow li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

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

  .fleet__split { grid-template-columns: 1fr; min-height: 0; }
  .fleet__media { min-height: 300px; }
  .fleet__media::after { background: linear-gradient(to top, var(--navy-950), transparent 55%); }

  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__map { position: static; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }

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

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

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

  .callbar { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 560px) {
  .hero__title { font-size: clamp(3.2rem, 17vw, 4.6rem); }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .why__item:last-child { grid-column: span 2; }
  .qf__row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-item--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .trustrow { grid-template-columns: 1fr 1fr; }
  .emergency__num { font-size: clamp(2rem, 11vw, 2.8rem); padding: 14px 22px 10px; width: 100%; justify-content: center; }
}
