:root {
  --home-ink: #0d1b2f;
  --home-muted: #56667b;
  --home-blue: #245cff;
  --home-blue-dark: #1747ce;
  --home-green: #15a46d;
  --home-line: #d8e1ec;
  --home-soft: #f3f6fa;
  --home-soft-blue: #edf3ff;
  --home-navy: #0d1d33;
  --home-white: #ffffff;
  --home-shadow: 0 18px 48px rgba(13, 29, 51, 0.1);
}

html {
  scroll-behavior: smooth;
}

body.home-control-centre {
  margin: 0;
  background: var(--home-white);
  color: var(--home-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.home-menu-open {
  overflow: hidden;
}

.home-control-centre *,
.home-control-centre *::before,
.home-control-centre *::after {
  box-sizing: border-box;
}

.home-control-centre a {
  color: inherit;
  text-decoration: none;
}

.home-control-centre img,
.home-control-centre svg {
  max-width: 100%;
}

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

.home-control-centre .flash {
  width: min(100% - 48px, 1240px);
  margin: 18px auto;
  padding: 14px 16px;
  border: 1px solid #efb1b1;
  border-radius: 5px;
  background: #fff1f1;
  color: #8c1d1d;
}

.home-control-centre .flash-success {
  border-color: #a9dfc8;
  background: #effaf5;
  color: #11643f;
}

.home-shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.home-skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--home-white);
  color: var(--home-ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.home-skip-link:focus {
  transform: translateY(0);
}

.home-header {
  position: sticky;
  z-index: 1200;
  top: 0;
  min-height: 76px;
  border-bottom: 1px solid rgba(216, 225, 236, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.home-header__inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.home-header__brand {
  display: inline-flex;
  align-items: center;
  width: 192px;
}

.home-header__brand img {
  display: block;
  width: 192px;
  height: auto;
}

.home-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.home-desktop-nav > a,
.home-nav-menu > summary,
.home-sign-in > summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  color: #35445a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.home-desktop-nav > a:hover,
.home-nav-menu > summary:hover,
.home-sign-in > summary:hover {
  color: var(--home-blue);
}

.home-nav-menu,
.home-sign-in {
  position: relative;
}

.home-nav-menu > summary,
.home-sign-in > summary {
  list-style: none;
}

.home-nav-menu > summary::-webkit-details-marker,
.home-sign-in > summary::-webkit-details-marker {
  display: none;
}

.home-nav-menu > summary span,
.home-sign-in > summary span {
  position: relative;
  top: -2px;
  font-size: 12px;
}

.home-nav-menu__panel,
.home-sign-in__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 520px;
  padding: 12px;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  background: var(--home-white);
  box-shadow: var(--home-shadow);
  transform: translateX(-50%);
}

.home-nav-menu__panel--compact {
  grid-template-columns: 1fr;
  width: 330px;
}

.home-nav-menu__panel a,
.home-sign-in__panel a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px;
  border-radius: 4px;
  text-decoration: none;
}

.home-nav-menu__panel a:hover,
.home-sign-in__panel a:hover {
  background: var(--home-soft);
}

.home-nav-menu__panel strong,
.home-sign-in__panel strong {
  color: var(--home-ink);
  font-size: 14px;
}

.home-nav-menu__panel span,
.home-sign-in__panel span {
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.45;
}

.home-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.home-sign-in__panel {
  right: 0;
  left: auto;
  grid-template-columns: 1fr;
  width: 300px;
  transform: none;
}

.home-icon-button,
.home-menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--home-line);
  border-radius: 5px;
  background: var(--home-white);
  color: var(--home-ink);
  cursor: pointer;
}

.home-icon-button svg,
.home-menu-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-icon-button > span {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid var(--home-white);
  border-radius: 50%;
  background: var(--home-blue);
  color: var(--home-white);
  font-size: 10px;
  font-weight: 800;
}

.home-menu-button {
  display: none;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--home-blue);
  border-radius: 5px;
  background: var(--home-blue);
  color: var(--home-white) !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-button:hover {
  border-color: var(--home-blue-dark);
  background: var(--home-blue-dark);
  transform: translateY(-1px);
}

.home-button--small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 14px;
}

