@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@600;700&display=swap");

:root {
  --navy: #062a55;
  --navy-deep: #041c3a;
  --steel: #2f5278;
  --red: #c5161d;
  --red-dark: #a91117;
  --gray-900: #101828;
  --gray-700: #344054;
  --gray-600: #6f7780;
  --gray-300: #d6dce5;
  --gray-200: #e6ebf2;
  --gray-100: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 42, 85, 0.12);
  --radius: 8px;
  --section: 1180px;
  --header-height: 92px;
  --anchor-gap: 14px;
  --anchor-offset: calc(var(--header-height) + var(--anchor-gap));
  --display-font: "Oxanium", "Orbitron", Bahnschrift, "Segoe UI", Arial, sans-serif;
  --hero-font: "Oxanium", "Orbitron", Bahnschrift, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--navy-deep);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.svg-sprite {
  display: none;
}

.section-shell {
  width: min(var(--section), calc(100% - 48px));
  margin: 0 auto;
}

main[id],
section[id],
footer[id] {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 36px;
  border-bottom: 1px solid rgba(214, 220, 229, 0.46);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 252px;
  background: transparent;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--navy-deep);
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

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

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.primary-nav .nav-contact {
  padding: 12px 20px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-nav .nav-contact::after {
  display: none;
}

.primary-nav .nav-contact:hover,
.primary-nav .nav-contact:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 70px 0 46px;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.8), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, var(--white), #fbfcfe 70%, var(--white));
}

.hero::before {
  position: absolute;
  inset: -24px auto -24px -78px;
  z-index: 0;
  width: min(430px, 48vw);
  opacity: 0.74;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 76%, rgba(255, 255, 255, 1) 100%),
    repeating-linear-gradient(0deg, rgba(47, 82, 120, 0.22) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(60deg, rgba(47, 82, 120, 0.24) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(120deg, rgba(47, 82, 120, 0.18) 0 1px, transparent 1px 88px);
  content: "";
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 48%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 48%, transparent 100%);
}

.hero::after {
  position: absolute;
  top: 92px;
  right: 56px;
  width: 360px;
  height: 520px;
  opacity: 0.5;
  background-image: radial-gradient(rgba(47, 82, 120, 0.34) 1px, transparent 1px);
  background-size: 16px 16px;
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.accent-rule {
  width: 66px;
  height: 4px;
  margin: 0 auto 34px;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.industry-copy h2,
.why-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-weight: 800;
  line-height: 1.02;
}

.hero h1 {
  font-family: var(--hero-font);
  font-size: 3.16rem;
  font-weight: 700;
  text-rendering: geometricPrecision;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 620px;
  margin: 20px auto 0;
  color: #263a59;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(197, 22, 29, 0.2);
}

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

.button-secondary {
  color: var(--navy-deep);
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(6, 42, 85, 0.16);
}

.button-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  color: #2b3f5d;
  font-weight: 600;
}

.trust-line svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-depth {
  perspective: 1700px;
}

.hero-depth-scene {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: absolute;
  inset: -30px -94px -34px -54px;
  transform-style: preserve-3d;
  transform: rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  pointer-events: none;
}

.hero-depth-layer {
  position: absolute;
  margin: 0;
}

