:root {
  --navy: #081a24;
  --navy-2: #0d2733;
  --graphite: #10191e;
  --orange: #ff6534;
  --orange-dark: #dc4d21;
  --mist: #f2f6f5;
  --steel: #65757d;
  --line: #d9e2e0;
  --green: #20a875;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 26, 36, 0.12);
  --radius: 12px;
  --container: 1180px;
  --header: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

:focus-visible {
  outline: 3px solid rgba(255, 101, 52, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 112px 0;
}

.section-sm {
  padding: 78px 0;
}

.muted {
  background: var(--mist);
}

.dark {
  color: var(--white);
  background: var(--navy);
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: #ff8c68;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Sora, Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  font-weight: 650;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 650;
}

h3 {
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
  color: var(--steel);
}

.dark p,
.hero p,
.inner-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.lead {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-orange {
  color: var(--white);
  background: var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-2);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.btn-outline {
  color: var(--navy);
  border-color: var(--line);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--navy);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(8, 26, 36, 0.25);
  backdrop-filter: blur(8px);
}

.btn-large {
  min-height: 58px;
  padding: 16px 28px;
}

.text-link {
  display: inline-flex;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid rgba(8, 26, 36, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a,
.nav-drop > button {
  padding: 12px 0;
  border: 0;
  color: var(--navy);
  background: none;
  font-size: 12px;
  font-weight: 750;
}

.main-nav > a:hover,
.nav-drop > button:hover,
.main-nav .active {
  color: var(--orange-dark);
}

.nav-drop {
  position: relative;
}

.nav-drop > button {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-drop > button::after {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  content: "";
  transform: rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -24px;
  display: grid;
  width: 280px;
  gap: 4px;
  padding: 14px;
  visibility: hidden;
  transform: translateY(8px);
  border: 1px solid var(--line);
  border-radius: 10px;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 160ms ease;
}

.drop-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.drop-menu a:hover {
  color: var(--orange-dark);
  background: var(--mist);
}

.nav-drop:hover .drop-menu,
.nav-drop:focus-within .drop-menu,
.nav-drop.open .drop-menu {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 44px;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  content: "";
  background: var(--navy);
  transition: 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../images/hero-logistics.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 17, 24, 0.92) 0%, rgba(3, 17, 24, 0.72) 48%, rgba(3, 17, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(3, 17, 24, 0.5), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 160px;
}

.hero h1 {
  max-width: 880px;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-content > p {
  max-width: 680px;
  margin-top: 30px;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-status {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.status-route {
  display: flex;
  align-items: center;
  gap: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 168, 117, 0.16);
}

.status-route small,
.status-route strong {
  display: block;
}

.status-route small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-route strong {
  font-size: 12px;
}

.mode-list {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  max-width: 520px;
  padding-bottom: 8px;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading p {
  margin-top: 22px;
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.card {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 26, 36, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(8, 26, 36, 0.14);
}

.card-image {
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px;
}

.card-body > span {
  display: block;
  margin-bottom: 13px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-body p {
  margin: 14px 0 20px;
  font-size: 14px;
}

.mode-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}

.mode-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 26, 36, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mode-card:hover,
.mode-card:focus-visible {
  z-index: 2;
  color: var(--navy);
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(8, 26, 36, 0.16);
}

.mode-card:hover p {
  color: var(--steel);
}

.mode-card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--mist);
}

.mode-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.mode-card:hover .mode-card-image img {
  transform: scale(1.035);
}

.mode-number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  min-width: 38px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--white);
  background: rgba(8, 26, 36, 0.88);
  box-shadow: 0 5px 16px rgba(8, 26, 36, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.mode-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 24px;
}

.mode-card-body h3 {
  color: var(--navy);
  line-height: 1.2;
}

.mode-card p {
  margin: 13px 0 22px;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.65;
}

.mode-card .text-link {
  margin-top: auto;
  color: var(--orange-dark);
}

.story-grid,
.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 650px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.story-image,
.feature-image {
  min-height: 520px;
  background: center / cover no-repeat;
}

.story-image {
  background-image: url("../images/ocean-freight.png");
}

.story-copy,
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  color: var(--white);
}

.story-copy > p,
.feature-copy > p {
  margin-top: 24px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  align-items: start;
}

.check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.check-list strong,
.check-list p {
  display: block;
}

.check-list p {
  margin-top: 3px;
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.process-item {
  padding: 30px 28px 18px 0;
  border-right: 1px solid var(--line);
}

.process-item + .process-item {
  padding-left: 28px;
}

.process-item:last-child {
  border-right: 0;
}

.process-item > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.process-item p {
  margin-top: 14px;
  font-size: 13px;
}

.image-copy-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.image-frame.tall img {
  height: 680px;
}

.copy-block > p {
  margin-top: 24px;
  font-size: 1.05rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.metric-grid div {
  padding: 22px;
  background: var(--white);
}

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

.metric-grid strong {
  font-size: 13px;
}

.metric-grid span {
  margin-top: 5px;
  color: var(--steel);
  font-size: 12px;
}

.industry-rows {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-row {
  display: grid;
  grid-template-columns: 60px 0.7fr 1.3fr;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.industry-row > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.industry-row p {
  font-size: 13px;
}

.inner-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.inner-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 20, 28, 0.93), rgba(4, 20, 28, 0.56) 58%, rgba(4, 20, 28, 0.2));
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
}

.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6.2vw, 6rem);
}

.inner-hero p {
  max-width: 690px;
  margin-top: 24px;
  font-size: 1.16rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.page-intro .rich-copy {
  font-size: 1.08rem;
}

.rich-copy {
  display: grid;
  gap: 24px;
}

.rich-copy h2,
.rich-copy h3 {
  margin-top: 20px;
}

.rich-copy ul {
  display: grid;
  gap: 11px;
  padding-left: 20px;
  margin: 0;
  color: var(--steel);
}

.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.side-panel {
  align-self: start;
  padding: 34px;
  border-radius: 12px;
  background: var(--mist);
}

.side-panel h3 {
  margin-bottom: 20px;
}

.side-panel .check-list {
  margin: 0;
}

.side-panel .check-list p {
  color: var(--navy);
  font-size: 14px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 18px;
  color: var(--white);
  background: var(--navy);
}

.cta-panel::after {
  position: absolute;
  top: -130px;
  right: -130px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 101, 52, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 101, 52, 0.06);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p {
  max-width: 620px;
  margin: 22px 0 30px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 44px;
}

.form-card,
.track-card {
  position: relative;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(8, 26, 36, 0.08);
}

.form-card > p {
  margin-top: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

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

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

.field label,
.group-label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea,
.track-row input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #c8d4d1;
  border-radius: 7px;
  color: var(--navy);
  background-color: var(--white);
  transition: border 150ms ease, box-shadow 150ms ease;
}

.field select {
  padding-right: 44px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--steel) 50%),
    linear-gradient(135deg, var(--steel) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 15px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.track-row input:focus {
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 101, 52, 0.12);
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field small {
  color: var(--steel);
  font-size: 11px;
}

.location-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 340px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 26, 36, 0.16);
}

.location-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 6px;
  color: var(--navy);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.location-option:hover,
.location-option.active {
  background: var(--mist);
}

.location-option span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.location-option small {
  align-self: center;
  color: var(--steel);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-attribution {
  padding: 8px 12px 5px;
  color: var(--steel);
  font-size: 9px;
  text-align: right;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.option-card {
  position: relative;
  min-height: 108px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.option-card:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255, 101, 52, 0.06);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.option-card strong {
  font-size: 13px;
}

.option-card span {
  margin-top: 6px;
  color: var(--steel);
  font-size: 11px;
  line-height: 1.45;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--steel);
  font-size: 12px;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.step-panel {
  position: sticky;
  top: calc(var(--header) + 25px);
  padding: 30px;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
}

.step-progress {
  height: 4px;
  margin: 20px 0 26px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.step-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--orange);
  transition: width 250ms ease;
}

.step-list {
  display: grid;
  gap: 16px;
}

.step-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.step-list span {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 10px;
}

.step-list .current,
.step-list .done {
  color: var(--white);
}

.step-list .current span {
  border-color: var(--orange);
  background: var(--orange);
}

.step-list .done span {
  border-color: var(--green);
  background: var(--green);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: rise 260ms ease both;
}

.notice {
  padding: 14px 16px;
  margin-top: 22px;
  border-radius: 7px;
  font-size: 13px;
}

.notice-error {
  color: #8c2b18;
  border: 1px solid #f1c1b7;
  background: #fff2ef;
}

.notice-success {
  color: #0f6949;
  border: 1px solid #a9ddc8;
  background: #effaf6;
}

.track-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.tracking-result {
  display: none;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.tracking-result.visible {
  display: block;
}

.tracking-head {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-progress-wrap {
  margin-top: 26px;
}

.tracking-progress-wrap > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 11px;
}

.tracking-progress-wrap > div:first-child span {
  color: var(--steel);
}

.tracking-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #dce5e2;
}

.tracking-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 500ms ease;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 25px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stats-strip div {
  padding: 20px;
  background: var(--white);
}

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

.stats-strip strong {
  font-size: 13px;
}

.stats-strip span {
  margin-top: 5px;
  color: var(--steel);
  font-size: 10px;
}

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

.tracking-timeline-wrap {
  margin-top: 34px;
}

.tracking-timeline-wrap h3 {
  margin-bottom: 22px;
  font-size: 1.15rem;
}

.tracking-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracking-stage {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 15px;
  min-height: 92px;
}

.tracking-stage:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: -2px;
  left: 7px;
  width: 2px;
  background: var(--line);
}

.tracking-stage.complete:not(:last-child)::before {
  background: var(--green);
}

.stage-marker {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border: 3px solid var(--white);
  border-radius: 50%;
  outline: 1px solid #aebbb7;
  background: #dce5e2;
}

.tracking-stage.complete .stage-marker {
  outline-color: var(--green);
  background: var(--green);
}

.tracking-stage.current .stage-marker {
  outline-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 101, 52, 0.12);
}

.tracking-stage strong,
.tracking-stage p,
.tracking-stage small {
  display: block;
}

.tracking-stage strong {
  color: var(--navy);
  font-size: 13px;
}

.tracking-stage p {
  margin-top: 5px;
  color: var(--steel);
  font-size: 11px;
}

.tracking-stage small {
  margin-top: 5px;
  color: var(--steel);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tracking-stage.upcoming {
  opacity: 0.58;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 50px auto 0;
}

.faq {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.faq button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  color: var(--navy);
  background: none;
  text-align: left;
  font-weight: 800;
}

.faq button::after {
  content: "+";
  color: var(--orange-dark);
  font-size: 22px;
  font-weight: 400;
}

.faq.open button::after {
  content: "−";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 230ms ease;
}

.faq-content p {
  padding: 0 22px 22px;
}

.site-footer {
  padding-top: 78px;
  color: var(--white);
  background: #06151d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 55px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 200px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  font-size: 13px;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  animation: rise 600ms ease forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav > a,
  .nav-drop > button {
    font-size: 11px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

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

  .story-copy,
  .feature-copy {
    padding: 52px;
  }

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

@media (max-width: 860px) {
  :root {
    --header: 72px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .brand img {
    width: 170px;
  }

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

  .main-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 24px 22px 120px;
    overflow-y: auto;
    background: var(--white);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav > a,
  .nav-drop > button {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .nav-drop {
    width: 100%;
  }

  .drop-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 6px 0 10px 14px;
    visibility: visible;
    transform: none;
    border: 0;
    opacity: 1;
    box-shadow: none;
  }

  .nav-drop:hover .drop-menu {
    display: none;
  }

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

  .nav-actions .btn-orange {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 17, 24, 0.92), rgba(3, 17, 24, 0.54));
  }

  .hero-status {
    padding: 20px 0;
  }

  .mode-list {
    display: none;
  }

  .split-heading,
  .page-intro,
  .service-detail,
  .image-copy-grid,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .process-item:nth-child(2) {
    border-right: 0;
  }

  .process-item:nth-child(3),
  .process-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-item:nth-child(3) {
    padding-left: 0;
  }

  .industry-row {
    grid-template-columns: 48px 0.9fr 1.1fr;
  }

  .step-panel {
    position: static;
    order: -1;
  }

  .step-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .step-list div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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

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

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 75px 0 140px;
  }

  .hero-content > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mode-cards,
  .card-grid,
  .form-grid,
  .option-grid,
  .metric-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .mode-card {
    min-height: 0;
  }

  .story-copy,
  .feature-copy,
  .cta-panel {
    padding: 38px 24px;
  }

  .image-frame img,
  .image-frame.tall img {
    height: 430px;
  }

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

  .process-item,
  .process-item + .process-item {
    padding: 26px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-item:first-child {
    border-top: 0;
  }

  .process-item > span {
    margin-bottom: 22px;
  }

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

  .industry-row p {
    grid-column: 2;
  }

  .inner-hero {
    min-height: 500px;
  }

  .inner-hero-content {
    padding: 68px 0 56px;
  }

  .inner-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .form-card,
  .track-card {
    padding: 28px 20px;
  }

  .track-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .btn {
    width: 100%;
  }

  .step-list div {
    font-size: 9px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