.home-button--secondary {
  border-color: #b8c6d8;
  background: var(--home-white);
  color: var(--home-ink) !important;
}

.home-button--secondary:hover {
  border-color: var(--home-blue);
  background: var(--home-soft-blue);
  color: var(--home-blue-dark) !important;
}

.home-button--light {
  border-color: var(--home-white);
  background: var(--home-white);
  color: var(--home-navy) !important;
}

.home-button--light:hover {
  border-color: #dbe7ff;
  background: #dbe7ff;
}

.home-button--outline-light {
  border-color: #8fa5c1;
  background: transparent;
  color: var(--home-white) !important;
}

.home-button--outline-light:hover {
  border-color: var(--home-white);
  background: rgba(255, 255, 255, 0.08);
}

.home-button--wide {
  width: 100%;
}

.home-menu-backdrop,
.home-mobile-menu {
  display: none;
}

.home-cc {
  display: block;
  color: var(--home-ink);
}

.home-cc h1,
.home-cc h2,
.home-cc h3,
.home-footer h2 {
  margin: 0;
  color: var(--home-ink) !important;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.home-cc p {
  margin: 0;
}

.home-kicker {
  margin-bottom: 16px !important;
  color: var(--home-blue) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero-cc {
  position: relative;
  overflow: hidden;
  padding: 70px 0 54px;
  border-bottom: 1px solid var(--home-line);
  background: var(--home-white);
}

.home-hero-cc::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 6px;
  background: var(--home-green);
  content: "";
}

.home-hero-cc__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(510px, 1.07fr);
  align-items: center;
  gap: 72px;
}

.home-hero-cc__copy h1 {
  max-width: 670px;
  font-size: 58px;
  line-height: 1.04;
}

.home-lead {
  max-width: 650px;
  margin-top: 24px !important;
  color: var(--home-muted) !important;
  font-size: 19px;
  line-height: 1.65;
}

.home-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-hero-cc__note {
  margin-top: 18px !important;
  color: #68778b !important;
  font-size: 13px;
  line-height: 1.6;
}

.home-command {
  overflow: hidden;
  border: 1px solid #273a52;
  border-radius: 7px;
  background: var(--home-navy);
  box-shadow: 0 26px 64px rgba(13, 29, 51, 0.22);
  color: var(--home-white);
}

.home-command__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid #2a3b53;
}

.home-command__bar > div {
  display: grid;
  gap: 3px;
}

.home-command__eyebrow {
  color: #8ea2bd;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-command__bar strong {
  font-size: 16px;
}

.home-command__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bcecd8;
  font-size: 12px;
  font-weight: 700;
}

.home-command__live i,
.home-command__status > i,
.home-interface__rows i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
}

.home-command__body {
  display: grid;
  grid-template-columns: 1fr 160px;
  min-height: 330px;
}

.home-command__map,
.home-interface__map {
  position: relative;
  overflow: hidden;
  background: #dce7df url('../img/fleetalyse-operations-map-final.webp') center / cover no-repeat;
}

.home-command__map::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 28, 49, 0.24), rgba(10, 28, 49, 0.52));
  content: "";
}

.home-map-marker {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(8, 24, 43, 0.9);
  box-shadow: 0 8px 18px rgba(4, 15, 28, 0.28);
  color: #fff;
  font-size: 9px;
  line-height: 1;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.home-map-marker > i {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 0 3px rgba(21, 164, 109, 0.28);
}

.home-map-marker b {
  font-size: inherit;
  font-weight: 800;
}

.home-map-marker--one {
  top: 38%;
  left: 30%;
}

.home-map-marker--two {
  top: 56%;
  left: 64%;
}

.home-map-marker--two > i {
  background: #f6b83f;
  box-shadow: 0 0 0 3px rgba(246, 184, 63, 0.3);
}

.home-map-marker--three {
  top: 75%;
  left: 78%;
}

.home-map-marker--three > i {
  background: #8193a9;
  box-shadow: 0 0 0 3px rgba(129, 147, 169, 0.3);
}

.home-map-credit {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 7px;
  padding: 3px 5px;
  border-radius: 2px;
  background: rgba(8, 24, 43, 0.82);
  color: #dce8f7;
  font-size: 8px;
  line-height: 1.2;
}

.home-command__rail {
  border-left: 1px solid #2a3b53;
  background: #102138;
}

.home-command__status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 14px;
  border-bottom: 1px solid #2a3b53;
}

