:root {
  --navy: #0d0d0d;
  --navy-2: #21150a;
  --petrol: #bf6d0a;
  --sky: #f2ab27;
  --sky-soft: #fff8d8;
  --gold: #f2e205;
  --gold-soft: #f2eb85;
  --copper: #bf6d0a;
  --ink: #17130d;
  --muted: #6f6658;
  --line: #eadfcb;
  --surface: #ffffff;
  --surface-soft: #fbf7ea;
  --shadow: none;
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.preloader {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(242, 226, 5, 0.16), transparent 34%),
    linear-gradient(135deg, #050505 0%, #0d0d0d 54%, #21150a 100%);
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.preloader img {
  width: 126px;
  animation: logoBreathe 1.6s ease-in-out infinite;
}

.is-loading .site-header,
.is-loading main,
.is-loading .site-footer,
.is-loading .floating-contact {
  visibility: hidden;
}

.site-ready .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  opacity: 0;
}

.fa-brands {
  opacity: 0;
}

.icons-loaded .material-symbols-outlined,
.icons-loaded .fa-brands {
  opacity: 1;
}

@keyframes logoBreathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(13, 13, 13, 0.96);
  border-bottom: 1px solid rgba(242, 171, 39, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 72px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  outline: none;
  transition: color 0.18s ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--gold-soft);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 650;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.primary-nav .nav-cta,
.primary-nav .nav-cta:visited {
  padding: 0 18px;
  color: #fff;
  background: var(--copper);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible,
.primary-nav .nav-cta:active {
  color: #fff;
  background: #9f5707;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(242, 171, 39, 0.34);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 126px 0 78px;
  color: #fff;
  overflow: hidden;
}

.hero-slider,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.92) 0%, rgba(41, 26, 9, 0.78) 44%, rgba(191, 109, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.2), rgba(13, 13, 13, 0.62));
}

.hero-content {
  position: relative;
  width: min(100% - 40px, var(--container));
  max-width: var(--container);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 690px;
  margin: 0 0 22px;
  font-size: clamp(2.25rem, 4.7vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
}

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

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 138px 0 72px;
  color: #fff;
  overflow: hidden;
}

.page-hero img,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.88), rgba(41, 26, 9, 0.58), rgba(191, 109, 10, 0.16));
}

