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

:root {
  --brand: #21409a;
  --brand-deep: #061a3a;
  --brand-dark: #0a2453;
  --brand-mid: #3156bd;
  --brand-light: #e8efff;
  --sky: #6da8ff;
  --ink: #0b1730;
  --muted: #5e6b82;
  --line: #dce3ee;
  --soft: #f3f6fb;
  --white: #ffffff;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(6, 26, 58, 0.12);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

a:hover {
  color: var(--brand-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.035em;
}

p:last-child {
  margin-bottom: 0;
}

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

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

.container-xxl {
  max-width: 1440px;
  padding-right: clamp(1.25rem, 4vw, 3rem);
  padding-left: clamp(1.25rem, 4vw, 3rem);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: .75rem 1.25rem;
  color: var(--white);
  background: var(--brand-deep);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

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

.section-padding-sm {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.section-title {
  max-width: 790px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.7vw, 4.75rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading .section-title {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: .6rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-copy {
  color: #334159;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.72;
}

.btn {
  --bs-btn-font-weight: 750;
  --bs-btn-padding-x: 1.45rem;
  --bs-btn-padding-y: .83rem;
  border-radius: 999px;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s ease, background-color .25s ease, border-color .25s ease;
}

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

.btn-lg {
  --bs-btn-padding-x: 1.8rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
}

.btn-brand {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(33, 64, 154, .2);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: var(--white);
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(6, 26, 58, .22);
}

.btn-light {
  color: var(--brand-deep);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--white);
  background: var(--brand-mid);
  border-color: var(--brand-mid);
}

.btn-outline-light:hover {
  color: var(--brand-deep);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: .25rem;
  color: var(--brand);
  border-bottom: 1px solid currentColor;
  font-weight: 750;
  text-decoration: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
}

.site-header.is-sticky .navbar {
  box-shadow: 0 12px 35px rgba(6, 26, 58, .09);
}

.topbar {
  color: rgba(255, 255, 255, .88);
  background: var(--brand-deep);
}

.topbar-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: .77rem;
  font-weight: 650;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: inherit;
  text-decoration: none;
}

.topbar-contact svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.topbar-location {
  color: rgba(255, 255, 255, .62);
}

.navbar {
  position: relative;
  min-height: 86px;
  padding: .8rem 0;
  background: rgba(255, 255, 255, .98);
  transition: box-shadow .25s ease, min-height .25s ease;
}

.navbar-brand {
  width: clamp(220px, 21vw, 315px);
  margin-right: 2rem;
}

.navbar-brand img {
  width: 100%;
}

.navbar-nav {
  gap: .25rem;
}

.nav-link {
  position: relative;
  padding: .8rem .95rem !important;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: .95rem;
  bottom: .55rem;
  left: .95rem;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-content: center;
  gap: 5px;
}

.navbar-toggler span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 128px);
  min-height: 760px;
  margin: 0 clamp(0px, 2vw, 28px);
  overflow: hidden;
  color: var(--white);
  background-color: #04132d;
  background-position: center;
  background-size: cover;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, rgba(4, 19, 45, .96) 0%, rgba(4, 19, 45, .81) 42%, rgba(4, 19, 45, .25) 76%);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  right: -7%;
  bottom: -32%;
  z-index: -1;
  width: 47vw;
  height: 47vw;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .035), 0 0 0 120px rgba(255, 255, 255, .025);
}

.hero-grid,
.error-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .14;
  background-image: linear-gradient(rgba(255, 255, 255, .25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .25) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-inner {
  display: flex;
  min-height: inherit;
  padding-top: clamp(8rem, 18vh, 13rem);
  padding-bottom: 2rem;
  flex-direction: column;
  justify-content: space-between;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, .82);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 38px;
  height: 2px;
  content: "";
  background: var(--sky);
}

.hero-title {
  max-width: 1080px;
  margin-bottom: 1.7rem;
  color: var(--white);
  font-size: clamp(3.3rem, 7.5vw, 7.6rem);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: .93;
}

