.service-photo.secure {
  background-image: url("/static/images/secure-logistics.png");
  background-position: center 48%;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0 7vw 120px;
}

.service-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(7, 27, 29, .08);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(7, 27, 29, .1);
  transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(7, 27, 29, .16);
}

.service-card-image {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.service-card-image::before {
  position: absolute;
  inset: 0;
  background: inherit;
  background-position: inherit;
  background-size: cover;
  content: "";
  transition: transform .45s;
}

.service-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 24, 26, .04), rgba(3, 24, 26, .32));
  content: "";
}

.service-card:hover .service-card-image::before {
  transform: scale(1.045);
}

.service-card-icon {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 10px 24px rgba(3, 25, 27, .25);
}

.service-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-air {
  background-image: url("https://images.unsplash.com/photo-1569154941061-e231b4725ef1?auto=format&fit=crop&w=1100&q=86");
  background-position: center 52%;
}

.service-ocean {
  background-image: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1100&q=86");
}

.service-road {
  background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1100&q=86");
}

.service-secure {
  background-image: url("/static/images/secure-logistics.png");
  background-position: center 48%;
}

.service-warehouse {
  background-image: url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1100&q=86");
}

.service-packaging {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1100&q=86");
}

.service-card-copy {
  display: flex;
  min-height: 232px;
  padding: 29px 30px 28px;
  flex: 1;
  flex-direction: column;
}

.service-card-copy h3 {
  margin: 0 0 12px;
  font: 700 23px/1.2 "Manrope", sans-serif;
  letter-spacing: -.035em;
}

.service-card-copy p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card-copy a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  align-self: flex-start;
  padding-bottom: 4px;
  margin-top: auto;
  border-bottom: 1px solid rgba(7, 27, 29, .35);
  font-size: 13px;
  font-weight: 800;
  transition: gap .2s, color .2s;
}

.service-card-copy a:hover {
  gap: 15px;
  color: #4f7a62;
}

.track-showcase {
  position: relative;
  z-index: 6;
  padding: 0 7vw 58px;
  margin-top: -92px;
  background:
    radial-gradient(circle at 50% 0, rgba(185, 255, 79, .2), transparent 32%),
    linear-gradient(180deg, transparent 0 92px, #edf1ed 92px 100%);
}

.track-card {
  width: min(100%, 700px);
  padding: 48px 54px 50px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(7, 27, 29, .08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(7, 27, 29, .18);
}

.track-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #4f716d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
}

.track-card-kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(185, 255, 79, .2);
  content: "";
}

.track-card h2 {
  max-width: 540px;
  margin: 0 auto;
  font: 800 clamp(31px, 3.3vw, 43px)/1.12 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.track-card > p {
  max-width: 520px;
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.track-card-form {
  display: grid;
  gap: 14px;
}

.track-card-form input {
  width: 100%;
  height: 66px;
  padding: 0 23px;
  color: var(--ink);
  border: 1px solid #c9d3d0;
  border-radius: 10px;
  outline: none;
  background: #fff;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}

.track-card-form input::placeholder {
  color: #8c9a97;
}

.track-card-form input:focus {
  border-color: #54746f;
  box-shadow: 0 0 0 4px rgba(7, 60, 63, .09);
}

.track-card-form button {
  display: inline-flex;
  width: 100%;
  height: 66px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  border: 0;
  border-radius: 10px;
  background: var(--mint);
  box-shadow: 0 14px 30px rgba(99, 143, 52, .2);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.track-card-form button:hover {
  transform: translateY(-2px);
  background: #c7ff70;
  box-shadow: 0 18px 34px rgba(99, 143, 52, .28);
}

.track-card-form button:focus-visible {
  outline: 3px solid rgba(7, 60, 63, .35);
  outline-offset: 3px;
}

.track-card-form svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero-track-cta {
  min-width: 280px;
  padding: 14px 18px;
  gap: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  transition: transform .2s, box-shadow .2s;
}

.hero-track-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

.hero-track-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border-radius: 50%;
  color: var(--mint);
  background: var(--ink);
  font-size: 21px;
}

.hero-track-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.hero-track-copy strong {
  font-size: 15px;
}

.hero-track-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: .67;
  text-transform: uppercase;
}

.hero-track-arrow {
  font-size: 22px;
}

.hero-plan-cta {
  padding: 15px 19px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(3, 28, 31, .22);
  backdrop-filter: blur(8px);
}

.hero-plan-cta:hover {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.control-photo {
  background-image:
    linear-gradient(180deg, rgba(3, 26, 29, .04), rgba(3, 26, 29, .22)),
    url("/static/images/cargo-control-tower.png");
  background-position: center;
  background-size: cover;
}

.industry-section {
  padding: 115px 7vw;
  background: #e5ece6;
}

.industry-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 65px;
}

.industry-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.industry-card {
  position: relative;
  display: flex;
  min-height: 480px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.25);
  background-size: cover;
  background-position: center;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,24,26,.15), rgba(3,24,26,.9));
  transition: background .35s;
}

