:root {
  --navy-950: #061627;
  --navy-900: #071c31;
  --navy-800: #0d2a47;
  --navy-700: #173c60;
  --red: #ee3b42;
  --red-dark: #d82c33;
  --ink: #10243a;
  --muted: #5c6d7e;
  --line: #d8e0e7;
  --paper: #f4f7f9;
  --white: #ffffff;
  --shadow: 0 28px 75px rgba(1, 14, 28, 0.24);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 6px;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 22, 39, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.brand-logo {
  display: block;
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 0.72rem 1rem;
  background: var(--red);
  border-radius: 6px;
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(30, 88, 132, 0.34) 0 1px, transparent 1.5px) 0 0 / 24px 24px,
    linear-gradient(122deg, var(--navy-950), var(--navy-800));
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -310px;
  bottom: -300px;
  border: 90px solid rgba(238, 59, 66, 0.11);
  border-radius: 50%;
}

.hero::after {
  content: "R1";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.025);
  font-weight: 950;
  font-size: clamp(18rem, 36vw, 34rem);
  letter-spacing: -0.13em;
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  min-height: 780px;
  padding-top: 122px;
  padding-bottom: 72px;
}

.hero-copy {
  padding-block: 1rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 3px;
  background: var(--red);
}

.eyebrow.dark {
  color: #51677c;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.62);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 6.2vw, 6.25rem);
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
}

h3 {
  margin: 0;
  line-height: 1.15;
}

.hero-lede {
  max-width: 640px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.1rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  margin-top: 1.35rem;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 720;
}

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