.hero-depth-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image:
    radial-gradient(132% 112% at 70% 45%, #000 48%, rgba(0, 0, 0, 0.68) 66%, transparent 100%),
    linear-gradient(105deg, transparent 0%, #000 28%, #000 74%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 13%, #000 82%, transparent 100%);
  mask-image:
    radial-gradient(132% 112% at 70% 45%, #000 48%, rgba(0, 0, 0, 0.68) 66%, transparent 100%),
    linear-gradient(105deg, transparent 0%, #000 28%, #000 74%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 13%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  mix-blend-mode: multiply;
  filter: brightness(1.08) contrast(0.95) saturate(0.86);
}

.hero-depth-back {
  inset: 118px 136px 42px 92px;
  transform: translateZ(-240px) rotateY(-18deg) rotateX(4deg);
  opacity: 0.12;
  filter: blur(2px);
}

.hero-depth-mid {
  inset: 58px 44px 18px 34px;
  transform: translateZ(-120px) rotateY(-12deg);
  opacity: 0.23;
  filter: blur(0.8px);
}

.hero-depth-front {
  inset: 0;
  transform: translateZ(0) rotateY(-5deg);
  opacity: 0.76;
  filter: drop-shadow(0 28px 42px rgba(6, 42, 85, 0.08));
}

.industry-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.industry-band .section-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 20px 0;
}

.band-intro {
  display: grid;
  gap: 2px;
  border-right: 1px solid var(--gray-300);
  padding-right: 26px;
}

.band-intro span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.band-intro strong {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 1.08rem;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  overflow-x: hidden;
  padding: 4px 2px;
}

.industry-tab {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 0.89rem;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.industry-tab:hover,
.industry-tab:focus-visible {
  border-color: rgba(197, 22, 29, 0.42);
  color: var(--red);
}

.industry-tab.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(6, 42, 85, 0.14);
}

.industry-detail {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: var(--gray-100);
}

.industry-detail::before {
  position: absolute;
  right: -110px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  opacity: 0.58;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(47, 82, 120, 0.12) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(47, 82, 120, 0.12) 50%, transparent 50.5%);
  background-size: 38px 38px;
  content: "";
}

.industry-blueprint-bg {
  position: absolute;
  top: 38px;
  right: max(18px, calc((100vw - var(--section)) / 2 - 24px));
  bottom: 38px;
  z-index: 0;
  width: min(680px, 58vw);
  margin: 0;
  opacity: 0.44;
  pointer-events: none;
}

.industry-blueprint-bg::before {
  position: absolute;
  inset: -1px;
  z-index: 1;
  border: 1px solid rgba(47, 82, 120, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.92) 0%, rgba(245, 247, 250, 0.18) 48%, rgba(245, 247, 250, 0.72) 100%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.14), rgba(245, 247, 250, 0.86));
  content: "";
}

.industry-blueprint-bg img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(6, 42, 85, 0.12);
  transition: opacity 160ms ease, transform 160ms ease;
}

.industry-blueprint-bg img.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.industry-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: start;
  transition: opacity 160ms ease, transform 160ms ease;
}

.industry-layout.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.industry-copy h2 {
  margin-top: 8px;
  font-size: 3.2rem;
}

.industry-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.kpi-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.kpi-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(47, 82, 120, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: var(--red);
  font-weight: 800;
}

.text-link::after {
  width: 36px;
  height: 2px;
  margin-left: 12px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 54px;
}

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

.support-card,
.service-card,
.insight-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(6, 42, 85, 0.06);
}

.support-card {
  position: relative;
  min-height: 184px;
  padding: 24px;
}

.support-card > span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--red);
}

.support-card h3,
.service-card h3,
.value-list h3,
.process-step h3,
.insight-card h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1.18rem;
  line-height: 1.25;
}

.support-card p,
.service-card p,
.value-list p,
.process-step p,
.insight-card p {
  margin: 12px 0 0;
  color: var(--gray-600);
}

.services-section,
.why-section,
.process-section,
.insights-section {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: 3rem;
}

.section-heading p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--gray-600);
  font-size: 1.05rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card-clickable {
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(197, 22, 29, 0.3);
  box-shadow: 0 18px 44px rgba(6, 42, 85, 0.1);
  transform: translateY(-4px);
}

.service-card-clickable:focus-visible {
  outline: 3px solid rgba(197, 22, 29, 0.34);
  outline-offset: 4px;
}

.service-card svg {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  padding: 8px;
  border: 1px solid rgba(197, 22, 29, 0.26);
  border-radius: var(--radius);
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--red);
  font-weight: 800;
}

.card-link::after {
  width: 24px;
  height: 2px;
  margin-left: 10px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.card-link:hover::after,
.card-link:focus-visible::after {
  width: 38px;
}

.why-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.why-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(135deg, transparent 49.6%, rgba(255, 255, 255, 0.16) 50%, transparent 50.4%),
    radial-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 84px 84px, 18px 18px;
  content: "";
}

.why-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.why-copy h2,
.final-cta h2 {
  color: var(--white);
  font-size: 3.1rem;
}

.why-copy p:not(.section-kicker),
.final-cta p:not(.section-kicker) {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.why-section .section-kicker,
.final-cta .section-kicker {
  color: #ffffff;
}

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

.value-list article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.value-list span,
.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--display-font);
  font-weight: 800;
}

.value-list h3 {
  color: var(--white);
}

