:root {
  --blue: #006bff;
  --blue-light: #00a3ff;
  --navy: #061a33;
  --navy-deep: #020817;
  --ink: #071426;
  --muted: #5f6e82;
  --steel: #a8b3c2;
  --line: #e4eaf2;
  --soft: #f7faff;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(2, 8, 23, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(228, 234, 242, 0.85);
  backdrop-filter: blur(18px);
}

.home-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-header .brand-name,
.home-header .nav-menu {
  color: var(--white);
}

.home-header .nav-menu a:not(.btn) {
  color: rgba(255, 255, 255, 0.92);
}

.home-header .nav-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Urbanist", "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.25rem;
  color: var(--navy);
}

.brand-name span,
.text-blue {
  color: var(--blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  color: #1c2b41;
}

.nav-item {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-parent::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
  opacity: 0.75;
}

.nav-menu a:not(.btn) {
  position: relative;
  padding: 7px 0;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 180ms ease;
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a[aria-current="page"]::after {
  width: 100%;
}

.nav-submenu {
  position: absolute;
  left: -18px;
  top: 100%;
  z-index: 20;
  display: grid;
  min-width: 290px;
  gap: 2px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(228, 234, 242, 0.92);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 54px rgba(2, 8, 23, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a:not(.btn) {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-submenu a:not(.btn)::after {
  display: none;
}

.nav-submenu a:not(.btn):hover,
.nav-submenu a[aria-current="page"] {
  background: rgba(0, 107, 255, 0.08);
  color: var(--blue);
}

.home-header .nav-submenu {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(2, 8, 23, 0.98);
}

.home-header .nav-submenu a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
}

.home-header .nav-submenu a:not(.btn):hover {
  background: rgba(0, 107, 255, 0.18);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 107, 255, 0.24);
}

.btn-primary:hover {
  background: #005fe3;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

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

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Urbanist", "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 980px;
  color: var(--white);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  color: #46566c;
  max-width: 760px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.78) 0%, rgba(2, 8, 23, 0.58) 42%, rgba(2, 8, 23, 0.24) 72%, rgba(2, 8, 23, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.16), rgba(2, 8, 23, 0.72)),
    url("../img/hero-industrial-handshake-wide.png") center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-shell {
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 130px 0 96px;
}

.hero-copy {
  display: grid;
  gap: 28px;
  max-width: 940px;
}

.hero .eyebrow {
  color: var(--white);
}

.hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-secondary:hover {
  border-color: var(--blue-light);
  color: var(--white);
  background: rgba(0, 107, 255, 0.24);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(860px, 100%);
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.proof-item {
  padding: 18px 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
  font-family: "Urbanist", Arial, sans-serif;
}

.proof-item span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

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

.hero-photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(228, 234, 242, 0.9);
  background: var(--navy);
  box-shadow: 0 34px 70px rgba(0, 34, 92, 0.2);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.18), rgba(2, 8, 23, 0.02) 44%, rgba(0, 107, 255, 0.16)),
    linear-gradient(180deg, rgba(2, 8, 23, 0) 48%, rgba(2, 8, 23, 0.78));
  pointer-events: none;
}

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

.hero-photo-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 340px;
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-photo-panel {
  left: auto;
  right: 22px;
  bottom: 22px;
}

.signal-card {
  position: relative;
  min-height: 500px;
  padding: 30px;
  color: var(--white);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(0, 107, 255, 0.94), rgba(0, 163, 255, 0.5) 42%, rgba(6, 26, 51, 0.98) 100%),
    var(--navy);
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(0, 34, 92, 0.24);
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 46px -60px auto auto;
  width: 360px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 34px;
  transform: rotate(-9deg);
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.signal-card h2 {
  position: relative;
  max-width: 360px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.mini-panel {
  position: absolute;
  right: 18px;
  bottom: 28px;
  z-index: 2;
  width: min(320px, 82%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(14px);
}

.mini-panel small,
.metric small {
  color: #b9c8da;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.metric {
  padding: 13px;
  border: 1px solid rgba(228, 234, 242, 0.18);
  border-radius: 7px;
}

.metric strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.2rem;
}

.flow-track {
  position: absolute;
  left: 24px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
}

.flow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.13);
}

.flow-line {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.pillars {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.07);
}