.home-command__status > i.is-stopped,
.home-interface__rows i.is-stopped {
  background: #f6b83f;
}

.home-command__status > i.is-idle,
.home-interface__rows i.is-idle {
  background: #8193a9;
}

.home-command__status span {
  display: grid;
  gap: 3px;
}

.home-command__status strong {
  font-size: 12px;
}

.home-command__status small {
  color: #92a6bf;
  font-size: 10px;
}

.home-command__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #2a3b53;
}

.home-command__footer span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 50px;
  border-right: 1px solid #2a3b53;
  color: #b8c6d8;
  font-size: 10px;
  font-weight: 700;
}

.home-command__footer span:last-child {
  border-right: 0;
}

.home-command__footer svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--home-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-trust {
  border-bottom: 1px solid var(--home-line);
  background: var(--home-soft);
}

.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-trust__grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 18px 24px;
  border-right: 1px solid var(--home-line);
}

.home-trust__grid > div:first-child {
  border-left: 1px solid var(--home-line);
}

.home-trust svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--home-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-trust span {
  display: grid;
  gap: 3px;
}

.home-trust strong {
  font-size: 13px;
}

.home-trust small {
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.4;
}

.home-section {
  padding: 104px 0;
  background: var(--home-white);
}

.home-heading {
  max-width: 660px;
}

.home-heading h2 {
  font-size: 42px;
  line-height: 1.12;
}

.home-heading > p:not(.home-kicker),
.home-heading--split > p,
.home-heading--center > p:not(.home-kicker) {
  margin-top: 20px;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  max-width: none;
  gap: 80px;
  margin-bottom: 48px;
}

.home-heading--split > div {
  max-width: 700px;
}

.home-heading--split > p {
  margin: 0;
}

.home-heading--center {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-blue) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.home-text-link i {
  font-style: normal;
  transition: transform 160ms ease;
}

.home-text-link:hover i {
  transform: translateX(3px);
}

.home-start {
  padding-bottom: 96px;
}

.home-start__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-start__route {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 330px;
  gap: 26px;
  padding: 32px;
  border-right: 1px solid var(--home-line);
  background: var(--home-white);
  text-decoration: none;
  transition: background 160ms ease;
}

.home-start__route:first-child {
  border-left: 1px solid var(--home-line);
}

.home-start__route:hover {
  background: var(--home-soft);
}

.home-route-number {
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 800;
}

.home-start__route h3 {
  font-size: 24px;
  line-height: 1.25;
}

.home-start__route p {
  margin-top: 14px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.65;
}

.home-operations {
  border-top: 1px solid #21344e;
  border-bottom: 1px solid #21344e;
  background: var(--home-navy);
}

.home-operations .home-kicker {
  color: #7ca4ff !important;
}

.home-operations .home-heading h2 {
  color: var(--home-white) !important;
}

.home-operations .home-heading p:not(.home-kicker) {
  color: #aebed2 !important;
}

.home-operations .home-text-link {
  color: #93b4ff !important;
}

.home-tabs__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #31465f;
  border-radius: 6px 6px 0 0;
  background: #12243b;
}

.home-tabs__list button {
  min-height: 58px;
  padding: 14px;
  border: 0;
  border-right: 1px solid #31465f;
  background: transparent;
  color: #aebed2;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.home-tabs__list button:last-child {
  border-right: 0;
}

.home-tabs__list button[aria-selected="true"] {
  background: var(--home-white);
  color: var(--home-ink);
}

.home-tabs__panels {
  border: 1px solid #31465f;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: #102138;
}

.home-operation-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: 64px;
  min-height: 520px;
  padding: 54px;
}

.home-js .home-operation-panel[hidden],
.home-js .home-fleet-selector__panels > article[hidden] {
  display: none;
}

.home-operation-panel__copy > span,
.home-fleet-selector__panels article > div > span,
.home-app > div > span {
  color: #79a1ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-operation-panel__copy h3 {
  margin-top: 16px;
  color: var(--home-white) !important;
  font-size: 34px;
  line-height: 1.15;
}