.value-list p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.process-step {
  position: relative;
  min-height: 240px;
  padding: 30px 24px 0 0;
}

.process-step + .process-step {
  padding-left: 24px;
  border-left: 1px solid var(--gray-300);
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
  content: "";
}

.process-step + .process-step::before {
  left: 24px;
}

.insights-section {
  background: var(--gray-100);
}

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

.insight-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.insight-card:hover {
  border-color: rgba(47, 82, 120, 0.28);
  transform: translateY(-4px);
}

.insight-card > span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(197, 22, 29, 0.24);
  border-radius: var(--radius);
  color: var(--red);
  background: rgba(197, 22, 29, 0.05);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.insight-card a:hover,
.insight-card a:focus-visible {
  color: var(--red);
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.certification-band {
  padding: clamp(42px, 5vw, 68px) 0;
  border-top: 1px solid rgba(202, 212, 225, 0.72);
  border-bottom: 1px solid rgba(202, 212, 225, 0.72);
  background: var(--white);
}

.certification-shell {
  display: grid;
  gap: 26px;
}

.certification-head {
  display: grid;
  gap: 4px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.certification-head span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.certification-head h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1.42rem;
}

.certification-marquee {
  position: relative;
  overflow: hidden;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 3px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.certification-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: certificateDrift 48s linear infinite;
}

.certification-marquee:hover .certification-track {
  animation-play-state: paused;
}

.cert-card {
  flex: 0 0 260px;
  min-height: 196px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(6, 42, 85, 0.05);
}

.cert-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 14px;
}

.cert-card h4 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1rem;
  line-height: 1.18;
}

.cert-card p {
  margin: 10px 0 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.45;
}

@keyframes certificateDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.92), rgba(255, 255, 255, 0.62)),
    var(--white);
}

.page-hero::before {
  position: absolute;
  inset: -40px auto -40px -96px;
  width: min(420px, 48vw);
  opacity: 0.52;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.86) 78%, var(--white) 100%),
    repeating-linear-gradient(0deg, rgba(47, 82, 120, 0.2) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(60deg, rgba(47, 82, 120, 0.2) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(120deg, rgba(47, 82, 120, 0.16) 0 1px, transparent 1px 88px);
  content: "";
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 52%, transparent 100%);
}

.page-hero .section-shell {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 3.2rem;
  line-height: 1.05;
}

.page-hero p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--gray-700);
  font-size: 1.14rem;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 800;
}

.index-section,
.article-section,
.service-detail-section {
  padding: 86px 0;
}

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

.index-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(6, 42, 85, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.index-card:hover,
.index-card:focus-within {
  border-color: rgba(197, 22, 29, 0.32);
  transform: translateY(-4px);
}

.index-card span,
.article-meta {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.index-card h2 {
  margin: 18px 0 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1.34rem;
  line-height: 1.2;
}

.index-card p {
  margin: 14px 0 0;
  color: var(--gray-600);
}

.index-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy);
  font-weight: 800;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 70px;
  align-items: start;
}

.article-body {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.article-body h2 {
  margin: 38px 0 12px;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1.72rem;
  line-height: 1.16;
}

.article-body p {
  margin: 18px 0 0;
}

.article-body blockquote {
  position: relative;
  margin: 34px 0;
  padding: 18px 0 18px 46px;
  border-left: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 1.22rem;
  line-height: 1.3;
}

.article-body blockquote::before {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--red);
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.article-body blockquote::after {
  position: absolute;
  bottom: 0;
  left: 46px;
  width: 64px;
  height: 3px;
  background: var(--red);
  content: "";
}

.article-illustration {
  margin: 30px 0 12px;
  overflow: hidden;
  border: 1px solid rgba(47, 82, 120, 0.16);
  border-radius: var(--radius);
  background: var(--gray-100);
  box-shadow: 0 18px 44px rgba(6, 42, 85, 0.08);
}

.article-illustration img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: brightness(1.07) contrast(0.96) saturate(0.86);
}

.article-body ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.article-body li + li {
  margin-top: 8px;
}

.article-sidebar,
.service-sidebar {
  position: sticky;
  top: 118px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 42, 85, 0.06);
}

.service-sidebar {
  padding: 24px;
}

.article-sidebar {
  padding: 0;
  overflow: hidden;
}

