/* =====================================================================
   Magnus Trans Inc. — Core Stylesheet
   Author: Custom build
   Sections: 1 Tokens · 2 Base · 3 Layout · 4 Buttons · 5 Header
             6 Hero · 7 Components · 8 Sections · 9 Forms · 10 Footer
             11 Animation · 12 Responsive
   ===================================================================== */

/* ------------------------------ 1. TOKENS ------------------------- */
:root {
  /* Brand */
  --ink:        #070D18;
  --ink-2:      #0E1728;
  --ink-3:      #17233A;
  --navy:       #101B2D;

  --accent:     #FF6B00;
  --accent-2:   #FFA53D;
  --accent-soft:#FFF3E8;

  --white:      #FFFFFF;
  --paper:      #F7F8FB;
  --paper-2:    #EFF2F7;

  --text:       #0F1729;
  --muted:      #616E85;
  --muted-2:    #8A94A6;
  --line:       #E3E8EF;
  --line-dark:  rgba(255, 255, 255, .10);

  /* Effects */
  --grad-accent: linear-gradient(135deg, #FF6B00 0%, #FFA53D 100%);
  --grad-dark:   linear-gradient(160deg, #070D18 0%, #101B2D 55%, #17233A 100%);

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow:    0 8px 24px -6px rgba(16, 24, 40, .10), 0 2px 6px rgba(16, 24, 40, .05);
  --shadow-lg: 0 28px 60px -18px rgba(7, 13, 24, .28);
  --shadow-accent: 0 14px 30px -10px rgba(255, 107, 0, .55);

  /* Geometry */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --container: 1220px;
  --gutter: 24px;

  --header-h: 84px;

  /* Type */
  --font-head: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------ 2. BASE --------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.15rem); }
h2 { font-size: clamp(2rem, 3.9vw, 3.05rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); }
h4 { font-size: 1.09rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ------------------------------ 3. LAYOUT ------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 860px; }

.section { padding: clamp(72px, 9vw, 118px) 0; }
.section--tight { padding: clamp(56px, 6vw, 80px) 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--grad-dark); color: #C9D2E0; }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Section heading block */
.head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .765rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--accent-2); }

.head p {
  font-size: 1.075rem;
  color: var(--muted);
  margin-top: 4px;
}
.section--dark .head p { color: #9FADC2; }

.lead { font-size: 1.14rem; color: var(--muted); }

/* ------------------------------ 4. BUTTONS ------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: -.01em;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn svg { width: 17px; height: 17px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -12px rgba(255,107,0,.62); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--text); transform: translateY(-3px); }

.btn--light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
}
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }

.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(0,0,0,.4); }

.btn--sm { padding: 11px 20px; font-size: .85rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--accent);
}
.tlink svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }

/* ------------------------------ 5. HEADER ------------------------- */
.topbar {
  background: var(--ink);
  color: #93A0B4;
  font-size: .84rem;
  border-bottom: 1px solid var(--line-dark);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar__list { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__list a,
.topbar__list span { display: inline-flex; align-items: center; gap: 8px; transition: color .25s; }
.topbar__list a:hover { color: #fff; }
.topbar__list svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.topbar__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
}
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.22);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,211,153,.22); }
  50%      { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -12px rgba(16,24,40,.16);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: var(--header-h);
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.logo__mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-accent);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-accent);
  flex: none;
}
.logo__mark svg { width: 24px; height: 24px; color: #fff; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.19rem;
  letter-spacing: -.035em;
  color: var(--ink);
}
.logo__sub {
  font-size: .625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

/* Menu */
.menu { display: flex; align-items: center; gap: 6px; }
.menu > li > a {
  display: block;
  position: relative;
  padding: 10px 15px;
  font-family: var(--font-head);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: color .25s;
}
.menu > li > a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.menu > li > a:hover { color: var(--accent); }
.menu > li > a:hover::after,
.menu > li > a.is-active::after { transform: scaleX(1); }
.menu > li > a.is-active { color: var(--accent); font-weight: 600; }

.nav__cta { display: flex; align-items: center; gap: 14px; flex: none; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-right: 4px;
}
.nav__phone-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  flex: none;
}
.nav__phone-ic svg { width: 17px; height: 17px; color: var(--accent); }
.nav__phone-txt { display: flex; flex-direction: column; line-height: 1.25; }
.nav__phone-txt small { font-size: .69rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.nav__phone-txt strong { font-family: var(--font-head); font-size: .95rem; color: var(--ink); }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background .2s;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), top .25s ease;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ------------------------------ 6. HERO --------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vw, 130px) 0 clamp(80px, 9vw, 120px);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(7,13,24,.94) 0%, rgba(7,13,24,.86) 42%, rgba(7,13,24,.42) 100%),
    radial-gradient(1000px 520px at 88% 12%, rgba(255,107,0,.28), transparent 62%);
}