.hero-title span,
.page-hero h1 span {
  color: #91baff;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-note {
  max-width: 330px;
  margin-left: auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-note-number {
  display: block;
  margin-bottom: 2rem;
  color: #91baff;
  font-size: .8rem;
  font-weight: 800;
}

.hero-note p {
  color: rgba(255, 255, 255, .82);
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  color: rgba(255, 255, 255, .62);
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-bottom a {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: inherit;
  text-decoration: none;
}

.hero-bottom svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Intro */
.intro {
  background: var(--white);
}

.intro-divider {
  height: 1px;
  margin: clamp(3.2rem, 6vw, 5.5rem) 0 2.8rem;
  background: var(--line);
}

.intro-points h3 {
  margin-bottom: .85rem;
  font-size: 1.35rem;
}

.intro-points p:not(.point-number) {
  color: var(--muted);
}

.point-number {
  margin-bottom: 1.5rem;
  color: var(--brand);
  font-size: .8rem;
  font-weight: 800;
}

/* Services */
.services {
  background: var(--soft);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}

.service-card:hover {
  border-color: rgba(33, 64, 154, .2);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card > span {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  color: #96a2b5;
  font-size: .75rem;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: auto;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 18px;
  place-items: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  max-width: 310px;
  margin: 2.2rem 0 1rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

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

.service-card a {
  display: inline-flex;
  gap: .8rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}

.service-card-image {
  padding: 0;
  color: var(--white);
  background: var(--brand-deep);
}

.service-card-image picture,
.service-card-image img {
  width: 100%;
  height: 100%;
}

.service-card-image img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 2.2rem;
  background: linear-gradient(180deg, rgba(6, 26, 58, .06) 25%, rgba(6, 26, 58, .94) 100%);
  flex-direction: column;
  justify-content: flex-end;
}

.service-card-overlay > span {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  font-size: .75rem;
  font-weight: 800;
}

.service-card-overlay h3 {
  max-width: 370px;
  margin: 0 0 1.3rem;
  color: var(--white);
}

.service-card-overlay a {
  color: var(--white);
}

/* About split */
.about-split {
  overflow: hidden;
}

.image-stack {
  position: relative;
  max-width: 650px;
  padding-right: 11%;
  padding-bottom: 8%;
}

.image-stack::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 54%;
  content: "";
  background-image: radial-gradient(var(--brand) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  border-radius: var(--radius);
  opacity: .25;
}

.image-stack-main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.image-stack-badge {
  position: absolute;
  right: 0;
  bottom: 1%;
  z-index: 2;
  display: flex;
  width: 210px;
  min-height: 165px;
  padding: 1.6rem;
  color: var(--white);
  background: var(--brand);
  border: 8px solid var(--white);
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
}

.image-stack-badge strong {
  font-size: 2.7rem;
  line-height: 1;
}

.image-stack-badge span {
  margin-top: .65rem;
  font-size: .82rem;
}

.about-values {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0;
}

.about-values > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: .9rem;
  align-items: start;
}

.about-values > div > span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
  place-items: center;
}

.about-values p {
  color: var(--muted);
  font-size: .93rem;
}

.about-values strong {
  color: var(--ink);
}

/* Why */
.why-us {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .72);
  background: var(--brand-deep);
  isolation: isolate;
}

.why-us .text-white-50,
.quote-section .text-white-50,
.footer-cta .text-white-50 {
  color: rgba(255, 255, 255, .82) !important;
}

.why-us-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image: radial-gradient(circle at 75% 40%, rgba(109, 168, 255, .65), transparent 28%), linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: auto, 100px 100px, 100px 100px;
  mask-image: linear-gradient(90deg, transparent, #000 50%);
}

.why-lead {
  max-width: 500px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.why-card {
  min-height: 285px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  transition: background .3s ease, transform .3s var(--ease);
}

.why-card:hover {
  background: rgba(49, 86, 189, .35);
  transform: translateY(-5px);
}

.why-card span {
  display: block;
  margin-bottom: 3.2rem;
  color: #91baff;
  font-size: .75rem;
  font-weight: 800;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.why-card p {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

/* Process */
.process-heading {
  max-width: 780px;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
}

.process-heading .eyebrow {
  justify-content: center;
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 42px;
  right: 15%;
  left: 15%;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-list li {
  position: relative;
  padding: 0 clamp(1rem, 3vw, 2.7rem);
  text-align: center;
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 84px;
  height: 84px;
  margin: 0 auto 2.2rem;
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(6, 26, 58, .08);
  place-items: center;
}

.process-list h3 {
  font-size: 1.35rem;
}

.process-list p {
  color: var(--muted);
  font-size: .94rem;
}

/* Solutions */
.solutions {
  background: var(--soft);
}

.solutions .section-heading {
  grid-template-columns: 1fr auto;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .6rem;
}

.carousel-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
  place-items: center;
}

.carousel-controls button:hover {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-2px);
}

.solution-carousel {
  overflow: hidden;
  background: var(--brand-deep);
  border-radius: var(--radius-lg);
}

.solution-carousel .carousel-item {
  position: relative;
  min-height: 610px;
}

.solution-carousel picture,
.solution-carousel img {
  width: 100%;
  height: 100%;
}

.solution-carousel img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.solution-carousel .carousel-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 26, 58, .94) 0%, rgba(6, 26, 58, .67) 45%, rgba(6, 26, 58, .08) 80%);
}

