:root {
  --ink: #111416;
  --carbon: #1d2224;
  --paper: #f6f7f3;
  --panel: #ffffff;
  --line: #d8dedb;
  --muted: #66706d;
  --gold: #c9961a;
  --cyan: #079aa5;
  --green: #2e9b5f;
  --red: #b73535;
  --steel: #283235;
  --mist: #eef3f1;
  --shadow: 0 20px 60px rgba(17, 20, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.spec-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  width: 100%;
  height: 76px;
  padding: 0 32px;
  color: #ffffff;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 247, 243, 0.95);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text span:last-child {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  opacity: 1;
}

.global-link {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 750;
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
  min-height: 78svh;
  padding: 128px 48px 64px;
  overflow: hidden;
  color: #ffffff;
}

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

.hero-media {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.06);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 13, 15, 0.86), rgba(10, 13, 15, 0.54) 48%, rgba(10, 13, 15, 0.22)),
    linear-gradient(0deg, rgba(10, 13, 15, 0.72), rgba(10, 13, 15, 0.04) 42%);
}

.hero-lines {
  z-index: 2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content,
.charge-panel {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4.4rem;
  line-height: 0.95;
  font-weight: 850;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #111416;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.button-dark {
  background: var(--ink);
  color: #ffffff;
}

.button-plain::after {
  display: none;
}

.charge-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(17, 20, 22, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.charge-panel strong {
  font-size: 1.35rem;
}

.charge-meter {
  height: 10px;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.charge-meter span {
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold));
}

.charge-panel dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}

.charge-panel dt {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 850;
}

.charge-panel dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.signal-strip div {
  padding: 24px 36px;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.signal-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 96px 48px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading h2,
.technology-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 850;
}

.section-heading p,
.technology-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 40px;
  max-width: 1180px;
}

.solution-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #101516 0%, #20292b 48%, #111416 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: #ffffff;
}

.platform-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.platform-heading {
  align-items: start;
  max-width: none;
  margin: 0 0 42px;
}

.platform-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.platform-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0f1415;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.platform-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.platform-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 21, 22, 0.08), rgba(16, 21, 22, 0.58)),
    linear-gradient(90deg, rgba(7, 154, 165, 0.18), transparent 58%);
  pointer-events: none;
}

.platform-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 118px;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}

.platform-readout {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 21, 22, 0.82);
  backdrop-filter: blur(16px);
}

.platform-readout div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.platform-readout div:last-child {
  border-right: 0;
}

.platform-readout strong {
  display: block;
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
}

.platform-readout span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.platform-stack {
  display: grid;
  gap: 14px;
}

.platform-card,
.service-grid article,
.tech-grid article,
.fleet-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.platform-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.platform-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(7, 154, 165, 0.18);
  color: #8ee5ec;
  font-weight: 850;
}

.platform-card h3,
.fleet-body h3,
.tech-grid h3,
.service-grid h3 {
  margin: 0;
  font-size: 1.22rem;
}

.platform-card p,
.fleet-body p,
.tech-grid p,
.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.platform-card p {
  color: rgba(255, 255, 255, 0.66);
}

.platform-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
}

.platform-flow div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.platform-flow div:last-child {
  border-right: 0;
}

.platform-flow span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.platform-flow strong {
  font-size: 1rem;
}

.fleet-section {
  background:
    linear-gradient(180deg, #f4f7f4 0%, #e8eeee 100%);
}

.fleet-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-self: end;
  justify-content: flex-end;
  gap: 2px;
  max-width: 640px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.fleet-tabs button {
  min-width: 94px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.fleet-tabs button.is-active {
  background: var(--ink);
  color: #ffffff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.fleet-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px rgba(17, 20, 22, 0.08);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fleet-card.is-hidden {
  display: none;
}

.fleet-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 154, 165, 0.32);
  box-shadow: 0 22px 52px rgba(17, 20, 22, 0.13);
}

.fleet-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(7, 154, 165, 0.1), rgba(201, 150, 26, 0.12)),
    #f8f9f7;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.035);
}

.fleet-image--photo {
  padding: 0;
  overflow: hidden;
}

.fleet-image--photo img {
  object-fit: cover;
  object-position: center;
}

.bus-crop {
  object-position: 35% 56%;
}

.minibus-crop {
  object-position: 76% 56%;
}

.car-crop {
  object-position: 54% 78%;
}

.twowheel-crop {
  object-position: 87% 74%;
}

.logistics-crop,
.lightvan-crop {
  object-position: center;
}