.hero__inner { position: relative; max-width: 760px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  color: #E6EBF3;
  font-size: .84rem;
  margin-bottom: 26px;
}
.hero__badge b {
  background: var(--grad-accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.hero__badge span { padding-right: 12px; }

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  font-size: clamp(1.03rem, 1.5vw, 1.19rem);
  color: #B7C2D2;
  max-width: 570px;
  margin-bottom: 36px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 34px 0 0;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #D6DEEA;
  font-size: .93rem;
  font-weight: 500;
}
.hero__points svg { width: 19px; height: 19px; color: var(--accent-2); flex: none; }

/* Hero stat bar */
.statbar {
  position: relative;
  z-index: 3;
  margin-top: -66px;
}
.statbar__inner {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.statbar__item {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.statbar__item:last-child { border-right: 0; }
.statbar__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.statbar__num i {
  font-style: normal;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statbar__label {
  margin-top: 10px;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Page hero (inner pages) */
.phero {
  position: relative;
  padding: clamp(78px, 9vw, 128px) 0 clamp(64px, 7vw, 96px);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.phero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.phero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgba(7,13,24,.95) 10%, rgba(7,13,24,.74) 100%),
    radial-gradient(760px 400px at 82% 4%, rgba(255,107,0,.3), transparent 64%);
}
.phero h1 { color: #fff; margin-bottom: 16px; max-width: 15ch; }
.phero p { color: #AFBBCB; max-width: 620px; font-size: 1.075rem; }

.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: #8593A8;
  margin-bottom: 20px;
}
.crumb a { transition: color .25s; }
.crumb a:hover { color: var(--accent-2); }
.crumb span { color: #fff; }
.crumb svg { width: 13px; height: 13px; opacity: .6; }

/* ------------------------------ 7. COMPONENTS --------------------- */

/* Card — generic */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }

.card__ic {
  width: 60px; height: 60px;
  border-radius: 17px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .4s ease, transform .45s var(--ease);
}
.card__ic svg { width: 27px; height: 27px; color: var(--accent); transition: color .4s ease; }
.card:hover .card__ic { background: var(--grad-accent); transform: rotate(-6deg) scale(1.05); }
.card:hover .card__ic svg { color: #fff; }

.card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }

.card__list { margin-bottom: 20px; }
.card__list li {
  display: flex;
  gap: 10px;
  font-size: .91rem;
  color: var(--muted);
  padding: 5px 0;
}
.card__list svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 4px; }

.card__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-head);
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--paper-2);
  line-height: 1;
  letter-spacing: -.05em;
  transition: color .4s ease;
  pointer-events: none;
}
.card:hover .card__num { color: var(--accent-soft); }

/* Dark variant */
.card--dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.09);
  backdrop-filter: blur(6px);
}
.card--dark p { color: #94A2B8; }
.card--dark .card__ic { background: rgba(255,107,0,.14); }
.card--dark:hover { background: rgba(255,255,255,.07); }
.card--dark .card__num { color: rgba(255,255,255,.05); }

/* Media / split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 5.5vw, 76px);
  align-items: center;
}
.split--wide { grid-template-columns: 1.05fr .95fr; }

.media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.35;
  /* Fallback artwork shown if a photo fails to load */
  background:
    radial-gradient(420px 260px at 78% 18%, rgba(255,107,0,.32), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 12px, transparent 12px 26px),
    var(--grad-dark);
}
.media img { width: 100%; height: 100%; object-fit: cover; }

