:root {
  --black: #070a08;
  --black-soft: #0b100c;
  --graphite: #111612;
  --graphite-2: #182019;
  --line-dark: #283129;
  --line-light: #dce3dd;
  --green: #7cff00;
  --green-bright: #97ff39;
  --green-deep: #4eaa00;
  --white: #f8fbf8;
  --paper: #f2f5f2;
  --muted: #aab5ac;
  --muted-dark: #657067;
  --shadow-sm: 0 12px 32px rgba(7, 10, 8, 0.08);
  --shadow-lg: 0 35px 90px rgba(7, 10, 8, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 112px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--black);
  font-family:
    Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

h1,
h2,
h3 {
  font-family:
    "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--green);
  color: var(--black);
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--green);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(7, 10, 8, 0.96);
  border-bottom: 1px solid rgba(124, 255, 0, 0.12);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.site-header__bar {
  height: 32px;
  background: #030504;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header__bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #b7c0b8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header__bar-inner p,
.site-header__bar-inner a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.site-header__bar-inner a {
  color: var(--white);
  transition: color 160ms ease;
}

.site-header__bar-inner a:hover {
  color: var(--green);
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(124, 255, 0, 0.12);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--green);
  border-radius: inherit;
  opacity: 0;
  animation: dotPulse 2.2s ease-out infinite;
}

.site-header__main {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.logo--image img {
  display: block;
  width: 54px;
  height: 54px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  color: #c5cdc6;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: var(--white);
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav[open] summary {
  border-color: var(--green);
  color: var(--green);
}

.mobile-nav__panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 18px 20px 24px;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.mobile-nav:not([open]) > .mobile-nav__panel {
  display: none;
}

.mobile-nav__panel nav {
  display: grid;
  margin-bottom: 18px;
}

.mobile-nav__panel nav a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-weight: 750;
}

.mobile-nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--muted);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button--sm {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.8rem;
}

.button--lg {
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 12px;
}

.button--block {
  width: 100%;
}

.button--green {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(124, 255, 0, 0.18);
}

.button--green:hover {
  background: var(--green-bright);
  box-shadow: 0 13px 34px rgba(124, 255, 0, 0.21);
}

.button--dark,
.button--green-on-dark {
  background: var(--black);
  color: var(--white);
}

.button--dark:hover,
.button--green-on-dark:hover {
  background: var(--graphite-2);
  box-shadow: var(--shadow-sm);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button--glass:hover {
  border-color: rgba(124, 255, 0, 0.45);
  background: rgba(124, 255, 0, 0.08);
}

.button--outline-dark {
  border-color: #b9c2bb;
  color: var(--black);
}

.button--outline-dark:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.button--outline-light {
  border-color: #526055;
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--green);
  color: var(--green);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - var(--header-height)));
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.hero__image,
.hero__overlay,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 7, 5, 0.98) 0%,
      rgba(4, 7, 5, 0.9) 34%,
      rgba(4, 7, 5, 0.45) 63%,
      rgba(4, 7, 5, 0.15) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 7, 5, 0.94) 0%,
      rgba(4, 7, 5, 0.15) 50%,
      rgba(4, 7, 5, 0.32) 100%
    );
}

.hero__grid,
.subhero__grid,
.route-section__grid {
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(124, 255, 0, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 255, 0, 0.09) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.6fr);
  align-items: center;
  gap: 60px;
  padding-block: clamp(78px, 10vh, 115px) 115px;
}

.hero__copy {
  min-width: 0;
  max-width: 720px;
}

.hero__eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: var(--green);
}

.hero__eyebrow-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(124, 255, 0, 0.35);
  border-radius: 8px;
  background: rgba(124, 255, 0, 0.08);
}

.hero h1 {
  max-width: 760px;
  margin: 25px 0 23px;
  font-size: clamp(3.1rem, 6.1vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
  overflow-wrap: break-word;
}

.hero h1 span,
.section-heading h2 span,
.fleet-block__copy h2 span,
.subhero__copy h1 span {
  color: var(--green-deep);
}

.hero h1 span,
.subhero__copy h1 span {
  color: var(--green);
}

.hero__copy > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: #c3ccc4;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.hero__actions {
  margin-bottom: 28px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  color: #bcc5bd;
  font-size: 0.79rem;
  font-weight: 700;
}

.hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__assurances svg {
  color: var(--green);
}

.hero__signal-card {
  align-self: end;
  width: min(100%, 400px);
  justify-self: end;
  padding: 21px;
  border: 1px solid rgba(124, 255, 0, 0.22);
  border-radius: var(--radius-md);
  background: rgba(7, 10, 8, 0.76);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.signal-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--green);
}

.signal-card__top > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero__signal-card > strong {
  display: block;
  margin-bottom: 17px;
  font-family:
    "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.signal-card__vehicles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.signal-card__vehicles span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #c7d0c8;
  font-size: 0.76rem;
  font-weight: 750;
}

.signal-card__vehicles svg {
  color: var(--green);
}

.hero__scroll {
  position: absolute;
  bottom: 33px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aeb8af;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: relative;
  width: 17px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
}

.hero__scroll span::after {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 3px;
  height: 6px;
  content: "";
  border-radius: 2px;
  background: var(--green);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.vehicle-strip {
  background: #030504;
  color: var(--white);
  border-top: 1px solid rgba(124, 255, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.vehicle-strip__item {
  position: relative;
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.vehicle-strip__item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.vehicle-strip__item svg {
  color: var(--green);
}

.vehicle-strip__item strong {
  font-size: 0.91rem;
}

.vehicle-strip__number {
  position: absolute;
  top: 10px;
  left: 13px;
  color: #58615a;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section {
  position: relative;
  padding-block: clamp(78px, 9vw, 120px);
}

.section--light {
  background: var(--paper);
}

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

.section--dark {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.section-heading {
  max-width: 720px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.fleet-block__copy h2,
.cta-band h2 {
  margin: 17px 0 20px;
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading--center > p {
  margin-inline: auto;
}

.section-heading--inverse h2 {
  color: var(--white);
}

.section-heading--inverse > p {
  color: var(--muted);
}

.section-heading--inverse h2 span {
  color: var(--green);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.text-link {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid #96a199;
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.text-link:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.text-link--light {
  border-color: #5e6a60;
  color: #c5cec6;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.solution-card {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.solution-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.solution-card:hover {
  border-color: #b8c3ba;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 27px;
}

.solution-card__icon,
.info-checklist__icon,
.principles-grid__icon,
.fleet-needs-grid__icon,
.contact-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  background: var(--black);
  color: var(--green);
}

.solution-card__index {
  color: #a8b1aa;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solution-card h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
  font-weight: 900;
}

.solution-card p {
  margin-bottom: 25px;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.7;
}

.solution-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 850;
}

.solution-card > a svg {
  color: var(--green-deep);
  transition: transform 160ms ease;
}

.solution-card > a:hover svg {
  transform: translateX(4px);
}

.feature-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
  font-weight: 650;
  text-align: center;
}

.feature-disclaimer svg {
  color: var(--green-deep);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.feature-split__visual {
  position: relative;
  min-width: 0;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 21px;
  border: 1px solid #273029;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.dashboard-card__header,
.dashboard-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-card__label {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.dashboard-card__header strong {
  font-size: 1rem;
}

.dashboard-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid #2b362d;
  border-radius: 99px;
  color: #b9c3ba;
  font-size: 0.63rem;
  font-weight: 800;
}

.map-board {
  position: relative;
  height: 330px;
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid #273029;
  border-radius: 18px;
  background-color: #111713;
  background-image:
    linear-gradient(#1d271f 1px, transparent 1px),
    linear-gradient(90deg, #1d271f 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-board svg {
  width: 100%;
  height: 100%;
}

.map-board__road {
  fill: none;
  stroke: #29352b;
  stroke-width: 16;
}

.map-board__road--thin {
  stroke-width: 8;
}

.map-board__route {
  fill: none;
  stroke: var(--green);
  stroke-dasharray: 8 8;
  stroke-linecap: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 6px rgba(124, 255, 0, 0.65));
}

.map-board__pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(124, 255, 0, 0.5);
  border-radius: 50% 50% 50% 8px;
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 30px rgba(124, 255, 0, 0.25);
  transform: rotate(-45deg);
}

.map-board__pin svg {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.map-board__pin--start {
  right: 17%;
  top: 24%;
}

.map-board__pin--end {
  bottom: 12%;
  left: 8%;
}

.map-board__pulse {
  position: absolute;
  top: 39%;
  left: 44%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 8px rgba(124, 255, 0, 0.13),
    0 0 0 18px rgba(124, 255, 0, 0.06);
  animation: radarPulse 2s ease-in-out infinite;
}

.dashboard-card__footer {
  align-items: stretch;
}

.dashboard-card__footer > div {
  flex: 1;
  padding: 10px 12px;
  border-left: 1px solid #273029;
}

.dashboard-card__footer > div:first-child {
  border-left: 0;
}

.dashboard-card__footer span {
  display: block;
  margin-bottom: 3px;
  color: #718075;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-card__footer strong {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
}

.feature-split__orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(78, 170, 0, 0.23);
  border-radius: 50%;
}

.feature-split__orbit--one {
  top: -65px;
  right: -65px;
  width: 180px;
  height: 180px;
}

.feature-split__orbit--two {
  bottom: -70px;
  left: -70px;
  width: 250px;
  height: 250px;
}

.feature-split__copy .section-heading {
  margin-bottom: 35px;
}

.benefit-list {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.benefit-list article {
  display: flex;
  gap: 15px;
}

.benefit-list article > span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d2dad3;
  border-radius: 11px;
  color: var(--green-deep);
}

.benefit-list h3 {
  margin-bottom: 5px;
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.85rem;
  line-height: 1.6;
}

.route-section__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 58px;
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 29px;
  border: 1px solid #273029;
  border-radius: var(--radius-md);
  background: rgba(17, 22, 18, 0.76);
}

.step-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #4f5b51;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.step-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(124, 255, 0, 0.3);
  border-radius: 15px;
  background: rgba(124, 255, 0, 0.08);
  color: var(--green);
}

.step-card h3 {
  margin-bottom: 13px;
  font-size: 1.45rem;
  font-weight: 900;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.steps__connector {
  color: #516053;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.section--fleet {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(124, 255, 0, 0.09), transparent 32%),
    var(--graphite);
  color: var(--white);
}

.fleet-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.fleet-block__copy > p {
  max-width: 650px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.check-list {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: #ccd4cd;
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green);
}

.fleet-block__visual {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
}

.fleet-radar {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(124, 255, 0, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(124, 255, 0, 0.1) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(124, 255, 0, 0.1) 50%, transparent 50.2%);
}

.fleet-radar::before {
  position: absolute;
  inset: 0 50% 50% 0;
  content: "";
  border-radius: 100% 0 0 0;
  background: linear-gradient(35deg, transparent 45%, rgba(124, 255, 0, 0.09));
  transform-origin: 100% 100%;
  animation: radarSweep 7s linear infinite;
}

.fleet-radar__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(124, 255, 0, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.fleet-radar__ring--one {
  width: 72%;
  height: 72%;
}

.fleet-radar__ring--two {
  width: 45%;
  height: 45%;
}

.fleet-radar__ring--three {
  width: 20%;
  height: 20%;
}

.fleet-radar__center,
.fleet-radar__vehicle {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.fleet-radar__center {
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 50px rgba(124, 255, 0, 0.2);
  transform: translate(-50%, -50%);
}

.fleet-radar__vehicle {
  width: 49px;
  height: 49px;
  border: 1px solid rgba(124, 255, 0, 0.35);
  background: var(--black);
  color: var(--green);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.fleet-radar__vehicle--one {
  top: 13%;
  left: 48%;
}

.fleet-radar__vehicle--two {
  top: 47%;
  right: 5%;
}

.fleet-radar__vehicle--three {
  bottom: 11%;
  left: 28%;
}

.fleet-radar__vehicle--four {
  top: 35%;
  left: 8%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 28px 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.pricing-card:hover {
  border-color: #b8c3ba;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.pricing-card--featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}

.pricing-card__tag {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 8px 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(7, 10, 8, 0.15);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__tag--basic {
  background: var(--green-bright);
  color: var(--black);
}

.pricing-card__tag--pro {
  background: var(--green);
  color: var(--black);
}

.pricing-card__tag--smart {
  background: var(--green-deep);
  color: var(--white);
}

.pricing-card__price {
  margin: 16px 0 26px;
  color: var(--black);
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
}

.pricing-card__price span {
  color: var(--muted-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.pricing-card__features {
  flex: 1;
}

.pricing-card .pricing-card__features li {
  color: var(--black);
  font-weight: 700;
}

.pricing-card .pricing-card__features li svg {
  color: var(--green-deep);
}

.pricing-card .pricing-card__features li.is-off {
  color: var(--muted-dark);
}

.pricing-card .pricing-card__features li.is-off svg {
  color: var(--muted);
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.pricing-pill strong {
  color: var(--green);
  font-weight: 900;
}

.pricing-pill s {
  margin-right: 6px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-pill--outline {
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--black);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
}

.faq-layout__intro {
  position: sticky;
  top: 150px;
}

.faq-contact-card {
  display: flex;
  gap: 15px;
  margin-top: 34px;
  padding: 19px;
  border: 1px solid var(--line-light);
  border-radius: 15px;
  background: var(--white);
}

.faq-contact-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--black);
  color: var(--green);
}

.faq-contact-card strong {
  display: block;
  font-size: 0.9rem;
}

.faq-contact-card p {
  margin: 2px 0 6px;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.faq-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid #cbd4cc;
}

.faq-list details {
  border-bottom: 1px solid #cbd4cc;
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 1rem;
  font-weight: 850;
}

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

.faq-list__plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid #aab5ac;
  border-radius: 50%;
}

.faq-list__plus::before,
.faq-list__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-list__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-list__plus {
  border-color: var(--green-deep);
  background: var(--green);
}

.faq-list details[open] .faq-list__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > div {
  padding: 0 48px 24px 0;
}

.faq-list details p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.75;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--black);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(7, 10, 8, 0.15);
  border-radius: 50%;
}

.cta-band::before {
  top: -170px;
  right: 13%;
  width: 420px;
  height: 420px;
}

.cta-band::after {
  top: -95px;
  right: 18%;
  width: 270px;
  height: 270px;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 65px;
}

.eyebrow--dark {
  color: #265700;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #244d04;
  font-size: 0.96rem;
}

.cta-band__actions {
  display: flex;
  min-width: max-content;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.cta-band__phone {
  font-size: 0.73rem;
  font-weight: 750;
}

.site-footer {
  position: relative;
  background: #030504;
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 60px;
  padding-block: 75px 60px;
}

.site-footer__brand > p {
  max-width: 315px;
  margin: 25px 0 20px;
  color: #909b92;
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

.site-footer h2 {
  margin: 3px 0 22px;
  color: #eff4f0;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 11px;
}

.site-footer nav a {
  color: #919b93;
  font-size: 0.78rem;
  transition: color 160ms ease;
}

.site-footer nav a:hover {
  color: var(--green);
}

.footer-service-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 14px;
  color: #919b93;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-service-note svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.site-footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #1e261f;
}

.site-footer__bottom p {
  margin: 0;
  color: #6f7971;
  font-size: 0.68rem;
}

.footer-credit {
  color: var(--green);
  font-weight: 850;
  transition: color 160ms ease;
}

.footer-credit:hover {
  color: var(--green-bright);
}

.site-footer__bottom nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}

.site-footer__bottom nav a {
  font-size: 0.68rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

.whatsapp-float__label {
  padding: 11px 18px;
  border-radius: 99px 0 0 99px;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 850;
  transform: translateX(7px);
}

.whatsapp-float__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  transition: transform 160ms ease;
}

.whatsapp-float:hover .whatsapp-float__icon {
  transform: scale(1.07);
}

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

/* Internal page hero */
.subhero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 45%, rgba(124, 255, 0, 0.1), transparent 28%),
    var(--black);
  color: var(--white);
  isolation: isolate;
}

.subhero__grid {
  position: absolute;
  inset: 0;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  padding-top: 27px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #7f8a81;
  font-size: 0.7rem;
  font-weight: 700;
}

.breadcrumbs li a {
  transition: color 160ms ease;
}

.breadcrumbs li a:hover {
  color: var(--green);
}

.breadcrumbs li span[aria-current="page"] {
  color: #b6c0b7;
}

.subhero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 625px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 80px;
  padding-block: 65px 90px;
}

.subhero__copy {
  max-width: 760px;
}

.subhero__copy h1 {
  margin: 22px 0 24px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.subhero__copy > p {
  max-width: 660px;
  margin-bottom: 32px;
  color: #b6c0b8;
  font-size: 1.04rem;
  line-height: 1.75;
}

.subhero__visual {
  position: relative;
  min-height: 410px;
}

.subhero-vehicles {
  border: 1px solid #263128;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(#172019 1px, transparent 1px),
    linear-gradient(90deg, #172019 1px, transparent 1px),
    #0d120e;
  background-size: 35px 35px;
  box-shadow: var(--shadow-lg);
}

.subhero-vehicles__route {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 75%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--green) 0 9px,
    transparent 9px 17px
  );
  box-shadow: 0 0 10px rgba(124, 255, 0, 0.35);
  transform: rotate(-24deg);
}

.subhero-vehicles__item {
  position: absolute;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border: 1px solid #2c382e;
  border-radius: 20px;
  background: #111713;
  color: var(--green);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.subhero-vehicles__item small {
  color: #8d9990;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.subhero-vehicles__item--car {
  top: 11%;
  right: 13%;
}

.subhero-vehicles__item--moto {
  top: 39%;
  left: 10%;
}

.subhero-vehicles__item--truck {
  right: 16%;
  bottom: 8%;
}

.subhero-vehicles__pin {
  position: absolute;
  top: 47%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 40px rgba(124, 255, 0, 0.25);
  transform: translate(-50%, -50%);
}

.vehicle-profile-list {
  display: grid;
  gap: 16px;
  margin-top: 55px;
}

.vehicle-profile {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 27px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vehicle-profile:hover {
  border-color: #aeb9b0;
  box-shadow: var(--shadow-sm);
}

.vehicle-profile__identity {
  position: relative;
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 17px;
  border-radius: 16px;
  background: var(--black);
}

.vehicle-profile__index {
  position: absolute;
  top: 13px;
  right: 15px;
  color: #4e5a50;
  font-size: 0.6rem;
  font-weight: 900;
}

.vehicle-profile__icon {
  margin-bottom: 10px;
  color: var(--green);
}

.vehicle-profile__identity .card-eyebrow {
  margin: 0;
  color: #9da8a0;
}

.vehicle-profile__copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 900;
}

.vehicle-profile__copy > p {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.65;
}

.check-list--dark {
  margin-bottom: 0;
}

.check-list--dark li {
  margin-top: 7px;
  color: #465148;
  font-size: 0.76rem;
}

.check-list--dark li svg {
  color: var(--green-deep);
}

.vehicle-profile__action {
  min-width: max-content;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.info-grid .button-row {
  margin-top: 30px;
}

.info-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.info-checklist article {
  position: relative;
  min-height: 195px;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: 17px;
  background: var(--paper);
}

.info-checklist__number {
  position: absolute;
  top: 17px;
  right: 18px;
  color: #a7b0a9;
  font-size: 0.6rem;
  font-weight: 900;
}

.info-checklist__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 12px;
}

.info-checklist h3 {
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 900;
}

.info-checklist p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.55;
}

.compact-dark-section {
  padding-block: 66px;
}

.compact-dark-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.compact-dark-section__inner h2 {
  margin: 10px 0;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  font-weight: 900;
}

.compact-dark-section__inner p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Fleet page */
.fleet-console {
  overflow: hidden;
  padding: 22px;
  border: 1px solid #29342b;
  border-radius: var(--radius-lg);
  background: #0d120e;
  box-shadow: var(--shadow-lg);
}

.fleet-console__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fleet-console__header > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-console__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 12px;
}

.fleet-console__metrics div {
  padding: 15px;
  border: 1px solid #273029;
  border-radius: 12px;
  background: #121914;
}

.fleet-console__metrics small {
  display: block;
  margin-bottom: 5px;
  color: #667269;
  font-size: 0.53rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.fleet-console__metrics strong {
  font-size: 0.82rem;
}

.fleet-console__map {
  position: relative;
  height: 260px;
  overflow: hidden;
  border: 1px solid #273029;
  border-radius: 15px;
  background-color: #111713;
  background-image:
    linear-gradient(#1b251d 1px, transparent 1px),
    linear-gradient(90deg, #1b251d 1px, transparent 1px);
  background-size: 26px 26px;
}

.fleet-console__line {
  position: absolute;
  top: 49%;
  left: -8%;
  width: 115%;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    var(--green) 0 8px,
    transparent 8px 15px
  );
  filter: drop-shadow(0 0 6px rgba(124, 255, 0, 0.45));
  transform: rotate(-24deg);
}

.fleet-console__dot {
  position: absolute;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(124, 255, 0, 0.42);
  border-radius: 50%;
  background: var(--black);
  color: var(--green);
  box-shadow: 0 0 25px rgba(124, 255, 0, 0.16);
}

.fleet-console__dot--one {
  top: 15%;
  right: 17%;
}

.fleet-console__dot--two {
  top: 46%;
  left: 42%;
}

.fleet-console__dot--three {
  bottom: 12%;
  left: 12%;
}

.fleet-needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 52px;
}

.fleet-needs-grid article {
  position: relative;
  min-height: 295px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
}

.fleet-needs-grid__index {
  position: absolute;
  top: 19px;
  right: 20px;
  color: #a5afa7;
  font-size: 0.62rem;
  font-weight: 900;
}

.fleet-needs-grid__icon {
  margin-bottom: 30px;
}

.fleet-needs-grid h3,
.principles-grid h3 {
  margin-bottom: 11px;
  font-size: 1.3rem;
  font-weight: 900;
}

.fleet-needs-grid p,
.principles-grid p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.83rem;
  line-height: 1.65;
}

.fleet-brief {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.fleet-brief__copy .button {
  margin-top: 30px;
}

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

.fleet-brief__list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 22px 5px;
  border-bottom: 1px solid var(--line-light);
}

.fleet-brief__list li > span {
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fleet-brief__list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.fleet-brief__list p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.fleet-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 48px;
}

.fleet-process__grid article {
  position: relative;
  min-height: 255px;
  padding: 25px;
  border: 1px solid #273029;
  border-radius: 17px;
  background: var(--graphite);
}

.fleet-process__grid svg {
  margin-bottom: 35px;
  color: var(--green);
}

.fleet-process__step {
  position: absolute;
  top: 18px;
  right: 19px;
  color: #566158;
  font-size: 0.6rem;
  font-weight: 900;
}

.fleet-process__grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}

.fleet-process__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.feature-disclaimer--dark {
  color: #88938a;
}

.feature-disclaimer--dark svg {
  color: var(--green);
}

/* About */
.subhero--compact .subhero__layout {
  min-height: 510px;
}

.subhero__layout--compact {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #29342b;
  border-radius: var(--radius-lg);
  background: #0d120e;
}

.brand-panel__orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(124, 255, 0, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(124, 255, 0, 0.03),
    0 0 0 80px rgba(124, 255, 0, 0.02);
}

.brand-panel svg {
  position: relative;
  z-index: 2;
  width: 105px;
  height: 105px;
  margin-bottom: 22px;
}

.brand-panel svg path {
  fill: var(--green);
}

.brand-panel svg circle:first-of-type {
  fill: var(--black);
}

.brand-panel svg circle:last-of-type {
  fill: var(--green);
}

.brand-panel strong,
.brand-panel small {
  position: relative;
  z-index: 2;
}

.brand-panel strong {
  font-family:
    "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-panel small {
  color: var(--green);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(50px, 8vw, 105px);
}

.about-intro__text {
  padding-top: 32px;
  border-top: 2px solid var(--green);
}

.about-intro__text p {
  color: var(--muted-dark);
  line-height: 1.8;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.principles-grid article {
  position: relative;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: var(--white);
}

.principles-grid__number {
  position: absolute;
  top: 18px;
  right: 19px;
  color: #a4aea6;
  font-size: 0.6rem;
  font-weight: 900;
}

.principles-grid__icon {
  margin-bottom: 30px;
}

/* Contact */
.contact-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 510px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 90px;
  padding-block: 55px 85px;
}

.contact-hero__phone {
  padding: 32px;
  border: 1px solid #29342b;
  border-radius: var(--radius-lg);
  background: #0e140f;
}

.contact-hero__phone > span {
  color: #7f8b81;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.contact-hero__phone > a {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 10px;
  color: var(--green);
}

.contact-hero__phone strong {
  font-family:
    "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.contact-hero__phone small {
  color: #849087;
  font-size: 0.7rem;
}

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

.contact-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
}

.contact-card--primary {
  border-color: var(--green-deep);
  background: var(--green);
}

.contact-card__icon {
  margin-bottom: 29px;
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 900;
}

.contact-card p {
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: 0.87rem;
  line-height: 1.7;
}

.contact-card .button {
  margin-top: auto;
}

.contact-checklist-section__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
}

.contact-checklist-section__inner h2 {
  margin: 16px 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
}

.contact-checklist-section__inner > div > p {
  color: var(--muted-dark);
}

.contact-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-checklist li {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: 15px;
  background: var(--paper);
  font-size: 0.83rem;
  font-weight: 750;
}

.contact-checklist li span {
  color: var(--green-deep);
  font-size: 0.65rem;
  font-weight: 900;
}

/* Legal */
.legal-page {
  min-height: 70vh;
  padding-bottom: 100px;
  background: var(--white);
}

.legal-page .breadcrumbs {
  padding-top: 30px;
}

.legal-page .breadcrumbs li {
  color: #748077;
}

.legal-page .breadcrumbs li span[aria-current="page"] {
  color: #3f4941;
}

.legal-page__container {
  max-width: 980px;
}

.legal-page__header {
  padding: 75px 0 50px;
  border-bottom: 1px solid var(--line-light);
}

.legal-page__header h1 {
  margin: 18px 0 12px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.legal-page__header p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.legal-page__content {
  max-width: 790px;
  padding-top: 50px;
}

.legal-page__content section {
  margin-bottom: 42px;
}

.legal-page__content h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.legal-page__content p,
.legal-page__content li {
  color: #4f5a51;
  font-size: 0.92rem;
  line-height: 1.8;
}

.legal-page__content a {
  color: #377a00;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__content ul {
  padding-left: 22px;
}

.error-page {
  display: grid;
  min-height: 67vh;
  place-items: center;
  padding-block: 90px;
  background:
    radial-gradient(circle at center, rgba(124, 255, 0, 0.08), transparent 35%),
    var(--black);
  color: var(--white);
  text-align: center;
}

.error-page__inner {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: center;
}

.error-page__code {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-family:
    "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.error-page h1 {
  margin: 25px 0 17px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
}

.error-page p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
}

@keyframes dotPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.55);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(7px);
  }
}

@keyframes radarPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 6px rgba(124, 255, 0, 0.13),
      0 0 0 13px rgba(124, 255, 0, 0.06);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(124, 255, 0, 0.1),
      0 0 0 28px rgba(124, 255, 0, 0);
  }
}

