:root {
  --blue-900: #062f57;
  --blue-800: #084b91;
  --blue-700: #0b5ea8;
  --blue-600: #0d75c9;
  --sky-100: #e9f6ff;
  --sky-200: #cfeeff;
  --teal-600: #178f8f;
  --green-600: #17966b;
  --amber-500: #d99a24;
  --red-600: #cf3f35;
  --violet-600: #7256b8;
  --navy-600: #315f7d;
  --ink: #152332;
  --muted: #5d6c7b;
  --line: #dce7ef;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --shadow: 0 18px 44px rgba(6, 47, 87, 0.14);
  --max: 1180px;
  --radius: 8px;
  --header-height: 98px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--blue-900);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 239, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  width: 196px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 10px 12px;
  color: var(--blue-900);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue-600);
}

.primary-nav a[aria-current="page"] {
  color: var(--blue-700);
  background: var(--sky-100);
  border-radius: 6px;
}

.header-call,
.button,
.mobile-contact-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.header-call {
  padding: 10px 14px;
  color: var(--paper);
  background: var(--blue-700);
  box-shadow: 0 10px 28px rgba(11, 94, 168, 0.22);
}

.header-call:hover,
.header-call:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-800);
}

.header-call svg,
.button svg,
.detail-link svg,
.mobile-contact-bar svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  position: relative;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-900);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 32, 60, 0.82) 0%, rgba(4, 32, 60, 0.68) 36%, rgba(4, 32, 60, 0.2) 72%),
    linear-gradient(180deg, rgba(5, 29, 51, 0.14), rgba(5, 29, 51, 0.5));
}

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

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 64px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee7ff;
}

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

h1 {
  max-width: 710px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7.2vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-900);
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: #e4f6ff;
  font-size: 1.16rem;
}

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

.button {
  min-width: 172px;
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  color: var(--paper);
  background: var(--blue-700);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--blue-900);
  background: var(--paper);
}

.button-outline {
  color: var(--blue-900);
  background: var(--paper);
  border-color: var(--line);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--paper);
  background: var(--blue-900);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 170px));
  gap: 14px;
  margin: 0;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-proof dt {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: #d5eefb;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-strip {
  background: var(--blue-900);
  color: var(--paper);
}

.contact-strip-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-strip p {
  margin: 0;
}

.contact-strip a {
  color: var(--paper);
  font-size: 1.16rem;
  font-weight: 900;
  white-space: nowrap;
}

.contact-strip span {
  color: var(--sky-200);
  font-weight: 700;
}

.services-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 52px;
  align-items: center;
}

.services-hero-copy {
  max-width: 720px;
}

.services-hero-copy h1 {
  max-width: 760px;
  color: var(--blue-900);
  font-size: clamp(2.35rem, 6vw, 4.65rem);
  line-height: 1.02;
}

.services-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.services-hero .hero-actions {
  margin: 28px 0 0;
}

.services-hero .button-secondary {
  color: var(--blue-900);
  background: var(--paper);
  border-color: var(--line);
}

.services-hero .button-secondary:hover,
.services-hero .button-secondary:focus-visible {
  color: var(--paper);
  background: var(--blue-900);
}

.services-hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.services-hero-panel {
  border-top: 4px solid var(--green-600);
}

.services-hero-panel h2,
.services-fit-grid h3 {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: 1.2rem;
  line-height: 1.25;
}

.services-fit-section {
  padding-top: 70px;
}

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

.services-fit-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.services-fit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-contact-strip {
  margin-top: 0;
}

.service-list-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(6, 47, 87, 0.07);
}

.service-list-heading h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.service-list-bullets {
  columns: 2;
  column-gap: 34px;
  margin: 0;
  padding-left: 20px;
}

.service-list-bullets li {
  break-inside: avoid;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.service-pathways {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.pathway-card,
.pathway-helper {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(6, 47, 87, 0.08);
}

.pathway-card {
  grid-column: span 3;
  display: grid;
  align-content: start;
}

.pathway-card-primary {
  grid-column: span 6;
  min-height: 330px;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  column-gap: 34px;
  align-items: start;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 47, 87, 0.97), rgba(11, 94, 168, 0.86)),
    var(--blue-900);
}

.pathway-intro {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(3, 28, 52, 0.34);
}

.pathway-card-primary .pathway-kicker,
.pathway-card-primary h3,
.pathway-card-primary p {
  color: var(--paper);
}

.pathway-card-primary .pathway-intro > p {
  color: #eef9ff;
  font-weight: 650;
}

.pathway-card-primary .pathway-services {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  margin-top: 0;
}

.pathway-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
}

.pathway-kicker span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue-700);
  font-size: 0.88rem;
  font-weight: 900;
}