.pillar {
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.icon-line {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(0, 107, 255, 0.24);
  border-radius: 7px;
}

.icon-line svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.pillar p,
.card p,
.step p,
.case-card p,
.article-card p,
.sector-chip p {
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head .lead {
  max-width: 560px;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.services-head h2 {
  max-width: 1000px;
}

.services-head .lead {
  max-width: 820px;
}

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

.roi-section {
  padding: 88px 0 76px;
  background: var(--white);
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.roi-head {
  max-width: 860px;
  margin: 0;
  text-align: left;
}

.roi-head .eyebrow {
  justify-content: flex-start;
}

.roi-head h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 4.45rem);
  line-height: 1.03;
}

.roi-head .lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #23354d;
}

.roi-head .btn {
  margin-top: 28px;
}

.roi-visual {
  max-width: 980px;
  margin: 42px auto 0;
  border: 1px solid rgba(228, 234, 242, 0.96);
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 26px 70px rgba(7, 20, 38, 0.14);
}

.roi-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.roi-photo {
  position: relative;
  min-height: 430px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 26px 70px rgba(7, 20, 38, 0.14);
}

.roi-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0) 45%, rgba(2, 8, 23, 0.78)),
    linear-gradient(90deg, rgba(2, 8, 23, 0.08), rgba(0, 107, 255, 0.12));
  pointer-events: none;
}

.roi-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.roi-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
}

.roi-photo figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-light);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roi-photo figcaption strong {
  display: block;
  max-width: 440px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

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

.problem-card,
.card,
.case-card,
.article-card,
.training-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.problem-card {
  min-height: 150px;
  padding: 24px;
}

.problem-card span,
.card-number,
.case-label,
.article-category {
  display: inline-flex;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-card h3 {
  margin-top: 18px;
}

.cdx-problem-section {
  position: relative;
  padding: 108px 0;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.07), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  border-top: 1px solid rgba(228, 234, 242, 0.9);
  border-bottom: 1px solid rgba(228, 234, 242, 0.9);
  overflow: hidden;
}

.cdx-problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 26, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 51, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.cdx-problem-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}

.cdx-problem-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.44fr);
  gap: 24px 52px;
  align-items: start;
}

.cdx-problem-copy-simple {
  grid-template-columns: 1fr;
  max-width: 1260px;
}

.cdx-problem-copy h2 {
  max-width: 1180px;
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
}

.cdx-problem-copy-simple h2 {
  max-width: 1320px;
  font-size: clamp(2.45rem, 5vw, 5.3rem);
}

.cdx-problem-copy .lead {
  max-width: 820px;
  grid-column: 1;
  grid-row: 3;
}

.problem-question {
  max-width: 980px;
  margin: 4px 0 0;
  color: #d7263d;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
  font-weight: 850;
}

.cdx-problem-insight {
  max-width: 520px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 107, 255, 0.22);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.06);
  grid-column: 2;
  grid-row: 3 / span 2;
  align-self: start;
}

.cdx-problem-insight span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cdx-problem-insight p {
  color: #24354c;
  font-weight: 650;
}

.cdx-problem-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 850;
  grid-column: 1;
  grid-row: 4;
  align-self: start;
}

.cdx-problem-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.cdx-problem-link:hover::after {
  width: 52px;
}

.cdx-problem-diagnostic {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.cdx-problem-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(228, 234, 242, 0.25);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 107, 255, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(2, 8, 23, 0.18), rgba(2, 8, 23, 0.88)),
    linear-gradient(135deg, #0a2442 0%, #020817 100%);
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.18);
  overflow: hidden;
}

.cdx-problem-visual::before,
.cdx-problem-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.cdx-problem-visual::before {
  width: 390px;
  height: 210px;
  right: -90px;
  top: 48px;
  border-radius: 30px;
  transform: rotate(-8deg);
}

.cdx-problem-visual::after {
  left: 34px;
  right: 34px;
  bottom: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.2));
}

.cdx-problem-visual-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 34px;
  display: grid;
  align-content: end;
  gap: 20px;
  color: var(--white);
}

.cdx-problem-kicker {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #dce9ff;
  background: rgba(255, 255, 255, 0.06);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cdx-problem-visual strong {
  max-width: 420px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.cdx-problem-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7e5f7;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
}

.cdx-problem-signal i {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.cdx-problem-signal .is-muted {
  color: var(--steel);
  text-decoration: line-through;
  text-decoration-color: var(--blue);
}

.problem-human-card {
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(0, 107, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.82)),
    var(--white);
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.08);
}