.home-operation-panel__copy p {
  margin: 18px 0 24px;
  color: #afbed1;
  font-size: 16px;
  line-height: 1.7;
}

.home-interface {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #cfd9e7;
  border-radius: 6px;
  background: var(--home-white);
  color: var(--home-ink);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.home-interface__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--home-line);
}

.home-interface__toolbar span {
  font-size: 13px;
  font-weight: 800;
}

.home-interface__toolbar small {
  color: var(--home-muted);
  font-size: 10px;
}

.home-interface__map {
  min-height: 210px;
  background-position: 50% 54%;
}

.home-interface__map .home-map-marker {
  border-color: rgba(13, 27, 47, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(13, 27, 47, 0.18);
  color: var(--home-ink);
}

.home-interface__map .home-map-credit {
  background: rgba(255, 255, 255, 0.9);
  color: #43536a;
}

.home-interface__rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-interface__rows > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 9px;
  min-height: 82px;
  padding: 14px;
  border-right: 1px solid var(--home-line);
}

.home-interface__rows > div:last-child {
  border-right: 0;
}

.home-interface__rows strong {
  font-size: 11px;
}

.home-interface__rows span {
  grid-column: 2;
  color: var(--home-muted);
  font-size: 10px;
}

.home-interface--hours,
.home-interface--safety,
.home-interface--insight {
  padding-bottom: 18px;
}

.home-hours-row {
  display: grid;
  grid-template-columns: 90px 1fr 82px;
  align-items: center;
  gap: 15px;
  min-height: 62px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--home-line);
}

.home-hours-row strong,
.home-hours-row small {
  font-size: 11px;
}

.home-hours-row small {
  color: var(--home-muted);
}

.home-hours-row > span {
  height: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #e7edf5;
}

.home-hours-row > span i {
  display: block;
  width: var(--fill);
  height: 100%;
  background: var(--home-blue);
}

.home-hours-download {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 18px 0;
  padding: 14px;
  border: 1px solid #cfe0d9;
  border-radius: 5px;
  background: #effaf5;
}

.home-hours-download svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--home-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-hours-download span {
  display: grid;
  gap: 2px;
}

.home-hours-download strong {
  font-size: 12px;
}

.home-hours-download small {
  color: var(--home-muted);
  font-size: 10px;
}

.home-video-sample {
  display: grid;
  min-height: 188px;
  place-items: center;
  align-content: center;
  gap: 12px;
  margin: 18px;
  border-radius: 5px;
  background: #172a42;
  color: #b9c7da;
  font-size: 11px;
}

.home-video-sample svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #7792b3;
  border-radius: 50%;
  fill: none;
  stroke: var(--home-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin: 0 18px;
  border-top: 1px solid var(--home-line);
  font-size: 10px;
}

.home-event-row span {
  color: var(--home-muted);
}

.home-chart {
  display: flex;
  align-items: flex-end;
  height: 215px;
  gap: 18px;
  padding: 25px 28px 0;
  border-bottom: 1px solid var(--home-line);
  background-image: linear-gradient(#e8edf4 1px, transparent 1px);
  background-size: 100% 44px;
}

.home-chart i {
  width: 100%;
  max-width: 46px;
  border-radius: 3px 3px 0 0;
  background: var(--home-blue);
}

.home-chart i:nth-child(even) {
  background: var(--home-green);
}

.home-insight-key {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 16px 22px;
  color: var(--home-muted);
  font-size: 10px;
}

.home-insight-key span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-insight-key i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--home-blue);
}

.home-insight-key span:last-child i {
  background: var(--home-green);
}

.home-workflow {
  background: var(--home-soft);
}

.home-workflow__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(550px, 1.25fr);
  align-items: start;
  gap: 90px;
}

.home-workflow .home-text-link {
  margin-top: 26px;
}

.home-workflow__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-line);
  list-style: none;
}

.home-workflow__steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--home-line);
}

.home-workflow__steps > li > span {
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 800;
}

.home-workflow__steps h3 {
  font-size: 20px;
}

.home-workflow__steps p {
  margin-top: 7px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.6;
}

.home-fleet-selector {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 430px;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  overflow: hidden;
}