.hero-contact span {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffb3b6;
  outline-offset: 3px;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(238, 59, 66, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

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

.button-whatsapp {
  background: #16734a;
  color: var(--white);
}

.button-whatsapp:hover {
  background: #105f3d;
}

.button-outline {
  border: 1px solid #c7d2dc;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--navy-700);
  background: #f6f8fa;
}

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

.button-full {
  width: 100%;
}

.text-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  color: var(--red);
  margin-left: 0.25rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.15rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-row div {
  display: grid;
  gap: 0.12rem;
  padding-right: 1rem;
}

.trust-row div + div {
  padding-left: 1.3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-row strong {
  font-size: 0.98rem;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.journey {
  margin-top: 2.2rem;
}

.journey-line {
  position: relative;
  width: calc(100% - 14px);
  height: 2px;
  margin-left: 7px;
  background: rgba(255, 255, 255, 0.17);
}

.journey-line span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 59, 66, 0.18);
  transform: translate(-50%, -50%);
  transition: left 650ms cubic-bezier(.2,.9,.25,1);
}

.journey ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0.72rem 0 0;
  list-style: none;
}

.journey li {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.journey li:nth-child(2),
.journey li:nth-child(3) {
  text-align: center;
}

.journey li:last-child {
  text-align: right;
}

.journey li.is-active {
  color: var(--white);
}

.brief-card {
  position: relative;
  min-height: 660px;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-heading {
  margin-bottom: 1.5rem;
}

.card-kicker,
.panel-label,
.service-label {
  margin: 0 0 0.4rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.card-heading h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.card-heading > p:last-child {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

form {
  display: grid;
  gap: 1rem;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label,
fieldset {
  display: grid;
  gap: 0.42rem;
}

label > span,
legend {
  color: #2c4258;
  font-size: 0.82rem;
  font-weight: 800;
}

label em {
  float: right;
  color: #82909d;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  margin-bottom: 0.42rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #cbd6df;
  border-radius: 7px;
  color: var(--ink);
  background: #fbfcfd;
  font-size: 0.95rem;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

input:hover,
select:hover,
textarea:hover {
  border-color: #aab8c5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(23, 60, 96, 0.1);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.choice {
  position: relative;
  display: block;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice > span {
  display: block;
  padding: 0.72rem 0.65rem;
  border: 1px solid #d2dbe3;
  border-radius: 7px;
  color: #32495e;
  background: #f8fafb;
  font-size: 0.84rem;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.choice small {
  color: #7b8996;
  font-size: 0.7rem;
  font-weight: 650;
}

.choice input:checked + span {
  border-color: var(--red);
  color: var(--navy-950);
  background: #fff5f5;
  box-shadow: inset 0 0 0 1px var(--red);
}

.choice input:focus-visible + span {
  outline: 3px solid #ffb3b6;
  outline-offset: 3px;
}

.privacy-note {
  margin: -0.3rem 0 0;
  color: #7d8994;
  font-size: 0.72rem;
  text-align: center;
}

.direct-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: #7a8792;
  font-size: 0.76rem;
}

.direct-contact a {
  color: var(--red-dark);
  font-weight: 820;
}

.brief-result {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
}

.brief-result[hidden] {
  display: none;
}

.result-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.result-heading h3 {
  font-size: 1.75rem;
}

.close-result {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}

.result-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 1.6rem 0;
}

.result-route div {
  min-width: 0;
}

.result-route span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.result-route strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 1rem;
}

.result-route b {
  color: var(--red);
}

.brief-result dl {
  display: grid;
  margin: 0 0 1.7rem;
  border-top: 1px solid var(--line);
}

.brief-result dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.brief-result dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.brief-result dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 750;
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.copy-status {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

.service-strip {
  background: var(--red);
  color: var(--white);
}

.vehicle-stage {
  padding: clamp(2.5rem, 6vw, 5rem) 0 0;
  background: var(--paper);
}

.vehicle-frame {
  position: relative;
  min-height: clamp(430px, 55vw, 650px);
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy-900);
  box-shadow: 0 30px 70px rgba(7, 28, 49, 0.16);
}

.vehicle-frame::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4, 17, 30, 0.7));
  pointer-events: none;
}

.vehicle-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.vehicle-frame figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(1.25rem, 4vw, 3.6rem);
  right: clamp(1.25rem, 4vw, 3.6rem);
  bottom: clamp(1.25rem, 4vw, 3.2rem);
  display: grid;
  max-width: 650px;
  gap: 0.35rem;
  padding-left: 1.2rem;
  color: var(--white);
  border-left: 4px solid var(--red);
}

.vehicle-frame figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.vehicle-frame figcaption strong {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.vehicle-frame figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.strip-inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.strip-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.55fr);
  column-gap: 4rem;
  align-items: end;
  margin-bottom: 3.4rem;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2 {
  max-width: 790px;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: space-between;
  padding: 1.65rem;
  overflow: hidden;
  border: 1px solid #d3dde5;
  border-radius: 13px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #b8c6d2;
  box-shadow: 0 22px 45px rgba(7, 28, 49, 0.08);
}

.service-card.featured {
  color: var(--white);
  border-color: var(--navy-900);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--navy-900);
  background-size: 26px 26px;
}

.service-number {
  color: #8b9aa8;
  font-size: 0.72rem;
  font-weight: 850;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.48);
}