.solution-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  width: min(720px, 70%);
  padding: clamp(2.2rem, 7vw, 6.5rem);
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
}

.solution-content p {
  color: #91baff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solution-content h3 {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.solution-content span {
  max-width: 550px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
}

/* Stats */
.statistics {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  color: var(--white);
  background: var(--brand);
}

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

.stat {
  display: flex;
  min-height: 155px;
  padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, .22);
  flex-direction: column;
  justify-content: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 750;
  letter-spacing: -.065em;
  line-height: 1;
}

.stat span {
  margin-top: .75rem;
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Clients */
.clients {
  overflow: hidden;
}

.clients .section-heading {
  grid-template-columns: 1fr auto;
}

.client-track {
  display: flex;
  gap: 1rem;
  padding: .3rem 0 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-light) transparent;
  scroll-snap-type: x mandatory;
}

.client-logo {
  display: grid;
  min-width: 310px;
  height: 175px;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-snap-align: start;
  place-items: center;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.86);
  transition: filter .25s ease, transform .25s ease;
}

.client-logo:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

/* Quote and forms */
.quote-section {
  padding-top: 2rem;
}

.quote-shell {
  position: relative;
  display: grid;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  color: rgba(255, 255, 255, .7);
  background: var(--brand-deep);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.quote-shell::after {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .02);
}

.quote-intro,
.quote-form {
  position: relative;
  z-index: 1;
}

.quote-intro p:not(.eyebrow) {
  max-width: 450px;
}

.quote-contact {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.quote-contact span {
  display: block;
  margin-bottom: .35rem;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
  text-transform: uppercase;
}

.quote-contact a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 750;
  text-decoration: none;
}

.quote-form label,
.contact-form label {
  margin-bottom: .45rem;
  color: inherit;
  font-size: .82rem;
  font-weight: 700;
}

.quote-form .form-control,
.quote-form .form-select {
  color: var(--white);
  background-color: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .18);
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, .4);
}

.form-control,
.form-select {
  min-height: 56px;
  padding: .85rem 1rem;
  color: var(--ink);
  background-color: var(--white);
  border-color: var(--line);
  border-radius: var(--radius-sm);
  font-size: .95rem;
}

textarea.form-control {
  min-height: 115px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 .25rem rgba(109, 168, 255, .16);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  color: var(--white);
  background-color: rgba(255, 255, 255, .11);
}

.form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: .25rem;
}

.form-check-input:checked {
  background-color: var(--brand-mid);
  border-color: var(--brand-mid);
}

.form-check-label {
  padding-left: .35rem;
  color: inherit;
  line-height: 1.55;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-action-row {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 1.2rem;
}

.form-status {
  flex: 1;
  margin: 0;
  font-size: .88rem;
}

.form-status.is-success {
  color: #b9ffd0;
}

.contact-form .form-status.is-success {
  color: #137b3d;
}

.form-status.is-error {
  color: #ffd0d0;
}

.contact-form .form-status.is-error {
  color: #aa1f2a;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid,
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #d95c68;
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 560px;
  margin: 0 clamp(0px, 2vw, 28px);
  overflow: hidden;
  color: var(--white);
  background-color: var(--brand-deep);
  background-position: center;
  background-size: cover;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(6, 26, 58, .95), rgba(6, 26, 58, .54) 62%, rgba(6, 26, 58, .16));
}

.page-hero-about {
  background-image: url("../img/container-yard.webp");
}

.page-hero-contact {
  background-image: url("../img/air-cargo.webp");
  background-position: center 46%;
}

.page-hero-inner {
  display: flex;
  min-height: 560px;
  padding-top: clamp(7rem, 13vw, 10rem);
  padding-bottom: 4rem;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3rem, 6.4vw, 6.6rem);
  letter-spacing: -.06em;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: .82rem;
}

.breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .58);
}

.breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

/* About page */
.company-facts {
  display: grid;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.company-facts > div {
  display: grid;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(140px, .55fr) 1fr;
}

.company-facts dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-weight: 700;
}

.mission-vision {
  background: var(--soft);
}

