@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0b1f3a;
  --petrol: #0d4fc4;
  --petrol-dark: #071a4a;
  --signal: #1268e8;
  --signal-hover: #0a52bf;
  --signal-bright: #75aaff;
  --signal-soft: #eaf2ff;
  --paper: #f6f8fc;
  --white: #fff;
  --mist: #eaf0f8;
  --line: #cdd8e7;
  --slate: #53657b;
  --danger: #a43227;
  --brand-gradient: linear-gradient(135deg, #071a4a 0%, #0d4fc4 58%, #1685ff 100%);
  --shadow: 0 24px 70px rgba(7, 26, 74, 0.12);
  --radius-sm: 6px;
  --radius: 12px;
  --shell: min(1320px, calc(100vw - 64px));
  --header-height: 84px;
  --section-space: clamp(72px, 9vw, 132px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

::selection {
  background: var(--signal);
  color: var(--white);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.7vw, 5.7rem);
  font-weight: 670;
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 650;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 650;
  line-height: 1.22;
}

p {
  margin-bottom: 20px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

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

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

.section {
  padding-block: var(--section-space);
}

.section--compact {
  padding-block: clamp(52px, 6vw, 88px);
}

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

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

.section--petrol {
  background: linear-gradient(135deg, var(--petrol-dark), #0a2b70);
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-header h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.section-header__copy {
  max-width: 520px;
  color: var(--slate);
  font-size: 1.05rem;
}

.section--petrol .section-header__copy {
  color: rgba(255, 255, 255, 0.72);
}

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

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--signal);
  content: "";
}

.section--petrol .eyebrow,
.home-hero .eyebrow,
.page-hero--image .eyebrow {
  color: var(--white);
}

.lead {
  max-width: 820px;
  color: var(--slate);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.6;
}

.section--petrol .lead {
  color: rgba(255, 255, 255, 0.74);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "\2192";
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.button:hover::after {
  transform: translateX(4px);
}

.button--primary {
  background: var(--petrol);
}

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

.button--signal {
  background: var(--signal);
  color: var(--white);
}

.button--signal:hover {
  background: var(--signal-hover);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--petrol);
  font-weight: 760;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(7, 26, 74, 0.1);
  background: rgba(246, 248, 252, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 26, 74, 0.09);
}

.site-header__inner {
  display: grid;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 182px;
  height: auto;
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 1.55vw, 26px);
}

.primary-nav > a,
.primary-nav > .nav-item > button {
  position: relative;
  display: flex;
  min-height: 44px;
  padding: 0;
  border: 0;
  align-items: center;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav > a::after,
.primary-nav > .nav-item > button::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--petrol);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-current::after,
.primary-nav > .nav-item:hover > button::after,
.primary-nav > .nav-item > button[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-chevron {
  width: 15px;
  margin-left: 7px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.nav-item:hover .nav-chevron,
.nav-item.is-open .nav-chevron,
.primary-nav > .nav-item > button[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-item {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 620px;
  padding-top: 18px;
  transform: translate(-50%, 8px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item.is-open .nav-submenu {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-submenu__panel {
  display: grid;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-submenu a {
  display: grid;
  padding: 14px;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  transition: background 160ms ease;
}

.nav-submenu a:hover,
.nav-submenu a.is-current {
  background: var(--mist);
}

.nav-submenu strong {
  font-size: 0.95rem;
}

.nav-submenu span {
  margin-top: 4px;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.4;
}

.button--header {
  min-height: 46px;
  padding-inline: 18px;
  background: var(--signal);
  color: var(--white);
  font-size: 0.86rem;
}

.button--header:hover {
  background: var(--signal-hover);
}

.primary-nav > a.nav-quote-link {
  display: none;
}

.nav-toggle {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  isolation: isolate;
  color: var(--white);
  background: var(--petrol-dark);
}

.home-hero__media,
.home-hero__media::after {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media::after {
  background: linear-gradient(90deg, rgba(5, 18, 55, 0.95) 0%, rgba(5, 27, 79, 0.76) 43%, rgba(8, 57, 142, 0.16) 78%), linear-gradient(0deg, rgba(5, 18, 55, 0.82) 0%, transparent 55%);
  content: "";
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--shell);
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  padding-block: clamp(72px, 10vh, 128px) 168px;
  flex-direction: column;
  justify-content: center;
}

.home-hero__content {
  width: min(830px, 68vw);
}

.home-hero h1 {
  max-width: 820px;
  text-wrap: balance;
}

.home-hero__intro {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

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

.home-hero__rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.15fr;
  background: rgba(7, 26, 74, 0.92);
  backdrop-filter: blur(10px);
}

.hero-fact {
  min-height: 120px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-fact strong {
  display: block;
  margin-bottom: 7px;
  color: var(--signal-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-fact span {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-quick-link {
  display: flex;
  min-height: 120px;
  padding: 24px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--signal);
  color: var(--white);
  font-weight: 780;
  text-decoration: none;
}

.hero-quick-link span:last-child {
  font-size: 1.8rem;
  transition: transform 180ms ease;
}

.hero-quick-link:hover span:last-child {
  transform: translateX(6px);
}

/* Page headers */
.page-hero {
  padding-block: clamp(56px, 7vw, 88px);
  background: var(--mist);
}

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

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.35rem, 3.7vw, 3.9rem);
  text-wrap: balance;
}

.page-hero--compact {
  padding-block: clamp(34px, 3.6vw, 48px);
}

.page-hero--compact h1 {
  margin-bottom: 18px;
}

.page-hero--compact .lead {
  max-width: 840px;
}

.page-hero--compact + .section {
  padding-top: clamp(40px, 3.8vw, 54px);
}

.page-hero .lead {
  max-width: 840px;
  margin-bottom: 0;
}

.page-hero--image {
  position: relative;
  min-height: clamp(400px, 50svh, 480px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--petrol-dark);
}

.page-hero--image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-id-149 .page-hero--image > img {
  object-position: center 42%;
}

.page-id-59 .page-hero--image > img {
  object-position: center 42%;
}

.page-hero--image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 18, 55, 0.93), rgba(7, 39, 105, 0.3) 72%), linear-gradient(0deg, rgba(5, 18, 55, 0.74), transparent 55%);
  content: "";
}

.page-hero--image .page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(400px, 50svh, 480px);
  padding-block: 56px;
  flex-direction: column;
  justify-content: center;
}

.page-hero--image .lead {
  color: rgba(255, 255, 255, 0.82);
}

/* Content compositions */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
}

.intro-grid__title {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.intro-grid__copy {
  color: #354b68;
  font-size: 1.06rem;
}

.intro-grid__copy p:last-child {
  margin-bottom: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.split-feature--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-feature--reverse .split-feature__media {
  order: 2;
}

.split-feature__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--mist);
}

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

.split-feature__media--express::before {
  display: none;
}

.split-feature__media--express img {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.split-feature__content {
  display: flex;
  min-height: 620px;
  padding: clamp(48px, 7vw, 112px);
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-feature__content p {
  max-width: 660px;
  color: var(--slate);
}

.split-feature__content .text-link {
  margin-top: 10px;
  align-self: flex-start;
}

.media-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  color: var(--white);
  background: var(--petrol-dark);
}

.media-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 18, 55, 0.95), rgba(8, 57, 142, 0.06) 80%);
  content: "";
}

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

.media-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.media-card__content p {
  max-width: 480px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.media-card__content a {
  color: var(--signal-bright);
}

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

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

.service-card {
  display: flex;
  min-height: 320px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.service-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  border-radius: 50%;
  place-items: center;
  background: var(--signal);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
}

.service-card p {
  color: var(--slate);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.service-card--visual {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.service-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--mist);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card--visual:hover .service-card__media img {
  transform: scale(1.025);
}

.service-card__body {
  display: flex;
  min-height: 224px;
  padding: 30px;
  flex: 1;
  flex-direction: column;
}

.service-card__body p {
  margin-bottom: 0;
}

.feature-list,
.check-list,
.plain-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

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

.feature-list li {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(150px, 0.4fr) 1fr;
  gap: 30px;
}

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

.feature-list span {
  color: var(--slate);
}

.check-list {
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: var(--petrol);
  content: "\2713";
  font-weight: 850;
}

.section--petrol .check-list li::before {
  color: var(--signal-bright);
}

.pulse-panel .check-list {
  margin-bottom: 32px;
}

.pulse-panel .check-list li::before {
  color: var(--signal-bright);
}

.plain-list {
  display: grid;
  gap: 12px;
  color: var(--slate);
}

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

.stat {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 16px;
  color: var(--petrol);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 670;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat span {
  color: var(--slate);
  font-size: 0.98rem;
}

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

.process-item {
  position: relative;
  min-height: 260px;
  padding: 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.process-item::before {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--signal-bright);
  content: "";
}

.process-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
}

.process-grid--illustrated {
  gap: 14px;
}

.process-grid--illustrated .process-item {
  min-height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.process-grid--illustrated .process-item::before {
  display: none;
}

.process-item__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  border: 1px solid rgba(117, 170, 255, 0.4);
  border-radius: 14px;
  place-items: center;
  background: rgba(117, 170, 255, 0.1);
  color: var(--signal-bright);
}

.process-item__icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.spec-item {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(28px, 6vw, 92px);
}

.spec-item h3,
.spec-item p {
  margin: 0;
}

.spec-item h3 {
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.spec-item p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.notice-panel {
  display: grid;
  padding: clamp(30px, 4vw, 54px);
  border-left: 5px solid var(--signal);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  background: var(--white);
}

.notice-panel h2,
.notice-panel h3 {
  margin-bottom: 0;
}

.notice-panel p:last-child {
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.tag-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 680;
}

/* Pulse */
.pulse-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--petrol-dark);
  color: var(--white);
}

.pulse-panel__content {
  padding: clamp(42px, 6vw, 88px);
}

.pulse-panel__content p {
  color: rgba(255, 255, 255, 0.72);
}

.pulse-panel__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

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

.tracking-box {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
}

.tracking-box label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.94rem;
  font-weight: 750;
}

.tracking-box__row {
  display: flex;
  gap: 8px;
}

.tracking-box input {
  min-width: 0;
  flex: 1;
  border-color: transparent;
  background: var(--white);
}

.tracking-box button {
  border: 0;
  border-radius: var(--radius-sm);
  padding-inline: 18px;
  background: var(--signal);
  color: var(--white);
  cursor: pointer;
  font-weight: 760;
}

.tracking-box__help {
  margin: 10px 0 0 !important;
  font-size: 0.84rem;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: start;
}

.section--form {
  padding-block: clamp(40px, 5vw, 68px) var(--section-space);
  background: linear-gradient(180deg, var(--mist) 0, var(--white) 190px);
}

.page-hero--compact + .section--form {
  padding-top: 36px;
}

.form-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.form-sidebar > h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
}

.form-sidebar__card {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--mist);
}