.media--offset::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,13,24,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.media__badge {
  position: absolute;
  z-index: 2;
  left: 26px; bottom: 26px;
  right: 26px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.media__badge-ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: var(--grad-accent);
  display: grid; place-items: center;
}
.media__badge-ic svg { width: 22px; height: 22px; color: #fff; }
.media__badge strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink); }
.media__badge span { font-size: .84rem; color: var(--muted); }

/* Floating accent card */
.floatcard {
  position: absolute;
  z-index: 3;
  right: -18px; top: 30px;
  background: var(--grad-accent);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-accent);
  text-align: center;
  min-width: 148px;
}
.floatcard b {
  display: block;
  font-family: var(--font-head);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.floatcard span { font-size: .82rem; opacity: .92; display: block; margin-top: 6px; }

/* Feature list with check icons */
.checks { display: grid; gap: 16px; margin: 28px 0; }
.checks li { display: flex; gap: 14px; align-items: flex-start; }
.checks__ic {
  width: 26px; height: 26px; flex: none;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  margin-top: 2px;
}
.checks__ic svg { width: 14px; height: 14px; color: var(--accent); }
.checks strong { display: block; font-family: var(--font-head); font-size: 1rem; margin-bottom: 2px; color: var(--text); }
.checks p { font-size: .93rem; color: var(--muted); margin: 0; }
.section--dark .checks strong { color: #fff; }
.section--dark .checks p { color: #94A2B8; }
.section--dark .checks__ic { background: rgba(255,107,0,.16); }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 26px; }
.step {
  position: relative;
  padding: 30px 28px 30px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.step:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.step__n {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: background .4s ease;
}
.step:hover .step__n { background: var(--grad-accent); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }

/* Fleet cards */
.fleet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.fleet-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(320px 200px at 74% 22%, rgba(255,107,0,.30), transparent 64%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 12px, transparent 12px 26px),
    var(--grad-dark);
}
.fleet-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.fleet-card:hover .fleet-card__img img { transform: scale(1.07); }
.fleet-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(7,13,24,.78);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
}
.fleet-card__body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.fleet-card__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.fleet-card__body p { font-size: .93rem; color: var(--muted); margin-bottom: 18px; }
.spec {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.spec div small {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-2);
  font-weight: 600;
}
.spec div strong { font-family: var(--font-head); font-size: .93rem; color: var(--text); }

/* Testimonials */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.quote:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.quote__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.quote__stars svg { width: 17px; height: 17px; color: #FFB020; }
.quote p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 26px;
}
.quote__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote__av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  display: grid; place-items: center;
  flex: none;
}
.quote__who strong { display: block; font-family: var(--font-head); font-size: .96rem; }
.quote__who span { font-size: .84rem; color: var(--muted); }

/* Logo strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  background: var(--white);
}
.strip__title {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-head);
}
.strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 68px);
  flex-wrap: wrap;
}
.strip__row div {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.02em;
  color: #A9B3C3;
  transition: color .3s ease, transform .3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strip__row div svg { width: 20px; height: 20px; }
.strip__row div:hover { color: var(--ink); transform: translateY(-2px); }

/* CTA band */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(46px, 6vw, 76px) clamp(28px, 5vw, 68px);
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 340px at 12% 0%, rgba(255,107,0,.34), transparent 60%),
    radial-gradient(620px 320px at 96% 106%, rgba(255,165,61,.22), transparent 62%);
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 34px;
  align-items: center;
}
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: #B4C0D0; margin: 0; max-width: 52ch; }