.pathway-kicker p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-card h3,
.pathway-helper h3 {
  max-width: 680px;
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.pathway-card-primary .pathway-intro h3 {
  color: var(--paper);
}

.pathway-card > p,
.pathway-helper > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.pathway-services {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.pathway-services a {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: inherit;
  border: 1px solid rgba(220, 231, 239, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pathway-card-primary .pathway-services a {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.pathway-services a:hover,
.pathway-services a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(11, 94, 168, 0.34);
  box-shadow: 0 16px 30px rgba(6, 47, 87, 0.12);
}

.pathway-services strong {
  color: var(--blue-900);
  font-size: 1.02rem;
  line-height: 1.25;
}

.pathway-card-primary .pathway-services strong {
  color: var(--paper);
}

.pathway-services span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pathway-card-primary .pathway-services span {
  color: #d5eefb;
}

.pathway-helper {
  grid-column: span 6;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: var(--sky-100);
}

.pathway-helper .eyebrow,
.pathway-helper h3,
.pathway-helper p {
  margin: 0;
}

.pathway-helper .eyebrow,
.pathway-helper h3 {
  grid-column: 1;
}

.pathway-helper > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.pathway-helper .button {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-light {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading-narrow {
  max-width: 700px;
  text-align: center;
  margin-inline: auto;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(6, 47, 87, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(30, 125, 176, 0.35);
  box-shadow: 0 18px 38px rgba(6, 47, 87, 0.12);
}

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card-link:focus-visible {
  outline: 3px solid var(--sky-100);
  outline-offset: 4px;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--paper);
  background: var(--blue-700);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.card-icon-blue {
  background: var(--blue-700);
}

.card-icon-green {
  background: var(--green-600);
}

.card-icon-amber {
  background: var(--amber-500);
}

.card-icon-red {
  background: var(--red-600);
}

.card-icon-teal {
  background: var(--violet-600);
}

.card-icon-navy {
  background: var(--navy-600);
}

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

.content-action {
  width: fit-content;
  margin-top: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 60px;
  align-items: start;
}

.split-copy p:not(.eyebrow),
.section-image-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-page-section .contact-copy h1 {
  max-width: 620px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.04;
}

.info-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--paper), var(--sky-100));
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-600);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  transform: rotate(-45deg);
}

.section-image {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.image-column img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mini-metrics div,
.trust-blocks div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-metrics strong,
.trust-blocks strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.02rem;
}

.mini-metrics span,
.trust-blocks span {
  color: var(--muted);
}

.process-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: #fdf7ec;
}

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

.process-list li {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border-top: 4px solid var(--amber-500);
  box-shadow: 0 10px 28px rgba(92, 63, 20, 0.08);
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--amber-500);
  font-size: 0.86rem;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.systems-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-900);
  background: var(--paper);
  font-weight: 800;
}

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

.guide-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 92px;
}

.guide-page-intro {
  max-width: 800px;
  margin-bottom: 34px;
}

.guide-page-intro h1 {
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 650;
  line-height: 1.08;
}

.guide-page-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.guide-page-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.guide-main {
  display: grid;
  gap: 18px;
}

.guide-main section,
.guide-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.guide-main h2,
.guide-card h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 650;
  line-height: 1.2;
}

.guide-main p,
.guide-card p {
  color: var(--muted);
  font-size: 1rem;
}

.guide-main p:last-child,
.guide-card p:last-child {
  margin-bottom: 0;
}

.guide-side {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 16px;
}

.guide-card {
  border-top: 4px solid var(--green-600);
  background: var(--soft);
}

.guide-card-muted {
  border-top-color: var(--blue-700);
  background: var(--sky-100);
}

.guide-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.guide-card dl div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.guide-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guide-card dt {
  color: var(--blue-900);
  font-size: 0.84rem;
  font-weight: 750;
}

.guide-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
}

.step-list span {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-900);
  text-decoration: underline;
}

.guide-return {
  margin-top: 28px;
  padding: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.page-intro {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 34px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.breadcrumb:hover,
.breadcrumb:focus-visible {
  color: var(--blue-900);
  text-decoration: underline;
}

.page-intro h1 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.page-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.education-layout {
  padding-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 18px;
}

.learning-card {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.learning-card:last-child {
  border-bottom: 0;
}

.learning-card h2,
.summary-box h2,
.subpage-cta h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.learning-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.number-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 1.45rem;
  color: var(--muted);
}

.number-list li::marker {
  color: var(--blue-700);
  font-weight: 900;
}

.side-summary {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 16px;
}

.summary-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.term-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.term-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.term-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.term-list dt {
  color: var(--blue-900);
  font-size: 0.86rem;
  font-weight: 900;
}

.term-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.subpage-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 20px auto 92px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sky-100);
}

.subpage-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.detail-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 56px;
  align-items: center;
}

.detail-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--blue-900);
  font-size: clamp(2.55rem, 6.4vw, 4.75rem);
}

.detail-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.detail-hero .hero-actions {
  margin: 30px 0 0;
}

.detail-hero-panel,
.detail-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--sky-100), var(--paper));
  box-shadow: var(--shadow);
}

.detail-hero-iqp .detail-hero-panel {
  background: linear-gradient(180deg, #ebfbf4, var(--paper));
}

.detail-hero-panel strong,
.detail-note h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 1.25rem;
  line-height: 1.2;
}