.problem-human-kicker {
  width: fit-content;
  padding: 8px 10px;
  color: var(--blue);
  border: 1px solid rgba(0, 107, 255, 0.2);
  border-radius: 6px;
  background: rgba(0, 107, 255, 0.06);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-human-card h3 {
  max-width: 420px;
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  line-height: 1.05;
}

.problem-human-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.problem-human-note {
  padding: 18px;
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: var(--soft);
  color: #24354c;
}

.problem-human-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.problem-human-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.1);
}

.problem-human-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0) 42%, rgba(2, 8, 23, 0.78)),
    linear-gradient(90deg, rgba(2, 8, 23, 0.1), rgba(0, 107, 255, 0.08));
  pointer-events: none;
}

.problem-human-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.problem-human-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--white);
}

.problem-human-photo figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-light);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-human-photo figcaption strong {
  display: block;
  max-width: 430px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.problem-photo-cta {
  grid-column: 1;
  grid-row: 2;
  width: fit-content;
  height: 46px;
  min-height: 46px;
  margin-top: 2px;
  align-self: start;
  justify-self: start;
}

.cdx-problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}

.cdx-problem-cards-wide {
  grid-column: 1;
  grid-row: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.cdx-problem-card {
  position: relative;
  min-height: 220px;
  padding: 24px 24px 56px;
  border: 1px solid rgba(228, 234, 242, 0.96);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 46px rgba(7, 20, 38, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cdx-problem-cards-wide .cdx-problem-card {
  min-height: 238px;
}

.cdx-problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 3px;
  height: 34px;
  background: var(--blue);
  border-radius: 0 2px 2px 0;
}

.cdx-problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 107, 255, 0.38);
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.1);
}

.cdx-problem-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.cdx-problem-card h3 {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.14;
}

.cdx-problem-card small {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--blue);
  font-weight: 850;
}

.cdx-problem-card small::after {
  content: " ->";
}

.dark-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.08), rgba(2, 8, 23, 0) 45%),
    var(--navy);
  overflow: hidden;
}

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

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

.click-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.flow-step {
  position: relative;
  min-height: 136px;
  padding: 22px;
  border: 1px solid rgba(228, 234, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 14px;
  height: 1px;
  background: var(--blue);
}

.flow-step:last-child::after {
  display: none;
}

.flow-step span {
  color: var(--blue-light);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
}

.capture-system {
  position: relative;
  margin-top: 52px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(228, 234, 242, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.09), rgba(255, 255, 255, 0.025) 42%, rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 70px rgba(2, 8, 23, 0.18);
  overflow: hidden;
}

.process-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 107, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(0, 107, 255, 0.08), rgba(2, 8, 23, 0) 45%),
    var(--navy);
}

.process-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.process-head h2 {
  max-width: 1080px;
}

.process-head .lead {
  max-width: 880px;
}

.process-resource {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(228, 234, 242, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0, 107, 255, 0.16), rgba(255, 255, 255, 0.04) 48%, rgba(0, 163, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-resource-head span,
.process-outcome span,
.process-route span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-light);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-resource-head strong {
  display: block;
  color: var(--white);
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.process-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 18px 16px;
  border: 1px solid rgba(0, 163, 255, 0.24);
  border-radius: 12px;
  background: rgba(2, 8, 23, 0.28);
}

.process-route::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 163, 255, 0.15), var(--blue), rgba(0, 163, 255, 0.18));
}

.process-route span {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 8px;
  border: 1px solid rgba(0, 163, 255, 0.28);
  border-radius: 8px;
  background: rgba(7, 20, 38, 0.94);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: none;
}

.process-outcome {
  min-width: 290px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 163, 255, 0.32);
  border-radius: 10px;
  background: rgba(0, 107, 255, 0.16);
}

.process-outcome strong {
  display: block;
  color: var(--white);
  font-size: 1.18rem;
}

.process-flow {
  margin-top: 18px;
}

.capture-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.capture-system-line {
  position: absolute;
  left: 72px;
  right: 72px;
  top: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 163, 255, 0.25), var(--blue), rgba(0, 163, 255, 0.25));
  pointer-events: none;
}

