:root {
  --navy: #061b3a;
  --blue: #0758bd;
  --blue-2: #0a7be8;
  --red: #f20d16;
  --red-dark: #c70712;
  --ink: #07111f;
  --muted: #617084;
  --line: #dce7f4;
  --soft: #f5f9fe;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(6, 27, 58, .12);
  --radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(220, 231, 244, .78);
  display: flex;
  gap: 26px;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow .2s ease, height .2s ease;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 32px rgba(7, 17, 31, .08);
  height: 68px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand img {
  display: block;
  height: 62px;
  object-fit: contain;
  width: 178px;
}

.nav-menu {
  align-items: center;
  color: var(--navy);
  display: flex;
  gap: 28px;
  font-size: .94rem;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  background: var(--red);
  bottom: -9px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  width: 100%;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.btn,
.header-cta {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.primary,
.header-cta {
  background: var(--red);
  box-shadow: 0 16px 34px rgba(242, 13, 22, .2);
  color: #fff;
}

.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.menu-toggle span {
  background: var(--navy);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(135deg, #f7fbff 0%, #eef6ff 58%, #fff 100%);
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(390px, .72fr) minmax(520px, 1.08fr);
  min-height: 760px;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
  position: relative;
}

.hero::before {
  background: linear-gradient(180deg, rgba(7, 88, 189, .1), rgba(7, 88, 189, 0));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 42%;
}

.hero::after {
  background: var(--red);
  content: "";
  height: 3px;
  left: clamp(20px, 5vw, 72px);
  position: absolute;
  top: 78px;
  width: 92px;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--navy);
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 24px;
  max-width: 650px;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

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

.hero-copy {
  font-size: 1.08rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
  padding-top: 24px;
}

.hero-metrics span {
  color: var(--muted);
  display: grid;
  gap: 4px;
  min-width: 125px;
}

.hero-metrics strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.hero-visual {
  min-height: 520px;
}

.device {
  position: absolute;
}

.laptop {
  bottom: 28px;
  left: 0;
  right: 34px;
  height: 420px;
}

.laptop-screen {
  background: #07111f;
  border: 9px solid #111827;
  border-radius: 18px;
  box-shadow: 0 34px 80px rgba(6, 27, 58, .22);
  display: grid;
  grid-template-columns: 154px 1fr;
  height: 390px;
  overflow: hidden;
  position: relative;
}

.laptop-screen::before {
  background: #222b39;
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 5px;
  z-index: 2;
}

.laptop-base {
  background: linear-gradient(90deg, #1f2937, #f8fafc 22%, #b9c3d2 50%, #f8fafc 78%, #1f2937);
  border-radius: 0 0 28px 28px;
  bottom: -22px;
  content: "";
  height: 26px;
  left: 17%;
  position: absolute;
  right: 17%;
}

.mock-sidebar {
  background: linear-gradient(180deg, #061b3a, #082a5e);
  color: rgba(255, 255, 255, .78);
  display: grid;
  gap: 4px;
  grid-auto-rows: min-content;
  padding: 28px 16px;
}

.mock-logo {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.mock-sidebar strong,
.mock-sidebar span:not(.mock-logo) {
  border-radius: 7px;
  font-size: .74rem;
  font-weight: 800;
  padding: 10px 12px;
}

.mock-sidebar strong {
  background: var(--blue);
  color: #fff;
}

.mock-dashboard {
  background: #f8fbff;
  display: grid;
  grid-template-rows: 92px 1fr;
  padding: 18px;
}

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

.mock-stats span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(6, 27, 58, .06);
  display: grid;
  gap: 6px;
  padding: 13px;
}

.mock-stats small {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-stats strong {
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1;
}

.mock-map {
  background:
    linear-gradient(rgba(7, 88, 189, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 189, .12) 1px, transparent 1px),
    linear-gradient(135deg, #fff, #ecf5ff);
  background-size: 36px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.mock-route {
  border: 4px solid var(--blue);
  border-left: 0;
  border-radius: 999px;
  position: absolute;
}

.route-main {
  height: 220px;
  left: 92px;
  top: 52px;
  transform: rotate(-10deg);
  width: 520px;
}

.route-alt {
  border-color: rgba(242, 13, 22, .72);
  height: 170px;
  left: 50px;
  top: 148px;
  transform: rotate(14deg);
  width: 360px;
}

.map-vehicle {
  align-items: center;
  background: var(--blue);
  border: 6px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(7, 88, 189, .2);
  color: #fff;
  display: inline-flex;
  font-size: .68rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  position: absolute;
  width: 46px;
}

.vehicle-one {
  left: 148px;
  top: 112px;
}

.vehicle-two {
  left: 350px;
  top: 210px;
}

.vehicle-three {
  background: var(--navy);
  left: 250px;
  top: 284px;
}

.phone {
  background: #101820;
  border: 8px solid #111827;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(6, 27, 58, .24);
  height: 330px;
  overflow: hidden;
  right: 0;
  top: 170px;
  width: 170px;
  z-index: 3;
}

.phone-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: 58px;
  position: relative;
}

.phone-top::before {
  background: #111827;
  border-radius: 999px;
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  width: 62px;
}

.phone-map {
  background:
    linear-gradient(rgba(7, 88, 189, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 189, .11) 1px, transparent 1px),
    #f6fbff;
  background-size: 24px 24px;
  height: 170px;
  position: relative;
}

.phone-radius {
  border: 1px solid rgba(7, 88, 189, .35);
  border-radius: 999px;
  height: 100px;
  left: 35px;
  position: absolute;
  top: 34px;
  width: 100px;
}

.phone-car {
  background: var(--blue);
  border: 5px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(7, 88, 189, .24);
  height: 42px;
  left: 64px;
  position: absolute;
  top: 62px;
  width: 42px;
}

.phone-info {
  background: #fff;
  display: grid;
  gap: 3px;
  padding: 14px;
}

.phone-info strong {
  color: var(--navy);
  font-size: .82rem;
}

.phone-info span {
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
}

.phone-info small {
  color: #18b76b;
  font-size: .68rem;
  font-weight: 800;
}

.floating-alert {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  padding: 16px;
  position: absolute;
  z-index: 4;
  backdrop-filter: blur(16px);
}

.floating-alert strong {
  color: var(--navy);
  display: block;
  font-size: .9rem;
  margin-bottom: 4px;
}

.floating-alert small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.alert-speed {
  bottom: 28px;
  left: 18px;
  width: 290px;
}

.alert-zone {
  bottom: -18px;
  right: 148px;
  width: 250px;
}

.alert-icon,
.zone-icon {
  background: rgba(242, 13, 22, .12);
  border-radius: var(--radius);
  display: inline-block;
  flex: 0 0 auto;
  height: 44px;
  position: relative;
  width: 44px;
}

.alert-icon::before {
  background: var(--red);
  border-radius: 999px 999px 6px 6px;
  content: "";
  height: 22px;
  left: 15px;
  position: absolute;
  top: 10px;
  width: 14px;
}

.zone-icon {
  background: rgba(7, 88, 189, .12);
}

.zone-icon::before {
  background: var(--blue);
  clip-path: polygon(50% 0, 86% 16%, 78% 72%, 50% 100%, 22% 72%, 14% 16%);
  content: "";
  height: 26px;
  left: 9px;
  position: absolute;
  top: 9px;
  width: 26px;
}

.track-map {
  background:
    linear-gradient(rgba(7, 88, 189, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 189, .09) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  inset: 18px 0 70px 26px;
  overflow: hidden;
  position: absolute;
}

.route {
  border: 3px solid var(--blue);
  border-left: 0;
  border-radius: 999px;
  position: absolute;
}

.route-a {
  height: 260px;
  left: 72px;
  top: 88px;
  transform: rotate(-18deg);
  width: 420px;
}

.route-b {
  border-color: rgba(242, 13, 22, .72);
  height: 210px;
  left: 30px;
  top: 210px;
  transform: rotate(18deg);
  width: 330px;
}

.pin {
  background: var(--red);
  border: 7px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(242, 13, 22, .22);
  height: 28px;
  position: absolute;
  width: 28px;
}

.pin-a {
  left: 82px;
  top: 122px;
}

.pin-b {
  background: var(--blue);
  left: 360px;
  top: 220px;
}

.pin-c {
  left: 205px;
  top: 365px;
}

.dashboard-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: absolute;
  backdrop-filter: blur(16px);
}

.main-card {
  bottom: 0;
  left: 0;
  padding: 24px;
  width: min(370px, 88%);
}

.card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-top span,
.fleet-row small,
.alert-card small {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}

.card-top strong {
  color: var(--blue);
  font-size: 1.8rem;
}

.fleet-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 15px 0 0;
  margin-top: 15px;
}

.vehicle-icon,
.icon,
.tech-icon {
  background: #edf6ff;
  border-radius: var(--radius);
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.vehicle-icon {
  height: 42px;
  width: 42px;
}

.vehicle-icon::before,
.icon::before,
.tech-icon::before {
  background: var(--blue);
  content: "";
  display: block;
}

.truck::before {
  height: 16px;
  width: 26px;
  clip-path: polygon(0 20%, 64% 20%, 64% 0, 84% 0, 100% 36%, 100% 76%, 0 76%);
}

.car::before {
  border-radius: 8px 8px 5px 5px;
  height: 15px;
  width: 28px;
}

.bike::before {
  height: 22px;
  width: 28px;
  clip-path: polygon(5% 82%, 28% 82%, 45% 42%, 62% 82%, 95% 82%, 72% 58%, 51% 58%, 43% 22%, 65% 22%, 65% 8%, 33% 8%, 39% 58%, 20% 58%);
}

.alert-card {
  align-items: center;
  display: flex;
  gap: 14px;
  padding: 18px;
  right: 0;
  top: 86px;
  width: 260px;
}

.pulse {
  background: var(--red);
  border-radius: 999px;
  height: 14px;
  position: relative;
  width: 14px;
}

.pulse::after {
  animation: pulse 1.7s infinite;
  border: 1px solid var(--red);
  border-radius: 999px;
  content: "";
  inset: -8px;
  position: absolute;
}

.section,
.contact-section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.technology {
  background: var(--surface);
}

.operation-section {
  background: linear-gradient(90deg, #f8fbff 0%, #f4f9ff 44%, #edf6ff 100%);
  min-height: 850px;
  overflow: hidden;
  position: relative;
}

.operation-bg {
  inset: 0 0 0 48%;
  position: absolute;
  z-index: 0;
}

.operation-bg::before {
  background: linear-gradient(90deg, #f8fbff 0%, rgba(248, 251, 255, .88) 16%, rgba(248, 251, 255, .18) 48%, rgba(248, 251, 255, 0) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.operation-bg img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.operation-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.operation-content h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.operation-content p:not(.eyebrow) {
  font-size: 1.08rem;
  max-width: 560px;
}

.operation-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: min(740px, 58vw);
  position: relative;
  z-index: 3;
}

.operation-cards article {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(220, 231, 244, .86);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(6, 27, 58, .08);
  min-height: 305px;
  overflow: hidden;
  padding: 20px 20px 118px;
  position: relative;
  backdrop-filter: blur(14px);
}

.operation-icon {
  background: rgba(7, 88, 189, .1);
  border-radius: var(--radius);
  display: grid;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  width: 46px;
}

.operation-icon::before {
  background: var(--blue);
  content: "";
  display: block;
  height: 23px;
  width: 23px;
}

.operation-icon.location::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.operation-icon.shield::before {
  clip-path: polygon(50% 0, 88% 15%, 82% 70%, 50% 100%, 18% 70%, 12% 15%);
}

.operation-icon.chart::before {
  clip-path: polygon(0 100%, 0 62%, 18% 62%, 18% 100%, 40% 100%, 40% 34%, 58% 34%, 58% 100%, 80% 100%, 80% 8%, 100% 8%, 100% 100%);
}

.operation-cards h3 {
  font-size: 1rem;
  line-height: 1.22;
  margin-bottom: 0;
}

.operation-cards i {
  background: var(--red);
  display: block;
  height: 2px;
  margin: 12px 0 16px;
  width: 34px;
}

.operation-cards p {
  font-size: .76rem;
  line-height: 1.52;
  margin: 0;
  position: relative;
  z-index: 2;
}

.card-visual {
  bottom: 10px;
  height: 92px;
  left: 14px;
  position: absolute;
  right: 14px;
}

.map-card {
  background:
    linear-gradient(rgba(7, 88, 189, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 189, .12) 1px, transparent 1px),
    #f4f8ff;
  background-size: 20px 20px;
  border-radius: 14px;
  transform: perspective(220px) rotateX(38deg);
}

.map-card::before {
  background: var(--blue);
  border-radius: 999px;
  bottom: 28px;
  content: "";
  height: 52px;
  left: 60px;
  position: absolute;
  width: 8px;
  transform: rotate(52deg);
}

.map-card::after {
  background: var(--blue);
  border: 5px solid #fff;
  border-radius: 999px;
  content: "";
  height: 28px;
  left: 84px;
  position: absolute;
  top: 18px;
  width: 28px;
}

.shield-card::before {
  background: linear-gradient(135deg, var(--blue), #4a91ff);
  clip-path: polygon(50% 0, 88% 15%, 82% 70%, 50% 100%, 18% 70%, 12% 15%);
  content: "";
  height: 74px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 62px;
}

.shield-card::after,
.donut-card::after {
  border: 2px solid rgba(7, 88, 189, .18);
  border-radius: 999px;
  content: "";
  height: 92px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 126px;
}

.donut-card::before {
  background: conic-gradient(var(--red) 0 24%, var(--blue) 24% 72%, #dce7f4 72% 100%);
  border-radius: 999px;
  content: "";
  height: 78px;
  left: 50%;
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  width: 78px;
}

.operation-floating {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.floating-panel {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(220, 231, 244, .88);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(6, 27, 58, .1);
  color: var(--navy);
  position: absolute;
  backdrop-filter: blur(14px);
}

.performance-panel {
  height: 118px;
  padding: 18px;
  right: 18%;
  top: 92px;
  width: 260px;
}

.floating-panel strong {
  display: block;
  font-size: .86rem;
  margin-bottom: 10px;
}

.chart-line {
  border: 3px solid var(--blue);
  border-bottom: 0;
  border-left: 0;
  border-radius: 50%;
  display: block;
  height: 54px;
  position: absolute;
  right: 18px;
  top: 44px;
  transform: rotate(-13deg);
  width: 178px;
}

.red-line {
  border-color: var(--red);
  height: 42px;
  top: 58px;
  transform: rotate(-4deg);
}

.vehicles-panel {
  left: 54%;
  padding: 18px;
  top: 260px;
  width: 230px;
}

.donut-chart {
  align-items: center;
  background: conic-gradient(var(--blue) 0 76%, #dce7f4 76% 100%);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 74px;
  justify-content: center;
  position: relative;
  width: 74px;
}

.donut-chart::after {
  background: #fff;
  border-radius: 999px;
  content: "";
  inset: 14px;
  position: absolute;
}

.donut-chart {
  isolation: isolate;
}

.donut-chart::before {
  content: "27";
  position: absolute;
  z-index: 2;
}

.vehicles-panel small,
.alerts-panel small,
.fuel-panel small {
  color: var(--muted);
  display: block;
  font-size: .78rem;
  font-weight: 700;
  margin-top: 8px;
}

.alerts-panel {
  align-items: center;
  display: grid;
  gap: 0 12px;
  grid-template-columns: 44px 1fr;
  padding: 18px;
  right: 12%;
  top: 260px;
  width: 190px;
}

.alerts-panel strong {
  font-size: 1.65rem;
  line-height: 1;
  margin: 0;
}

.mini-alert {
  background: rgba(242, 13, 22, .12);
  border-radius: 999px;
  grid-row: span 2;
  height: 42px;
  position: relative;
  width: 42px;
}

.mini-alert::before {
  background: var(--red);
  border-radius: 999px 999px 6px 6px;
  content: "";
  height: 22px;
  left: 14px;
  position: absolute;
  top: 9px;
  width: 14px;
}

.fuel-panel {
  align-items: center;
  display: grid;
  gap: 0 12px;
  grid-template-columns: 44px 1fr;
  left: 58%;
  padding: 18px;
  top: 450px;
  width: 215px;
}

.fuel-icon {
  background: rgba(7, 88, 189, .1);
  border-radius: var(--radius);
  grid-row: span 2;
  height: 42px;
  position: relative;
  width: 42px;
}

.fuel-icon::before {
  background: var(--blue);
  clip-path: polygon(25% 0, 70% 0, 70% 20%, 82% 20%, 82% 48%, 70% 48%, 70% 100%, 25% 100%);
  content: "";
  height: 26px;
  left: 11px;
  position: absolute;
  top: 8px;
  width: 22px;
}

.intro-grid,
.benefit-grid,
.feature-image-grid {
  display: grid;
  gap: 22px;
}

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

.info-card,
.tech-card,
.benefit-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.info-card,
.tech-card {
  background: #fff;
}

.icon,
.tech-icon {
  height: 54px;
  margin-bottom: 24px;
  width: 54px;
}

.icon::before,
.tech-icon::before {
  height: 26px;
  width: 26px;
}

.location::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.shield::before {
  clip-path: polygon(50% 0, 88% 15%, 82% 70%, 50% 100%, 18% 70%, 12% 15%);
}

.chart::before {
  clip-path: polygon(0 100%, 0 62%, 18% 62%, 18% 100%, 40% 100%, 40% 34%, 58% 34%, 58% 100%, 80% 100%, 80% 8%, 100% 8%, 100% 100%);
}

.benefits {
  background:
    linear-gradient(135deg, #061b3a 0%, #07285f 54%, #0758bd 100%);
  color: #fff;
}

.solutions {
  background:
    linear-gradient(90deg, rgba(245, 249, 254, .98) 0%, rgba(245, 249, 254, .96) 32%, rgba(245, 249, 254, .64) 62%, rgba(245, 249, 254, .98) 100%);
  overflow: hidden;
  padding-bottom: clamp(44px, 4.5vw, 64px);
  padding-top: clamp(56px, 5vw, 74px);
  position: relative;
}

.solutions-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.solutions-copy h2 {
  font-size: clamp(2.35rem, 3.45vw, 3.7rem);
  line-height: 1.05;
  max-width: 720px;
  margin-bottom: 22px;
}

.solutions-copy p:not(.eyebrow) {
  font-size: 1.02rem;
  max-width: 560px;
}

.solutions-showcase {
  align-items: start;
  display: grid;
  gap: clamp(22px, 3.5vw, 48px);
  grid-template-columns: minmax(410px, .5fr) minmax(0, 1fr);
  position: relative;
}

.solutions-left {
  display: grid;
  gap: 34px;
  position: relative;
  z-index: 3;
}

.solution-cards {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 3;
}

.solution-cards article {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(220, 231, 244, .82);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 27, 58, .08);
  display: grid;
  gap: 22px;
  grid-template-columns: 86px 1fr;
  min-height: 126px;
  padding: 18px 22px 18px 18px;
  backdrop-filter: blur(14px);
}

.solution-cards strong {
  color: var(--red);
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 900;
  margin-right: 10px;
}

.solution-cards h3 {
  display: inline;
  font-size: 1.1rem;
}

.solution-cards p {
  font-size: .95rem;
  line-height: 1.55;
  margin: 11px 0 0;
}

.solution-icon {
  background: rgba(242, 13, 22, .09);
  border-radius: 28px;
  display: grid;
  height: 72px;
  place-items: center;
  position: relative;
  width: 72px;
}

.solution-icon::before {
  background: var(--red);
  content: "";
  display: block;
  height: 36px;
  width: 36px;
}

.team,
.cam {
  background: rgba(7, 88, 189, .09);
}

.team::before,
.cam::before {
  background: var(--blue);
}

.bell::before {
  border-radius: 18px 18px 7px 7px;
  clip-path: polygon(20% 42%, 20% 22%, 38% 8%, 62% 8%, 80% 22%, 80% 42%, 90% 76%, 10% 76%);
}

.team::before {
  clip-path: polygon(50% 7%, 65% 17%, 65% 36%, 50% 46%, 35% 36%, 35% 17%, 50% 7%, 18% 48%, 35% 48%, 35% 60%, 18% 60%, 8% 84%, 45% 84%, 45% 60%, 55% 60%, 55% 84%, 92% 84%, 82% 60%, 65% 60%, 65% 48%, 82% 48%, 68% 84%, 32% 84%);
}

.cam::before {
  border-radius: 8px;
  clip-path: polygon(8% 20%, 68% 20%, 68% 36%, 92% 26%, 92% 74%, 68% 64%, 68% 80%, 8% 80%);
}

.fleet-scene {
  min-height: 590px;
  position: relative;
  z-index: 1;
}

.fleet-scene::before {
  background: linear-gradient(90deg, var(--soft) 0%, rgba(245, 249, 254, .64) 18%, rgba(245, 249, 254, 0) 43%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.fleet-scene > img:first-child {
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(6, 27, 58, .12);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center right;
  position: absolute;
  width: 100%;
}

.orbit {
  border: 2px solid rgba(7, 123, 232, .42);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.orbit-one {
  height: 430px;
  right: 54px;
  top: 42px;
  width: 620px;
}

.orbit-two {
  height: 295px;
  right: 166px;
  top: 124px;
  width: 452px;
}

.satellite {
  background: linear-gradient(135deg, #26384d, #bac6d4);
  border-radius: 999px;
  height: 28px;
  position: absolute;
  right: 72px;
  top: 8px;
  transform: rotate(24deg);
  width: 46px;
  z-index: 4;
}

.satellite::before,
.satellite::after {
  background: #0b367a;
  content: "";
  height: 22px;
  position: absolute;
  top: 3px;
  width: 42px;
}

.satellite::before {
  right: 50px;
  transform: skewY(28deg);
}

.satellite::after {
  left: 50px;
  transform: skewY(-28deg);
}

.status-chip {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(220, 231, 244, .86);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(6, 27, 58, .12);
  display: grid;
  gap: 2px 12px;
  grid-template-columns: 42px 1fr;
  min-width: 152px;
  padding: 12px 15px;
  position: absolute;
  z-index: 5;
  backdrop-filter: blur(14px);
}

.status-chip strong {
  color: var(--navy);
  font-size: .82rem;
  line-height: 1.2;
}

.status-chip small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  grid-column: 2;
}

.status-chip b {
  background: #18b76b;
  border-radius: 999px;
  display: inline-block;
  height: 8px;
  margin-right: 5px;
  width: 8px;
}

.chip-icon {
  border: 2px solid var(--blue);
  border-radius: 999px;
  display: block;
  grid-row: span 2;
  height: 34px;
  position: relative;
  width: 34px;
}

.chip-icon::before {
  background: var(--blue);
  content: "";
  display: block;
  height: 18px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 18px;
}

.chip-icon.location::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.chip-icon.speed {
  border-color: var(--red);
}

.chip-icon.speed::before {
  background: var(--red);
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
}

.chip-icon.zone::before {
  background: var(--blue);
  clip-path: polygon(0 0, 38% 0, 38% 16%, 16% 16%, 16% 38%, 0 38%, 0 0, 62% 0, 100% 0, 100% 38%, 84% 38%, 84% 16%, 62% 16%, 62% 0, 0 62%, 16% 62%, 16% 84%, 38% 84%, 38% 100%, 0 100%, 0 62%, 62% 84%, 84% 84%, 84% 62%, 100% 62%, 100% 100%, 62% 100%);
}

.chip-icon.ignition {
  border-color: var(--red);
}

.chip-icon.ignition::before {
  background: var(--red);
  border-radius: 999px;
}

.chip-icon.wrench::before {
  clip-path: polygon(72% 0, 100% 28%, 82% 46%, 54% 18%, 46% 26%, 74% 54%, 26% 100%, 0 74%, 46% 26%);
}

.chip-icon.cargo-box::before {
  clip-path: polygon(50% 0, 92% 24%, 92% 74%, 50% 100%, 8% 74%, 8% 24%);
}

.chip-location {
  left: 16%;
  top: 82px;
}

.chip-speed {
  left: 50%;
  top: 70px;
}

.chip-zone {
  right: 22px;
  top: 148px;
}

.chip-ignition {
  bottom: 86px;
  left: 8%;
}

.chip-maintenance {
  bottom: 74px;
  left: 35%;
}

.chip-cargo {
  bottom: 54px;
  right: 46px;
}

.solution-benefit-rail {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(220, 231, 244, .86);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(6, 27, 58, .08);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  padding: 16px 20px;
}

.solution-benefit-rail span {
  align-items: center;
  color: var(--muted);
  display: grid;
  gap: 2px 14px;
  grid-template-columns: 44px 1fr;
  min-height: 56px;
  padding: 0 18px;
}

.solution-benefit-rail span + span {
  border-left: 1px solid var(--line);
}

.solution-benefit-rail strong {
  color: var(--navy);
  display: block;
}

.rail-icon {
  border: 2px solid var(--blue);
  border-radius: 999px;
  display: block;
  grid-row: span 2;
  height: 38px;
  position: relative;
  width: 38px;
}

.rail-icon::before {
  background: var(--blue);
  content: "";
  height: 20px;
  left: 7px;
  position: absolute;
  top: 7px;
  width: 20px;
}

.shield-mini::before {
  clip-path: polygon(50% 0, 88% 15%, 82% 70%, 50% 100%, 18% 70%, 12% 15%);
}

.bars-mini::before {
  clip-path: polygon(0 100%, 0 58%, 18% 58%, 18% 100%, 40% 100%, 40% 28%, 58% 28%, 58% 100%, 80% 100%, 80% 0, 100% 0, 100% 100%);
}

.clock-mini::before {
  border-radius: 999px;
}

.support-mini::before {
  clip-path: polygon(12% 52%, 12% 38%, 22% 18%, 50% 6%, 78% 18%, 88% 38%, 88% 64%, 74% 64%, 74% 42%, 64% 24%, 50% 20%, 36% 24%, 26% 42%, 26% 64%, 12% 64%);
}

.system-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
}

.panel-header {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.panel-header span {
  background: #d7e5f5;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.panel-map {
  background:
    linear-gradient(rgba(7, 88, 189, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 189, .1) 1px, transparent 1px),
    #f7fbff;
  background-size: 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 280px;
  position: relative;
}

.map-line {
  border: 4px solid var(--blue);
  border-left: 0;
  border-radius: 999px;
  height: 150px;
  left: 35px;
  position: absolute;
  top: 62px;
  transform: rotate(-15deg);
  width: 250px;
}

.map-dot {
  background: var(--red);
  border: 6px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(6, 27, 58, .16);
  height: 26px;
  position: absolute;
  width: 26px;
}

.dot-one {
  left: 50px;
  top: 74px;
}

.dot-two {
  background: var(--blue);
  left: 225px;
  top: 132px;
}

.dot-three {
  left: 120px;
  top: 210px;
}

.panel-data {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.panel-data span {
  background: #edf3fb;
  border-radius: 999px;
  height: 10px;
}

.panel-data span:nth-child(2) {
  width: 76%;
}

.panel-data span:nth-child(3) {
  width: 54%;
}

.benefits {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
}

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

.benefit-item {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.benefit-item strong {
  color: #fff;
  display: block;
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.benefits h2 {
  color: #fff;
}

.benefits p {
  color: rgba(255, 255, 255, .76);
}

.cameras-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .18), transparent 22rem),
    radial-gradient(circle at 86% 14%, rgba(7, 88, 189, .32), transparent 20rem),
    linear-gradient(135deg, #061b3a 0%, #083e86 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.cameras-section::before {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  content: "";
  height: 520px;
  position: absolute;
  right: -180px;
  top: -180px;
  width: 520px;
}

.cameras-heading {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.cameras-heading h2 {
  color: #fff;
}

.cameras-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
  max-width: 760px;
}

.camera-feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.camera-feature-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  color: var(--ink);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.camera-feature-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.camera-feature-copy {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.camera-feature-copy span {
  color: var(--red);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.camera-feature-copy h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.camera-feature-copy p {
  color: var(--muted);
  margin: 0;
}

.camera-feature-copy ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.camera-feature-copy li {
  color: #40516a;
  font-weight: 700;
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.camera-feature-copy li::before {
  background: var(--blue);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: .6em;
  width: 8px;
}

.camera-strip {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.camera-strip span {
  color: #fff;
  font-weight: 900;
  padding: 20px;
  text-align: center;
}

.camera-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.camera-single {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
}

.camera-benefit-panels {
  display: grid;
  gap: 16px;
}

.camera-benefit-panels article {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
}

.camera-benefit-panels strong {
  color: #fff;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.camera-benefit-panels p {
  color: rgba(255, 255, 255, .74);
  margin: 0;
}

.journey-section {
  background:
    linear-gradient(135deg, rgba(7, 88, 189, .08), rgba(242, 13, 22, .04)),
    #fff;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.12fr);
}

.journey-copy {
  align-self: center;
}

.journey-visual {
  align-self: center;
}

.journey-visual img {
  border: 1px solid rgba(220, 231, 244, .9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
}

.journey-board {
  display: grid;
  gap: 18px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-board article {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 27, 58, .08);
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 30px);
}

.journey-board span {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.journey-board h3,
.journey-board p {
  grid-column: auto;
}

.journey-board p {
  margin: 0;
}

.temperature-section {
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(10, 123, 232, .14), transparent 22rem),
    linear-gradient(135deg, #f7fbff 0%, #eef6ff 100%);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  overflow: hidden;
}

.temperature-visual img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
}

.temperature-certifications {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 27, 58, .08);
  margin-top: 18px;
  padding: 22px;
}

.temperature-certifications p {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
  margin: 0 0 12px;
}

.temperature-certifications div {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.temperature-certifications span {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(220, 231, 244, .9);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  min-height: 128px;
  padding: 14px 18px;
}

.temperature-certifications img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  max-height: 94px;
  max-width: 96%;
  object-fit: contain;
}

.temperature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.temperature-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 27, 58, .06);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
  padding: 16px 18px 16px 42px;
  position: relative;
}

.temperature-list span::before {
  background: var(--blue);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 18px;
  position: absolute;
  top: 22px;
  width: 10px;
}

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

.feature-image-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(6, 27, 58, .08);
  overflow: hidden;
}

.feature-image-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.feature-image-card div {
  padding: 24px;
}

.feature-image-card span {
  color: var(--red);
  display: block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.homologation-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 251, 255, .96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(6, 27, 58, .08);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
}

.homologation-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 10px;
}

.homologation-card p:last-child {
  margin-bottom: 0;
  max-width: 720px;
}

.homologation-card img {
  background: #fff;
  border: 1px solid rgba(220, 231, 244, .9);
  border-radius: var(--radius);
  display: block;
  justify-self: end;
  max-height: 118px;
  max-width: 100%;
  object-fit: contain;
  padding: 14px 18px;
  width: 420px;
}

.clients {
  background:
    radial-gradient(circle at 4% 88%, rgba(10, 123, 232, .16), transparent 18rem),
    linear-gradient(135deg, #fff, #f2f8ff);
  overflow: hidden;
  position: relative;
}

.clients::after {
  border: 1px solid rgba(7, 88, 189, .16);
  border-radius: 999px;
  bottom: -140px;
  content: "";
  height: 320px;
  left: -90px;
  position: absolute;
  width: 320px;
}

.clients-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.client-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.client-grid span {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(220, 231, 244, .9);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(6, 27, 58, .07);
  display: flex;
  justify-content: center;
  min-height: 128px;
  padding: 20px;
}

.client-grid img {
  display: block;
  filter: saturate(.98);
  max-height: 88px;
  max-width: 92%;
  object-fit: contain;
  transition: filter .2s ease, transform .2s ease;
}

.client-grid span:hover img {
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.client-carousel {
  margin-top: 34px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.client-carousel::before,
.client-carousel::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(120px, 18vw);
  z-index: 2;
}

.client-carousel::before {
  background: linear-gradient(90deg, #f7fbff, rgba(247, 251, 255, 0));
  left: 0;
}

.client-carousel::after {
  background: linear-gradient(270deg, #f7fbff, rgba(247, 251, 255, 0));
  right: 0;
}

.client-track {
  animation: client-scroll 46s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

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

.client-set {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
}

.client-set span {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(220, 231, 244, .9);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(6, 27, 58, .07);
  display: flex;
  flex: 0 0 220px;
  height: 124px;
  justify-content: center;
  padding: 18px;
}

.client-set img {
  display: block;
  max-height: 82px;
  max-width: 94%;
  object-fit: contain;
}

.trust-strip {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.trust-strip span {
  color: var(--navy);
  font-weight: 900;
  padding: 20px;
  text-align: center;
}

.trust-strip span + span {
  border-left: 1px solid var(--line);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(6, 27, 58, .98), rgba(7, 88, 189, .94));
  color: #fff;
  display: grid;
  gap: clamp(30px, 6vw, 78px);
  grid-template-columns: minmax(0, .9fr) minmax(310px, 520px);
}

.contact-section h2,
.contact-section h3 {
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, .76);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-lines a {
  color: #fff;
  font-weight: 800;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  color: var(--navy);
  display: grid;
  font-size: .9rem;
  font-weight: 800;
  gap: 8px;
}

input,
textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 48px;
  outline: 0;
  padding: 12px 14px;
  resize: vertical;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 88, 189, .12);
}

.site-footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.whatsapp-float {
  background: #18b76b;
  border-radius: var(--radius);
  bottom: 22px;
  box-shadow: 0 18px 35px rgba(24, 183, 107, .28);
  color: #fff;
  font-weight: 900;
  padding: 14px 18px;
  position: fixed;
  right: 22px;
  z-index: 18;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@keyframes pulse {
  from {
    opacity: .75;
    transform: scale(.8);
  }
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}

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

@media (max-width: 1260px) {
  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .nav-menu {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(7, 17, 31, .08);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 20px 22px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .site-header.is-scrolled .nav-menu {
    top: 68px;
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    padding: 14px 0;
  }
}

@media (max-width: 1060px) {
  .hero,
  .solution-layout,
  .solutions-showcase,
  .benefits,
  .journey-section,
  .temperature-section,
  .homologation-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 820px;
    width: 100%;
  }

  .laptop {
    left: 0;
    right: 88px;
  }

  .phone {
    right: 8px;
  }

  .alert-zone {
    right: 130px;
  }

  .intro-grid,
  .camera-feature-grid,
  .journey-board,
  .feature-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .operation-section {
    min-height: auto;
  }

  .operation-bg {
    inset: 40% 0 0 0;
  }

  .operation-bg::before {
    background: linear-gradient(180deg, #f8fbff 0%, rgba(248, 251, 255, .72) 28%, rgba(248, 251, 255, .16) 100%);
  }

  .operation-content,
  .operation-cards {
    max-width: 100%;
  }

  .operation-floating {
    display: none;
  }

  .fleet-scene {
    min-height: 540px;
  }

  .solution-benefit-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }

  .solution-benefit-rail span:nth-child(3) {
    border-left: 0;
  }

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

  .camera-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .camera-strip span:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .camera-single {
    grid-template-columns: 1fr;
  }

  .temperature-copy {
    order: -1;
  }

  .client-set span {
    flex-basis: 200px;
  }

  .homologation-card img {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .brand img {
    height: 48px;
    width: 138px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .nav-menu {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(7, 17, 31, .08);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 20px 22px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-visual {
    min-height: 455px;
  }

  .laptop {
    bottom: 66px;
    height: 330px;
    left: 0;
    right: 0;
  }

  .laptop-screen {
    border-width: 7px;
    border-radius: 14px;
    grid-template-columns: 104px 1fr;
    height: 300px;
  }

  .mock-sidebar {
    padding: 20px 10px;
  }

  .mock-logo {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .mock-sidebar strong,
  .mock-sidebar span:not(.mock-logo) {
    font-size: .58rem;
    padding: 8px;
  }

  .mock-dashboard {
    grid-template-rows: 126px 1fr;
    padding: 10px;
  }

  .mock-stats {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-stats span {
    padding: 10px;
  }

  .mock-stats strong {
    font-size: 1rem;
  }

  .route-main {
    height: 160px;
    left: 56px;
    top: 35px;
    width: 300px;
  }

  .route-alt {
    height: 120px;
    left: 26px;
    top: 98px;
    width: 210px;
  }

  .vehicle-one {
    left: 74px;
    top: 64px;
  }

  .vehicle-two {
    left: 205px;
    top: 124px;
  }

  .vehicle-three {
    left: 145px;
    top: 170px;
  }

  .phone {
    display: none;
  }

  .floating-alert {
    padding: 12px;
  }

  .floating-alert small {
    display: none;
  }

  .alert-speed {
    bottom: 10px;
    left: 12px;
    width: 220px;
  }

  .alert-zone {
    bottom: 10px;
    left: 244px;
    right: auto;
    width: 190px;
  }

  .intro-grid,
  .benefit-grid,
  .camera-feature-grid,
  .journey-board article,
  .journey-board,
  .feature-image-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .journey-board h3,
  .journey-board p {
    grid-column: auto;
  }

  .client-set {
    gap: 12px;
    padding-right: 12px;
  }

  .client-set span {
    flex-basis: 168px;
    height: 96px;
    padding: 14px;
  }

  .client-set img {
    max-height: 58px;
  }

  .temperature-certifications div {
    grid-template-columns: 1fr;
  }

  .temperature-certifications span {
    min-height: 118px;
  }

  .temperature-certifications img {
    max-height: 88px;
  }

  .homologation-card img {
    max-height: 92px;
    padding: 12px;
    width: 100%;
  }

  .trust-strip span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .operation-section {
    padding-bottom: 420px;
  }

  .operation-bg {
    inset: auto 0 0 0;
    height: 390px;
  }

  .operation-content h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .operation-cards {
    grid-template-columns: 1fr;
  }

  .operation-cards article {
    min-height: 260px;
  }

  .card-visual {
    opacity: .7;
    right: 30px;
    left: auto;
    width: 150px;
  }

  .solutions-showcase {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    display: grid;
  }

  .solution-cards article {
    gap: 16px;
    grid-template-columns: 66px 1fr;
    padding: 18px;
  }

  .solution-icon {
    border-radius: 20px;
    height: 58px;
    width: 58px;
  }

  .solution-icon::before {
    height: 28px;
    width: 28px;
  }

  .fleet-scene {
    min-height: 430px;
  }

  .satellite,
  .orbit {
    display: none;
  }

  .fleet-scene > img:first-child {
    object-position: center;
  }

  .status-chip {
    min-width: 132px;
    padding: 10px 12px;
  }

  .status-chip strong {
    font-size: .72rem;
  }

  .status-chip small {
    font-size: .66rem;
  }

  .chip-location {
    left: 12px;
    top: 14px;
  }

  .chip-speed {
    left: auto;
    right: 12px;
    top: 78px;
  }

  .chip-zone {
    right: 12px;
    top: 160px;
  }

  .chip-ignition {
    bottom: 88px;
    left: 12px;
  }

  .chip-maintenance {
    bottom: 18px;
    left: 12px;
  }

  .chip-cargo {
    bottom: 18px;
    right: 12px;
  }

  .solution-benefit-rail {
    grid-template-columns: 1fr;
    padding: 8px 18px;
  }

  .solution-benefit-rail span,
  .solution-benefit-rail span + span,
  .solution-benefit-rail span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  .solution-benefit-rail span:first-child {
    border-top: 0;
  }

  .camera-feature-card img {
    aspect-ratio: 4 / 3;
  }

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

  .camera-strip span,
  .camera-strip span + span,
  .camera-strip span:nth-child(3),
  .camera-strip span:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding: 16px 0;
  }

  .camera-strip span:first-child {
    border-top: 0;
  }

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

  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