.sidebar-quote,
.toc-box,
.related-box,
.sidebar-action {
  padding: 24px;
}

.toc-box,
.related-box,
.sidebar-action {
  border-top: 1px solid var(--gray-200);
}

.sidebar-quote {
  background:
    linear-gradient(135deg, rgba(245, 247, 250, 0.9), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.sidebar-quote .quote-mark {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
}

.sidebar-quote p {
  margin: 16px 0 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1.08rem;
  line-height: 1.32;
}

.sidebar-quote::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 22px;
  background: var(--red);
  content: "";
}

.quote-author {
  display: block;
  margin-top: 18px;
  color: var(--navy-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.quote-author span {
  display: block;
  margin-top: 3px;
  color: var(--gray-600);
  font-weight: 600;
}

.article-sidebar h2,
.service-sidebar h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1.08rem;
}

.article-sidebar a,
.service-sidebar a {
  display: block;
  margin-top: 14px;
  color: var(--gray-700);
  font-weight: 700;
}

.article-sidebar a:hover,
.service-sidebar a:hover {
  color: var(--red);
}

.toc-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--red);
}

.toc-list a {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.82rem;
  line-height: 1.3;
}

.related-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.related-item {
  display: grid !important;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0 !important;
}

.related-item img {
  width: 64px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  filter: saturate(0.82) contrast(0.95);
}

.related-item strong {
  display: block;
  color: var(--navy-deep);
  font-size: 0.82rem;
  line-height: 1.25;
}

.related-item > span {
  display: block;
}

.related-item > span > span {
  display: block;
  margin-top: 4px;
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 600;
}

.sidebar-button {
  display: flex !important;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  border: 1px solid var(--navy);
  border-radius: 4px;
  color: var(--navy) !important;
  font-size: 0.82rem;
  font-weight: 800;
}

.sidebar-button:hover,
.sidebar-button:focus-visible {
  color: var(--white) !important;
  background: var(--navy);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.service-detail {
  color: var(--gray-700);
}

.service-detail h2 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 2rem;
}

.service-detail h3 {
  margin: 34px 0 12px;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 1.3rem;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 42px;
  padding: 24px;
  border: 1px solid rgba(202, 212, 225, 0.82);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.72), rgba(255, 255, 255, 0.92));
}

.service-points article {
  padding: 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.service-points h3 {
  margin: 0;
  font-size: 1.08rem;
}

.service-points p {
  margin: 10px 0 0;
  color: var(--gray-600);
}

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

.service-list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-700);
}

.service-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    linear-gradient(115deg, rgba(197, 22, 29, 0.16), transparent 36%),
    var(--navy);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.88), rgba(255, 255, 255, 0.95)),
    var(--white);
}