.capture-stage {
  position: relative;
  z-index: 1;
  min-height: 244px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(228, 234, 242, 0.16);
  border-radius: 10px;
  background: rgba(8, 28, 54, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.capture-stage::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 72px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  transform: rotate(45deg);
  background: var(--navy);
  z-index: 2;
}

.capture-stage:last-child::after {
  display: none;
}

.capture-stage:hover,
.capture-stage-main {
  transform: translateY(-4px);
  border-color: rgba(0, 163, 255, 0.52);
  background: rgba(9, 36, 72, 0.92);
}

.capture-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 36px;
}

.capture-number {
  color: var(--blue-light);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.capture-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(0, 163, 255, 0.42);
  border-radius: 8px;
  background: rgba(0, 107, 255, 0.18);
  box-shadow: 0 0 0 5px rgba(0, 107, 255, 0.07);
}

.capture-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capture-stage h3 {
  color: var(--white);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  margin-bottom: 10px;
}

.capture-stage p {
  color: #c8d4e2;
  font-size: 0.96rem;
  line-height: 1.52;
}

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

.services-system {
  margin: 0 0 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--soft);
}

.services-system-copy span,
.roadmap-panel span,
.sector-visual figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-system-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.services-system-copy p {
  color: var(--muted);
}

.services-stack {
  display: grid;
  gap: 10px;
}

.stack-layer {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 107, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(7, 20, 38, 0.05);
}

.stack-layer span {
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 850;
}

.stack-layer strong {
  color: var(--navy);
}

.stack-layer:nth-child(2) {
  margin-left: 26px;
}

.stack-layer:nth-child(3) {
  margin-left: 52px;
}

.stack-layer:nth-child(4) {
  margin-left: 26px;
}

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

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 107, 255, 0.55);
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.08);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 28px;
}

.card h3 {
  margin-bottom: 14px;
}

.card-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.section-cta {
  margin-top: 34px;
  text-align: center;
}

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

.sector-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
}

.sector-showcase-copy {
  max-width: 1040px;
}

.sector-showcase-copy .lead {
  margin-top: 22px;
  max-width: 820px;
}

.sector-visual {
  position: relative;
  min-height: 390px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.12);
}

.sector-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.12), rgba(2, 8, 23, 0) 52%),
    linear-gradient(180deg, rgba(2, 8, 23, 0) 50%, rgba(2, 8, 23, 0.76));
  pointer-events: none;
}

.sector-visual img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
}

.sector-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--white);
}

.sector-visual figcaption strong {
  display: block;
  max-width: 430px;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.sector-chip {
  display: block;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sector-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 107, 255, 0.32);
  box-shadow: var(--shadow-soft);
}

.sector-chip strong {
  display: block;
  margin-bottom: 8px;
}

.method-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.method-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.08), rgba(255, 255, 255, 0) 38%),
    var(--white);
  box-shadow: 0 20px 52px rgba(7, 20, 38, 0.07);
}

.roadmap-track {
  position: absolute;
  left: 56px;
  right: 56px;
  top: 74px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 107, 255, 0.1), var(--blue), rgba(0, 107, 255, 0.1));
}

.roadmap-step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.roadmap-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 0 0 7px rgba(0, 107, 255, 0.1);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 850;
}

.roadmap-step h3 {
  margin-bottom: 10px;
}

.roadmap-step p {
  color: var(--muted);
}

.roadmap-panel {
  grid-column: 4 / 6;
  padding: 24px;
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 163, 255, 0.3), transparent 34%),
    var(--navy);
}