.service-card h3 {
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.service-card p:not(.service-label) {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.service-card.featured p:not(.service-label) {
  color: rgba(255, 255, 255, 0.65);
}

.service-arrow {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  color: var(--red);
  font-size: 1.35rem;
}

.cargo-section {
  background: var(--white);
}

.cargo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.cargo-copy {
  position: sticky;
  top: 120px;
}

.cargo-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cargo-copy .small-note {
  padding-left: 1rem;
  border-left: 3px solid var(--red);
  font-size: 0.8rem !important;
}

.cargo-list {
  border-top: 1px solid var(--line);
}

.cargo-item {
  display: grid;
  width: 100%;
  grid-template-columns: 42px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 0.4rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.cargo-item span {
  color: #8a98a5;
  font-size: 0.75rem;
  font-weight: 800;
}

.cargo-item strong {
  font-size: 1.12rem;
}

.cargo-item i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.cargo-item:hover strong,
.cargo-item.is-active strong {
  color: var(--red-dark);
}

.cargo-item.is-active i {
  color: var(--white);
  background: var(--red);
  transform: rotate(45deg);
}

.cargo-detail {
  padding: 1.4rem;
  margin-top: 1.2rem;
  color: var(--white);
  border-radius: 10px;
  background: var(--navy-900);
}

.cargo-detail p {
  margin: 0 0 0.35rem;
  font-weight: 800;
}

.cargo-detail span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

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

.section-intro.compact {
  display: block;
}

.section-intro.compact h2 {
  max-width: 680px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 3.5rem 0 0;
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  position: relative;
  min-height: 220px;
  padding: 1.3rem 1.8rem 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 1.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.process-grid li + li {
  padding-left: 1.7rem;
}

.process-grid li > span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.process-grid h3 {
  margin-top: 3rem;
  font-size: 1.2rem;
}

.process-grid p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.standards {
  background: #eef3f6;
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.72fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.standards-copy > p:last-child {
  max-width: 640px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.standards-panel {
  padding: 2rem;
  color: var(--white);
  border-radius: 14px;
  background: var(--navy-900);
  box-shadow: 18px 18px 0 var(--red);
}

.standards-panel ul {
  padding: 0;
  margin: 1rem 0 2rem;
  list-style: none;
}

.standards-panel li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 0.7rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 720;
}

.standards-panel li span {
  color: var(--red);
  font-size: 0.72rem;
}

.standards-note {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.055);
}

.standards-note span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.closing-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: var(--white);
  background: var(--red);
}

.closing-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.closing-inner .eyebrow span {
  background: var(--white);
}

.closing-inner h2 {
  max-width: 820px;
}

.closing-actions {
  display: grid;
  min-width: 190px;
  gap: 0.8rem;
  justify-items: stretch;
}

.closing-contact {
  color: var(--white);
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 4px;
}

footer {
  padding: 2.2rem 0;
  color: var(--white);
  background: #03101d;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-inner p,
.footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 0.75rem 1.4rem;
}

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

.footer-brand .brand-logo {
  width: 140px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 138px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .brief-card {
    width: min(650px, 100%);
    justify-self: center;
  }

  .section-intro,
  .cargo-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 1.5rem;
  }

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

  .service-card:first-child {
    grid-column: 1 / -1;
  }

  .cargo-copy {
    position: static;
  }

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

  .process-grid li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

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

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 1rem 20px 1.35rem;
    border-top: 1px solid rgba(255,255,255,.1);
    background: var(--navy-950);
    box-shadow: 0 18px 38px rgba(0,0,0,.2);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.8rem 0;
  }

  .site-nav .nav-cta {
    padding-inline: 1rem;
    text-align: center;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 116px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .trust-row div,
  .trust-row div + div {
    grid-template-columns: 120px 1fr;
    gap: 0.7rem;
    padding: 0 0 0.9rem;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .journey li {
    font-size: 0.62rem;
  }

  .brief-card {
    min-height: 690px;
    border-radius: 12px;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .strip-inner {
    flex-wrap: wrap;
    gap: 0.55rem 0.8rem;
    padding: 0.8rem 0;
    text-align: center;
  }

  .section {
    padding-block: 5rem;
  }

  .section-intro {
    display: block;
  }

  .section-intro > p:last-child {
    margin-top: 1.25rem;
  }

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

  .service-card:first-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 285px;
  }

  .cargo-grid,
  .standards-grid {
    gap: 2.8rem;
  }

  .process-grid li {
    min-height: 180px;
  }

  .process-grid li::after {
    display: none;
  }

  .process-grid li + li {
    padding-left: 0;
  }

  .standards-panel {
    margin-right: 9px;
    box-shadow: 9px 9px 0 var(--red);
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-actions {
    width: min(100%, 330px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: start;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (max-width: 420px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice > span {
    text-align: left;
  }

  .brief-card {
    min-height: 820px;
  }

  .result-actions {
    grid-template-columns: 1fr;
  }

  .result-route {
    grid-template-columns: 1fr;
  }

  .result-route b {
    transform: rotate(90deg);
  }

  .brief-result dl div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