.form-sidebar__card h3 {
  font-size: 1.05rem;
}

.form-sidebar__card p,
.form-sidebar__card address {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.96rem;
  font-style: normal;
}

.form-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 26, 74, 0.07);
}

.form-card--quote {
  padding-top: 44px;
  border-top: 5px solid var(--signal);
  box-shadow: 0 24px 70px rgba(7, 26, 74, 0.11);
}

.form-card > h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
}

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

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

.form-grid--spaced {
  margin-top: 22px;
}

.field label,
.form-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 720;
}

.field-note {
  display: block;
  margin-top: 7px;
  color: var(--slate);
  font-size: 0.84rem;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #a9bad2;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--petrol);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 79, 196, 0.16);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.choice-row label,
.acceptance-row label {
  display: inline-flex;
  margin: 0;
  align-items: flex-start;
  gap: 9px;
  font-weight: 550;
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--petrol);
}

.quote-progress {
  display: flex;
  margin-bottom: 40px;
  gap: 8px;
}

.quote-progress span {
  height: 5px;
  border-radius: 999px;
  flex: 1;
  background: var(--mist);
  transition: background 180ms ease;
}

.quote-progress span.is-active {
  background: var(--petrol);
}

.quote-step[hidden],
.conditional-fields[hidden] {
  display: none !important;
}