.roadmap-panel strong {
  display: block;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.roadmap-bars {
  height: 74px;
  margin-top: 22px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.roadmap-bars i {
  flex: 1;
  min-width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  opacity: 0.84;
}

.roadmap-bars i:nth-child(1) { height: 28%; }
.roadmap-bars i:nth-child(2) { height: 46%; }
.roadmap-bars i:nth-child(3) { height: 58%; }
.roadmap-bars i:nth-child(4) { height: 74%; }
.roadmap-bars i:nth-child(5) { height: 100%; }

.step {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
}

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

.case-card {
  padding: 28px;
  min-height: 360px;
}

.case-card h3 {
  margin: 14px 0 22px;
}

.case-card dl {
  margin: 0;
  display: grid;
  gap: 16px;
}

.case-card dt {
  color: var(--navy);
  font-weight: 800;
}

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

.training-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.training-card,
.value-card {
  padding: 22px;
}

.dark-section .value-card {
  border-color: rgba(228, 234, 242, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.about-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.about-panel {
  padding: 34px;
  border: 1px solid rgba(228, 234, 242, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

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

.article-card {
  overflow: hidden;
}

.article-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.article-card .article-top {
  min-height: 130px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.86), rgba(6, 26, 51, 0.96)),
    var(--navy);
}

.article-card .article-image {
  min-height: 190px;
  padding: 0;
  background: var(--navy);
}

.article-card .article-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card .article-body {
  padding: 24px;
}

.article-card h3 {
  margin: 10px 0 12px;
}

.blog-article-image {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(228, 234, 242, 0.18);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.blog-article-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-content {
  max-width: 860px;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-content ul {
  padding-left: 22px;
}

.prompt-box {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 107, 255, 0.2);
  border-radius: 10px;
  background: rgba(0, 107, 255, 0.06);
  color: var(--navy);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.88rem;
  line-height: 1.7;
}

.final-cta {
  padding: 88px 0;
  background:
    linear-gradient(120deg, rgba(0, 107, 255, 0.18), rgba(0, 163, 255, 0.04) 45%, rgba(2, 8, 23, 0) 100%),
    var(--navy-deep);
  color: var(--white);
}

.final-cta h2,
.final-cta .lead {
  color: var(--white);
}

.final-cta .lead a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.final-cta .lead a:hover {
  color: var(--white);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.site-footer {
  background: var(--navy);
  color: #d7e2f0;
  padding: 58px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 34px;
}

.site-footer .brand-name {
  color: var(--white);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #b8c6d8;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(228, 234, 242, 0.12);
  color: #aebbd0;
  font-size: 0.88rem;
}

.page-hero {
  padding: 78px 0;
  background:
    linear-gradient(120deg, rgba(0, 107, 255, 0.14), rgba(255, 255, 255, 0.9) 48%),
    var(--soft);
  border-bottom: 1px solid var(--line);
}

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

.page-hero .lead {
  margin-top: 22px;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) 1fr;
  gap: 34px;
  align-items: start;
}

.index-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.index-nav span,
.detail-nav span {
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-nav a,
.detail-nav a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.index-nav a:last-child,
.detail-nav a:last-child {
  border-bottom: 0;
}

.index-nav a::after,
.detail-nav a::after {
  content: "->";
  color: var(--blue);
}

.vertical-stack {
  display: grid;
  gap: 18px;
}

.detail-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-row-number {
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 850;
}

.detail-row h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.detail-row p {
  margin: 0;
  color: var(--muted);
}

.detail-row .card-link {
  white-space: nowrap;
}

.detail-page-hero {
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 107, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(0, 107, 255, 0.08), rgba(247, 250, 255, 0) 44%),
    var(--soft);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) 1fr;
  gap: 34px;
  align-items: start;
}

.detail-layout-full {
  grid-template-columns: 1fr;
}

.detail-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-panel + .content-panel {
  margin-top: 18px;
}

.content-panel h2 {
  margin-top: 0;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.keyword-list span {
  padding: 8px 10px;
  border: 1px solid rgba(0, 107, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 107, 255, 0.06);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
}

.mini-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.mini-process div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.service-visual-cta {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1fr;
  gap: 22px;
  align-items: stretch;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(0, 107, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(7, 20, 38, 0.98), rgba(6, 26, 51, 0.94));
  box-shadow: var(--shadow-soft);
}

.service-visual-cta img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-visual-cta-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
}

.service-visual-cta-content span {
  color: var(--cyan);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-visual-cta-content h2,
.service-visual-cta-content p {
  color: var(--white);
}

.service-visual-cta-content h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.service-visual-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.faq-list details[open] summary::after {
  content: "-";
}

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

.seo-technical-hero .container {
  max-width: 1040px;
}

.hero-support,
.hero-microcopy {
  max-width: 820px;
}

.hero-support {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-microcopy {
  margin: 16px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.seo-service-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(0, 107, 255, 0.2);
  border-radius: 12px;
  background: rgba(0, 107, 255, 0.22);
  box-shadow: 0 22px 60px rgba(2, 8, 23, 0.08);
}

.seo-service-flow span {
  position: relative;
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.seo-service-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -7px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
  z-index: 1;
  background: var(--white);
}

.service-problem-grid,
.impact-grid,
.method-steps,
.checklist-grid,
.comparison-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.service-problem-grid div,
.impact-grid div,
.method-steps div,
.comparison-column {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.service-problem-grid div,
.impact-grid div,
.method-steps div {
  padding: 20px;
}

.service-problem-grid span,
.method-steps span,
.service-final-cta span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-problem-grid h3,
.impact-grid h3,
.method-steps h3,
.comparison-column h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.16;
}

.service-problem-grid p,
.method-steps p,
.comparison-column li,
.impact-grid li,
.checklist-grid li {
  color: var(--muted);
}

.highlight-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  background: rgba(0, 107, 255, 0.06);
  color: var(--navy);
  font-weight: 850;
}

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

.comparison-column {
  padding: 22px;
}

.comparison-column-featured {
  border-color: rgba(0, 107, 255, 0.38);
  background: linear-gradient(180deg, rgba(0, 107, 255, 0.08), var(--white));
}

.comparison-column ul,
.impact-grid ul,
.checklist-grid ul {
  margin: 0;
  padding-left: 20px;
}

.comparison-column li + li,
.impact-grid li + li,
.checklist-grid li + li {
  margin-top: 8px;
}

.method-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.method-steps div {
  min-height: 230px;
}

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

.impact-grid div:last-child {
  grid-column: 1 / -1;
}

.checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.trust-panel {
  background:
    linear-gradient(135deg, rgba(0, 107, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.trust-panel .mini-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-final-cta {
  margin-top: 18px;
  border-color: rgba(0, 107, 255, 0.3);
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 107, 255, 0.26), transparent 24%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.service-final-cta h2,
.service-final-cta p,
.service-final-cta .hero-microcopy {
  color: var(--white);
}

.service-final-cta p {
  max-width: 820px;
}

.service-final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.split-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.field {
  display: grid;
  gap: 7px;
}

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

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--navy);
  background: var(--soft);
}

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

.solution-hero {
  padding: 82px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 107, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #061a33 0%, #020817 100%);
}

.solution-hero h1,
.solution-hero .lead {
  color: var(--white);
}

.solution-hero .lead {
  margin-top: 22px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.solution-aside {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.06);
}

.solution-aside h2 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-list span {
  padding: 7px 10px;
  border: 1px solid rgba(0, 107, 255, 0.2);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(0, 107, 255, 0.06);
  font-size: 0.84rem;
  font-weight: 750;
}

.solution-content {
  display: grid;
  gap: 22px;
}

.solution-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.solution-block h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  margin-bottom: 16px;
}

.solution-block p {
  color: var(--muted);
}

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

.solution-list li {
  position: relative;
  padding-left: 24px;
  color: #24354c;
}

.solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.solution-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.solution-step {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.solution-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 850;
}

.solution-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1050px) {
  .hero-inner,
  .problem-grid,
  .cdx-problem-layout,
  .roi-layout,
  .solution-grid,
  .services-system,
  .sector-showcase,
  .listing-layout,
  .detail-layout,
  .about-band,
  .split-page,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .pillar-grid,
  .services-grid,
  .sector-grid,
  .case-grid,
  .article-grid,
  .training-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cdx-problem-cards-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roi-layout {
    gap: 34px;
  }

  .roi-head {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }

  .roi-head .eyebrow {
    justify-content: center;
  }

  .roi-head .eyebrow::before {
    display: none;
  }

  .roi-head .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .click-flow,
  .capture-system,
  .process-resource,
  .service-visual-cta,
  .mini-process,
  .seo-service-flow,
  .service-problem-grid,
  .comparison-grid,
  .impact-grid,
  .checklist-grid,
  .method-steps,
  .method-roadmap,
  .method-line {
    grid-template-columns: 1fr;
  }

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

  .impact-grid div:last-child {
    grid-column: auto;
  }

  .method-steps div {
    min-height: auto;
  }

  .seo-service-flow span:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -8px;
    transform: rotate(135deg);
  }

  .service-visual-cta img {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .index-nav,
  .detail-nav {
    position: static;
  }

  .detail-row {
    grid-template-columns: 1fr;
  }

  .cdx-problem-layout {
    gap: 42px;
  }

  .cdx-problem-copy {
    max-width: 780px;
  }

  .cdx-problem-copy,
  .cdx-problem-diagnostic {
    grid-template-columns: 1fr;
  }

  .cdx-problem-insight,
  .cdx-problem-copy h2,
  .cdx-problem-copy .lead,
  .cdx-problem-link,
  .problem-human-photo,
  .problem-photo-cta,
  .cdx-problem-cards {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-step::after {
    top: auto;
    right: auto;
    left: 32px;
    bottom: -13px;
    width: 1px;
    height: 14px;
  }

  .capture-system {
    padding: 22px;
    gap: 16px;
  }

  .process-resource {
    padding: 22px;
  }

  .process-outcome {
    min-width: 0;
  }

  .process-route {
    width: 100%;
  }

  .capture-system-line {
    left: 43px;
    right: auto;
    top: 54px;
    bottom: 54px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 163, 255, 0.2), var(--blue), rgba(0, 163, 255, 0.2));
  }

  .capture-stage {
    min-height: auto;
    padding: 22px 22px 22px 78px;
  }

  .capture-stage::after {
    right: auto;
    left: 35px;
    top: auto;
    bottom: -17px;
    width: 18px;
    height: 18px;
    border-top: 0;
    border-left: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    border-right: 0;
    transform: rotate(-45deg);
  }

  .capture-stage-head {
    position: absolute;
    left: 18px;
    top: 22px;
    display: grid;
    gap: 10px;
    margin: 0;
  }

  .capture-icon {
    width: 36px;
    height: 36px;
  }

  .method-roadmap {
    padding: 22px;
  }

  .roadmap-track {
    left: 43px;
    right: auto;
    top: 48px;
    bottom: 160px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 107, 255, 0.1), var(--blue), rgba(0, 107, 255, 0.1));
  }

  .roadmap-step {
    min-height: auto;
    padding-left: 78px;
  }

  .roadmap-step span {
    position: absolute;
    left: 22px;
    top: 22px;
    margin: 0;
  }

  .roadmap-panel {
    grid-column: auto;
  }

  .step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .solution-aside {
    position: static;
  }

  .solution-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 28px, var(--max));
  }

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

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .home-header .nav-menu {
    background: rgba(2, 8, 23, 0.96);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .home-header .nav-menu a:not(.btn) {
    color: var(--white);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 0;
  }

  .nav-item {
    display: grid;
    gap: 0;
  }

  .nav-parent {
    padding: 12px 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 16px;
    border: 0;
    border-left: 1px solid rgba(0, 107, 255, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a:not(.btn) {
    padding: 7px 0;
    font-size: 0.86rem;
  }

  .home-header .nav-submenu {
    border-left-color: rgba(0, 163, 255, 0.35);
    background: transparent;
  }

  .hero-shell {
    width: calc(100% - 16px);
    border-radius: 12px;
  }

  .hero .hero-shell {
    width: 100%;
    border-radius: 0;
  }

  .container,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    padding: 40px 0;
    grid-template-columns: 1fr;
  }

  .hero .hero-inner {
    min-height: 100svh;
    padding: 112px 0 70px;
  }

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

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

  .hero-visual,
  .signal-card,
  .hero-photo-card {
    min-height: 0;
  }

  .hero-photo-card img {
    min-height: 0;
  }

  .hero-photo-caption {
    max-width: 270px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    display: grid;
    gap: 18px;
  }

  .pillar-grid,
  .problem-list,
  .trust-panel .mini-process,
  .sector-grid,
  .case-grid,
  .article-grid,
  .training-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .metric-row {
    grid-template-columns: 1fr;
  }

  .flow-track {
    display: none;
  }

  .cdx-problem-section {
    padding: 76px 0;
  }

  .cdx-problem-visual,
  .cdx-problem-visual-content,
  .problem-human-photo img {
    min-height: 290px;
  }

  .cdx-problem-diagnostic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .problem-human-photo,
  .problem-photo-cta,
  .cdx-problem-cards {
    width: 100%;
    grid-column: 1;
    grid-row: auto;
  }

  .problem-photo-cta {
    width: fit-content;
    justify-self: start;
  }

  .cdx-problem-cards {
    grid-template-columns: 1fr;
  }

  .stack-layer,
  .stack-layer:nth-child(2),
  .stack-layer:nth-child(3),
  .stack-layer:nth-child(4) {
    margin-left: 0;
  }

  .sector-visual,
  .roi-photo,
  .sector-visual img {
    min-height: 320px;
    height: 320px;
  }

  .roi-photo img {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 540px) {
  .brand-name {
    font-size: 1.08rem;
  }

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

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero .lead {
    font-size: 1.08rem;
  }

  .hero-proof {
    margin-top: 36px;
  }

  .btn {
    width: 100%;
  }

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

  .proof-item {
    border-right: 0;
  }

  .mini-panel {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .hero-photo-card {
    min-height: 0;
  }

  .hero-photo-card img {
    min-height: 0;
    object-position: 56% center;
  }

  .hero-photo-caption {
    left: 20px;
    right: 20px;
    bottom: 24px;
    max-width: none;
  }

  .cdx-problem-section {
    padding: 64px 0;
  }

  .cdx-problem-copy {
    gap: 20px;
  }

  .cdx-problem-insight,
  .cdx-problem-card,
  .cdx-problem-visual-content {
    padding: 20px;
  }

  .cdx-problem-card {
    min-height: auto;
    padding: 18px 14px 46px;
  }

  .cdx-problem-cards,
  .cdx-problem-cards-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cdx-problem-card span {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .cdx-problem-card h3 {
    font-size: clamp(0.82rem, 3.3vw, 0.98rem);
    line-height: 1.12;
  }

  .cdx-problem-card small {
    left: 14px;
    bottom: 16px;
    font-size: 0.78rem;
  }

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

  .services-grid .card {
    min-height: auto;
    padding: 16px 14px;
  }

  .services-grid .card-top {
    margin-bottom: 18px;
  }

  .services-grid .card-number {
    font-size: 0.68rem;
  }

  .services-grid .icon-line {
    width: 34px;
    height: 34px;
  }

  .services-grid .card h3 {
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    line-height: 1.12;
  }

  .services-grid .card p {
    margin-top: 10px;
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .services-grid .card-link {
    margin-top: 12px;
    font-size: 0.84rem;
  }

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

  .sector-chip {
    padding: 16px 14px;
    min-height: auto;
  }

  .sector-chip strong {
    font-size: 0.95rem;
    line-height: 1.12;
  }

  .sector-chip p {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.36;
  }


  .problem-human-photo img {
    min-height: 300px;
  }

  .problem-photo-cta {
    width: fit-content;
    justify-content: center;
  }

  .problem-human-photo figcaption {
    left: 18px;
    right: 18px;
  }

  .cdx-problem-signal {
    flex-wrap: wrap;
  }

  .cdx-problem-signal i {
    width: 26px;
  }

  .capture-system {
    margin-top: 34px;
    padding: 16px;
    border-radius: 12px;
  }

  .process-resource {
    margin-top: 30px;
    padding: 18px;
  }

  .process-route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
  }

  .process-route::before {
    display: none;
  }

  .detail-row,
  .content-panel,
  .index-nav,
  .detail-nav {
    padding: 18px;
  }

  .detail-page-hero {
    padding: 118px 0 62px;
  }

  .services-system,
  .method-roadmap {
    padding: 18px;
  }

  .stack-layer {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .sector-visual,
  .roi-photo,
  .sector-visual img {
    min-height: 300px;
    height: 300px;
  }

  .roi-photo img {
    min-height: 300px;
    height: 300px;
  }

  .sector-visual figcaption {
    left: 18px;
    right: 18px;
  }

  .roi-photo figcaption {
    left: 18px;
    right: 18px;
  }

  .roadmap-step {
    padding: 20px 18px 20px 66px;
  }

  .roadmap-step span {
    left: 18px;
    top: 20px;
    width: 36px;
    height: 36px;
  }

  .roadmap-track {
    left: 36px;
  }

  .capture-stage {
    padding: 20px 18px 20px 68px;
  }

  .capture-stage-head {
    left: 16px;
    top: 20px;
  }

  .capture-system-line {
    left: 35px;
  }

  .capture-stage::after {
    left: 27px;
  }
}
