:root {
  color-scheme: light;
  --ink: #152028;
  --ink-soft: #4d5b64;
  --muted: #71808a;
  --paper: #0b1116;
  --white: #ffffff;
  --line: rgb(255 255 255 / 14%);
  --line-strong: #b9c5cb;
  --green: #1d8a5b;
  --green-dark: #12613f;
  --amber: #f0b23d;
  --amber-dark: #b97712;
  --steel: #1f2b33;
  --blue: #315f86;
  --shadow: 0 18px 50px rgb(21 32 40 / 12%);
  --shadow-strong: 0 24px 70px rgb(15 25 31 / 22%);
  --radius: 8px;
  font-family:
    "SF Pro Display", "Manrope", Inter, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 4%) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, #0b1116 0%, #101a20 48%, #0b1116 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px 40px;
  color: var(--white);
  background: rgb(17 25 31 / 72%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 1 340px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(29 138 91 / 96%), rgb(49 95 134 / 92%)),
    var(--green);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 20%),
    0 12px 28px rgb(0 0 0 / 18%);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 6px;
}

.brand-road {
  position: absolute;
  left: 13px;
  right: 13px;
  top: 21px;
  height: 2px;
  background: rgb(255 255 255 / 58%);
  transform: rotate(-16deg);
  transform-origin: center;
}

.brand-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 22px;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 7px;
  background: rgb(9 15 19 / 72%);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.brand-node-start {
  left: 7px;
  bottom: 7px;
}

.brand-node-end {
  top: 7px;
  right: 7px;
}

.brand-copy,
.brand-copy strong,
.brand-copy small {
  display: block;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--white);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.route-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 7%);
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.route-chip b {
  color: var(--amber);
  font-size: 16px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  font-weight: 650;
}

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

.nav-cta,
.primary-btn,
.secondary-btn,
.submit-btn,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.nav-cta {
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 24%);
  background: rgb(255 255 255 / 9%);
  color: var(--white);
  font-size: 14px;
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.submit-btn:hover,
.mobile-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("./assets/hero-logistics.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(8 13 17 / 90%) 0%, rgb(8 13 17 / 72%) 42%, rgb(8 13 17 / 22%) 100%),
    linear-gradient(180deg, rgb(8 13 17 / 42%) 0%, rgb(8 13 17 / 18%) 55%, rgb(8 13 17 / 64%) 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 16px;
  font-size: 50px;
  line-height: 1.03;
  font-weight: 900;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 18px;
  color: rgb(255 255 255 / 82%);
  font-size: 18px;
}

.value-spotlight {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr);
  align-items: center;
  gap: 12px;
  width: min(760px, 100%);
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgb(240 178 61 / 44%);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(240 178 61 / 18%), rgb(29 138 91 / 12%)),
    rgb(8 13 17 / 46%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 12%),
    0 20px 50px rgb(0 0 0 / 20%);
  backdrop-filter: blur(12px);
}

.value-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 82%);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.value-spotlight strong {
  color: #ffd06a;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  text-shadow: 0 10px 28px rgb(0 0 0 / 24%);
}

.value-note {
  color: rgb(255 255 255 / 76%);
  font-size: 13px;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.primary-btn,
.secondary-btn {
  padding: 0 20px;
}

.primary-btn {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgb(18 97 63 / 28%);
}

.primary-btn:hover,
.submit-btn:hover,
.mobile-cta:hover {
  background: var(--green-dark);
}

.secondary-btn {
  border: 1px solid rgb(255 255 255 / 26%);
  color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgb(255 255 255 / 16%);
  line-height: 1;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 590px;
  margin: 0;
}

.hero-facts div {
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  padding: 13px;
  background: rgb(255 255 255 / 9%);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 850;
}

.hero-facts dd {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
}

.route-band,
.split-section,
.requirements,
.application {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0;
}

.route-band::before,
.split-section::before,
.requirements::before,
.application::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
}