.home-fleet-selector__list {
  display: grid;
  align-content: start;
  background: var(--home-soft);
}

.home-fleet-selector__list button {
  min-height: 74px;
  padding: 18px 22px;
  border: 0;
  border-bottom: 1px solid var(--home-line);
  background: transparent;
  color: var(--home-muted);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.home-fleet-selector__list button[aria-selected="true"] {
  background: var(--home-blue);
  color: var(--home-white);
}

.home-fleet-selector__panels {
  display: grid;
  align-items: stretch;
}

.home-fleet-selector__panels article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
  align-items: center;
  gap: 70px;
  min-height: 100%;
  padding: 58px;
}

.home-fleet-selector__panels article > div > span,
.home-app > div > span {
  color: var(--home-blue);
}

.home-fleet-selector__panels h3 {
  margin-top: 14px;
  font-size: 32px;
  line-height: 1.2;
}

.home-fleet-selector__panels p {
  margin: 18px 0 24px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-fleet-selector__panels ul,
.home-check-list,
.home-plan ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-fleet-selector__panels li,
.home-check-list li,
.home-plan li {
  position: relative;
  padding-left: 24px;
  color: #3e4f64;
  font-size: 14px;
  line-height: 1.5;
}

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

.home-mobile-apps {
  border-top: 1px solid var(--home-line);
  background: var(--home-soft);
}

.home-mobile-apps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.home-app {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: start;
  min-height: 310px;
  gap: 28px;
  padding: 36px;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  background: var(--home-white);
}

.home-app > img {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 22px;
}

.home-app h3 {
  margin-top: 8px;
  font-size: 26px;
}

.home-app p {
  margin-top: 12px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-store-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-store-links a {
  display: inline-flex;
  min-width: 0;
}

.home-store-links img {
  display: block;
  width: auto;
  height: 40px;
}

.home-dashcam__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 80px;
}

.home-dashcam__media {
  min-height: 510px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--home-navy);
}

.home-dashcam__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.home-dashcam .home-check-list {
  margin: 26px 0 30px;
}

.home-plans {
  border-top: 1px solid var(--home-line);
  background: var(--home-soft);
}

.home-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-plan {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 430px;
  padding: 32px;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  background: var(--home-white);
}

.home-plan--featured {
  border: 2px solid var(--home-blue);
}

.home-plan__flag {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 10px;
  border-radius: 0 0 4px 4px;
  background: var(--home-blue);
  color: var(--home-white);
  font-size: 10px;
  font-weight: 800;
}

.home-plan h3 {
  padding-right: 80px;
  font-size: 24px;
}

.home-plan > p {
  min-height: 70px;
  margin-top: 12px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
}

.home-plan__price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 22px 0;
  padding: 20px 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-plan__price strong {
  font-size: 38px;
  line-height: 1;
}

.home-plan__price span {
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.45;
}

.home-plan ul {
  align-content: start;
  margin-bottom: 28px;
}

.home-plan li {
  font-size: 12px;
}

.home-plan li::before {
  top: 6px;
  width: 7px;
  height: 7px;
}

.home-plans__action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.home-support {
  background: var(--home-white);
}

.home-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: 100px;
}

.home-support__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.home-support__details div {
  min-height: 160px;
  padding: 26px;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-support__details dt {
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 800;
}

.home-support__details dd {
  margin: 10px 0 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-faq-cc {
  border-top: 1px solid var(--home-line);
  background: var(--home-soft);
}

.home-faq-cc__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: 90px;
}

.home-faq-cc .home-text-link {
  margin-top: 24px;
}

.home-faq-cc__list {
  border-top: 1px solid var(--home-line);
}

.home-faq-cc__list details {
  padding: 0;
  border-bottom: 1px solid var(--home-line);
}

.home-faq-cc__list summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 20px 0;
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.home-faq-cc__list summary::-webkit-details-marker {
  display: none;
}

.home-faq-cc__list summary span {
  position: relative;
  width: 20px;
  height: 20px;
}

.home-faq-cc__list summary span::before,
.home-faq-cc__list summary span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--home-blue);
  content: "";
}

.home-faq-cc__list summary span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.home-faq-cc__list details[open] summary span::after {
  transform: rotate(0);
}