@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.77rem;
  }

  .header-cta {
    padding-inline: 13px;
  }

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

  .solution-card {
    min-height: 330px;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer__grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 80px;
  }

  .site-header__bar {
    display: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 7, 5, 0.97) 0%,
        rgba(4, 7, 5, 0.82) 60%,
        rgba(4, 7, 5, 0.48) 100%
      ),
      linear-gradient(0deg, rgba(4, 7, 5, 0.96), rgba(4, 7, 5, 0.2));
  }

  .hero__content,
  .feature-split,
  .fleet-block,
  .subhero__layout,
  .contact-hero__layout {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .pricing-card--featured {
    order: -1;
  }

  .hero__content {
    gap: 45px;
    padding-block: 95px 120px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__signal-card {
    width: min(100%, 540px);
    justify-self: start;
  }

  .feature-split__visual {
    width: min(100%, 650px);
    margin-inline: auto;
    order: 2;
  }

  .feature-split__copy {
    order: 1;
  }

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

  .steps__connector {
    display: none;
  }

  .step-card {
    min-height: 235px;
  }

  .fleet-block__visual {
    min-height: 390px;
  }

  .fleet-radar {
    width: min(390px, 100%);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout__intro {
    position: static;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .cta-band__actions {
    align-items: flex-start;
  }

  .subhero__layout,
  .contact-hero__layout {
    gap: 40px;
  }

  .subhero__visual {
    width: min(100%, 600px);
  }

  .vehicle-profile {
    grid-template-columns: 160px 1fr;
  }

  .vehicle-profile__action {
    grid-column: 2;
  }

  .info-grid,
  .fleet-brief,
  .about-intro,
  .contact-checklist-section__inner {
    grid-template-columns: 1fr;
  }

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

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

  .contact-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .site-header__main {
    height: 72px;
  }

  .logo__mark {
    width: 36px;
    height: 36px;
  }

  .logo__text strong {
    font-size: 1.5rem;
  }

  .hero__image {
    object-position: 63% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 7, 5, 0.97) 0%,
        rgba(4, 7, 5, 0.88) 72%,
        rgba(4, 7, 5, 0.65) 100%
      ),
      linear-gradient(0deg, rgba(4, 7, 5, 0.96), rgba(4, 7, 5, 0.15));
  }

  .hero__content {
    padding-block: 72px 105px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11.5vw, 4.2rem);
  }

  .hero__eyebrow {
    align-items: flex-start;
    font-size: 0.62rem;
  }

  .hero__assurances {
    display: grid;
    gap: 9px;
  }

  .hero__scroll {
    display: none;
  }

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

  .vehicle-strip__item {
    min-height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .section {
    padding-block: 70px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-grid,
  .principles-grid,
  .fleet-needs-grid,
  .fleet-process__grid,
  .info-checklist,
  .contact-grid,
  .contact-checklist {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 310px;
  }

  .dashboard-card {
    padding: 14px;
    border-radius: 20px;
  }

  .map-board {
    height: 270px;
  }

  .dashboard-card__footer {
    display: grid;
  }

  .dashboard-card__footer > div {
    padding: 8px;
    border-top: 1px solid #273029;
    border-left: 0;
  }

  .dashboard-card__footer > div:first-child {
    border-top: 0;
  }

  .feature-split__orbit--one {
    right: -15px;
  }

  .feature-split__orbit--two {
    left: -15px;
  }

  .fleet-block {
    gap: 40px;
  }

  .fleet-block__visual {
    min-height: 340px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 0.9rem;
  }

  .cta-band__inner {
    min-height: 390px;
  }

  .cta-band__actions,
  .cta-band__actions .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }

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

  .site-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px 105px;
  }

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

  .whatsapp-float {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 10, 8, 0.96);
    border-top: 1px solid #273029;
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 10px;
    background: var(--green);
    color: var(--black);
    font-size: 0.84rem;
    font-weight: 900;
  }

  .subhero__layout,
  .contact-hero__layout {
    min-height: auto;
    padding-block: 55px 75px;
  }

  .subhero__copy h1 {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
  }

  .subhero__visual {
    min-height: 340px;
  }

  .subhero-vehicles__item {
    width: 86px;
    height: 86px;
  }

  .vehicle-profile {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vehicle-profile__identity {
    min-height: 115px;
  }

  .vehicle-profile__action {
    grid-column: 1;
  }

  .vehicle-profile__action .button {
    width: 100%;
  }

  .compact-dark-section__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid article:last-child {
    grid-column: auto;
  }

  .about-intro__text {
    padding-top: 25px;
  }

  .legal-page__header {
    padding-top: 55px;
  }
}

@media (max-width: 470px) {
  .button-row > .button {
    width: 100%;
  }

  .hero__signal-card {
    padding: 17px;
  }

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

  .vehicle-strip__item {
    justify-content: flex-start;
    padding-left: 25px;
  }

  .section-heading h2,
  .fleet-block__copy h2,
  .cta-band h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .faq-list details > div {
    padding-right: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__grid > div:last-child {
    grid-column: 1;
  }

  .site-footer__bottom nav {
    display: grid;
  }

  .subhero-vehicles__item--car {
    right: 7%;
  }

  .subhero-vehicles__item--moto {
    left: 5%;
  }

  .subhero-vehicles__item--truck {
    right: 9%;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .mobile-cta-bar,
  .cta-band {
    display: none !important;
  }

  body,
  .legal-page {
    background: #fff;
    color: #000;
  }

  .legal-page {
    padding: 0;
  }
}