.industry-card:hover::before {
  background: linear-gradient(180deg, rgba(3,24,26,.05), rgba(3,24,26,.78));
}

.industry-card > * {
  position: relative;
}

.industry-card > span,
.industry-card small {
  font-size: 9px;
  letter-spacing: .17em;
  font-weight: 700;
}

.industry-card h3 {
  margin: 12px 0;
  font: 700 25px/1.12 "Manrope", sans-serif;
  letter-spacing: -.03em;
}

.industry-card p {
  margin: 0;
  color: #c9d5d2;
  font-size: 12px;
  line-height: 1.55;
}

.industry-card > b {
  position: absolute;
  top: 24px;
  right: 25px;
  font-size: 18px;
}

.industry-card.healthcare {
  background-image: url("https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=800&q=85");
}

.industry-card.automotive {
  background-image: url("https://images.unsplash.com/photo-1486006920555-c77dcf18193c?auto=format&fit=crop&w=800&q=85");
}

.industry-card.retail {
  background-image: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=800&q=85");
}

.industry-card.energy {
  background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=800&q=85");
}

.network-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  min-height: 690px;
  background: #061f22;
  color: #fff;
}

.network-copy {
  padding: 100px 6vw 100px 7vw;
}

.network-copy h2 {
  margin: 0;
  font: 800 clamp(42px, 4.5vw, 68px)/1 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.network-copy h2 em {
  color: var(--mint);
  font-style: normal;
}

.network-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0;
  color: #b7cac6;
  line-height: 1.7;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  margin: 20px 0 32px;
  border-top: 1px solid #315053;
  border-bottom: 1px solid #315053;
}

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

.network-stats strong {
  font: 700 27px "Manrope", sans-serif;
  color: var(--mint);
}

.network-stats span {
  margin-top: 4px;
  color: #90a8a4;
  font-size: 10px;
}

.network-copy > a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--mint);
  font-weight: 700;
}

.network-map {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(185,255,79,.12), transparent 27%),
    linear-gradient(rgba(111,152,146,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,152,146,.09) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(185,255,79,.16);
  border-radius: 50%;
}

.network-map::before {
  width: 570px;
  height: 570px;
  left: 12%;
  top: 50px;
}

.network-map::after {
  width: 390px;
  height: 390px;
  left: 25%;
  top: 140px;
}

.route-orbit {
  position: absolute;
  border: 2px dashed rgba(185,255,79,.42);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 70%;
  height: 220px;
  left: 10%;
  top: 210px;
}

.orbit-two {
  width: 52%;
  height: 360px;
  left: 22%;
  top: 130px;
  transform: rotate(35deg);
}

.orbit-three {
  width: 45%;
  height: 160px;
  left: 35%;
  top: 280px;
  transform: rotate(-45deg);
}