.fleet-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.fleet-body span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fleet-spec-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  width: 100%;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(17, 20, 22, 0.14);
  border-radius: 6px;
  background: #111416;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.fleet-spec-button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.fleet-spec-button:hover,
.fleet-spec-button:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
}

.spec-modal[hidden] {
  display: none;
}

.spec-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.spec-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 18, 0.72);
  backdrop-filter: blur(14px);
}

.spec-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.spec-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 20, 22, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.spec-close::before,
.spec-close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 12px;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.spec-close::before {
  transform: rotate(45deg);
}

.spec-close::after {
  transform: rotate(-45deg);
}

.spec-media {
  min-height: 560px;
  background: var(--carbon);
}

.spec-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.spec-content {
  display: grid;
  align-content: center;
  padding: 48px;
}

.spec-content h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.04;
}

.spec-content p {
  color: var(--muted);
  line-height: 1.7;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 0;
}

.spec-table div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f7;
}

.spec-table dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.spec-table dd {
  margin: 10px 0 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}

.spec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.technology-band {
  padding: 96px 48px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--carbon);
  background-size: 56px 56px;
  color: #ffffff;
}

.technology-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.technology-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tech-grid article {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.tech-index {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 6px;
  background: var(--cyan);
  color: #ffffff;
  font-weight: 850;
}

.tech-grid p {
  color: rgba(255, 255, 255, 0.64);
}

.kd-section {
  background:
    linear-gradient(90deg, rgba(7, 154, 165, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 20, 22, 0.04) 1px, transparent 1px),
    #f7f9f7;
  background-size: 64px 64px;
}

.kd-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.kd-heading {
  max-width: none;
}

.kd-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.kd-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kd-mode-card,
.kd-panel,
.redhare-panel,
.kd-footprint,
.kd-process-line {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(17, 20, 22, 0.08);
}

.kd-mode-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.kd-mode-card-featured {
  border-color: rgba(7, 154, 165, 0.42);
  background: linear-gradient(180deg, #ffffff, #eef8f7);
}

.kd-mode-card span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.kd-mode-card-featured span {
  background: var(--cyan);
}

.kd-mode-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.kd-mode-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.kd-mode-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.kd-mode-card li {
  position: relative;
  padding-left: 18px;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.45;
}

.kd-mode-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.kd-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(7, 154, 165, 0.16), rgba(201, 150, 26, 0.13)),
    #121719;
  color: #ffffff;
}

.kd-panel strong {
  display: block;
  font-size: 1.72rem;
  line-height: 1.08;
}

.kd-panel p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.kd-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.kd-panel dl div {
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.kd-panel dt {
  color: var(--gold);
  font-weight: 850;
}

.kd-panel dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.redhare-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(183, 53, 53, 0.1), rgba(7, 154, 165, 0.08)),
    #ffffff;
}

.redhare-logo-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 280px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(239, 243, 241, 0.96)),
    #ffffff;
  border: 1px solid #dce4e1;
}

.redhare-logo-card img {
  width: min(220px, 82%);
  max-height: 180px;
  object-fit: contain;
}

.redhare-logo-card strong {
  margin-top: 8px;
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.redhare-logo-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.redhare-copy {
  display: grid;
  align-content: center;
}

.redhare-copy h3 {
  max-width: 720px;
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.05;
}

.redhare-copy > p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.brand-split article {
  padding: 20px;
  border: 1px solid #dce4e1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.brand-split article:last-child {
  border-color: rgba(183, 53, 53, 0.28);
  background: linear-gradient(180deg, #ffffff, #fff3f3);
}

.brand-split span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 4px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.brand-split article:last-child span {
  background: var(--red);
}

.brand-split strong {
  display: block;
  margin-top: 14px;
  font-size: 1.08rem;
}

.brand-split p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.kd-footprint {
  margin-top: 20px;
  padding: 28px;
}

.kd-footprint-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.kd-footprint-heading h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.kd-footprint-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.kd-country-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid #dce4e1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 154, 165, 0.05), rgba(201, 150, 26, 0.05)),
    #ffffff;
}

.kd-country-card img {
  width: 86px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(17, 20, 22, 0.14);
  border-radius: 4px;
  background: #ffffff;
}

.kd-country-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  background: #edf5f2;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.kd-country-card h4 {
  margin: 12px 0 0;
  font-size: 1.28rem;
}

.kd-country-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.kd-process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  overflow: hidden;
}

