:root {
  --ink: #1b2333;
  --ink-soft: #687383;
  --muted: #eef2f6;
  --muted-2: #f8fafc;
  --line: #dfe6ee;
  --navy: #17294d;
  --navy-2: #0d1831;
  --green: #1f6f5b;
  --green-2: #155848;
  --saffron: #d89231;
  --saffron-2: #b86f1f;
  --white: #ffffff;
  --danger: #9f2d20;
  --shadow:
    0 2px 4px rgba(15, 31, 56, 0.05),
    0 12px 32px -4px rgba(15, 31, 56, 0.13),
    0 32px 64px -16px rgba(15, 31, 56, 0.18);
  --shadow-soft:
    0 1px 2px rgba(15, 31, 56, 0.04),
    0 4px 14px -2px rgba(15, 31, 56, 0.08),
    0 14px 28px -10px rgba(15, 31, 56, 0.12);
  --shadow-cta:
    0 2px 4px rgba(216, 146, 49, 0.2),
    0 8px 20px -4px rgba(216, 146, 49, 0.4),
    0 20px 40px -8px rgba(216, 146, 49, 0.25);
  --shadow-glass:
    0 2px 4px rgba(15, 31, 56, 0.06),
    0 12px 32px -4px rgba(15, 31, 56, 0.16),
    0 32px 64px -16px rgba(15, 31, 56, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  --radius: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfe;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01", "kern";
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.top-strip {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.top-strip .wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip a {
  color: var(--white);
  font-weight: 700;
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
}

.brand span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.mobile-panel a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  padding: 10px 11px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-panel a:hover {
  color: var(--ink);
  background: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-width: max-content;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.language-switcher button {
  min-height: 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: auto;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 16px;
}

.mobile-panel.open {
  display: grid;
  gap: 6px;
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 7px;
  font-weight: 850;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--saffron);
  box-shadow: 0 10px 22px rgba(217, 130, 43, 0.24);
}

.btn-primary:hover {
  background: var(--saffron-2);
}

.btn-secondary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(31, 111, 91, 0.2);
}

.btn-secondary:hover {
  background: var(--green-2);
}

.btn-ghost {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: #b8c5ce;
  background: var(--muted-2);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-2);
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 34, 48, 0.94) 0%, rgba(20, 42, 58, 0.82) 43%, rgba(20, 42, 58, 0.26) 100%),
    linear-gradient(0deg, rgba(15, 34, 48, 0.78), rgba(15, 34, 48, 0.05) 42%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.68fr);
  gap: 40px;
  align-items: center;
  padding: 82px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: rgba(31, 111, 91, 0.1);
  border: 1px solid rgba(31, 111, 91, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 0;
}

.hero-actions,
.page-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 820px;
}

.proof-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  padding: 14px;
  border-radius: 8px;
}

.proof-item strong {
  display: block;
  font-size: 18px;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  margin-top: 3px;
}

.lead-panel,
.form-panel {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero .lead-panel {
  align-self: center;
}

.panel-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 5px;
  background: #fff3e7;
  color: var(--saffron-2);
  font-size: 12px;
  font-weight: 850;
}

.lead-panel h2,
.form-panel h2 {
  margin: 13px 0 8px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.14;
}

.lead-panel p,
.form-panel p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  display: grid;
  gap: 6px;
}

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

.field label,
.field span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd6dd;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  min-height: 44px;
  padding: 11px 12px;
  outline: none;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(217, 130, 43, 0.17);
}

.form-note {
  color: var(--ink-soft);
  font-size: 12px;
  margin: 10px 0 0;
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100% - 32px));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-glass);
  padding: 16px;
  transform: translateX(-50%);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}

.consent-banner strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}

.consent-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.consent-actions {
  display: flex;
  gap: 8px;
}

.main {
  background: var(--white);
}

.band {
  padding: 86px 0;
}

.band-tight {
  padding: 58px 0;
}

.band-muted {
  background: var(--muted-2);
}

.band-navy {
  background: var(--navy);
  color: var(--white);
}

.band-navy p,
.band-navy .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.45fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.section-head h2,
.narrow h2 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.12;
}