.quote-step__header {
  margin-bottom: 32px;
}

.quote-step__header p {
  margin-bottom: 0;
  color: var(--slate);
}

.quote-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-button,
.wpcf7-submit {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--petrol);
  color: var(--white);
  cursor: pointer;
  font-weight: 760;
  transition: background-color 180ms ease;
}

.form-button:hover,
.wpcf7-submit:hover {
  background: var(--signal-hover);
}

.form-button--back {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.conditional-fields {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--signal);
  background: var(--mist);
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.86rem;
}

.wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 16px !important;
  border: 0 !important;
  border-left: 4px solid var(--petrol) !important;
  background: var(--mist);
}

.wpcf7-spinner {
  vertical-align: middle;
}

input[type="file"] {
  min-height: 52px;
  padding: 9px;
  border: 1px solid #a9bad2;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--slate);
}

input[type="file"]::file-selector-button {
  min-height: 32px;
  margin-right: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: var(--mist);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.form-card--career {
  border-top: 5px solid var(--signal);
}

.contact-phone {
  color: var(--petrol);
  font-size: 1.15rem;
  font-weight: 760;
  text-decoration: none;
}

.contact-details-card__links {
  display: grid;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  gap: 7px;
}

.contact-details-card__links a {
  width: fit-content;
  color: var(--petrol);
  font-weight: 760;
  text-decoration: none;
}

.contact-phone:hover,
.contact-email:hover {
  text-decoration: underline;
}

.contact-location {
  padding-top: clamp(64px, 7vw, 96px);
}

.contact-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(380px, 46vw, 560px);
  border: 0;
}

