@font-face {
  font-family: Inter;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --navy: #061a3a;
  --blue: #0066ff;
  --ink: #162434;
  --muted: #5d6c7e;
  --border: #dde3eb;
  --surface: #f5f7fa;
  --green: #087e61;
  --amber: #b56a0a;
  --container: 1376px;
  --header-height: 80px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open,
body.dialog-is-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 650;
  line-height: 1.2;
  text-wrap: balance;
}
h1 {
  font-size: 52px;
}
h2 {
  font-size: 38px;
}
h3 {
  font-size: 18px;
}
p {
  color: var(--muted);
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.container {
  width: calc(100% - 96px);
  max-width: var(--container);
  margin-inline: auto;
  min-width: 0;
}
.section {
  padding: 96px 0;
}
.icon {
  display: inline-block;
  flex: none;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow-light {
  color: #b2d0ff;
}
.eyebrow-line {
  width: 26px;
  height: 2px;
  background: #5a9cff;
}
.section-heading {
  margin-bottom: 40px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.split-heading > p,
.split-heading > div > p:not(.eyebrow) {
  max-width: 490px;
  line-height: 1.8;
}
.section-lead {
  font-size: 18px;
  line-height: 1.85;
  margin-top: 22px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.button-primary {
  background: var(--blue);
  color: #fff;
}
.button-primary:hover {
  background: #0054d6;
}
.button-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--navy);
}
.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.button-ghost {
  background: transparent;
  color: #fff;
  border-color: #7f91a8;
}
.button-ghost:hover {
  background: #ffffff15;
  border-color: #fff;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  margin-top: 22px;
}
.text-link:hover {
  color: #004bbd;
}
.text-link .icon {
  transition: transform 0.18s;
}
.text-link:hover .icon {
  transform: translate(2px, -2px);
}
.icon-button {
  width: 42px;
  height: 42px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.icon-button:hover {
  background: var(--surface);
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 1000;
  background: #fff;
  padding: 12px 20px;
  color: var(--blue);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.navbar {
  display: flex;
  align-items: center;
  gap: 42px;
  min-height: 80px;
}
.brand {
  flex: none;
  width: 172px;
}
.brand img {
  width: 172px;
  height: 48px;
  object-fit: contain;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.main-navigation > a {
  font-size: 13px;
  font-weight: 550;
  white-space: nowrap;
  position: relative;
}
.main-navigation > a:hover,
.main-navigation > a[aria-current] {
  color: var(--blue);
}
.main-navigation > a[aria-current]::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  white-space: nowrap;
}
.client-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.client-link .icon {
  width: 16px;
  height: 16px;
}
.client-link:hover {
  color: var(--blue);
}
.nav-cta {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
}
.nav-cta .icon {
  width: 16px;
  height: 16px;
}
.menu-toggle,
.mobile-tracking {
  display: none !important;
}
.image-trigger {
  position: relative;
  cursor: zoom-in;
}
.image-expand {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px #061a3a10;
}
.image-expand .icon {
  width: 16px;
  height: 16px;
}
.offering-bar {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.offering-inner {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.offering-inner p {
  font-size: 12px;
}
.offering-inner strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.offering-inner > a {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-left: 1px solid var(--border);
  padding-left: 26px;
}
.offering-inner > a:hover {
  color: var(--blue);
}
.offering-inner .icon {
  width: 16px;
  height: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.service-card:hover {
  border-color: #91b9f1;
  box-shadow: 0 8px 24px #061a3a0c;
}
.service-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.6;
  background: var(--surface);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .service-image img {
  transform: scale(1.035);
}
.service-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px;
  flex: 1;
}
.service-icon {
  display: inline-flex;
  color: var(--blue);
  margin-bottom: 20px;
}
.service-icon .icon {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-size: 18px;
  min-height: 42px;
  line-height: 1.3;
  text-wrap: initial;
}
.service-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 12px;
  margin-bottom: 22px;
}
.service-card .text-link {
  margin-top: auto;
  font-size: 14px;
}
.services-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
}
.services-note > .icon {
  color: var(--green);
  width: 18px;
  height: 18px;
}
.dashboard-section {
  background: #fff;
}
.figure-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.app-section {
  background: var(--surface);
  border-block: 1px solid #e7ecf2;
}
.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 84px;
}
.app-photo {
  position: relative;
  align-self: stretch;
  max-height: 770px;
  overflow: hidden;
  border-radius: 96px 8px 96px 8px;
  min-height: 580px;
}
.app-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}
.app-photo figcaption {
  position: absolute;
  bottom: 30px;
  left: 28px;
  right: 40px;
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  align-items: center;
  color: var(--blue);
}
.app-photo figcaption > span {
  font-size: 11px;
  color: var(--muted);
}
.app-photo figcaption strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.app-photo figcaption > .icon {
  width: 24px;
  height: 24px;
}
.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 26px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.app-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.app-feature > .icon {
  color: var(--blue);
  width: 19px;
  height: 19px;
  margin-top: 2px;
}
.app-feature h3 {
  font-size: 16px;
}
.app-feature p {
  font-size: 14px;
  margin-top: 7px;
  line-height: 1.75;
}
.offline-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 14px;
}
.offline-note > .icon {
  color: var(--green);
}
.offline-note strong {
  color: var(--green);
  font-size: 15px;
}
.offline-note p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 4px;
}
.transport-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.transport-list {
  margin: 26px 0 0;
}
.transport-list > div {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 12px;
}
.transport-list dt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.transport-list dt .icon {
  color: var(--blue);
  width: 18px;
  height: 18px;
  position: relative;
  top: 2px;
}
.transport-list dd {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.industries-section {
  background: var(--surface);
  border-top: 1px solid #e7ecf2;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.industry-item {
  border-top: 1px solid #c5cfdd;
  padding-top: 22px;
}
.industry-item > .icon {
  color: var(--blue);
  width: 23px;
  height: 23px;
  margin-bottom: 20px;
}
.industry-item h3 {
  font-size: 15px;
}
.industry-item p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 10px;
}
.contact-section {
  background: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 110px;
  align-items: start;
}
.contact-copy address {
  font-style: normal;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 26px;
}
.contact-copy address > a {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  font-weight: 550;
}
.contact-copy address > a:hover {
  color: var(--blue);
}
.contact-copy address .icon {
  color: var(--blue);
  width: 18px;
  height: 18px;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.form-intro {
  margin-bottom: 24px;
}
.form-intro h3 {
  font-size: 21px;
}
.form-intro p {
  margin-top: 6px;
  font-size: 13px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field-wide {
  grid-column: 1/-1;
}
.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 7px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.field label > span {
  color: var(--muted);
}
.field label > .optional {
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd5e2;
  border-radius: 5px;
  min-height: 45px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}
.field select {
  padding-right: 28px;
}
.field textarea {
  resize: vertical;
  min-height: 104px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #0066ff30;
  border-color: var(--blue);
  outline-offset: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #738093;
}
.field [aria-invalid="true"] {
  border-color: #bf352b;
}
.field-error {
  font-size: 11px;
  line-height: 1.5;
  color: #a52c24;
}
.field-error:empty {
  display: none;
}
.consent-field {
  margin-top: 22px;
}
.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.75;
  cursor: pointer;
}
.consent-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--blue);
}
.form-submit {
  width: 100%;
  justify-content: space-between;
  margin-top: 22px;
  font-size: 13px;
}
.form-status {
  display: none;
  font-size: 13px;
  line-height: 1.7;
  padding: 14px 0;
  color: var(--green);
}
.form-status.is-visible {
  display: block;
}
.form-status.is-error {
  color: #a52c24;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.site-footer {
  background: var(--navy);
  color: #c7d3e3;
}
.footer-main {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 1.15fr;
  gap: 55px;
}
.footer-brand img {
  width: 202px;
  height: 67px;
  object-fit: contain;
  margin-left: -12px;
  margin-top: -10px;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.9;
  color: #a6b7cd;
  margin-top: 15px;
}
.footer-main h2 {
  font-size: 12px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-main nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-main nav h2,
.footer-contact h2 {
  margin-bottom: 10px;
}
.footer-main a {
  font-size: 12px;
  line-height: 1.7;
}
.footer-main a:hover {
  color: #fff;
}
.footer-main a .icon {
  width: 14px;
  height: 14px;
}
.footer-contact-link {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-block: 6px;
}
.footer-contact .icon-button {
  border-color: #ffffff30;
  color: #d0deef;
}
.footer-contact .icon-button:hover {
  background: #ffffff12;
}
.footer-contact .icon-button .icon {
  width: 19px;
  height: 19px;
}
.footer-bottom {
  border-top: 1px solid #ffffff20;
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
  color: #9badc4;
}
.page-heading {
  padding: 72px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-heading h1 {
  font-size: 46px;
  max-width: 920px;
}
.page-heading > .container > p:last-of-type {
  font-size: 18px;
  max-width: 740px;
  margin-top: 22px;
  line-height: 1.9;
}
.about-layout,
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.about-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}
.about-layout h1 {
  font-size: 38px;
}
.editorial-copy > p:not(.eyebrow) {
  margin-top: 22px;
  line-height: 1.9;
}
.editorial-copy .eyebrow > .icon {
  width: 17px;
  height: 17px;
}
.principles-section {
  background: var(--surface);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.principles-grid > div {
  border-top: 1px solid #c5cfdd;
  padding-top: 24px;
}
.principles-grid h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.principles-grid p {
  font-size: 14px;
  line-height: 1.9;
}
.service-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 32px;
}
.service-jump-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-jump-links .icon {
  width: 16px;
  height: 16px;
}
.service-detail:nth-of-type(odd) {
  background: var(--surface);
}
.service-detail-layout > img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
  border-radius: 8px;
}
.service-detail .button {
  margin-top: 28px;
}
.check-list {
  margin-top: 26px;
  display: grid;
  gap: 15px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
}
.check-list .icon {
  color: var(--green);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.integrated-cta {
  background: #edf4ff;
  padding: 56px 0;
}
.integrated-cta > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.integrated-cta h2 {
  font-size: 32px;
}
.integrated-cta p:last-child {
  margin-top: 14px;
}
.integrated-cta .button {
  flex: none;
}
.not-found {
  min-height: 60svh;
  display: flex;
  align-items: center;
}
.not-found p:not(.eyebrow) {
  margin-top: 24px;
}
.image-dialog {
  max-width: calc(100vw - 40px);
  max-height: calc(100dvh - 40px);
  width: 1350px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  overflow: hidden;
}
.image-dialog::backdrop {
  background: rgba(3, 15, 34, 0.86);
}
.image-dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}
.image-dialog-toolbar h2 {
  font-size: 15px;
}
.image-dialog-body {
  overflow: auto;
  max-height: calc(100dvh - 120px);
  padding: 16px;
  background: var(--surface);
}
.image-dialog-body img {
  width: auto;
  max-height: calc(100dvh - 156px);
  max-width: 100%;
  margin: auto;
  object-fit: contain;
}
@media (min-width: 1680px) {
  .container {
    width: calc(100% - 128px);
  }
}
@media (max-width: 1279px) {
  .container {
    width: calc(100% - 64px);
  }
  .navbar {
    gap: 28px;
  }
  .main-navigation {
    gap: 18px;
  }
  .main-navigation > a {
    font-size: 12px;
  }
  .nav-actions {
    gap: 14px;
  }
  .brand,
  .brand img {
    width: 150px;
  }
  .split-heading {
    gap: 50px;
  }
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }
  .service-card h3 {
    min-height: 0;
  }
  .service-image {
    aspect-ratio: 1.85;
  }
  .service-card-body {
    padding: 24px;
  }
  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
  .app-layout,
  .transport-layout {
    gap: 48px;
  }
  .transport-list > div {
    grid-template-columns: 148px 1fr;
  }
  .app-photo {
    min-height: 580px;
  }
  .contact-layout {
    gap: 64px;
  }
  .footer-main {
    gap: 34px;
  }
  .offering-inner {
    gap: 16px;
  }
  .offering-inner > a {
    padding-left: 20px;
    gap: 15px;
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  :root {
    --header-height: 72px;
  }
  .navbar {
    min-height: 72px;
  }
  .menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
    border: 0;
  }
  .menu-close-icon {
    display: none;
  }
  .menu-is-open .menu-open-icon {
    display: none;
  }
  .menu-is-open .menu-close-icon {
    display: block;
  }
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 32px 28px;
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px #061a3a10;
  }
  .main-navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-navigation > a {
    font-size: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f5;
  }
  .main-navigation > a[aria-current]::after {
    display: none;
  }
  .nav-contact,
  .mobile-tracking {
    display: flex !important;
  }
  .nav-actions {
    margin: 20px 0 0;
    justify-content: space-between;
    gap: 20px;
  }
  .client-link {
    font-size: 14px;
  }
  .nav-cta {
    font-size: 13px;
  }
  .section {
    padding: 76px 0;
  }
  h2 {
    font-size: 33px;
  }
  .offering-inner {
    flex-wrap: wrap;
    padding-block: 20px;
    justify-content: flex-start;
    gap: 14px 20px;
  }
  .offering-inner > p {
    width: 100%;
  }
  .offering-inner strong {
    display: inline;
  }
  .offering-inner > a {
    padding: 0;
    border: 0;
    gap: 10px;
  }
  .offering-inner > a:not(:last-child) {
    border-right: 1px solid var(--border);
    padding-right: 20px;
  }
  .split-heading {
    gap: 30px;
  }
  .app-layout {
    gap: 34px;
  }
  .app-photo {
    min-height: 620px;
    border-radius: 64px 8px 64px 8px;
  }
  .app-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .app-feature p {
    margin-top: 3px;
  }
  .app-photo figcaption {
    left: 18px;
    right: 18px;
    bottom: 25px;
    padding: 13px;
  }
  .transport-layout {
    gap: 34px;
    grid-template-columns: 1.2fr 1fr;
  }
  .transport-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-layout {
    gap: 34px;
    grid-template-columns: 1fr 1.1fr;
  }
  .contact-form {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1.3fr 1fr;
    gap: 42px;
  }
  .about-layout,
  .service-detail-layout {
    gap: 40px;
  }
  .about-photo {
    height: 570px;
  }
  .page-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .navbar {
    min-height: 68px;
  }
  .brand,
  .brand img {
    width: 148px;
  }
  .brand img {
    height: 42px;
  }
  .main-navigation {
    padding-inline: 20px;
  }
  .section {
    padding: 60px 0;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 30px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .split-heading > p,
  .split-heading > div > p:not(.eyebrow) {
    font-size: 16px;
    max-width: 100%;
  }
  .offering-inner {
    gap: 14px 20px;
    min-height: 106px;
  }
  .offering-inner > p {
    font-size: 11px;
  }
  .offering-inner > p strong {
    font-size: 12px;
  }
  .offering-inner > a {
    font-size: 11px;
    gap: 6px;
  }
  .offering-inner > a:not(:last-child) {
    padding-right: 0;
    border-right: 0;
  }
  .offering-inner .icon {
    width: 13px;
    height: 13px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .service-card-body {
    padding: 18px 16px;
  }
  .service-icon {
    margin-bottom: 14px;
  }
  .service-card h3 {
    font-size: 18px;
    min-height: 42px;
  }
  .service-card p {
    font-size: 15px;
    line-height: 1.7;
  }
  .service-image {
    aspect-ratio: 1.45;
  }
  .service-card:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .service-card:last-child .service-image {
    height: 100%;
    aspect-ratio: auto;
  }
  .service-card:last-child .service-card-body {
    padding: 20px;
  }
  .service-card:last-child h3 {
    min-height: 0;
  }
  .services-note {
    font-size: 11px;
    align-items: flex-start;
  }
  .services-note .icon {
    margin-top: 2px;
  }
  .figure-caption {
    font-size: 12px;
  }
  .app-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .app-photo {
    min-height: 0;
    height: 410px;
    max-width: 550px;
    width: 100%;
    border-radius: 70px 8px 70px 8px;
  }
  .app-photo > img {
    object-position: 50% 44%;
  }
  .app-copy {
    display: contents;
  }
  .app-copy > .eyebrow {
    grid-row: 1;
    margin-bottom: -16px;
  }
  .app-copy > h2 {
    grid-row: 2;
  }
  .app-copy > .section-lead {
    grid-row: 3;
    margin-top: -10px;
  }
  .app-photo {
    grid-row: 4;
  }
  .app-features {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    gap: 24px 20px;
  }
  .app-feature h3 {
    font-size: 14px;
  }
  .app-feature p {
    font-size: 13px;
  }
  .app-feature > .icon {
    width: 17px;
    height: 17px;
  }
  .offline-note {
    margin-top: 0;
    padding-top: 22px;
  }
  .section-lead {
    font-size: 16px;
    line-height: 1.85;
  }
  .transport-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .transport-list > div {
    grid-template-columns: 145px 1fr;
    gap: 12px;
  }
  .transport-list dt,
  .transport-list dd {
    font-size: 12px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .industry-item h3 {
    font-size: 14px;
  }
  .industry-item p {
    font-size: 12px;
  }
  .industry-item > .icon {
    margin-bottom: 14px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form {
    padding: 22px;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .field label {
    font-size: 11px;
  }
  .contact-copy address {
    padding-top: 22px;
  }
  .contact-copy address a {
    font-size: 14px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding-block: 40px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-main a {
    font-size: 11px;
  }
  .footer-main h2 {
    font-size: 11px;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-block: 18px;
    font-size: 9px;
  }
  .page-heading {
    padding: 44px 0;
  }
  .page-heading h1 {
    font-size: 34px;
  }
  .page-heading > .container > p:last-of-type {
    font-size: 16px;
    margin-top: 20px;
  }
  .about-layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-photo {
    height: 330px;
  }
  .about-layout h1 {
    font-size: 30px;
  }
  .editorial-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .principles-grid h3 {
    font-size: 18px;
  }
  .service-detail-layout > img {
    max-height: 390px;
    aspect-ratio: 1.5;
  }
  .check-list li {
    font-size: 16px;
  }
  .integrated-cta > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .integrated-cta h2 {
    font-size: 27px;
  }
  .integrated-cta p {
    font-size: 14px;
  }
  .image-dialog {
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }
  .image-dialog-toolbar {
    padding: 10px 12px;
  }
  .image-dialog-toolbar h2 {
    font-size: 12px;
  }
  .image-dialog-body {
    padding: 6px;
  }
  .image-dialog-body img {
    max-height: calc(100dvh - 116px);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card:last-child {
    grid-column: auto;
    display: flex;
  }
  .service-image,
  .service-card:last-child .service-image {
    aspect-ratio: 1.9;
    height: auto;
  }
  .service-card h3 {
    min-height: 0;
  }
}
@media (max-width: 379px) {
  .container {
    width: calc(100% - 32px);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 18px;
  }
  .transport-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .button,
  .image-expand,
  .contact-form {
    display: none !important;
  }
  .container {
    width: 100%;
  }
  .section {
    padding: 24px 0;
  }
}

/* SaaS/TMS commercial site */
.saas-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 78% 22%, #1d4f9b 0, transparent 31%),
    linear-gradient(135deg, #03142f 0%, #082653 58%, #0b3269 100%);
}
.saas-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 50%, #000);
}
.saas-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(570px, 1.18fr);
  align-items: center;
  gap: 72px;
}
.saas-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #b8d4ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.saas-kicker span { width: 28px; height: 2px; background: #4c95ff; }
.saas-hero h1 { color: #fff; font-size: clamp(46px, 4.5vw, 72px); letter-spacing: -.045em; line-height: 1.04; }
.saas-hero h1 em { color: #79aefc; font-style: normal; }
.saas-lead { max-width: 620px; margin-top: 26px; color: #c8d5e8; font-size: 18px; line-height: 1.75; }
.saas-primary { min-height: 54px; padding-inline: 24px; }
.saas-secondary { min-height: 54px; border-color: #6682a7; color: #fff; background: #ffffff0b; }
.saas-secondary:hover { border-color: #fff; background: #ffffff16; }
.saas-proof { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 30px; color: #aebed3; font-size: 12px; }
.saas-proof li { display: flex; align-items: center; gap: 7px; }
.saas-proof .icon { width: 15px; height: 15px; color: #64d6b3; }
.saas-product-stage { position: relative; border: 1px solid #ffffff2b; border-radius: 18px; background: #fff; box-shadow: 0 32px 80px #0007; transform: perspective(1400px) rotateY(-2deg); }
.saas-window-bar { display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 15px; border-bottom: 1px solid #dde4ed; color: #69778b; font-size: 10px; }
.saas-window-bar span { width: 8px; height: 8px; border-radius: 50%; background: #ced5df; }
.saas-window-bar strong { margin-left: 8px; font-weight: 600; }
.saas-dashboard { display: block; overflow: hidden; width: 100%; padding: 0; border: 0; border-radius: 0 0 17px 17px; background: #f5f7fb; }
.saas-dashboard img { width: 100%; aspect-ratio: 1.36; object-fit: cover; object-position: top; }
.saas-floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 13px 15px; border: 1px solid #dbe5f1; border-radius: 10px; background: #fff; box-shadow: 0 15px 40px #03142f33; color: #087e61; }
.saas-floating-card .icon { width: 22px; height: 22px; }
.saas-floating-card span,.saas-floating-card strong,.saas-floating-card small { display: block; }
.saas-floating-card strong { color: #11243b; font-size: 11px; }
.saas-floating-card small { color: #738195; font-size: 9px; }
.saas-floating-card--top { top: 78px; right: -34px; }
.saas-floating-card--bottom { bottom: 42px; left: -42px; color: #1768d5; }
.saas-trust { border-bottom: 1px solid var(--border); background: #fff; }
.saas-trust .container { display: flex; align-items: center; min-height: 92px; gap: 54px; }
.saas-trust p { flex: none; font-size: 12px; font-weight: 650; color: #7a8798; text-transform: uppercase; letter-spacing: .06em; }
.saas-trust div div { display: flex; flex-wrap: wrap; gap: 14px 38px; color: #536174; font-size: 14px; font-weight: 650; }
.saas-section-head { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 50px; }
.saas-section-head > p { max-width: 480px; line-height: 1.8; }
.saas-module-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--border); gap: 1px; }
.saas-module { min-height: 238px; padding: 30px; background: #fff; }
.saas-module > span { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 28px; border-radius: 10px; background: #edf4ff; color: var(--blue); }
.saas-module h3 { font-size: 18px; }
.saas-module p { margin-top: 12px; font-size: 14px; line-height: 1.75; }
.saas-flow { background: #061a3a; }
.saas-section-head--light h2 { color: #fff; }
.saas-section-head--light > p { color: #aebed3; }
.saas-section-head--light .eyebrow { color: #75abfa; }
.saas-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #ffffff26; }
.saas-flow-grid li { position: relative; min-height: 340px; padding: 30px 28px 26px 0; border-right: 1px solid #ffffff20; }
.saas-flow-grid li + li { padding-left: 28px; }
.saas-flow-grid li:last-child { border-right: 0; }
.saas-flow-number { color: #6280a8; font-size: 12px; font-weight: 700; }
.saas-flow-icon { display: grid; width: 48px; height: 48px; place-items: center; margin: 32px 0 22px; border-radius: 10px; background: #ffffff10; color: #78adfc; }
.saas-flow-label { color: #76aefc; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.saas-flow-grid h3 { margin-top: 7px; color: #fff; font-size: 19px; }
.saas-flow-grid li > p:not(.saas-flow-label) { margin-top: 14px; color: #aebed3; font-size: 13px; line-height: 1.75; }
.saas-flow-grid small { position: absolute; right: 24px; bottom: 25px; left: 0; display: flex; gap: 8px; color: #72d6b7; font-size: 11px; }
.saas-flow-grid li + li small { left: 28px; }
.saas-flow-grid small .icon { width: 15px; height: 15px; }
.saas-contact { background: #eef4fc; }
.saas-demo-list { display: grid; gap: 12px; margin-top: 30px; }
.saas-demo-list p { display: flex; align-items: center; gap: 10px; color: #29415f; font-size: 14px; font-weight: 600; }
.saas-demo-list .icon { width: 17px; height: 17px; color: var(--green); }
.saas-footer-main { grid-template-columns: 1.4fr .7fr .7fr .9fr; }

@media (max-width: 1180px) {
  .saas-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; }
  .saas-floating-card { display: none; }
  .saas-flow-grid li { min-height: 370px; }
}
@media (max-width: 900px) {
  .saas-hero { padding: 60px 0 70px; }
  .saas-hero-grid { grid-template-columns: 1fr; }
  .saas-product-stage { transform: none; }
  .saas-trust .container { align-items: flex-start; flex-direction: column; gap: 12px; padding-block: 24px; }
  .saas-section-head { grid-template-columns: 1fr; gap: 20px; }
  .saas-module-grid { grid-template-columns: repeat(2, 1fr); }
  .saas-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .saas-flow-grid li { min-height: 320px; border-bottom: 1px solid #ffffff20; }
  .saas-footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .saas-hero { padding: 46px 0 54px; }
  .saas-hero h1 { font-size: 42px; }
  .saas-lead { font-size: 16px; }
  .saas-hero .button-row,.saas-hero .button { width: 100%; }
  .saas-proof { display: grid; gap: 10px; }
  .saas-window-bar { height: 34px; }
  .saas-dashboard img { aspect-ratio: 1.15; }
  .saas-trust div div { gap: 8px 20px; font-size: 12px; }
  .saas-module-grid,.saas-flow-grid { grid-template-columns: 1fr; }
  .saas-module { min-height: 0; padding: 25px; }
  .saas-flow-grid li,.saas-flow-grid li + li { min-height: 290px; padding: 26px 0; border-right: 0; }
  .saas-flow-grid small,.saas-flow-grid li + li small { left: 0; }
  .saas-footer-main { grid-template-columns: 1fr; }
}