.purpose-card {
  position: relative;
  display: flex;
  min-height: 620px;
  height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  flex-direction: column;
  justify-content: flex-end;
}

.purpose-card-blue {
  color: rgba(255, 255, 255, .72);
  background: var(--brand);
}

.purpose-card-blue::before {
  position: absolute;
  top: -25%;
  right: -18%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .035), 0 0 0 110px rgba(255, 255, 255, .025);
}

.purpose-number {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  font-size: .8rem;
  font-weight: 800;
}

.purpose-card h2 {
  max-width: 680px;
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.purpose-card p {
  position: relative;
  z-index: 1;
}

.purpose-card-image {
  padding: 0;
}

.purpose-card-image picture,
.purpose-card-image img {
  width: 100%;
  height: 100%;
}

.purpose-card-image img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.purpose-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 26, 58, .05), rgba(6, 26, 58, .93));
  flex-direction: column;
  justify-content: flex-end;
}

.principle-card {
  min-height: 315px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}

.principle-card:hover {
  color: rgba(255, 255, 255, .7);
  background: var(--brand-deep);
  transform: translateY(-6px);
}

.principle-card span {
  display: block;
  margin-bottom: 5rem;
  color: var(--brand);
  font-size: .8rem;
  font-weight: 800;
}

.principle-card:hover span {
  color: #91baff;
}

.principle-card h3 {
  font-size: 1.35rem;
}

.principle-card:hover h3 {
  color: var(--white);
}

.principle-card p {
  color: var(--muted);
  font-size: .92rem;
}

.principle-card:hover p {
  color: rgba(255, 255, 255, .65);
}

.technology-section {
  background: var(--soft);
}