.section-head p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.narrow {
  max-width: 800px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card.pad {
  padding: 24px;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.2;
}

.card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.card-media {
  aspect-ratio: 4 / 3;
  background: var(--muted);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-weight: 900;
  margin-top: 18px;
}

.link-more:hover {
  color: var(--green-2);
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.plain-list li {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.plain-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.premium-trust {
  overflow: hidden;
  border-top: 1px solid rgba(223, 230, 238, 0.7);
  border-bottom: 1px solid rgba(223, 230, 238, 0.7);
  background: linear-gradient(180deg, #f8fafc 0%, #fbfcfe 100%);
}

.premium-trust .wrap {
  padding: 30px 0 18px;
}

.premium-trust-title {
  margin: 0;
  color: rgba(104, 115, 131, 0.78);
  text-align: center;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.marquee-mask {
  position: relative;
  overflow: hidden;
  padding: 0 0 30px;
}

.marquee-mask::before,
.marquee-mask::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 96px;
  height: 100%;
  pointer-events: none;
}

.marquee-mask::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc, rgba(248, 250, 252, 0));
}

.marquee-mask::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc, rgba(248, 250, 252, 0));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: premium-marquee 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  min-width: 140px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 230, 238, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(23, 41, 77, 0.36);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 850;
  transition: color 180ms ease;
}

.marquee-item:hover {
  color: rgba(23, 41, 77, 0.62);
}

.premium-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0b1530 0%, #142445 52%, #101d38 100%);
  color: var(--white);
}

.premium-final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 60px 60px;
}

.premium-final .split {
  position: relative;
  align-items: center;
  gap: 64px;
}

.premium-final h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 3rem);
  line-height: 1.06;
}

.premium-final p,
.premium-final li {
  color: rgba(255, 255, 255, 0.7);
}

.premium-final .form-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-final .form-panel h2 {
  color: var(--white);
}

.premium-final .field label,
.premium-final .field span {
  color: rgba(255, 255, 255, 0.54);
}

.premium-final .field input,
.premium-final .field select,
.premium-final .field textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.premium-final .field input:focus,
.premium-final .field select:focus,
.premium-final .field textarea:focus {
  border-color: var(--saffron);
  background: rgba(255, 255, 255, 0.1);
}

.premium-final .form-note {
  color: rgba(255, 255, 255, 0.52);
}

.premium-final .field option {
  color: var(--ink);
  background: var(--white);
}

.metric {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}

.metric span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: 34px;
  align-items: start;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 34, 48, 0.92), rgba(15, 34, 48, 0.72)),
    url("hero-fleet-v2.jpg") center / cover;
}

.page-hero .wrap {
  position: relative;
  padding: 86px 0 90px;
}

.route-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.route-table th,
.route-table td,
.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px;
  text-align: left;
  vertical-align: top;
}

.route-table th,
.data-table th {
  background: var(--muted-2);
  color: var(--ink);
  font-size: 13px;
}

.route-table tr:last-child td,
.data-table tr:last-child td {
  border-bottom: 0;
}

.quote-box {
  position: sticky;
  top: 102px;
}

.quote-result {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #eef8f4;
  border: 1px solid #c9e5da;
}

.quote-result.show {
  display: block;
}

.quote-result strong {
  display: block;
  color: var(--green-2);
  font-size: 26px;
  margin-bottom: 4px;
}