.kd-process-line div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.kd-process-line div:last-child {
  border-right: 0;
}

.kd-process-line span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.kd-process-line strong {
  display: block;
  font-size: 1rem;
}

.kd-process-line p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article {
  padding: 24px;
}

.service-grid article:nth-child(2) {
  border-top: 4px solid var(--cyan);
}

.service-grid article:nth-child(3) {
  border-top: 4px solid var(--gold);
}

.service-grid article:nth-child(4) {
  border-top: 4px solid var(--green);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  padding: 96px 48px;
  background: var(--panel);
}

.contact-copy,
.contact-form {
  max-width: 580px;
}

.contact-copy {
  justify-self: end;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-points div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-points strong {
  color: var(--ink);
}

.contact-points span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9faf7;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd3d0;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.form-wide,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 48px;
  border-top: 1px solid var(--line);
  background: #101314;
  color: #ffffff;
}

.site-footer div:first-child {
  display: grid;
  gap: 6px;
}

.site-footer span,
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .charge-panel {
    max-width: 520px;
  }

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

  .technology-inner,
  .contact-section,
  .kd-layout,
  .solution-grid,
  .platform-layout,
  .spec-sheet,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .kd-process-line {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .kd-process-line div:nth-child(2) {
    border-right: 0;
  }

  .kd-process-line div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .platform-visual,
  .platform-visual img,
  .spec-media,
  .spec-media img {
    min-height: 420px;
  }

  .contact-copy {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    min-width: auto;
  }

  .global-link {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px 18px 26px;
    background: rgba(246, 247, 243, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 82svh;
    padding: 104px 22px 40px;
  }

  .hero h1,
  .section-heading h2,
  .technology-copy h2,
  .contact-copy h2 {
    font-size: 2.75rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

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

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section,
  .technology-band,
  .contact-section {
    padding: 72px 22px;
  }

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

  .platform-flow div:nth-child(2) {
    border-right: 0;
  }

  .platform-flow div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .spec-modal {
    padding: 14px;
  }

  .spec-sheet {
    width: calc(100vw - 28px);
    max-height: calc(100svh - 28px);
  }

  .spec-content {
    padding: 34px 24px 28px;
  }

  .spec-content h2 {
    font-size: 2.08rem;
  }

  .kd-footprint-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .kd-country-grid {
    grid-template-columns: 1fr;
  }

  .brand-split {
    grid-template-columns: 1fr;
  }

  .fleet-tabs {
    justify-self: start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .fleet-tabs button {
    min-width: 0;
  }

  .tech-grid,
  .kd-mode-grid,
  .kd-panel,
  .redhare-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .kd-panel dl {
    margin-top: 8px;
  }

  .redhare-logo-card {
    min-height: 220px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }
}

@media (max-width: 560px) {
  .brand-text span:first-child {
    font-size: 0.92rem;
  }

  .brand-text span:last-child {
    font-size: 0.72rem;
  }

  .hero h1,
  .section-heading h2,
  .technology-copy h2,
  .contact-copy h2 {
    font-size: 2.18rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .charge-panel {
    padding: 18px;
  }

  .charge-panel dl {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px;
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .solution-grid,
  .fleet-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .spec-list article {
    grid-template-columns: 1fr;
  }

  .platform-visual,
  .platform-visual img,
  .spec-media,
  .spec-media img {
    min-height: 280px;
  }

  .platform-visual figcaption {
    position: static;
    padding: 16px;
    background: rgba(16, 21, 22, 0.92);
  }

  .platform-readout {
    position: static;
    grid-template-columns: 1fr;
    margin: 0 16px 16px;
  }

  .platform-readout div,
  .platform-flow div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .platform-readout div:last-child,
  .platform-flow div:last-child {
    border-bottom: 0;
  }

  .platform-flow,
  .brand-split,
  .kd-country-grid,
  .kd-process-line,
  .spec-table {
    grid-template-columns: 1fr;
  }

  .redhare-panel {
    padding: 20px;
  }

  .redhare-copy h3 {
    font-size: 1.8rem;
  }

  .redhare-logo-card {
    min-height: 180px;
    padding: 20px;
  }

  .kd-footprint {
    padding: 20px;
  }

  .kd-country-card {
    grid-template-columns: 76px 1fr;
    padding: 16px;
  }

  .kd-country-card img {
    width: 76px;
    height: 52px;
  }

  .kd-process-line div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .kd-process-line div:last-child {
    border-bottom: 0;
  }

  .fleet-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .contact-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