.contact-map__details {
  display: flex;
  min-height: 92px;
  padding: 22px 26px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-map__details > div {
  display: grid;
  gap: 2px;
}

.contact-map__details strong {
  font-size: 1.08rem;
}

.contact-map__details span {
  color: var(--slate);
}

.contact-map__details .text-link {
  flex: 0 0 auto;
}

/* Recruitment */
.career-offers,
.career-application {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.job-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.job-card {
  display: flex;
  min-height: 100%;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--signal);
  border-radius: var(--radius);
  flex-direction: column;
  background: var(--paper);
}

.job-card__heading h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.job-card__meta {
  display: flex;
  margin: 0 0 24px;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.job-card__meta li {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 670;
}

.job-card__summary {
  color: var(--slate);
}

.job-card__details {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.job-card__details summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

.job-card__details summary::-webkit-details-marker {
  display: none;
}

.job-card__details summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 450;
}

.job-card__details[open] summary::after {
  content: "\2212";
}

.job-card__content {
  padding: 4px 0 20px;
  color: var(--slate);
}

.job-card__content h2,
.job-card__content h3 {
  margin-top: 28px;
  font-size: 1.15rem;
}

.job-card .button {
  align-self: flex-start;
  margin-top: 28px;
}

.job-empty {
  max-width: 820px;
  padding: clamp(30px, 5vw, 54px);
  border-left: 5px solid var(--signal);
  background: var(--mist);
}

.job-empty h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.job-empty p:last-of-type {
  color: var(--slate);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-weight: 660;
  text-decoration: none;
}

.faq-nav a:hover {
  color: var(--petrol);
}

.faq-group {
  margin-bottom: 60px;
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.faq-group > h2 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  padding: 23px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 720;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 auto;
  content: "+";
  font-size: 1.2rem;
  font-weight: 450;
  line-height: 25px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  max-width: 820px;
  padding: 0 52px 24px 0;
  color: var(--slate);
}

/* Legal */
.legal-content {
  width: min(880px, calc(100vw - 48px));
  margin-inline: auto;
}

.legal-content h2 {
  margin-top: 54px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.legal-content h3 {
  margin-top: 32px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  color: #42556f;
}

.legal-placeholder {
  padding: 18px 20px;
  border-left: 4px solid #d9982f;
  background: #fff5df;
  color: #684b1e !important;
}

/* Footer */
.recruitment-cta {
  padding-block: clamp(54px, 6vw, 84px);
  background: var(--mist);
}

.recruitment-cta__inner {
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.recruitment-cta__intro > p {
  margin-bottom: 12px;
  color: var(--petrol);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recruitment-cta__intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

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

.recruitment-cta__links a {
  position: relative;
  display: flex;
  min-height: 176px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: flex-start;
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recruitment-cta__links a:nth-child(2) {
  border-color: var(--petrol-dark);
  background: var(--petrol-dark);
  color: var(--white);
}

.recruitment-cta__links a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.recruitment-cta__links span {
  margin-bottom: 7px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recruitment-cta__links a:nth-child(2) span {
  color: var(--signal-bright);
}

.recruitment-cta__links strong {
  max-width: 240px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.28;
}

.recruitment-cta__links i {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 1.25rem;
  font-style: normal;
}

.footer-cta {
  padding-block: clamp(54px, 6vw, 84px);
  background: var(--brand-gradient);
  color: var(--white);
}

.footer-cta__inner {
  display: flex;
  width: var(--shell);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.footer-cta p {
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.footer-cta .button {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  background: linear-gradient(155deg, var(--petrol-dark), #040f2d);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(64px, 8vw, 110px);
  grid-template-columns: 1.55fr repeat(3, minmax(160px, 0.75fr));
  gap: clamp(36px, 5vw, 76px);
}

.brand--footer {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--white);
  color: var(--white);
}

.brand--footer .brand__logo {
  width: 210px;
}

.site-footer__brand > p {
  max-width: 360px;
  margin: 28px 0 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
}

.site-footer address {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  font-style: normal;
}

.site-footer address a {
  color: inherit;
  text-decoration: none;
}

.site-footer address a:hover {
  color: var(--signal-bright);
}

.site-footer h2 {
  margin: 5px 0 22px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 12px;
}

.site-footer li a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer li a:hover {
  color: var(--signal-bright);
}

.site-footer__bottom {
  display: flex;
  width: var(--shell);
  margin-inline: auto;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.error-page {
  display: grid;
  min-height: 65vh;
  padding: 60px 24px;
  place-items: center;
  text-align: center;
}

.error-page__inner {
  max-width: 720px;
}

.error-page h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

/* Progressive reveal */
.js .reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (max-width: 1260px) {
  :root {
    --header-height: 76px;
  }

  .site-header__inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav-toggle {
    display: flex;
    min-height: 44px;
    padding: 0;
    border: 0;
    align-items: center;
    gap: 10px;
    background: none;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 740;
  }

  .nav-toggle__lines,
  .nav-toggle__lines::before,
  .nav-toggle__lines::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .nav-toggle__lines {
    position: relative;
  }

  .nav-toggle__lines::before {
    position: absolute;
    top: -6px;
  }

  .nav-toggle__lines::after {
    position: absolute;
    top: 6px;
  }

  .primary-nav {
    position: fixed;
    z-index: 110;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 24px max(24px, calc((100vw - 760px) / 2));
    transform: translateY(-12px);
    overflow-y: auto;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
  }

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

  .primary-nav > a,
  .primary-nav > .nav-item > button {
    width: 100%;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
    font-size: 1.05rem;
  }

  .primary-nav > a.nav-quote-link {
    display: flex;
    min-height: 56px;
    margin-top: 24px;
    border: 0;
    border-radius: var(--radius-sm);
    justify-content: center;
    background: var(--signal);
    color: var(--white);
    font-weight: 780;
  }

  .primary-nav > a::after,
  .primary-nav > .nav-item > button::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: auto;
    max-height: 0;
    padding: 0;
    transform: none;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: max-height 240ms ease;
  }

  .nav-item:hover .nav-submenu,
  .nav-item:focus-within .nav-submenu {
    transform: none;
  }

  .nav-item.is-open .nav-submenu {
    max-height: 580px;
  }

  .nav-submenu__panel {
    display: block;
    padding: 12px 0 18px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-submenu a {
    padding: 11px 0;
  }

  .button--header {
    justify-self: end;
  }

  .home-hero__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-quick-link {
    display: none;
  }

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

  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, minmax(145px, 0.8fr));
    gap: 34px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 760px);
    --section-space: 78px;
  }

  .section-header,
  .intro-grid,
  .form-layout,
  .faq-layout,
  .notice-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-header__copy {
    max-width: 680px;
  }

  .intro-grid__title,
  .form-sidebar,
  .faq-nav {
    position: static;
  }

  .section--form .form-card {
    order: -1;
  }

  .section--form .form-sidebar {
    order: 1;
  }

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

  .split-feature--reverse .split-feature__media {
    order: 0;
  }

  .split-feature__media,
  .split-feature__content {
    min-height: 500px;
  }

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

  .pulse-panel {
    grid-template-columns: 1fr;
  }

  .pulse-panel__media {
    min-height: 430px;
  }

  .faq-nav {
    display: flex;
    overflow-x: auto;
    gap: 22px;
    scrollbar-width: thin;
  }

  .faq-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .recruitment-cta__inner {
    grid-template-columns: 1fr;
  }

  .job-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 70px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .page-hero__inner {
    width: var(--shell);
  }

  .site-header__inner {
    width: var(--shell);
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand__logo {
    width: 146px;
  }

  .nav-toggle__label,
  .button--header {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .home-hero__media img {
    content: url("../images/hero-mobile.webp?ver=1.3.3");
  }

  .home-hero__media::after {
    background: linear-gradient(0deg, rgba(5, 18, 55, 0.96) 0%, rgba(5, 27, 79, 0.55) 67%, rgba(8, 57, 142, 0.22) 100%);
  }

  .home-hero,
  .home-hero__inner {
    min-height: calc(100svh - var(--header-height));
  }

  .home-hero__inner {
    padding-block: 88px 172px;
    justify-content: flex-end;
  }

  .home-hero__content {
    width: 100%;
  }

  .home-hero h1 {
    margin-bottom: 18px;
  }

  .home-hero__intro {
    margin-bottom: 24px;
    font-size: 0.98rem;
  }

  .home-hero__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-fact {
    min-height: 104px;
    padding: 18px 12px;
  }

  .hero-fact strong {
    font-size: 0.68rem;
  }

  .hero-fact span {
    font-size: 0.78rem;
  }

  .page-hero--image,
  .page-hero--image .page-hero__inner {
    min-height: 420px;
  }

  .page-hero--image .page-hero__inner {
    padding-block: 44px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.05;
  }

  .faq-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    overflow: visible;
  }

  .faq-nav a {
    white-space: normal;
    line-height: 1.35;
  }

  .faq-nav a:last-child {
    grid-column: 1 / -1;
  }

  .split-feature__media {
    min-height: 360px;
  }

  .split-feature__content {
    min-height: auto;
    padding: 48px 24px;
  }

  .card-grid,
  .card-grid--two,
  .stats-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 430px;
  }

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

  .service-card__icon {
    margin-bottom: 30px;
  }

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .spec-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-item {
    min-height: auto;
    border-right: 0;
  }

  .form-card {
    padding: 26px 20px;
  }

  .contact-map iframe {
    height: 340px;
  }

  .contact-map__details {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .recruitment-cta__links {
    grid-template-columns: 1fr;
  }

  .recruitment-cta__links a {
    min-height: 150px;
  }

  .tracking-box__row {
    flex-direction: column;
  }

  .tracking-box button {
    min-height: 50px;
  }

  .footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .home-hero__rail {
    width: 100%;
  }

  .hero-fact {
    padding-inline: 9px;
  }

  .hero-fact span {
    font-size: 0.76rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .page-id-62 .page-hero img,
  .page-id-63 .page-hero img {
    object-position: right center;
  }
}

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

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

  .js .reveal {
    transform: none;
    opacity: 1;
  }
}