.route-band::before {
  background:
    linear-gradient(90deg, rgb(8 13 17 / 92%), rgb(8 13 17 / 80%)),
    radial-gradient(circle at 18% 8%, rgb(29 138 91 / 16%), transparent 32%),
    linear-gradient(180deg, #0b1116, #121d24);
}

.split-section::before {
  background:
    radial-gradient(circle at 78% 20%, rgb(240 178 61 / 14%), transparent 30%),
    linear-gradient(135deg, #17232b, #22333c 55%, #162229);
}

.requirements::before {
  background:
    linear-gradient(90deg, rgb(8 13 17 / 92%), rgb(8 13 17 / 82%)),
    radial-gradient(circle at 80% 8%, rgb(49 95 134 / 18%), transparent 32%),
    linear-gradient(180deg, #101a20, #0b1116);
}

.application::before {
  background:
    linear-gradient(90deg, rgb(8 13 17 / 94%) 0%, rgb(8 13 17 / 82%) 46%, rgb(8 13 17 / 46%) 100%),
    linear-gradient(180deg, rgb(8 13 17 / 78%), rgb(8 13 17 / 84%)),
    url("./assets/hero-logistics.jpg") center right / cover no-repeat,
    #0b1116;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--white);
}

h2 {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

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

.route-card,
.benefit,
.lead-form,
.privacy-note {
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 4%)),
    rgb(255 255 255 / 5%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.route-card {
  --card-accent-a: #51d391;
  --card-accent-b: #ffd06a;
  position: relative;
  min-height: 226px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgb(29 138 91 / 18%), rgb(255 255 255 / 5%)),
    rgb(255 255 255 / 6%);
}

.route-card:nth-child(2) {
  --card-accent-a: #70b7ff;
  --card-accent-b: #51d391;
  background:
    linear-gradient(145deg, rgb(49 95 134 / 24%), rgb(255 255 255 / 5%)),
    rgb(255 255 255 / 6%);
}

.route-card:nth-child(3) {
  --card-accent-a: #ffd06a;
  --card-accent-b: #ff9c5a;
  background:
    linear-gradient(145deg, rgb(240 178 61 / 20%), rgb(255 255 255 / 5%)),
    rgb(255 255 255 / 6%);
}

.route-card::before,
.route-card::after {
  content: "";
  position: absolute;
}

.route-card::before {
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 34%), transparent);
}

.route-card::after {
  inset: auto 22px 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
  color: #ffd06a;
  font-size: 13px;
  font-weight: 900;
}

.route-card p,
.section-copy p,
.application-copy p {
  color: rgb(255 255 255 / 80%);
}

.route-card h3,
.benefit h3 {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 14px;
  padding-bottom: 11px;
  background: linear-gradient(90deg, var(--card-accent-a), var(--card-accent-b));
  background-clip: text;
  color: var(--card-accent-a);
  font-size: 21px;
  font-weight: 900;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.route-card h3::after,
.benefit h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(92px, 100%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--card-accent-a), var(--card-accent-b));
}

.route-card p,
.benefit p {
  padding-left: 14px;
  border-left: 2px solid var(--card-accent-a);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: start;
  color: var(--white);
}

.split-section .section-copy p {
  color: rgb(255 255 255 / 76%);
}

.split-section .eyebrow {
  color: #ffd06a;
}

.section-copy {
  position: sticky;
  top: 108px;
}

.section-copy p,
.application-copy p {
  max-width: 560px;
  font-size: 18px;
}

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

.benefit {
  --card-accent-a: #51d391;
  --card-accent-b: #ffd06a;
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0 16px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 14%);
  background:
    linear-gradient(135deg, rgb(29 138 91 / 20%), rgb(255 255 255 / 5%)),
    rgb(255 255 255 / 5%);
  box-shadow: 0 18px 50px rgb(0 0 0 / 18%);
  backdrop-filter: blur(8px);
}

.benefit:nth-child(2) {
  --card-accent-a: #70b7ff;
  --card-accent-b: #51d391;
  background:
    linear-gradient(135deg, rgb(49 95 134 / 25%), rgb(255 255 255 / 5%)),
    rgb(255 255 255 / 5%);
}

.benefit:nth-child(3) {
  --card-accent-a: #ffd06a;
  --card-accent-b: #ff9c5a;
  background:
    linear-gradient(135deg, rgb(240 178 61 / 20%), rgb(255 255 255 / 5%)),
    rgb(255 255 255 / 5%);
}

.benefit::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
}

.benefit:nth-child(2)::before {
  background: var(--blue);
}

.benefit:nth-child(3)::before {
  background: var(--amber);
}

.benefit-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
  color: #ffd06a;
  font-size: 22px;
  font-weight: 950;
}

.benefit p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 82%);
  font-weight: 620;
}

.requirements {
  border-top: 1px solid rgb(255 255 255 / 9%);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
}

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