.node {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #061f22;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(185,255,79,.18), 0 0 24px var(--mint);
}

.n1 { left: 18%; top: 45%; }.n2 { left: 39%; top: 28%; }.n3 { left: 57%; top: 43%; }
.n4 { left: 73%; top: 30%; }.n5 { left: 82%; top: 57%; }.n6 { left: 45%; top: 67%; }

.map-label {
  position: absolute;
  color: #8ea9a5;
  font-size: 8px;
  letter-spacing: .16em;
}

.l1 { left: 19%; top: 48%; }.l2 { left: 58%; top: 46%; }.l3 { left: 83%; top: 60%; }
.l4 { left: 40%; top: 24%; }.l5 { left: 74%; top: 26%; }

.network-pulse {
  position: absolute;
  right: 7%;
  bottom: 9%;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--mint);
  font-size: 10px;
  letter-spacing: .08em;
}

.network-pulse > i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 6px rgba(7,27,29,.12);
}

.network-pulse strong {
  font-size: 14px;
  letter-spacing: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: #f3f1e9;
}

.proof-image {
  display: flex;
  padding: 35px;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(4,30,32,.08), rgba(4,30,32,.85)),
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1300&q=88") center/cover;
}

.proof-image > span,
.proof-image small {
  font-size: 9px;
  letter-spacing: .17em;
  font-weight: 700;
}

.proof-image strong {
  display: block;
  margin-top: 10px;
  font: 700 clamp(28px, 3vw, 43px)/1.1 "Manrope", sans-serif;
}

.proof-copy {
  padding: 100px 8vw;
}

.proof-copy blockquote {
  margin: 45px 0;
  font: 700 clamp(28px, 3vw, 43px)/1.28 "Manrope", sans-serif;
  letter-spacing: -.04em;
}

.proof-person {
  display: flex;
  gap: 15px;
  align-items: center;
}

.proof-person > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--mint);
  font-size: 11px;
  font-style: normal;
}

.proof-person p,
.proof-person strong,
.proof-person span {
  display: block;
  margin: 0;
}

.proof-person span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  font: 700 28px "Manrope", sans-serif;
}

.proof-metrics span {
  color: var(--muted);
  font-size: 10px;
}

.testimonials-section {
  padding: 115px 7vw;
  background: #dfe8e1;
}

.testimonials-head {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 60px;
}

.testimonials-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.testimonial-card {
  display: flex;
  min-height: 440px;
  padding: 34px;
  flex-direction: column;
  color: var(--ink);
  border: 1px solid rgba(7,27,29,.14);
  background: #f8f7f1;
  margin-right: -1px;
}

.testimonial-card.featured {
  background: var(--mint);
}

.testimonial-card.dark-card {
  color: #fff;
  background: var(--deep);
}

.quote-mark {
  height: 74px;
  font: 800 92px/.9 "Manrope", sans-serif;
  letter-spacing: -.08em;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 24px 0 42px;
  font: 700 clamp(20px, 2vw, 29px)/1.36 "Manrope", sans-serif;
  letter-spacing: -.035em;
}

.testimonial-person {
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-person > span {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: var(--mint);
  background: var(--deep);
  font-size: 10px;
  font-weight: 700;
}

.dark-card .testimonial-person > span {
  color: var(--ink);
  background: var(--mint);
}

.testimonial-person p,
.testimonial-person strong,
.testimonial-person small {
  display: block;
  margin: 0;
}

.testimonial-person small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.dark-card .testimonial-person small {
  color: #8fa9a5;
}

.testimonial-card footer {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(7,27,29,.16);
  font-size: 9px;
  letter-spacing: .12em;
}

.dark-card footer {
  border-color: #365255;
}

.testimonial-card footer b {
  color: #4c654f;
  letter-spacing: .04em;
}

.dark-card footer b {
  color: var(--mint);
}

.testimonial-summary {
  display: grid;
  grid-template-columns: 180px 220px 1fr;
  gap: 35px;
  align-items: center;
  padding-top: 34px;
}

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

.testimonial-summary strong {
  font: 700 24px "Manrope", sans-serif;
}

.testimonial-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.testimonial-summary a {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  font-weight: 700;
}

.process-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  padding: 115px 7vw;
}