.rounded-media {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.check-list {
  display: grid;
  gap: .85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 1.05rem;
  left: 1rem;
  display: grid;
  width: 24px;
  height: 24px;
  color: var(--brand);
  content: "✓";
  background: var(--brand-light);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  place-items: center;
}

.location-list {
  overflow: hidden;
  background: var(--brand-deep);
  border-radius: var(--radius-lg);
}

.location-primary {
  padding: clamp(2rem, 5vw, 4rem);
  color: rgba(255, 255, 255, .65);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.location-primary span,
.location-grid span {
  display: block;
  margin-bottom: 1rem;
  color: #91baff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-primary h3 {
  margin-bottom: .5rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

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

.location-grid div {
  padding: 2rem;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.location-grid div:nth-child(2n) {
  border-right: 0;
}

.location-grid div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.location-grid strong {
  font-size: 1.2rem;
}

.inner-cta {
  padding-top: 1rem;
}

.inner-cta-box {
  display: flex;
  padding: clamp(2rem, 5vw, 4rem);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  background: var(--brand);
  border-radius: var(--radius-lg);
}

.inner-cta-box h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

/* Contact */
.contact-details {
  padding-bottom: 2rem;
}

.contact-card {
  display: flex;
  min-height: 330px;
  height: 100%;
  padding: 2rem;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.contact-card:hover {
  border-color: rgba(33, 64, 154, .2);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.contact-card-icon {
  margin-bottom: auto;
  color: var(--brand);
  font-size: .8rem;
  font-weight: 800;
}

.contact-card h2 {
  margin: 2.5rem 0 1.2rem;
  font-size: 1.45rem;
}

.contact-card a {
  display: block;
  width: fit-content;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}

.contact-card address,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
}

.contact-card-map {
  color: rgba(255, 255, 255, .7);
  background: var(--brand-deep);
}

.contact-card-map .contact-card-icon {
  color: #91baff;
}

.contact-card-map h2,
.contact-card-map a {
  color: var(--white);
}

.contact-card-map p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .62);
}

.contact-form-section {
  background: var(--soft);
}

.contact-image-wrap {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.contact-image-wrap img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.contact-image-wrap span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .55rem .8rem;
  color: var(--white);
  background: rgba(6, 26, 58, .82);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.contact-form {
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(6, 26, 58, .07);
}

.privacy-notice {
  background: var(--white);
}

.privacy-box {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--brand-light);
  border-left: 5px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.privacy-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.privacy-box p:last-child {
  max-width: 1000px;
  color: #394963;
}

/* 404 */
.error-main {
  color: var(--white);
  background: var(--brand-deep);
}

.error-section {
  position: relative;
  display: flex;
  min-height: 690px;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.error-section h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.error-section p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .68);
  font-size: 1.08rem;
}

.error-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-mark span {
  color: rgba(255, 255, 255, .15);
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
}

.error-mark img {
  width: 150px;
  opacity: .72;
}

/* Footer */
.site-footer {
  margin-top: clamp(5rem, 9vw, 9rem);
  color: rgba(255, 255, 255, .62);
  background: var(--brand-deep);
}

.home-page .site-footer,
.error-page .site-footer {
  margin-top: 0;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  background: var(--brand);
}

.footer-cta::after {
  position: absolute;
  top: -180px;
  right: 10%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(255, 255, 255, .025), 0 0 0 100px rgba(255, 255, 255, .02);
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 250px;
  padding: 3rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-cta h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4.3vw, 4.3rem);
}

.footer-main {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.footer-logo {
  display: block;
  width: min(380px, 85%);
  margin-bottom: 2rem;
}

.footer-intro {
  max-width: 500px;
  color: rgba(255, 255, 255, .62);
}

.footer-tagline {
  color: #91baff;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-heading {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: .86rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

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

.footer-address {
  color: rgba(255, 255, 255, .62);
  font-size: .88rem;
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
}

.footer-bottom-inner p {
  margin: 0;
}

.wana-credit span {
  color: var(--white);
  font-weight: 800;
  letter-spacing: .03em;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(6, 26, 58, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .2s ease, transform .2s ease;
  place-items: center;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero {
    min-height: 700px;
    background-position: 64% center;
  }

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

  .quote-shell {
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 82px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .navbar {
    min-height: 78px;
  }

  .navbar-brand {
    width: 245px;
  }

  .navbar-collapse {
    margin-top: .8rem;
    padding: 1.2rem;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .navbar-collapse .btn {
    width: 100%;
    margin-top: .7rem;
    margin-left: 0 !important;
  }

  .hero {
    min-height: 680px;
    margin: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(4, 19, 45, .94), rgba(4, 19, 45, .68));
  }

  .why-us .section-title {
    max-width: 680px;
  }

  .process-list {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .process-list::before {
    top: 0;
    bottom: 0;
    left: 41px;
    width: 1px;
    height: auto;
  }

  .process-list li {
    display: grid;
    padding: 0;
    text-align: left;
    grid-template-columns: 84px 1fr;
    gap: 1.5rem;
  }

  .process-number {
    margin: 0;
  }

  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-intro .section-title {
    max-width: 650px;
  }

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

  .purpose-card {
    min-height: 560px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 4.8rem 0;
  }

  .section-title {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    padding-top: 6.5rem;
  }

  .hero-title {
    font-size: clamp(3.15rem, 15vw, 5.4rem);
  }

  .hero-bottom > p {
    display: none;
  }

  .hero-bottom {
    justify-content: flex-end;
  }

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

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

  .why-card {
    min-height: 250px;
  }

  .solutions .section-heading,
  .clients .section-heading {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .solution-carousel .carousel-item,
  .solution-content {
    min-height: 540px;
  }

  .solution-content {
    width: 100%;
    padding: 2rem;
  }

  .solution-carousel .carousel-item::after {
    background: linear-gradient(180deg, rgba(6, 26, 58, .12), rgba(6, 26, 58, .96));
  }

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

  .stat {
    min-height: 135px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

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

  .stat:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .client-logo {
    min-width: 265px;
    height: 155px;
  }

  .quote-shell {
    margin-right: -.5rem;
    margin-left: -.5rem;
    border-radius: var(--radius);
  }

  .form-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-action-row .btn {
    width: 100%;
  }

  .page-hero {
    margin: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  .purpose-card {
    min-height: 500px;
  }

  .inner-cta-box,
  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-inner {
    padding: 1.5rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    width: 205px;
    margin-right: .4rem;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
  }

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

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

  .image-stack {
    padding-right: 0;
    padding-bottom: 4rem;
  }

  .image-stack-badge {
    right: 1rem;
    bottom: 0;
    width: 175px;
    min-height: 135px;
  }

  .process-list li {
    grid-template-columns: 64px 1fr;
  }

  .process-list::before {
    left: 31px;
  }

  .process-number {
    width: 64px;
    height: 64px;
  }

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

  .stat,
  .stat:nth-child(2),
  .stat:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .company-facts > div {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

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

  .location-grid div,
  .location-grid div:nth-child(2n),
  .location-grid div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .location-grid div:last-child {
    border-bottom: 0;
  }

  .contact-form {
    padding: 1.3rem;
  }

  .error-mark span {
    font-size: 6rem;
  }

  .footer-logo {
    width: 100%;
  }
}

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

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

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