.dashboard {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dash-side {
  background: var(--navy-2);
  color: var(--white);
  padding: 20px;
}

.dash-side strong {
  display: block;
  margin-bottom: 18px;
}

.dash-tab {
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: 800;
}

.dash-tab.active,
.dash-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.dash-main {
  padding: 22px;
  background: var(--muted-2);
}

.dash-panel {
  display: none;
}

.dash-panel.active {
  display: block;
}

.mini-map {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(45deg, rgba(31, 111, 91, 0.14) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(31, 111, 91, 0.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(217, 130, 43, 0.11) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(217, 130, 43, 0.12) 75%);
  background-size: 62px 62px;
  background-position: 0 0, 0 31px, 31px -31px, -31px 0;
  position: relative;
  overflow: hidden;
}

.mini-map::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 10%;
  top: 56%;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 7px rgba(217, 130, 43, 0.2);
}

.pin-a {
  left: 17%;
  top: 54%;
}

.pin-b {
  left: 48%;
  top: 46%;
}

.pin-c {
  right: 18%;
  top: 37%;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.status {
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.status strong {
  display: block;
}

.status span {
  color: var(--ink-soft);
  font-size: 13px;
}

.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 10px;
}

.accordion summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.accordion p {
  color: var(--ink-soft);
  margin: 12px 0 0;
}

.download-panel {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #c9e5da;
  background: #eef8f4;
}

.download-panel.show {
  display: block;
}

.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer .brand strong,
.site-footer h3 {
  color: var(--white);
}

.site-footer .brand span,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer h3 {
  font-size: 14px;
  margin: 0 0 12px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(229, 158, 58, 0.32);
  border-radius: 999px;
  background: rgba(229, 158, 58, 0.12);
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.footer-credit::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--saffron);
  box-shadow: 0 0 0 4px rgba(229, 158, 58, 0.16);
}

.footer-credit strong {
  color: var(--white);
  letter-spacing: 0.01em;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: none;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 34px;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1,
  .page-hero h1 {
    font-size: 44px;
  }

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

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

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(1),
  .metric:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .quote-box {
    position: static;
  }

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

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .top-strip .wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
    gap: 4px;
  }

  .nav-row {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span {
    font-size: 11px;
  }

  .hero-grid {
    padding: 54px 0 66px;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(15, 34, 48, 0.96), rgba(15, 34, 48, 0.78));
  }

  h1,
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .proof-row,
  .grid-3,
  .grid-4,
  .grid-2,
  .form-grid,
  .metric-strip,
  .status-grid,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 58px 0;
  }

  .section-head h2,
  .narrow h2 {
    font-size: 30px;
  }

  .lead-panel,
  .form-panel {
    padding: 18px;
  }

  .route-table,
  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .dash-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .dash-side strong {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .dash-tab {
    margin-bottom: 0;
    padding: 10px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .floating-cta {
    display: block;
  }
}

@media print {
  .site-header,
  .site-footer,
  .floating-cta,
  .btn,
  .top-strip {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .band,
  .page-hero .wrap {
    padding: 20px 0;
  }
}

/* Premium design port from kts-premium.zip */
@keyframes premium-shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes premium-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.58; transform: scale(0.82); }
}

@keyframes premium-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.page-hero + .band.reveal {
  opacity: 1;
  transform: none;
}

.top-strip {
  display: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  border-color: rgba(223, 230, 238, 0.82);
  box-shadow: 0 2px 16px rgba(15, 31, 56, 0.07);
}

.nav-row {
  min-height: 68px;
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(23, 41, 77, 0.14);
  background: #ffffff url("kts-logo-mark-small.png") center / 116% no-repeat;
  box-shadow: 0 2px 8px rgba(23, 41, 77, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: transparent;
  font-size: 13px;
  letter-spacing: 0;
}

.brand strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand span span {
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 750;
  padding: 10px 8px;
  background: transparent;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: transparent;
}

.menu-toggle,
.mobile-panel a {
  border-radius: 12px;
}

.mobile-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn {
  min-height: 42px;
  border-radius: 12px;
  font-size: 13.5px;
  letter-spacing: 0;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #e4a340 0%, #d89231 48%, #bd7422 100%);
  box-shadow: var(--shadow-cta);
}

.btn-primary::after,
.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 500ms ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  background-position: 200% center;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e7a946 0%, #d18a2c 50%, #b56b1e 100%);
  box-shadow:
    0 4px 8px rgba(216, 146, 49, 0.22),
    0 12px 28px -4px rgba(216, 146, 49, 0.48),
    0 28px 48px -8px rgba(216, 146, 49, 0.28);
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #254276 0%, #17294d 100%);
  box-shadow: 0 8px 22px rgba(23, 41, 77, 0.22);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2e4b83 0%, #17294d 100%);
}

.btn-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(15, 31, 56, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(23, 41, 77, 0.36);
  background: rgba(248, 250, 252, 0.9);
}

.hero {
  min-height: 92vh;
  align-items: center;
}