.home-faq-cc__list details p {
  max-width: 680px;
  padding: 0 40px 24px 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-resources__grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--home-line);
}

.home-resources__grid article:first-child {
  border-left: 1px solid var(--home-line);
}

.home-resource-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-resource-meta span {
  color: var(--home-blue);
}

.home-resources h3 {
  margin-top: 22px;
  font-size: 21px;
  line-height: 1.3;
}

.home-resources h3 a {
  text-decoration: none;
}

.home-resources h3 a:hover {
  color: var(--home-blue);
}

.home-resources article > p {
  margin: 16px 0 24px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-final {
  padding: 74px 0;
  background: var(--home-navy);
}

.home-final__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.home-final__route {
  padding: 10px 56px 10px 0;
}

.home-final__route + .home-final__route {
  padding-right: 0;
  padding-left: 56px;
  border-left: 1px solid #30445e;
}

.home-final .home-kicker {
  color: #7ca4ff !important;
}

.home-final h2 {
  max-width: 700px;
  color: var(--home-white) !important;
  font-size: 38px;
  line-height: 1.16;
}

.home-final p:not(.home-kicker) {
  margin-top: 12px;
  color: #aebed2;
  line-height: 1.6;
}

.home-final__route > .home-button,
.home-final__links {
  margin-top: 24px;
}

.home-final__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.home-final__demo {
  color: #bcd0e8 !important;
  font-size: 14px;
  font-weight: 800;
}

.home-final__demo:hover {
  color: var(--home-white) !important;
}

.home-footer {
  padding: 72px 0 24px;
  border-top: 1px solid #253953;
  background: #09182b;
  color: #becadd;
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 0.82fr);
  gap: 42px;
}

.home-footer__brand img {
  display: block;
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.home-footer__brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #9dafc6;
  font-size: 13px;
  line-height: 1.7;
}

.home-footer h2 {
  margin-bottom: 18px;
  color: var(--home-white) !important;
  font-size: 14px;
}

.home-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer li,
.home-footer p,
.home-footer a {
  color: #9dafc6;
  font-size: 12px;
  line-height: 1.6;
}

.home-footer a {
  text-decoration: none;
}

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

.home-footer__social {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.home-footer__social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #31445f;
  border-radius: 4px;
}

.home-footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.home-footer__contact p {
  margin: 0 0 10px;
}

.home-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid #253953;
}

.home-footer__bottom p {
  max-width: 800px;
  margin: 0;
}

.home-footer__bottom nav {
  display: flex;
  gap: 18px;
}

.home-control-centre .whatsapp-floating {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #25d366;
  color: #061b0f;
  box-shadow: 0 12px 28px rgba(13, 29, 51, 0.22);
}

.home-control-centre .whatsapp-floating span {
  display: none;
}

.home-control-centre .whatsapp-floating svg {
  display: block;
  width: 25px;
  height: 25px;
}

.home-control-centre :focus-visible {
  outline: 3px solid #f0b429;
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .home-header__inner {
    grid-template-columns: 176px 1fr auto;
    gap: 16px;
  }

  .home-header__brand,
  .home-header__brand img {
    width: 170px;
  }

  .home-desktop-nav {
    gap: 16px;
  }

  .home-header__actions .home-sign-in {
    display: none;
  }

  .home-hero-cc__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 42px;
  }

  .home-hero-cc__copy h1 {
    font-size: 50px;
  }

  .home-operation-panel {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    padding: 38px;
  }

  .home-workflow__grid,
  .home-support__grid {
    gap: 60px;
  }

  .home-footer__grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }
}