.detail-hero-panel span,
.detail-note p {
  color: var(--muted);
}

.detail-grid-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 58px;
  align-items: start;
}

.detail-main p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.trust-blocks {
  display: grid;
  gap: 14px;
}

.faq-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 900px) / 2));
  background: var(--blue-900);
}

.faq-section h2,
.faq-section .eyebrow {
  color: var(--paper);
}

.faq-section .section-heading p {
  color: var(--sky-200);
}

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

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--sky-200);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 58px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-details p {
  margin: 0;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--blue-700);
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row-full,
.form-note,
.form-submit {
  grid-column: 1 / -1;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

label {
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9cad8;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(13, 117, 201, 0.28);
  outline-offset: 2px;
}

.site-footer {
  padding: 44px 0 92px;
  color: var(--paper);
  background: #071f38;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(190px, 0.8fr) minmax(220px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.footer-summary {
  display: grid;
  gap: 18px;
}

.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(246, 249, 252, 0.98);
}

.footer-brand {
  width: 212px;
  height: auto;
}

.footer-summary p,
.footer-contact p {
  max-width: 460px;
  margin: 0;
  color: rgba(207, 238, 255, 0.74);
  font-size: 0.94rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: rgba(207, 238, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 12;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(220, 231, 239, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(6, 47, 87, 0.2);
  backdrop-filter: blur(16px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-contact-bar.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.mobile-contact-bar a {
  color: var(--paper);
  background: var(--blue-700);
}

.mobile-contact-bar a:last-child {
  color: var(--blue-900);
  background: var(--sky-100);
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 16px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 26px rgba(6, 47, 87, 0.1);
  }

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

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .services-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .pathway-card,
  .pathway-card-primary,
  .pathway-helper {
    grid-column: 1 / -1;
  }

  .pathway-card-primary {
    grid-template-columns: 1fr;
  }

  .pathway-card-primary .pathway-services {
    grid-column: auto;
    grid-row: auto;
  }

  .pathway-helper {
    grid-template-columns: 1fr;
  }

  .pathway-helper .eyebrow,
  .pathway-helper h3,
  .pathway-helper > p:not(.eyebrow),
  .pathway-helper .button {
    grid-column: auto;
    grid-row: auto;
  }

  .pathway-helper .button {
    justify-self: start;
  }

  .service-list-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .split-section,
  .section-image,
  .about-section,
  .contact-section,
  .detail-hero,
  .detail-grid-section,
  .education-layout,
  .guide-page-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .side-summary,
  .guide-side {
    position: static;
  }

  .section-image .image-column {
    order: 2;
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 84px;
  }

  body {
    padding-bottom: 78px;
  }

  .header-inner {
    width: min(100% - 28px, var(--max));
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 150px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    grid-column: 3;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 32, 60, 0.9), rgba(4, 32, 60, 0.68)),
      linear-gradient(180deg, rgba(4, 32, 60, 0.18), rgba(4, 32, 60, 0.72));
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding: 70px 0 38px;
  }

  .page-intro {
    width: min(100% - 28px, var(--max));
    padding: 42px 0 18px;
  }

  .guide-page {
    width: min(100% - 28px, var(--max));
    padding: 42px 0 64px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.2rem);
  }

  .page-intro h1 {
    font-size: clamp(1.88rem, 9vw, 2.55rem);
  }

  .guide-page-intro h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.82rem, 8vw, 2.55rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .mini-metrics,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    display: none;
  }

  .contact-strip-inner {
    width: min(100% - 28px, var(--max));
    min-height: auto;
    padding: 18px 0;
    display: grid;
    gap: 8px;
  }

  .section,
  .section-light,
  .process-section,
  .faq-section {
    padding: 64px 14px;
  }

  .services-hero {
    width: min(100% - 28px, var(--max));
    padding: 48px 0 54px;
  }

  .service-list-strip {
    width: min(100% - 28px, var(--max));
    padding: 18px;
  }

  .service-list-bullets {
    columns: 1;
  }

  .services-hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .services-hero-panel {
    padding: 22px;
  }

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

  .services-fit-grid {
    grid-template-columns: 1fr;
  }

  .service-pathways {
    gap: 14px;
  }

  .pathway-card,
  .pathway-card-primary,
  .pathway-helper {
    min-height: 0;
    padding: 22px;
  }

  .pathway-helper .button {
    justify-self: stretch;
  }

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

  .contact-form {
    padding: 20px;
  }

  .guide-main section,
  .guide-card {
    padding: 22px;
  }

  .guide-return {
    display: grid;
    justify-content: stretch;
  }

  .subpage-cta {
    width: min(100% - 28px, var(--max));
    margin-bottom: 64px;
    padding: 22px;
    display: grid;
  }

  .form-row-full,
  .form-submit {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-logo-plate {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .footer-brand {
    width: 182px;
  }

  .mobile-contact-bar {
    display: grid;
  }
}

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