.hero-media::after {
  background:
    linear-gradient(115deg, rgba(9, 17, 38, 0.96) 0%, rgba(15, 30, 58, 0.9) 39%, rgba(27, 44, 80, 0.64) 70%, rgba(27, 44, 80, 0.4) 100%),
    linear-gradient(to top, rgba(9, 17, 38, 0.84) 0%, transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 1fr);
  gap: 64px;
  padding: 80px 0 112px;
  z-index: 1;
}

.eyebrow {
  border-color: rgba(216, 146, 49, 0.22);
  background: linear-gradient(135deg, rgba(216, 146, 49, 0.12), rgba(216, 146, 49, 0.06));
  color: var(--saffron-2);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  animation: premium-pulse-dot 2s ease-in-out infinite;
}

.hero .eyebrow {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

h1,
.page-hero h1 {
  font-size: clamp(2.55rem, 6vw, 3.62rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-copy p,
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.proof-row {
  gap: 12px;
  margin-top: 34px;
}

.proof-item {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.proof-item strong {
  color: var(--white);
}

.proof-item span {
  color: rgba(255, 255, 255, 0.62);
}

.lead-panel,
.form-panel {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
}

.lead-panel {
  padding: 30px;
}

.panel-label {
  border: 1px solid rgba(216, 146, 49, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(216, 146, 49, 0.15), rgba(216, 146, 49, 0.08));
  color: var(--saffron-2);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-panel h2,
.form-panel h2 {
  color: var(--navy);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.field {
  position: relative;
}

.field label,
.field span {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  pointer-events: none;
  transition: top 180ms ease, transform 180ms ease, font-size 180ms ease, color 180ms ease, letter-spacing 180ms ease;
}

.field:focus-within label,
.field:focus-within span,
.field:has(input:not(:placeholder-shown)) label,
.field:has(textarea:not(:placeholder-shown)) label,
.field:has(select:valid) label,
.field:has(select:valid) span {
  top: 9px;
  transform: translateY(0);
  color: var(--saffron-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
  padding: 22px 16px 8px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: rgba(251, 252, 254, 0.92);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.field textarea {
  min-height: 126px;
  padding-top: 26px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3.5px rgba(216, 146, 49, 0.16), 0 2px 8px rgba(216, 146, 49, 0.1);
}

.band {
  padding: 96px 0;
}

.band-muted {
  background: linear-gradient(180deg, #f8fafc 0%, #fbfcfe 100%);
}

.band-navy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0b1530 0%, #142445 52%, #101d38 100%);
}

.band-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.85) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.85) 1px, transparent 1px);
  background-size: 60px 60px;
}

.band-navy > .wrap {
  position: relative;
}

.section-kicker {
  color: var(--saffron-2);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.section-head h2,
.narrow h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}

.band-navy .section-head h2,
.band-navy h2 {
  color: var(--white);
}

.card {
  border-radius: 22px;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  overflow: hidden;
}

.branded-photo::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 17, 38, 0) 0%, rgba(9, 17, 38, 0.68) 100%);
}

.photo-brand {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(13, 24, 49, 0.78);
  color: var(--white);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(9, 17, 38, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.photo-brand::before {
  content: "KTS";
  display: grid;
  place-items: center;
  width: 28px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  color: var(--navy-2);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.card-media img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card-media img {
  transform: scale(1.07);
}

.card-body,
.card.pad {
  padding: 28px;
}

.card h3,
.card h2 {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

.chip {
  border: 1px solid rgba(223, 230, 238, 0.8);
  background: rgba(248, 250, 252, 0.84);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
}

.link-more {
  color: var(--saffron-2);
  font-size: 13px;
  font-weight: 900;
}

.link-more:hover {
  color: var(--saffron);
}

.check-list li::before {
  background: linear-gradient(135deg, #e4a340, #bd7422);
}

.metric-strip {
  border-radius: 22px;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--line);
  gap: 1px;
}

.metric {
  background: var(--white);
}

.metric strong {
  color: transparent;
  background: linear-gradient(135deg, var(--navy) 0%, #415c92 50%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 40px;
  font-weight: 950;
}

.page-hero::before {
  background:
    linear-gradient(115deg, rgba(9, 17, 38, 0.96) 0%, rgba(15, 30, 58, 0.9) 45%, rgba(27, 44, 80, 0.58) 100%),
    url("hero-fleet-v2.jpg") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.page-hero .wrap {
  z-index: 1;
  padding: 96px 0;
}

.quote-result,
.download-panel {
  border-radius: 16px;
  border-color: rgba(31, 111, 91, 0.22);
  background: rgba(239, 249, 245, 0.9);
}

.dashboard {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.dash-side {
  background: linear-gradient(140deg, #0b1530 0%, #142445 100%);
}

.dash-tab {
  border-radius: 12px;
}

.dash-main {
  background: linear-gradient(180deg, #f8fafc, #fbfcfe);
}

.mini-map,
.status,
.accordion details {
  border-radius: 16px;
}

.site-footer {
  background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 100%);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer .brand strong,
.site-footer h3 {
  color: var(--navy);
}

.site-footer .brand span,
.site-footer p,
.footer-links a {
  color: var(--ink-soft);
}

.site-footer .brand-mark {
  color: transparent;
}

.footer-links a:hover {
  color: var(--navy);
}

.footer-bottom {
  border-top-color: var(--line);
}

.footer-credit {
  border-color: rgba(229, 158, 58, 0.36);
  background: linear-gradient(135deg, rgba(229, 158, 58, 0.16), rgba(35, 103, 89, 0.08));
  color: var(--ink-soft);
}

.footer-credit strong {
  color: var(--navy);
}

.floating-cta {
  box-shadow: var(--shadow-cta);
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .hero-grid {
    padding: 56px 0 72px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .lead-panel {
    padding: 22px;
  }

  .band {
    padding: 64px 0;
  }

  .card-body,
  .card.pad {
    padding: 22px;
  }

  .field label,
  .field span {
    font-size: 13px;
  }
}

/* Conversion redesign layer */
body {
  overflow-x: hidden;
}

.hero-copy,
.lead-panel,
.form-panel,
.card,
.split > *,
.hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.vehicle-showcase > *,
.fleet-grid > *,
.fit-grid > *,
.conversion-grid > * {
  min-width: 0;
}

h1,
h2,
h3,
p,
.btn,
.chip,
.proof-item,
.fit-item,
.conversion-grid span {
  overflow-wrap: break-word;
}

.hero-media img {
  object-position: center;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.conversion-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(223, 230, 238, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.conversion-grid div {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.conversion-grid div:last-child {
  border-right: 0;
}

.conversion-grid strong {
  color: #8f4f14;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.conversion-grid span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.vehicle-showcase,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fleet-card {
  min-height: 100%;
}

.fleet-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.fleet-card-wide .card-media {
  min-height: 100%;
  aspect-ratio: auto;
}

.vehicle-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  border: 1px solid rgba(216, 146, 49, 0.22);
  border-radius: 999px;
  background: rgba(216, 146, 49, 0.09);
  color: var(--saffron-2);
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fit-item {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.fit-item strong {
  color: var(--navy);
  line-height: 1.25;
}

.fit-item span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.field label,
.field span,
.field:focus-within label,
.field:focus-within span,
.field:has(input:not(:placeholder-shown)) label,
.field:has(textarea:not(:placeholder-shown)) label,
.field:has(select:valid) label,
.field:has(select:valid) span {
  position: static !important;
  left: auto !important;
  top: auto !important;
  z-index: auto !important;
  transform: none !important;
  display: block;
  color: var(--ink);
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: auto;
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
  padding: 13px 14px;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  padding-top: 14px;
}

.lead-panel .form-grid + .btn,
.form-panel .form-grid + .btn {
  margin-top: 18px;
}

.is-rtl {
  direction: rtl;
}

.is-rtl .brand,
.is-rtl .hero-actions,
.is-rtl .page-actions,
.is-rtl .section-actions,
.is-rtl .consent-actions,
.is-rtl .mobile-action-bar {
  direction: ltr;
}

.is-rtl .field select {
  padding-right: 14px;
  padding-left: 42px;
  background-position:
    22px 52%,
    16px 52%;
}

.premium-final .field label,
.premium-final .field span {
  color: rgba(255, 255, 255, 0.78) !important;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.mobile-panel a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(216, 146, 49, 0.34);
  outline-offset: 3px;
}

.mobile-action-bar {
  display: none;
}

.mobile-action-bar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #17294d, #0d1831);
  font-size: 13px;
  font-weight: 950;
}

.mobile-action-bar a:nth-child(2) {
  background: linear-gradient(135deg, #1f6f5b, #155848);
}

.mobile-action-bar a:nth-child(3) {
  background: linear-gradient(135deg, #e4a340, #bd7422);
}

.page-hero::before {
  background:
    linear-gradient(115deg, rgba(9, 17, 38, 0.96) 0%, rgba(15, 30, 58, 0.88) 45%, rgba(27, 44, 80, 0.52) 100%),
    url("hero-fleet-v2.jpg") center / cover;
}

@media (max-width: 1020px) {
  .vehicle-showcase,
  .fleet-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-card-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .fleet-card-wide .card-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 138px;
  }

  .site-header {
    position: sticky;
  }

  .wrap,
  .page-hero .wrap,
  .wrap.hero-grid {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .nav-row {
    min-height: 62px;
    gap: 8px;
  }

  .brand {
    gap: 9px;
    min-width: 0;
    max-width: calc(100% - 48px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 11px;
  }

  .brand strong {
    max-width: 230px;
    font-size: 14px;
    line-height: 1.12;
  }

  .brand span {
    max-width: 230px;
    font-size: 10px;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 50px 0 66px;
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 1.95rem;
    line-height: 1.09;
  }

  .page-hero .wrap {
    padding: 72px 0 54px;
  }

  .page-hero + .band {
    padding-top: 42px;
  }

  .page-hero p {
    width: min(100%, 330px);
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(9, 17, 38, 0.94) 0%, rgba(9, 17, 38, 0.82) 54%, rgba(9, 17, 38, 0.95) 100%);
  }

  .hero-actions,
  .page-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .page-actions .btn,
  .section-actions .btn,
  .lead-panel .btn,
  .form-panel .btn {
    width: 100%;
  }

  .language-switcher {
    order: 3;
    margin-left: auto;
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-assurance span {
    justify-content: center;
    width: 100%;
    min-height: 32px;
    font-size: 11px;
  }

  .conversion-strip {
    margin-top: 0;
    padding: 14px 0 0;
    background: #fbfcfe;
  }

  .conversion-grid,
  .vehicle-showcase,
  .fleet-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .conversion-grid div {
    min-height: auto;
    padding: 15px 17px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .conversion-grid div:last-child {
    border-bottom: 0;
  }

  .fleet-card-wide {
    grid-column: auto;
  }

  .lead-panel,
  .form-panel {
    border-radius: 18px;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    bottom: 84px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    border: 1px solid rgba(223, 230, 238, 0.76);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    padding: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
  }

  .mobile-action-bar a {
    min-width: 0;
    min-height: 46px;
    padding: 0 6px;
    font-size: 12px;
    white-space: nowrap;
  }

  .mobile-action-bar a:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 40px;
  }

  .hero-grid,
  .hero-copy,
  .lead-panel,
  .proof-row,
  .hero-actions,
  .hero-assurance {
    width: 100%;
    max-width: 100%;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    overflow: hidden;
  }

  .hero-copy h1,
  .hero-copy p {
    max-width: 100%;
  }

  .hero-copy h1 {
    width: min(100%, 346px);
    font-size: 1.76rem;
    line-height: 1.12;
  }

  .hero-copy p {
    width: min(100%, 342px);
    font-size: 15.5px;
  }

  .proof-row {
    grid-template-columns: 1fr !important;
  }

  .proof-row {
    display: none;
  }

  .wrap.hero-grid {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
  }

  .hero-copy p,
  .page-hero p {
    overflow-wrap: normal;
    word-break: normal;
  }

  .mobile-action-bar {
    left: 50%;
    right: auto;
    width: min(360px, calc(100vw - 24px));
    transform: translateX(-50%);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .mobile-action-bar a {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .floating-cta {
    display: none !important;
  }
}

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