@media (max-width: 940px) {
  .home-control-centre .whatsapp-floating {
    display: none;
  }

  .home-header {
    min-height: 68px;
  }

  .home-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .home-desktop-nav,
  .home-header__actions {
    display: none;
  }

  .home-menu-button {
    display: inline-flex;
  }

  .home-menu-backdrop {
    position: fixed;
    z-index: 1250;
    inset: 0;
    display: block;
    background: rgba(6, 18, 34, 0.58);
  }

  .home-menu-backdrop[hidden] {
    display: none;
  }

  .home-mobile-menu {
    position: fixed;
    z-index: 1300;
    top: 0;
    right: 0;
    display: none;
    flex-direction: column;
    width: min(92vw, 390px);
    height: 100dvh;
    padding: 22px;
    background: var(--home-white);
    box-shadow: -20px 0 50px rgba(6, 18, 34, 0.2);
    transform: none;
  }

  .home-mobile-menu.is-open {
    display: flex;
  }

  .home-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--home-line);
  }

  .home-mobile-menu__top img {
    width: 170px;
    height: auto;
  }

  .home-mobile-menu__links {
    display: grid;
    overflow-y: auto;
    margin-bottom: auto;
    padding: 12px 0 24px;
  }

  .home-mobile-menu__links a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--home-line);
    color: var(--home-ink);
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
  }

  .home-hero-cc {
    padding-top: 54px;
  }

  .home-hero-cc__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .home-hero-cc__copy {
    max-width: 740px;
  }

  .home-command {
    width: min(100%, 720px);
  }

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

  .home-trust__grid > div:nth-child(2) {
    border-right: 1px solid var(--home-line);
  }

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

  .home-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-operation-panel,
  .home-workflow__grid,
  .home-dashcam__grid,
  .home-support__grid,
  .home-faq-cc__grid {
    grid-template-columns: 1fr;
  }

  .home-operation-panel {
    gap: 36px;
  }

  .home-interface {
    width: min(100%, 680px);
  }

  .home-workflow__grid,
  .home-support__grid,
  .home-faq-cc__grid {
    gap: 50px;
  }

  .home-fleet-selector {
    grid-template-columns: 210px 1fr;
  }

  .home-fleet-selector__panels article {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 34px;
    padding: 42px;
  }

  .home-mobile-apps__grid,
  .home-plans__grid {
    grid-template-columns: 1fr;
  }

  .home-plan {
    min-height: 0;
  }

  .home-plan > p {
    min-height: 0;
  }

  .home-resources__grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .home-resources__grid article,
  .home-resources__grid article:first-child {
    min-height: 0;
    border-right: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    border-left: 1px solid var(--home-line);
  }
}

