
:root {
  --navy: #061d42;
  --navy-2: #092b5e;
  --blue: #0f63bd;
  --blue-2: #1778d6;
  --blue-soft: #eaf4ff;
  --sky: #9bcaff;
  --ink: #14233a;
  --muted: #607087;
  --line: #d9e3ef;
  --paper: #f6f9fc;
  --white: #ffffff;
  --success: #146c43;
  --danger: #a61b1b;
  --shadow-sm: 0 10px 26px rgba(8, 35, 78, .08);
  --shadow: 0 24px 60px rgba(8, 35, 78, .12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 92px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

button { cursor: pointer; }

::selection { background: #cce6ff; color: var(--navy); }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: -60px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transition: top .18s ease;
}

.skip-link:focus { top: 18px; }

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

.section { padding: 98px 0; }

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

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

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.section-dark .section-kicker,
.section-dark .eyebrow { color: #9dcbff; }

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

h1, h2, h3 {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.13;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -.025em;
}

p { color: var(--muted); }

.section-dark p { color: #cddcf0; }

.lead {
  max-width: 700px;
  font-size: clamp(1.04rem, 1.35vw, 1.19rem);
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.section-heading > div:first-child { max-width: 720px; }
.section-heading p { max-width: 650px; margin-bottom: 0; }

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(203, 217, 234, .9);
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 26px rgba(8,35,78,.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 154px;
  min-width: 126px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  color: #30435e;
  font-size: .91rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  background: #edf6ff;
}

.site-nav a.active::after {
  position: absolute;
  content: "";
  left: 13px; right: 13px; bottom: 5px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.header-cta { margin-left: 9px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button,
.button-outline,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 19px;
  font-size: .89rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.button {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(15,99,189,.22);
}

.button:hover { transform: translateY(-2px); background: #0b55a3; box-shadow: 0 14px 28px rgba(15,99,189,.28); }

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: #b9cbe0;
}

.button-outline:hover { transform: translateY(-2px); color: var(--blue); border-color: var(--blue); background: #f5faff; }

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
}

.button-light:hover { transform: translateY(-2px); color: var(--blue); }

.button svg, .button-outline svg, .button-light svg {
  width: 17px; height: 17px; flex: 0 0 auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 638px;
  padding: 90px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 20%, rgba(53, 139, 240, .34), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(27, 110, 207, .20), transparent 32%),
    linear-gradient(115deg, #04152f 0%, #082758 55%, #0d5aae 100%);
}

.hero::after {
  position: absolute;
  content: "";
  inset: auto auto -180px -180px;
  width: 460px; height: 460px;
  border: 1px solid rgba(171, 213, 255, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(171, 213, 255, .04), 0 0 0 88px rgba(171, 213, 255, .025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.01fr) minmax(410px, .99fr);
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
}

.hero-copy { padding: 28px 0; }
.hero .eyebrow { color: #a5d0ff; }
.hero h1 { max-width: 730px; color: var(--white); }
.hero p { max-width: 625px; color: #d1e1f6; }

.hero-visual {
  position: relative;
  max-width: 630px;
  justify-self: end;
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(183, 219, 255, .22);
  border-radius: 26px;
  box-shadow: 0 32px 76px rgba(0, 10, 35, .33);
}

.hero-panel {
  position: absolute;
  left: -36px;
  bottom: 38px;
  width: min(294px, 60%);
  padding: 18px 18px 16px;
  border: 1px solid rgba(204, 231, 255, .25);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 20px 48px rgba(0, 14, 44, .18);
  backdrop-filter: blur(13px);
}

.hero-panel-label {
  color: #a6d1ff;
  font-size: .69rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 110px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.trust-point:first-child { border-left: 1px solid var(--line); }

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px; height: 34px;
  color: var(--blue);
  background: #eaf4ff;
  border-radius: 10px;
}

.trust-icon svg { width: 20px; height: 20px; }

.trust-point strong {
  display: block;
  font-size: .88rem;
  line-height: 1.2;
}

.trust-point span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.35;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(8,35,78,.03);
  transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

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

.service-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 21px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #d6ebff;
  border-radius: 14px;
}

.service-icon svg { width: 25px; height: 25px; }

.service-card h3 { font-size: 1.22rem; }
.service-card p { margin-bottom: 22px; font-size: .94rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: .89rem;
  font-weight: 800;
}

.card-link::after { content: "→"; font-size: 1.06rem; transition: transform .2s ease; }
.service-card:hover .card-link::after { transform: translateX(4px); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .87fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media img { width: 100%; height: auto; }

.split-media::after {
  position: absolute;
  content: "";
  inset: 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: inherit;
  pointer-events: none;
}

.feature-list,
.check-list,
.arrow-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.arrow-list li {
  position: relative;
  padding-left: 33px;
  color: #40526a;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  content: "";
  left: 0; top: .42em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, #fff 45% 55%, transparent 55%),
    var(--blue);
  box-shadow: 0 4px 10px rgba(15,99,189,.16);
}

.arrow-list li::before {
  position: absolute;
  content: "→";
  left: 0; top: -1px;
  color: var(--blue);
  font-weight: 800;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.solution-item {
  min-height: 196px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(112,177,246,.22), transparent 38%),
    linear-gradient(145deg, #07214b, #0d4d94);
  border: 1px solid rgba(150,204,255,.18);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(5,28,63,.14);
}

.solution-item h3 { margin-bottom: 8px; color: var(--white); font-size: 1.11rem; }
.solution-item p { color: #c9dff6; font-size: .88rem; line-height: 1.58; margin-bottom: 0; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.industry-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px; height: 34px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 10px;
  font-size: .76rem;
  font-weight: 900;
}

.industry-card h3 { margin: 1px 0 6px; font-size: 1.03rem; }
.industry-card p { margin-bottom: 0; font-size: .88rem; line-height: 1.55; }

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.process::before {
  position: absolute;
  z-index: 0;
  content: "";
  top: 29px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #83bdf5 12%, #83bdf5 88%, transparent);
}

.process-step { position: relative; z-index: 1; text-align: center; }

.step-number {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  margin: 0 auto 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(7,40,87,.18);
  font-size: .82rem;
  font-weight: 900;
}

.section-dark .step-number { border-color: var(--navy); }
.process-step h3 { margin-bottom: 7px; font-size: 1rem; }
.process-step p { max-width: 180px; margin-inline: auto; font-size: .86rem; line-height: 1.55; }

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(105deg, #061b3d, #0b4891 72%, #0f65bd);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(174,215,255,.18);
  border-radius: 50%;
}

.cta-band::before { width: 520px; height: 520px; right: -180px; top: -290px; }
.cta-band::after { width: 330px; height: 330px; left: -120px; bottom: -210px; }

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 64px 0;
}

.cta-content h2 { margin: 0; color: var(--white); font-size: clamp(1.85rem, 3.1vw, 2.8rem); }
.cta-content p { max-width: 630px; margin: 13px 0 0; color: #d4e8ff; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 62px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 6%, rgba(66, 156, 255, .35), transparent 26%),
    linear-gradient(112deg, #051630, #0b4388);
}

.page-hero::after {
  position: absolute;
  content: "";
  width: 360px; height: 360px;
  right: 6%; top: -145px;
  border: 1px solid rgba(174,215,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(174,215,255,.035), 0 0 0 100px rgba(174,215,255,.02);
}

.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #badbff;
  font-size: .82rem;
  font-weight: 700;
}
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: #76b5f7; }
.page-hero h1 { max-width: 860px; margin-bottom: 15px; color: var(--white); font-size: clamp(2.45rem, 4.8vw, 4.2rem); }
.page-hero p { max-width: 760px; margin-bottom: 0; color: #d3e6fb; font-size: 1.07rem; }

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 66px;
  color: var(--white);
  background: linear-gradient(112deg, #051630, #0b4388);
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 64px;
  align-items: center;
}

.service-hero::before {
  position: absolute;
  content: "";
  width: 520px; height: 520px;
  right: -190px; top: -150px;
  border: 1px solid rgba(174,215,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(174,215,255,.035), 0 0 0 96px rgba(174,215,255,.02);
}

.service-hero h1 { max-width: 680px; color: var(--white); font-size: clamp(2.45rem, 4.8vw, 4.2rem); }
.service-hero p { max-width: 680px; color: #d3e6fb; font-size: 1.05rem; }
.service-hero-media {
  overflow: hidden;
  border: 1px solid rgba(194,225,255,.24);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(0, 9, 28, .28);
}
.service-hero-media img { width: 100%; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .55fr);
  align-items: start;
  gap: clamp(34px, 5vw, 76px);
}

.content-grid > div > p:last-child { margin-bottom: 0; }

.sidebar-card {
  position: sticky;
  top: 120px;
  padding: 27px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.sidebar-card h3 { margin-bottom: 12px; }
.sidebar-card p { margin-bottom: 20px; font-size: .92rem; }

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.inclusion-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.inclusion-item h3 { margin-bottom: 7px; font-size: .98rem; }
.inclusion-item p { margin-bottom: 0; font-size: .86rem; line-height: 1.5; }

.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 0;
}

.related-services a {
  padding: 9px 12px;
  color: var(--blue);
  background: #edf6ff;
  border: 1px solid #d3e9fe;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease;
}

.related-services a:hover { background: #dcefff; border-color: #a8d3f8; }

.page-intro {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.image-feature {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.image-feature img { width: 100%; }
.image-feature::after { position:absolute; content:""; inset:0; border:1px solid rgba(255,255,255,.26); border-radius:inherit; pointer-events:none; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  padding: 25px 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.value-card .service-icon { margin-bottom: 16px; }
.value-card h3 { font-size: 1.02rem; }
.value-card p { margin-bottom: 0; font-size: .87rem; line-height: 1.52; }

.callout {
  padding: 31px;
  background: linear-gradient(135deg, #eef7ff, #f9fcff);
  border: 1px solid #d4e9fc;
  border-left: 4px solid var(--blue);
  border-radius: 17px;
}
.callout h3 { margin-bottom: 10px; }
.callout p { margin-bottom: 0; }

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 21px 54px 21px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  position: absolute;
  right: 22px; top: 18px;
  content: "+";
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 22px; }
.faq-item .faq-answer p { margin: 0; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, .7fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.contact-info-stack { display: grid; gap: 15px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-card-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px; height: 40px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #d8e8f8;
  border-radius: 12px;
}

.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h3 { margin: 1px 0 4px; font-size: .97rem; }
.contact-card p, .contact-card a { margin: 0; color: var(--muted); font-size: .91rem; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--blue); }

.contact-form-wrap {
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap > p { margin-bottom: 28px; font-size: .94rem; }

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

.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  color: var(--navy);
  font-size: .83rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9d8e7;
  border-radius: 10px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15,99,189,.12);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #c93131;
  box-shadow: 0 0 0 4px rgba(201,49,49,.1);
}

.form-status {
  display: none;
  margin-top: 15px;
  padding: 12px 13px;
  border-radius: 10px;
  font-size: .88rem;
}

.form-status.visible { display: block; }
.form-status.info { color: #12487c; background: #e9f4ff; border: 1px solid #c4e2fb; }
.form-status.success { color: var(--success); background: #ecfff3; border: 1px solid #bdeacf; }
.form-status.error { color: var(--danger); background: #fff0f0; border: 1px solid #f1c6c6; }

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
}

.site-footer {
  color: #c8d8ed;
  background: #04152f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.24fr .85fr .85fr 1.12fr;
  gap: 32px;
  padding: 70px 0 48px;
}

.footer-brand {
  display: inline-flex;
  width: 176px;
  padding: 5px;
  background: var(--white);
  border-radius: 10px;
}
.footer-brand img { width: 100%; height: auto; }

.footer-copy {
  max-width: 330px;
  margin: 18px 0 0;
  color: #a9c0dc;
  font-size: .9rem;
}

.footer-heading {
  margin: 6px 0 16px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

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

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #a9c0dc;
  font-size: .88rem;
  line-height: 1.55;
}

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

.footer-contact li { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 4px; color: #8fc6ff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  border-top: 1px solid rgba(182,212,244,.16);
}

.footer-bottom p { margin: 0; color: #91a9c6; font-size: .8rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 17px; }
.footer-bottom-links a { color: #a9c0dc; font-size: .8rem; }
.footer-bottom-links a:hover { color: var(--white); }

.fade-up {
  animation: fadeUp .7s ease both;
}
.fade-up.delay-1 { animation-delay: .1s; }
.fade-up.delay-2 { animation-delay: .2s; }
.fade-up.delay-3 { animation-delay: .3s; }

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

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

@media (max-width: 1080px) {
  :root { --header-height: 84px; }
  .brand { width: 139px; }
  .site-nav a { padding-inline: 9px; font-size: .86rem; }
  .header-cta { margin-left: 2px; }
  .header-cta .button { padding-inline: 14px; }
  .solution-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > :first-child { grid-row: span 2; }
  .footer-main > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    left: 0; right: 0;
    display: grid;
    align-content: start;
    gap: 2px;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background: rgba(255,255,255,.98);
    border-bottom: 0 solid var(--line);
    box-shadow: 0 18px 40px rgba(8,35,78,.08);
    transition: max-height .28s ease, padding .28s ease, border-width .28s ease;
  }
  .site-nav.open {
    max-height: calc(100vh - var(--header-height));
    padding: 18px 20px 24px;
    overflow: auto;
    border-bottom-width: 1px;
  }
  .site-nav a { min-height: 48px; padding: 12px 14px; font-size: .94rem; }
  .site-nav a.active::after { display: none; }
  .header-cta { margin: 10px 0 0; }
  .header-cta .button { width: 100%; }
  .hero { min-height: auto; padding: 64px 0 70px; }
  .hero-grid, .service-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 590px; justify-self: start; }
  .hero-panel { left: 18px; bottom: 20px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-point:nth-child(3) { border-left: 1px solid var(--line); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .split-media { max-width: 640px; }
  .sidebar-card { position: static; }
  .process { grid-template-columns: repeat(5, minmax(125px, 1fr)); overflow-x: auto; padding-bottom: 6px; }
  .process::before { min-width: 580px; left: 0; right: auto; width: calc(100% - 15px); }
  .process-step { min-width: 128px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { display: grid; padding: 56px 0; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-main > :first-child { grid-row: auto; grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --container: min(100% - 32px, 1180px); --header-height: 76px; }
  .brand { width: 114px; }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  h2 { font-size: clamp(1.75rem, 8.8vw, 2.45rem); }
  .hero { padding: 52px 0 60px; }
  .hero-copy { padding: 0; }
  .hero-visual { margin-top: 5px; }
  .hero-panel { width: min(268px, 78%); padding: 14px; }
  .button-row { gap: 10px; }
  .button, .button-outline, .button-light { min-height: 47px; padding: 12px 15px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-point, .trust-point:first-child, .trust-point:nth-child(3) { border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-point:last-child { border-bottom: 0; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading .button-outline { margin-top: 20px; }
  .card-grid, .solution-grid, .industry-grid, .value-grid, .inclusion-grid { grid-template-columns: 1fr; }
  .service-card { padding: 23px; }
  .split { gap: 30px; }
  .split-media { border-radius: 22px; }
  .page-hero, .service-hero { padding: 52px 0; }
  .service-hero-grid { gap: 30px; }
  .service-hero-media { max-width: 500px; }
  .cta-content { padding: 49px 0; gap: 25px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding: 52px 0 38px; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom { display: grid; align-items: start; padding: 20px 0; }
  .footer-bottom-links { gap: 13px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-form-wrap { padding: 23px 18px; }
  .contact-card { padding: 18px; }
}

/* Supplied logistics photos */
.hero-visual img,
.service-hero-media img,
.split-media img,
.image-feature img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-visual img,
.split-media img,
.service-hero-media img {
  aspect-ratio: 5 / 4;
}

.service-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3.2;
  margin: -8px -8px 20px;
  border-radius: 17px;
  background: var(--blue-soft);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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