.process-steps {
  counter-reset: step;
}

.process-steps article {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.process-steps article:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps article > span {
  color: #70817e;
  font-size: 10px;
}

.process-steps h3 {
  margin: 0;
  font: 700 20px "Manrope", sans-serif;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 901px) {
  .hero-aside {
    bottom: 126px;
  }

  .track-showcase {
    padding-bottom: 78px;
    margin-top: -76px;
    background:
      radial-gradient(circle at 50% 0, rgba(185, 255, 79, .16), transparent 35%),
      linear-gradient(180deg, transparent 0 76px, #edf1ed 76px 100%);
  }

  .track-card {
    display: grid;
    width: min(100%, 1180px);
    min-height: 235px;
    grid-template-columns: minmax(310px, .82fr) minmax(500px, 1.18fr);
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
      "kicker form"
      "title form"
      "copy form";
    column-gap: 64px;
    align-items: start;
    padding: 39px 46px;
    text-align: left;
    border-radius: 22px;
  }

  .track-card-kicker {
    grid-area: kicker;
    justify-self: start;
    margin: 0 0 12px;
  }

  .track-card h2 {
    grid-area: title;
    max-width: 420px;
    margin: 0;
    font-size: clamp(31px, 2.7vw, 40px);
  }

  .track-card > p {
    grid-area: copy;
    max-width: 430px;
    margin: 14px 0 0;
    font-size: 15px;
  }

  .track-card-form {
    display: grid;
    grid-area: form;
    grid-template-columns: minmax(0, 1fr) 215px;
    gap: 12px;
    align-self: center;
  }

  .track-card-form input,
  .track-card-form button {
    height: 68px;
  }
}

@media (max-width: 1000px) {
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .network-map {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .service-card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 18px 82px;
  }

  .service-card-image {
    min-height: 220px;
  }

  .service-card-copy {
    min-height: 0;
    padding: 26px 25px 27px;
  }

  .service-card-copy h3 {
    font-size: 22px;
  }

  .track-showcase {
    padding: 0 18px 46px;
    margin-top: -72px;
    background: linear-gradient(180deg, transparent 0 72px, #edf1ed 72px 100%);
  }

  .track-card {
    padding: 38px 24px 35px;
    border-radius: 23px;
    box-shadow: 0 22px 55px rgba(7, 27, 29, .19);
  }

  .track-card h2 {
    font-size: clamp(29px, 8.5vw, 38px);
  }

  .track-card > p {
    margin: 17px auto 27px;
    font-size: 16px;
  }

  .track-card-form input,
  .track-card-form button {
    height: 62px;
  }

  .industry-section,
  .process-section {
    padding: 78px 7vw;
  }

  .industry-heading,
  .testimonials-head,
  .proof-section {
    grid-template-columns: 1fr;
  }

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

  .industry-card {
    min-height: 390px;
  }

  .hero-track-cta,
  .hero-plan-cta {
    width: 100%;
    max-width: 320px;
  }

  .proof-image {
    min-height: 480px;
  }

  .proof-copy {
    padding: 75px 7vw;
  }

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

  .testimonial-card {
    min-height: 390px;
    margin: 0 0 -1px;
  }

  .testimonial-summary {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-summary a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .network-stats,
  .proof-metrics {
    gap: 12px;
  }

  .network-map {
    min-height: 460px;
  }

  .network-map::before {
    left: -25%;
  }

  .network-map::after {
    left: 2%;
  }

  .process-steps article {
    grid-template-columns: 35px 1fr;
  }

  .process-steps p {
    grid-column: 2;
  }
}