/* Accordion (FAQ) */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 24px 46px 24px 0;
  font-family: var(--font-head);
  font-size: 1.055rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
  transition: color .25s;
}
.acc__btn:hover { color: var(--accent); }
.acc__btn::before,
.acc__btn::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 15px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .4s var(--ease);
}
.acc__btn::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"]::after { transform: rotate(0deg); }
.acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.acc__panel > div { padding: 0 40px 26px 0; color: var(--muted); font-size: .97rem; }

/* Info tiles (contact) */
.itile {
  display: flex;
  gap: 18px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  height: 100%;
}
.itile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.itile__ic {
  width: 50px; height: 50px; flex: none;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid; place-items: center;
}
.itile__ic svg { width: 22px; height: 22px; color: var(--accent); }
.itile h4 { margin-bottom: 5px; font-size: 1.02rem; }
.itile p, .itile a { color: var(--muted); font-size: .95rem; margin: 0; display: block; }
.itile a:hover { color: var(--accent); }

/* Map */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  line-height: 0;
  background: var(--paper-2);
}
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.25); }

/* Coverage list */
.coverage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px; }
.coverage li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  font-size: .95rem;
  color: #C3CDDC;
}
.coverage svg { width: 16px; height: 16px; color: var(--accent-2); flex: none; }

/* Job listing */
.job {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.job:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.job h3 { font-size: 1.16rem; margin-bottom: 8px; }
.job__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.job__meta span {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.job__meta svg { width: 14px; height: 14px; color: var(--accent); }
.job p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Value / small stat card */
.vcard {
  padding: 30px 26px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vcard__ic {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: grid; place-items: center;
}
.vcard__ic svg { width: 25px; height: 25px; color: var(--accent); }
.vcard h3 { font-size: 1.08rem; margin-bottom: 8px; }
.vcard p { font-size: .92rem; color: var(--muted); margin: 0; }

/* Timeline */
.tl { position: relative; padding-left: 34px; }
.tl::before {
  content: "";
  position: absolute;
  left: 9px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255,107,0,.12));
  border-radius: 2px;
}
.tl__item { position: relative; padding-bottom: 34px; }
.tl__item:last-child { padding-bottom: 0; }
.tl__item::before {
  content: "";
  position: absolute;
  left: -34px; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,0,.12);
}
.tl__year {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--accent);
  text-transform: uppercase;
}
.tl h3 { font-size: 1.1rem; margin: 6px 0 6px; }
.tl p { font-size: .95rem; color: var(--muted); margin: 0; }