@media (max-width: 720px) {
  .home-shell {
    width: min(100% - 32px, 1240px);
  }

  .home-header__brand,
  .home-header__brand img {
    width: 154px;
  }

  .home-hero-cc {
    padding: 38px 0 34px;
  }

  .home-hero-cc__grid {
    gap: 32px;
  }

  .home-hero-cc__copy h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .home-lead {
    margin-top: 18px !important;
    font-size: 16px;
    line-height: 1.55;
  }

  .home-actions {
    align-items: stretch;
    margin-top: 22px;
  }

  .home-actions .home-button {
    flex: 1 1 190px;
  }

  .home-command__body {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .home-command__map {
    min-height: 220px;
  }

  .home-command__rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #2a3b53;
    border-left: 0;
  }

  .home-command__status {
    min-width: 0;
    border-right: 1px solid #2a3b53;
    border-bottom: 0;
  }

  .home-command__footer span {
    min-height: 44px;
  }

  .home-section {
    padding: 76px 0;
  }

  .home-heading h2 {
    font-size: 34px;
  }

  .home-heading > p:not(.home-kicker),
  .home-heading--split > p,
  .home-heading--center > p:not(.home-kicker) {
    font-size: 15px;
  }

  .home-heading--split {
    margin-bottom: 34px;
  }

  .home-start__grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .home-start__route,
  .home-start__route:first-child {
    min-height: 0;
    padding: 26px;
    border-right: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    border-left: 1px solid var(--home-line);
  }

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

  .home-tabs__list button:nth-child(2) {
    border-right: 0;
  }

  .home-tabs__list button:nth-child(-n + 2) {
    border-bottom: 1px solid #31465f;
  }

  .home-operation-panel {
    min-height: 0;
    padding: 28px;
  }

  .home-operation-panel__copy h3 {
    font-size: 28px;
  }

  .home-fleet-selector {
    grid-template-columns: 1fr;
  }

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

  .home-fleet-selector__list button {
    min-height: 58px;
    padding: 12px 15px;
    border-right: 1px solid var(--home-line);
    text-align: center;
  }

  .home-fleet-selector__panels article {
    padding: 32px;
  }

  .home-app {
    grid-template-columns: 82px 1fr;
    min-height: 0;
    padding: 28px;
  }

  .home-app > img {
    width: 82px;
    height: 82px;
    border-radius: 17px;
  }

  .home-dashcam__media,
  .home-dashcam__media img {
    min-height: 380px;
  }

  .home-support__details {
    grid-template-columns: 1fr;
  }

  .home-support__details div {
    min-height: 0;
  }

  .home-final__inner {
    grid-template-columns: 1fr;
  }

  .home-final__route,
  .home-final__route + .home-final__route {
    padding: 0;
  }

  .home-final__route + .home-final__route {
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid #30445e;
    border-left: 0;
  }

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

  .home-final h2 {
    font-size: 32px;
  }

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

  .home-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .home-shell {
    width: min(100% - 24px, 1240px);
  }

  .home-hero-cc__copy h1 {
    font-size: 36px;
  }

  .home-kicker {
    margin-bottom: 12px !important;
    font-size: 11px;
  }

  .home-hero-cc__note {
    display: none;
  }

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

  .home-actions .home-button {
    width: 100%;
  }

  .home-command__bar {
    min-height: 62px;
  }

  .home-command__map {
    min-height: 190px;
  }

  .home-command__rail {
    display: none;
  }

  .home-command__footer span {
    padding: 8px 4px;
    font-size: 9px;
    text-align: center;
  }

  .home-trust__grid {
    grid-template-columns: 1fr;
  }

  .home-trust__grid > div,
  .home-trust__grid > div:first-child,
  .home-trust__grid > div:nth-child(2) {
    min-height: 74px;
    padding: 14px 16px;
    border-right: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    border-left: 1px solid var(--home-line);
  }

  .home-section {
    padding: 62px 0;
  }

  .home-heading h2 {
    font-size: 30px;
  }

  .home-heading--center {
    margin-bottom: 34px;
    text-align: left;
  }

  .home-start__route {
    gap: 20px;
  }

  .home-start__route h3 {
    font-size: 21px;
  }

  .home-tabs__list button {
    min-height: 52px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .home-operation-panel {
    padding: 22px;
  }

  .home-operation-panel__copy h3 {
    font-size: 25px;
  }

  .home-interface {
    min-height: 300px;
  }

  .home-interface__rows > div {
    padding: 10px 7px;
  }

  .home-hours-row {
    grid-template-columns: 70px 1fr;
  }

  .home-hours-row small {
    display: none;
  }

  .home-insight-key {
    gap: 14px;
    padding: 12px;
  }

  .home-workflow__steps li {
    grid-template-columns: 38px 1fr;
  }

  .home-fleet-selector__list button {
    font-size: 12px;
  }

  .home-fleet-selector__panels article {
    padding: 25px;
  }

  .home-fleet-selector__panels h3 {
    font-size: 26px;
  }

  .home-app {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .home-app > img {
    width: 74px;
    height: 74px;
  }

  .home-store-links img {
    height: 36px;
  }

  .home-dashcam__media,
  .home-dashcam__media img {
    min-height: 300px;
  }

  .home-plan {
    padding: 26px;
  }

  .home-plan h3 {
    padding-right: 0;
  }

  .home-plan__flag {
    position: static;
    width: fit-content;
    margin: -26px -26px 24px;
    border-radius: 5px 0 4px 0;
  }

  .home-faq-cc__list summary {
    min-height: 70px;
    font-size: 14px;
  }

  .home-resources__grid article {
    padding: 24px;
  }

  .home-final {
    padding: 58px 0;
  }

  .home-final h2 {
    font-size: 28px;
  }

  .home-footer {
    padding-top: 56px;
  }

  .home-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-footer__brand {
    grid-column: auto;
  }

  .home-footer__bottom nav {
    flex-wrap: wrap;
  }
}

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

  .home-control-centre *,
  .home-control-centre *::before,
  .home-control-centre *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .home-map-marker > i,
  .home-command__live i,
  .home-command__status > i,
  .home-interface__rows i,
  .home-fleet-selector__panels li::before,
  .home-check-list li::before,
  .home-plan li::before {
    border: 2px solid CanvasText;
  }
}