.check-list li {
  position: relative;
  min-height: 92px;
  padding: 22px 22px 22px 64px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 4%)),
    rgb(255 255 255 / 5%);
  color: rgb(255 255 255 / 82%);
  font-weight: 760;
  box-shadow: 0 18px 50px rgb(0 0 0 / 16%);
  backdrop-filter: blur(8px);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgb(255 255 255 / 10%);
  color: #ffd06a;
  font-weight: 900;
}

.application {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.application-copy {
  padding-top: 16px;
  color: var(--white);
}

.privacy-note {
  max-width: 520px;
  margin-top: 22px;
  padding: 18px 20px;
  border-color: rgb(240 178 61 / 34%);
  background: rgb(240 178 61 / 10%);
  color: #ffe3a3;
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 14px;
  padding: 26px;
  box-shadow: var(--shadow-strong);
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  color: #ffd06a;
  font-size: 16px;
  font-weight: 900;
}

.label-note {
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 92%);
  color: #152028;
  font: inherit;
  font-size: 15px;
  line-height: 1.25;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

input,
select {
  min-height: 50px;
}

select {
  appearance: none;
  background-color: rgb(255 255 255 / 92%);
  background-image:
    linear-gradient(45deg, transparent 50%, #263641 50%),
    linear-gradient(135deg, #263641 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

textarea {
  resize: vertical;
  min-height: 118px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgb(29 138 91 / 12%);
}

.field-error {
  min-height: 18px;
  color: #a53030;
  font-size: 12px;
  font-weight: 700;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #b84b4b;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.submit-btn {
  grid-column: 1 / -1;
  min-height: 52px;
  border: 0;
  background: var(--green);
  color: var(--white);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: var(--green-dark);
}

.form-status.error {
  color: #a53030;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 40px 34px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, #17232b, #20323a),
    var(--steel);
  color: rgb(255 255 255 / 72%);
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  display: none;
  padding: 0 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgb(18 97 63 / 32%);
}

@media (max-width: 980px) {
  .topbar {
    padding: 12px 24px;
  }

  .desktop-nav,
  .route-chip {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .value-spotlight {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .value-spotlight strong {
    font-size: 28px;
  }

  .route-grid,
  .split-section,
  .application {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .hero-facts,
  .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .topbar {
    min-height: 64px;
    padding: 10px 14px;
    background: rgb(11 17 22 / 86%);
  }

  .brand {
    flex-basis: auto;
    gap: 10px;
    max-width: 100%;
  }

  .brand-mark {
    width: 50px;
    height: 36px;
  }

  .brand-copy strong {
    max-width: 270px;
    font-size: 14px;
  }

  .brand-copy small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 58% center;
    transform: scale(1);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgb(8 13 17 / 94%) 0%, rgb(8 13 17 / 82%) 42%, rgb(8 13 17 / 70%) 100%),
      linear-gradient(90deg, rgb(8 13 17 / 86%) 0%, rgb(8 13 17 / 42%) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 86px 0 30px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 29px;
    line-height: 1.07;
  }

  .value-spotlight {
    gap: 9px;
    margin-bottom: 14px;
    padding: 12px 13px;
    background:
      linear-gradient(135deg, rgb(240 178 61 / 22%), rgb(29 138 91 / 16%)),
      rgb(8 13 17 / 58%);
  }

  .value-label {
    width: max-content;
  }

  .value-spotlight strong {
    font-size: 25px;
  }

  .value-note {
    font-size: 12px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lead,
  .section-copy p,
  .application-copy p {
    font-size: 16px;
  }

  .hero-lead {
    margin-bottom: 14px;
    color: rgb(255 255 255 / 78%);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-facts {
    display: none;
  }

  .route-band,
  .split-section,
  .requirements,
  .application {
    width: min(100% - 32px, 1180px);
    padding: 54px 0;
  }

  .application::before {
    background:
      linear-gradient(180deg, rgb(8 13 17 / 94%) 0%, rgb(8 13 17 / 78%) 46%, rgb(8 13 17 / 92%) 100%),
      url("./assets/hero-logistics.jpg") 62% top / auto 54% no-repeat,
      #0b1116;
  }

  .route-card {
    min-height: auto;
    padding: 22px;
  }

  .benefit {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: auto;
    padding: 20px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .check-list li {
    min-height: auto;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer {
    display: grid;
    padding: 26px 16px 86px;
  }

  .mobile-cta {
    display: inline-flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