/* Long-form legal / article copy */
.prose { color: var(--muted); font-size: 1rem; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 46px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 30px 0 10px; }
.prose p { margin-bottom: 1.05em; }
.prose ul { margin: 0 0 1.4em; padding-left: 4px; }
.prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-accent);
}
.prose a { color: var(--accent); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--text); }
.prose__meta {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

/* Centered empty / 404 state */
.blank { text-align: center; padding: clamp(80px, 12vw, 150px) 0; }
.blank__code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.blank .btn-row { justify-content: center; margin-top: 30px; }

/* ------------------------------ 9. FORMS -------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.field label span { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 14px 16px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 138px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23616E85' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,0,.12);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .87rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--accent); }

.form-note {
  margin-top: 18px;
  font-size: .83rem;
  color: var(--muted-2);
  text-align: center;
}

/* ------------------------------ 10. FOOTER ------------------------ */
.footer {
  background: var(--ink);
  color: #94A2B8;
  padding-top: clamp(60px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 340px;
  background: radial-gradient(760px 300px at 8% 0%, rgba(255,107,0,.13), transparent 62%);
  pointer-events: none;
}
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 44px 34px;
  padding-bottom: 54px;
}
.footer .logo__name { color: #fff; }
.footer .logo__sub { color: var(--muted-2); }
.footer__about { margin: 22px 0 24px; font-size: .95rem; line-height: 1.75; max-width: 34ch; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.13);
  display: grid; place-items: center;
  transition: background .3s ease, border-color .3s, transform .3s var(--ease), color .3s;
}
.socials a svg { width: 17px; height: 17px; }
.socials a:hover { background: var(--grad-accent); border-color: transparent; color: #fff; transform: translateY(-3px); }

.footer h4 {
  color: #fff;
  font-size: .94rem;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.fmenu li { margin-bottom: 12px; }
.fmenu a { font-size: .94rem; transition: color .25s, padding-left .25s; display: inline-block; }
.fmenu a:hover { color: var(--accent-2); padding-left: 5px; }

.fcontact li {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
  font-size: .94rem;
  line-height: 1.6;
}
.fcontact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 4px; }
.fcontact a:hover { color: var(--accent-2); }
.fcontact strong { color: #fff; display: block; font-weight: 500; }

.footer__bar {
  position: relative;
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .87rem;
}
.footer__bar ul { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bar a:hover { color: var(--accent-2); }

/* Back to top */
.totop {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s var(--ease), visibility .35s;
  z-index: 90;
}
.totop.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { transform: translateY(-4px); }
.totop svg { width: 19px; height: 19px; }

/* ------------------------------ 11. ANIMATION --------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

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

/* ------------------------------ 12. RESPONSIVE -------------------- */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .coverage { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 74px; }

  .menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 26px) 26px 34px;
    box-shadow: -20px 0 60px rgba(7,13,24,.22);
    transform: translateX(100%);
    transition: transform .48s var(--ease);
    overflow-y: auto;
    z-index: 105;
  }
  .menu.is-open { transform: translateX(0); }
  .menu > li > a {
    padding: 15px 4px;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .menu > li > a::after { display: none; }
  .menu__mobile-cta { margin-top: 26px; display: block; }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7,13,24,.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s;
    z-index: 104;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .burger { display: grid; z-index: 106; }
  .nav__phone { display: none; }
  .nav__cta .btn { display: none; }

  .split, .split--wide { grid-template-columns: 1fr; }
  .split .media { order: -1; }
  .floatcard { right: 14px; top: 14px; padding: 16px 20px; min-width: 120px; }
  .floatcard b { font-size: 1.7rem; }

  .cta__grid { grid-template-columns: 1fr; }
  .statbar { margin-top: -48px; }
  .statbar__inner { grid-template-columns: repeat(2, 1fr); }
  .statbar__item:nth-child(2) { border-right: 0; }
  .statbar__item:nth-child(1),
  .statbar__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; }
  .topbar__list li:nth-child(3) { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }

  .grid-4 { grid-template-columns: 1fr; }
  .coverage { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bar { flex-direction: column; text-align: center; }

  .topbar__list { gap: 16px; font-size: .8rem; }
  .topbar__tag { display: none; }

  .hero__points { gap: 10px 18px; }
  .hero__points li { font-size: .88rem; }

  .statbar { margin-top: -36px; }
  .statbar__item { padding: 24px 14px; }

  .btn { padding: 14px 22px; font-size: .89rem; }
  .btn-row .btn { flex: 1 1 auto; }

  .card, .quote { padding: 28px 24px; }
  .media { aspect-ratio: 4 / 3.6; }
  .map-wrap iframe { height: 320px; }
}

@media (max-width: 420px) {
  .hero__badge { font-size: .78rem; }
  .logo__name { font-size: 1.06rem; }
  .logo__mark { width: 40px; height: 40px; }
}

/* ------------------------------ PRINT ----------------------------- */
@media print {
  .header, .topbar, .totop, .footer, .cta, .burger { display: none !important; }
  body { color: #000; }
  [data-reveal] { opacity: 1; transform: none; }
}