.contact-section::before {
  position: absolute;
  inset: 0 auto 0 -180px;
  width: 520px;
  opacity: 0.36;
  background:
    linear-gradient(60deg, transparent 49.35%, rgba(47, 82, 120, 0.16) 50%, transparent 50.65%),
    linear-gradient(120deg, transparent 49.35%, rgba(47, 82, 120, 0.12) 50%, transparent 50.65%);
  background-size: 118px 68px;
  content: "";
  mask-image: linear-gradient(90deg, #000 0%, transparent 92%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: 2.25rem;
  line-height: 1.08;
}

.contact-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-address {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 800;
}

.contact-methods span {
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-copy .contact-address {
  margin: 0;
  width: 100%;
  max-width: none;
}

.contact-map {
  flex: 1;
  margin-top: 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(6, 42, 85, 0.07);
  min-height: 285px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 285px;
  border: 0;
}

.contact-form {
  display: grid;
  align-self: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(6, 42, 85, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-weight: 800;
}

.contact-form-note {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
}

.contact-status {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-600);
  min-height: 1.1rem;
}

.contact-status.is-success {
  color: #0f6d40;
}

.contact-status.is-error {
  color: var(--red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-deep);
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(47, 82, 120, 0.12);
}

.contact-message,
.contact-form .button,
.contact-status,
.contact-form-note {
  grid-column: 1 / -1;
}

.final-cta::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 360px;
  opacity: 0.24;
  background:
    linear-gradient(60deg, transparent 49.5%, rgba(255, 255, 255, 0.2) 50%, transparent 50.5%),
    linear-gradient(120deg, transparent 49.5%, rgba(255, 255, 255, 0.14) 50%, transparent 50.5%);
  background-size: 130px 74px;
  content: "";
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.cta-layout > div:first-child {
  max-width: 740px;
}

.cta-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.site-footer {
  padding: 58px 0 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 40px;
}

.footer-brand img {
  width: 300px;
  max-width: 100%;
}

.footer-brand p,
.footer-contact p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--gray-600);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 1rem;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer a {
  color: var(--gray-700);
  font-weight: 600;
}

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

.footer-bottom {
  width: min(var(--section), calc(100% - 48px));
  margin: 44px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.9rem;
}

:focus-visible {
  outline: 3px solid rgba(197, 22, 29, 0.34);
  outline-offset: 4px;
}

@media (max-width: 1160px) {
  .site-header {
    padding: 0 24px;
  }

  .primary-nav {
    gap: 22px;
  }

  .brand {
    width: 226px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 2.95rem;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-depth-scene {
    inset: -24px -52px -24px -16px;
  }

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

@media (max-width: 940px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    min-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a,
  .primary-nav .nav-contact {
    width: 100%;
    padding: 13px 14px;
    border-radius: var(--radius);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: var(--gray-100);
  }

  .hero {
    min-height: auto;
    padding: 56px 0 42px;
  }

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

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

  .hero h1 {
    font-size: 2.58rem;
  }

  .hero-visual {
    width: min(420px, 100%);
    min-height: 360px;
    margin: 12px auto 0;
  }

  .hero-depth-scene {
    inset: -12px -28px -16px -8px;
  }

  .hero-depth-back {
    inset: 90px 70px 24px 48px;
  }

  .hero-depth-mid {
    inset: 44px 24px 8px 12px;
  }

  .industry-band .section-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .band-intro {
    border-right: 0;
    padding-right: 0;
  }

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

  .industry-layout,
  .why-layout,
  .cta-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 76px 0;
  }

  .contact-copy {
    display: block;
  }

  .industry-blueprint-bg {
    top: auto;
    right: 24px;
    bottom: 34px;
    left: 24px;
    width: auto;
    height: 420px;
    opacity: 0.24;
  }

  .service-grid,
  .insights-grid,
  .index-grid,
  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certification-marquee {
    width: 100%;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .certification-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    animation: none;
  }

  .cert-card {
    flex: 0 0 auto;
    min-height: 184px;
  }

  .cert-card[aria-hidden="true"] {
    display: none;
  }

  .article-shell,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .article-sidebar,
  .service-sidebar {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    gap: 18px;
  }

  .process-step,
  .process-step + .process-step {
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
  }

  .process-step::before,
  .process-step + .process-step::before {
    top: 0;
    left: 26px;
  }

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

@media (max-width: 680px) {
  .section-shell,
  .hero-shell,
  .footer-bottom {
    width: min(100% - 32px, var(--section));
  }

  .site-header {
    padding: 0 16px;
  }

  .brand {
    width: 206px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions,
  .trust-line {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .trust-line {
    justify-content: center;
  }

  .hero-visual {
    min-height: 310px;
  }

  .industry-tabs {
    grid-template-columns: 1fr;
  }

  .hero-depth-scene {
    inset: 0;
  }

  .hero-depth-back {
    inset: 84px 52px 22px 34px;
  }

  .hero-depth-mid {
    inset: 36px 18px 8px 8px;
  }

  .industry-detail,
  .services-section,
  .why-section,
  .process-section,
  .insights-section,
  .contact-section {
    padding: 70px 0;
  }

  .industry-blueprint-bg {
    right: 16px;
    bottom: 24px;
    left: 16px;
    height: 520px;
    opacity: 0.18;
  }

  .industry-copy h2,
  .section-heading h2,
  .why-copy h2,
  .final-cta h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .support-grid,
  .service-grid,
  .value-list,
  .process-grid,
  .insights-grid,
  .index-grid,
  .certification-grid,
  .footer-grid,
  .contact-form,
  .contact-methods,
  .service-points {
    grid-template-columns: 1fr;
  }

  .certification-track {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 70px 0 56px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section-heading {
    text-align: left;
  }

  .service-card,
  .insight-card,
  .support-card {
    min-height: auto;
  }

  .final-cta {
    padding: 68px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .certification-track {
    animation: none;
  }
}