.page-hero__content {
  position: relative;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.section-btn {
  margin-top: 30px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.btn {
  min-width: 166px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--copper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fff;
  background: #9f5707;
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.value-section {
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.value-grid h2,
.cta-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.value-grid p,
.cta-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.value-list .material-symbols-outlined {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
}

.value-list strong {
  color: var(--navy);
}

.value-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.lanes-section {
  background: var(--surface-soft);
}

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

.lanes-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.lanes-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.lanes-grid div {
  padding: 28px;
}

.lanes-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lanes-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.25;
}

.lanes-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-panel-section {
  background: #fff;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.cta-panel .btn {
  flex: 0 0 auto;
}

.trust-grid div {
  min-height: 120px;
  padding: 28px;
  background: #fff;
}

.trust-grid .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
  font-size: 23px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.trust-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-copy h2,
.difference-grid h2,
.contact-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.difference-grid p,
.contact-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.service-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.service-card:hover {
  border-color: rgba(242, 171, 39, 0.48);
  background: #fffdf2;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
  font-size: 25px;
}

.service-card h3,
.process-step h3,
.contact-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-card p,
.process-step p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.split-section,
.process-section {
  background: var(--surface-soft);
}

.split-grid,
.difference-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.company-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.company-card img {
  width: 54px;
  flex: 0 0 54px;
}

.company-card strong,
.company-card span {
  display: block;
}

.company-card strong {
  color: var(--navy);
}

.company-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.86fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-stack img:nth-child(2) {
  height: 390px;
  margin-bottom: -32px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.process-step {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--sky);
  font-size: 0.85rem;
  font-weight: 850;
}

.difference-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.difference-grid .btn {
  margin-top: 30px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  position: relative;
  padding: 22px 24px;
  padding-left: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-list .material-symbols-outlined {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
  font-size: 22px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  color: var(--navy);
}

.feature-list span {
  margin-top: 6px;
  color: var(--muted);
}

.visual-band {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.visual-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.84), rgba(191, 109, 10, 0.2));
}

.visual-card {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.visual-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.visual-card strong {
  display: block;
  max-width: 650px;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.contact-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.contact-grid {
  grid-template-columns: 1fr 0.72fr;
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.contact-card h3 {
  margin-bottom: 18px;
  color: #fff;
}

.contact-card a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.form-row label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--sky);
}

.contact-form .btn {
  margin-top: 12px;
}

.contact-form.is-sending .btn span::after {
  content: "...";
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status a {
  color: var(--petrol);
  font-weight: 600;
}

.is-sent .form-status {
  color: var(--petrol);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.front-admin-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  z-index: 9999;
  width: min(620px, calc(100% - 32px));
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(242, 171, 39, 0.36);
  border-radius: 8px;
  color: #fff;
  background: rgba(13, 13, 13, 0.96);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  box-shadow: none;
  transform: none;
}

body:has(.front-admin-bar) {
  padding-bottom: 0;
}

.front-admin-bar * {
  box-sizing: border-box;
}

.front-admin-bar__left {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.front-admin-bar strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.front-admin-bar__left span {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.front-admin-bar__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.front-admin-bar button,
.front-admin-bar a {
  width: auto;
  min-width: 0;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
}

.front-admin-bar button:first-of-type,
.front-admin-bar button:not(:disabled):hover {
  color: #0d0d0d;
  background: var(--gold);
}

.front-admin-bar button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.front-admin-bar small {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  white-space: nowrap;
}

.front-admin-bar small a {
  display: inline;
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: inherit;
  line-height: inherit;
}

.front-editing [data-inline-edit],
.front-editing [data-inline-image] {
  outline: 1px dashed rgba(242, 171, 39, 0.82);
  outline-offset: 3px;
  cursor: text;
  -webkit-user-modify: read-write;
  user-select: text;
}

.front-editing [data-inline-image] {
  cursor: pointer;
}

.front-editing [contenteditable="true"]:focus {
  outline: 2px solid rgba(242, 171, 39, 0.95);
  background: transparent;
  box-shadow: none;
}

.front-editing [contenteditable="true"],
.front-editing [contenteditable="true"]:hover,
.front-editing [contenteditable="true"]:focus {
  min-height: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
}

.front-editing [contenteditable="true"]::selection {
  color: inherit;
  background: rgba(242, 171, 39, 0.24);
}

@media (max-width: 760px) {
  .front-admin-bar {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .front-admin-bar__left span,
  .front-admin-bar small {
    white-space: normal;
  }

  .front-admin-bar__left {
    flex: 1 1 100%;
  }
}

.story-section {
  background: var(--surface-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.story-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.story-card--dark {
  color: #fff;
  background: var(--navy);
}

.story-card span,
.service-row > a,
.compare-table strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card span {
  color: var(--sky);
}

.story-card h2,
.route-panel h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.story-card--dark h2 {
  color: #fff;
}

.story-card p,
.route-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.story-card--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.stats-section {
  padding-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stats-grid article {
  padding: 26px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.stats-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.island-section {
  background: #fff;
}

.island-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.island-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.island-panel h2,
.compare-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.island-panel p,
.compare-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

.service-detail-section {
  background: #fff;
}

.service-detail-list {
  display: grid;
  gap: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-row .material-symbols-outlined {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
}

.service-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.service-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.service-row > a {
  color: var(--petrol);
}

.services-suite {
  background: #fff;
}

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

.service-solution {
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-solution--featured {
  color: #fff;
  background: #0d0d0d;
  border-color: #0d0d0d;
}

.service-solution .material-symbols-outlined {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
}

.service-solution--featured .material-symbols-outlined {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.service-solution small {
  margin-top: 24px;
  color: var(--sky);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-solution h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 1.38rem;
  line-height: 1.16;
}

.service-solution--featured h2 {
  color: #fff;
}

.service-solution p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.service-solution--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-solution a {
  margin-top: auto;
  color: var(--petrol);
  font-weight: 650;
}

.service-solution--featured a {
  color: #fff;
}

.service-map-section {
  background: var(--surface-soft);
}

.service-map {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

.service-map h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.service-map p {
  margin: 18px 0 28px;
  color: var(--muted);
}

.decision-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.decision-board div {
  min-height: 158px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}

.decision-board strong {
  color: var(--navy);
  font-size: 1.24rem;
}

.decision-board span {
  display: block;
  color: var(--muted);
}

.decision-board span:first-of-type {
  margin: 14px 0 8px;
  color: var(--petrol);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-proof-section {
  background: #fff;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-proof-grid article {
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.service-proof-grid article:last-child {
  border-right: 0;
}

.service-proof-grid .material-symbols-outlined {
  color: var(--sky);
  font-size: 34px;
}

.service-proof-grid h2 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 1.18rem;
}

.service-proof-grid p {
  margin: 0;
  color: var(--muted);
}

.air-visual-section {
  background: var(--surface-soft);
}

.air-visual-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.air-visual-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.air-visual-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.air-visual-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.compare-section,
.route-section {
  background: var(--surface-soft);
}

.compare-grid,
.route-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.compare-table {
  display: grid;
  gap: 12px;
}

.compare-table div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.compare-table strong,
.compare-table span {
  display: block;
}

.compare-table strong {
  color: var(--petrol);
}

.compare-table span {
  margin-top: 8px;
  color: var(--muted);
}

.timeline-section {
  background: #fff;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 0;
}

.timeline article > span {
  color: var(--sky);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.timeline h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.route-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.route-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-panel li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.route-panel li:last-child {
  border-bottom: 0;
}

.logistics-diagram-section {
  background: #fff;
}

.logistics-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.logistics-flow::before {
  display: none;
}

.logistics-flow article {
  position: relative;
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.logistics-flow article > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logistics-flow i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--petrol);
  font-style: normal;
}

.logistics-flow h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.26rem;
}

.logistics-flow p {
  margin: 10px 0 0;
  color: var(--muted);
}

.control-room-section {
  background: var(--surface-soft);
}

.control-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.control-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d0d0d;
}

.control-panel__top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.control-panel__top span {
  width: 8px;
  height: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.control-panel__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.control-panel__body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.control-panel__body strong {
  color: #fff;
}

.control-panel__body span {
  color: var(--gold-soft);
  font-weight: 600;
}

.control-room h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.control-room p {
  margin: 18px 0 24px;
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  content: "check";
  color: var(--petrol);
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.icons-loaded .check-list li::before {
  opacity: 1;
}

.logistics-summary-section {
  background: #fff;
}

.logistics-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.logistics-summary article {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.logistics-summary article:last-child {
  border-right: 0;
}

.logistics-summary strong,
.logistics-summary span {
  display: block;
}

.logistics-summary strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.logistics-summary span {
  margin-top: 10px;
  color: var(--muted);
}

.contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-info-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.contact-info-list .material-symbols-outlined {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
  font-size: 21px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  align-items: stretch;
}

.contact-aside {
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background: #0d0d0d;
}

.contact-aside h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.contact-aside p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-aside .contact-info-list div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.contact-aside .contact-info-list div:last-child {
  border-bottom: 0;
}

.contact-aside .contact-info-list a {
  color: #fff;
}

.quote-note {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.quote-note strong {
  color: #fff;
}

.quote-note span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form--large {
  padding: 36px;
}

.form-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 8px;
}

.form-title .material-symbols-outlined {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--petrol);
  background: var(--sky-soft);
}

.form-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
}

.form-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  padding: 58px 0 34px;
}

.footer-grid--wide {
  grid-template-columns: 1.25fr 0.9fr 0.95fr 0.8fr;
}

.footer-grid img {
  width: 96px;
  height: auto;
  margin-bottom: 18px;
}

.footer-subbrand {
  width: min(100%, 236px);
  margin-top: 22px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-subbrand span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid .footer-subbrand img {
  width: min(100%, 172px);
  display: block;
  margin: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0.94;
}

.front-image-picker {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 16, 26, 0.62);
  backdrop-filter: blur(10px);
}

.front-image-picker__panel {
  width: min(100%, 920px);
  max-height: min(760px, 86vh);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.front-image-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e3e8ef;
}

.front-image-picker__head strong {
  color: #0f2338;
}

.front-image-picker__head button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #0f2d4a;
  font: inherit;
  cursor: pointer;
}

.front-image-picker__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  overflow: auto;
  padding: 14px;
}

.front-image-picker__grid button {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid #e3e8ef;
  border-radius: 10px;
  background: #f7fafc;
  color: #0f2338;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.front-image-picker__grid button:hover,
.front-image-picker__grid button:focus-visible {
  border-color: #16496f;
  background: #eef4fa;
}

.front-image-picker__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.front-image-picker__grid span {
  overflow-wrap: anywhere;
  font-size: 0.76rem;
  font-weight: 700;
}

.front-image-picker__grid small {
  color: #6a7687;
  font-size: 0.68rem;
}

@media (max-width: 720px) {
  .front-image-picker__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-grid p {
  max-width: 380px;
  margin: 8px 0 0;
}

.footer-grid p,
.footer-grid a {
  font-size: 0.94rem;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.78);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.18s ease, color 0.18s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  background: var(--sky);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.page-leaving main {
  opacity: 0;
  transform: translateY(-22px);
}

main {
  transition: opacity 0.26s ease, transform 0.26s ease;
}

main.main-entering {
  opacity: 0;
  transform: translateY(24px);
}

.footer-bottom a {
  color: #fff;
  font-weight: 650;
}

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.floating-contact__text {
  max-width: 0;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: max-width 0.22s ease, padding 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.floating-contact__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #25d366, #128c7e);
  font-size: 30px;
}

.floating-contact::before {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 48px;
  height: 48px;
  content: "";
  border-radius: var(--radius);
  background: rgba(37, 211, 102, 0.32);
  animation: contactPulse 2.2s ease-out infinite;
}

.floating-contact:hover .floating-contact__text,
.floating-contact:focus-visible .floating-contact__text {
  max-width: 140px;
  padding: 12px 16px;
  opacity: 1;
  transform: translateX(0);
}

.floating-contact:hover .floating-contact__icon,
.floating-contact:focus-visible .floating-contact__icon {
  background: #128c7e;
}

@keyframes contactPulse {
  0% {
    opacity: 0.55;
    transform: scale(0.85);
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

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

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

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

  .split-grid,
  .difference-grid,
  .contact-grid,
  .value-grid,
  .story-grid,
  .island-panel,
  .compare-grid,
  .route-panel,
  .service-map,
  .control-room,
  .contact-panel,
  .air-visual-panel {
    grid-template-columns: 1fr;
  }

  .service-suite-grid,
  .logistics-flow,
  .decision-board,
  .service-proof-grid,
  .logistics-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .logistics-flow::before {
    display: none;
  }

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

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

  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .service-row {
    grid-template-columns: 54px 1fr;
  }

  .service-row > a {
    grid-column: 2;
  }

  .image-stack img:nth-child(2) {
    margin-bottom: 0;
  }
}

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

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 62px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(242, 171, 39, 0.24);
    border-radius: var(--radius);
    background: #0d0d0d;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .menu-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.88);
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .nav-cta,
  .primary-nav .nav-cta:visited {
    margin-top: 8px;
    color: #fff;
    background: var(--copper);
  }

  .primary-nav .nav-cta:hover,
  .primary-nav .nav-cta:focus-visible,
  .primary-nav .nav-cta:active {
    color: #fff;
    background: #9f5707;
  }

  .hero {
    min-height: 590px;
    padding: 112px 0 66px;
  }

  .hero-content {
    width: min(100% - 28px, var(--container));
  }

  .page-hero {
    min-height: 360px;
    padding: 112px 0 56px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(41, 26, 9, 0.74));
  }

  .page-hero__overlay {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.84), rgba(41, 26, 9, 0.66));
  }

  .hero h1 {
    line-height: 1.04;
  }

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

  .trust-grid div {
    min-height: auto;
    padding: 22px;
  }

  .section {
    padding: 78px 0;
  }

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

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    height: 310px;
  }

  .visual-band {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact__text {
    max-width: 120px;
    padding: 11px 14px;
    opacity: 1;
    transform: translateX(0);
  }

  .floating-contact__icon {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero {
    min-height: 560px;
  }

  .hero p,
  .section-heading p,
  .split-copy p,
  .difference-grid p,
  .contact-grid p {
    font-size: 1rem;
  }

  .company-card {
    align-items: flex-start;
  }

  .contact-card {
    padding: 26px;
  }

  .story-card {
    min-height: auto;
    padding: 28px;
  }

  .stats-grid,
  .service-row,
  .timeline article,
  .service-suite-grid,
  .decision-board,
  .service-proof-grid,
  .logistics-flow,
  .logistics-summary,
  .form-two {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .service-row > a {
    grid-column: auto;
  }

  .island-panel img,
  .lanes-grid img,
  .air-visual-panel img {
    height: 260px;
  }

  .route-panel,
  .contact-form,
  .contact-form--large,
  .contact-aside {
    padding: 24px;
  }

  .service-proof-grid article,
  .logistics-summary article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-proof-grid article:last-child,
  .logistics-summary article:last-child {
    border-bottom: 0;
  }
}
