:root {
  --blue-950: #05133f;
  --blue-900: #091d5a;
  --blue-800: #0a2b86;
  --blue-700: #0b43c7;
  --blue-600: #1158f2;
  --blue-500: #2b6cff;
  --blue-300: #8fb2ff;
  --blue-200: #c4d6ff;
  --blue-100: #e4ecff;
  --blue-50: #f4f7ff;
  --white: #ffffff;
  --ink: #07163f;
  --muted: #53658d;
  --line: #d7e1f7;
  --line-strong: #a9bde8;
  --container: 1180px;
  --wide-container: 1480px;
  --anchor-offset: 75px;
}

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

/* Align fragment targets exactly below the sticky navigation bar.
   The offset matches the full header height (74px navigation + 1px border),
   with no additional visual gap. */
main [id] {
  scroll-margin-top: var(--anchor-offset);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button, summary { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.eyebrow {
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-size: .73rem;
  margin-bottom: 16px;
}
.section { padding: 82px 0; }
.section.compact { padding: 58px 0; }
.section.dark { background: var(--blue-950); color: var(--white); }
.section.soft { background: var(--blue-50); }
.section-head { max-width: 780px; margin-bottom: 40px; }

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 18px;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(2.65rem, 5vw, 4.9rem); max-width: 920px; }
h2 { font-size: clamp(1.95rem, 3.4vw, 3.05rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 740px; }
.dark .lead { color: var(--blue-200); }
.muted { color: var(--muted); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .91rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.btn.primary:hover { background: var(--blue-700); border-color: var(--blue-700); }
.btn.secondary { color: var(--blue-900); border-color: var(--line-strong); background: var(--white); }
.btn.secondary:hover { border-color: var(--blue-600); color: var(--blue-600); }
.dark .btn.secondary { color: var(--white); border-color: var(--blue-300); background: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-950); font-weight: 700; letter-spacing: .045em; font-size: 1.08rem; }
.logo-symbol {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 32px;
}
.logo-symbol img { width: 100%; height: 100%; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .9rem; }
.nav-links > a:not(.btn), .nav-dropdown summary { color: #314b82; }
.nav-links > a:not(.btn):hover, .nav-dropdown summary:hover { color: var(--blue-600); }
.menu-button { display: none; color: var(--blue-900); background: transparent; border: 0; font-size: 1.35rem; }

.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  user-select: none;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .16s ease;
}
.nav-dropdown[open] summary::after { transform: rotate(225deg) translate(-1px, -1px); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -24px;
  width: 320px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(5, 19, 63, .13);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 0;
  width: 100%;
  height: 20px;
}
.dropdown-menu a {
  display: block;
  padding: 14px 15px;
  border-bottom: 1px solid var(--blue-100);
}
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a:hover { background: var(--blue-50); }
.dropdown-menu strong { display: block; color: var(--blue-950); font-size: .92rem; margin-bottom: 2px; }
.dropdown-menu small { display: block; color: var(--muted); line-height: 1.4; }

.hero { background: var(--blue-50); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
  padding: 78px 0 42px;
}
.hero-copy { padding: 10px 0; }
.hero-copy h1 span { color: var(--blue-600); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 58px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255,255,255,.72);
}
.trust-point {
  min-height: 92px;
  padding: 19px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  color: #314b82;
  font-size: .86rem;
  line-height: 1.38;
}
.trust-point:last-child { border-right: 0; }
.trust-index {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue-300);
  border-radius: 50%;
  color: var(--blue-600);
  background: var(--white);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.orbit-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  background: radial-gradient(circle at center, rgba(17,88,242,.08) 0, rgba(17,88,242,0) 62%);
}
.orbit-graphic { position: relative; width: min(430px, 86vw); aspect-ratio: 1; }
.orbit-ring { position: absolute; border: 1px solid var(--blue-200); border-radius: 50%; inset: 0; }
.orbit-ring.middle { inset: 13%; border-color: var(--blue-300); }
.orbit-ring.inner { inset: 29%; border-color: var(--blue-500); }
.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 7px var(--blue-100);
}
.orbit-ring::before { top: 8%; left: 24%; }
.orbit-ring::after { bottom: 15%; right: 9%; }
.orbit-ring.middle::before { top: auto; bottom: 12%; left: 17%; }
.orbit-ring.middle::after { top: 18%; right: 6%; bottom: auto; }
.orbit-core {
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 0 0 13px rgba(17,88,242,.10);
}
.orbit-core strong { display: block; font-size: 3.25rem; line-height: 1; font-weight: 500; }
.orbit-core small { display: block; max-width: 90px; margin-top: 8px; text-transform: uppercase; letter-spacing: .11em; font-size: .58rem; line-height: 1.35; }
.orbit-node { position: absolute; display: flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 600; color: var(--blue-900); }
.orbit-node::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--white); border: 3px solid var(--blue-600); box-shadow: 0 0 0 5px var(--blue-100); }
.orbit-node.knowledge { top: 2%; left: 44%; }
.orbit-node.models { top: 47%; right: -7%; }
.orbit-node.action { bottom: 5%; left: 44%; }
.orbit-node.control { top: 47%; left: -8%; }
.orbit-caption { position: absolute; left: 0; right: 0; bottom: 6px; text-align: center; color: var(--muted); font-size: .78rem; }

.page-hero { background: var(--blue-50); border-bottom: 1px solid var(--line); }
.page-hero > .container { width: min(calc(100% - 48px), var(--wide-container)); }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, .64fr) minmax(640px, 1.36fr);
  gap: 42px;
  align-items: center;
  padding: 60px 0;
}
.page-hero-content { max-width: 700px; }
.page-hero-content h1 { font-size: clamp(2.4rem, 4.5vw, 4.1rem); }
.page-hero-visual {
  margin: 0;
  border: 1px solid var(--line-strong);
  background: var(--white);
  overflow: hidden;
}
.page-hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 28px;
}
.card p:last-child { margin-bottom: 0; }
.icon, .metric {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--blue-300);
  color: var(--blue-600);
  background: var(--blue-50);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 22px;
}
.metric { width: 52px; height: 52px; font-size: .85rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.sector-card {
  display: block;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}
.sector-card:hover { border-color: var(--blue-500); transform: translateY(-2px); }
.sector-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--blue-50);
  border-bottom: 1px solid var(--line);
}
.sector-card-content { padding: 31px; }
.sector-card-content h2 { font-size: clamp(1.55rem, 2.3vw, 2.12rem); }
.sector-card-content p { color: var(--muted); }
.sector-card .btn { margin-top: 8px; }

.architecture-note { border: 1px solid var(--line); background: var(--white); }
.architecture-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 23px 25px;
  border-bottom: 1px solid var(--line);
}
.architecture-row:last-child { border-bottom: 0; }
.architecture-row strong { color: var(--blue-900); font-weight: 600; }
.architecture-row p { margin: 0; color: var(--muted); }

.circle-system {
  position: relative;
  width: min(430px, 88vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.circle-system-ring {
  position: absolute;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--blue-900);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.circle-system-ring.outer { inset: 0; border: 1px solid var(--blue-200); align-items: start; padding-top: 22px; }
.circle-system-ring.middle { inset: 17%; border: 1px solid var(--blue-300); background: rgba(228,236,255,.5); align-items: start; padding-top: 18px; }
.circle-system-ring.inner { inset: 35%; background: var(--blue-600); color: var(--white); }
.circle-system-label { position: absolute; padding: 7px 10px; background: var(--white); border: 1px solid var(--blue-200); color: var(--blue-900); font-size: .73rem; }
.circle-system-label.data { top: 11%; left: 3%; }
.circle-system-label.models { top: 7%; right: 3%; }
.circle-system-label.processes { bottom: 12%; right: 0; }
.circle-system-label.governance { bottom: 8%; left: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: stretch; }
.service-card { border: 1px solid var(--line); padding: 30px; background: var(--white); }
.service-card.featured { background: var(--blue-950); color: var(--white); border-color: var(--blue-950); }
.service-mark { width: 58px; height: 58px; border-radius: 50%; border: 1px solid var(--blue-300); display: grid; place-items: center; margin-bottom: 24px; color: var(--blue-600); font-weight: 600; }
.service-card.featured .service-mark { border-color: var(--blue-500); color: var(--white); background: var(--blue-700); }
.service-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 600; color: var(--blue-600); margin-bottom: 11px; }
.service-card.featured .service-label { color: var(--blue-300); }
.check-list { padding: 0; margin: 22px 0 0; list-style: none; }
.check-list li { padding: 10px 0 10px 24px; position: relative; border-top: 1px solid rgba(83,101,141,.18); }
.check-list li::before { content: '—'; position: absolute; left: 0; color: var(--blue-600); font-weight: 700; }
.service-card.featured .check-list li { border-color: rgba(196,214,255,.22); }
.service-card.featured .check-list li::before { color: var(--blue-300); }

.callout {
  border-top: 4px solid var(--blue-500);
  background: var(--blue-950);
  color: var(--white);
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.callout p { color: var(--blue-200); max-width: 720px; }
.callout .eyebrow { color: var(--blue-300); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width:100%; border-collapse: collapse; min-width: 720px; background: var(--white); }
th,td { padding: 16px 18px; text-align:left; border-bottom:1px solid var(--line); vertical-align:top; }
th { background: var(--blue-50); color: var(--blue-900); font-size:.73rem; letter-spacing:.09em; text-transform:uppercase; font-weight: 600; }
tr:last-child td { border-bottom: 0; }

.site-footer { background: var(--blue-950); color: var(--blue-200); padding: 52px 0 27px; }
.footer-grid { display:grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 40px; }
.footer-title { color:var(--white); font-weight:600; margin-bottom:12px; }
.footer-links { display:grid; gap:8px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top:40px; padding-top:19px; border-top:1px solid #294481; font-size:.86rem; display:flex; justify-content:space-between; gap:16px; }

.legal-card { background: var(--white); border: 1px solid var(--line); padding: 36px; }
.legal-card h2 { font-size: 1.55rem; margin-top: 34px; }
.legal-card h2:first-child { margin-top: 0; }

@media (max-width: 980px) {
  .hero-grid, .page-hero-grid, .split { grid-template-columns: 1fr; gap: 38px; }
  .page-hero > .container { width: min(calc(100% - 48px), var(--container)); }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-point:nth-child(2) { border-right: 0; }
  .trust-point:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-grid { min-height: auto; padding: 64px 0; }
  .orbit-panel { min-height: 500px; border-left: 0; border-top: 1px solid var(--line); }
  .hero-copy, .page-hero-content { max-width: 830px; }
  .grid-3,.grid-4,.service-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display:none; position:absolute; top:74px; left:0; right:0; padding:22px 24px; background:var(--white); border-bottom:1px solid var(--line); flex-direction:column; align-items:stretch; gap: 16px; }
  .nav-links.open { display:flex; }
  .menu-button { display:block; }
  .nav-dropdown summary { justify-content: space-between; }
  .dropdown-menu { position: static; width: 100%; margin-top: 12px; box-shadow: none; border-color: var(--line); }
  .dropdown-menu::before { display: none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .callout { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 640px) {
  .container { width:min(calc(100% - 30px),var(--container)); }
  .section { padding:64px 0; }
  .grid-2,.grid-3,.grid-4,.service-grid { grid-template-columns:1fr; }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2rem; }
  .hero-grid, .page-hero-grid { padding: 52px 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-point, .trust-point:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-point:last-child { border-bottom: 0; }
  .orbit-panel { min-height: 420px; }
  .orbit-node { font-size: .68rem; }
  .orbit-node.models { right: -2%; }
  .orbit-node.control { left: -2%; }
  .architecture-row { grid-template-columns: 1fr; gap: 6px; }
  .callout { padding:34px 27px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
}


/* Logo adaptation to attached ominiom brand mark */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 10px;
}
.logo-full {
  display: block;
  width: 80px;
  height: auto;
}
.logo-symbol { display: none; }

.orbit-core {
  overflow: hidden;
}
.orbit-core img {
  width: 68%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .98;
}
.orbit-core strong,
.orbit-core small { display: none; }

.footer-logo {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 16px;
}
.footer-logo.small {
  width: 160px;
  margin-bottom: 18px;
}
.footer-mini {
  padding-bottom: 8px;
}

@media (max-width: 980px) {
  .logo-full { width: 76px; }
}

@media (max-width: 640px) {
  .logo-full { width: 70px; }
  .footer-logo { width: 170px; }
  .footer-logo.small { width: 150px; }
}


/* Institutional information architecture — 2026-08 */
.section-head.wide { max-width: 930px; }
.text-link { color: var(--blue-700); font-weight: 600; font-size: .9rem; }

.nav-dropdown.services .dropdown-menu { width: 410px; }
.nav-dropdown.services .dropdown-menu a:first-child { background: var(--blue-50); }

.institutional-hero {
  background: linear-gradient(180deg, var(--blue-50) 0%, #ffffff 92%);
  border-bottom: 1px solid var(--line);
}
.institutional-hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 72px;
  align-items: center;
  padding: 86px 0 54px;
}
.institutional-hero-copy h1 { max-width: 880px; font-size: clamp(2.7rem, 5vw, 4.75rem); }
.institutional-hero-copy .lead { max-width: 800px; }
.institution-panel {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.88);
}
.institution-panel-head {
  min-height: 88px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--blue-950);
  color: var(--white);
  border-bottom: 1px solid var(--blue-800);
}
.institution-panel-head span { font-weight: 600; letter-spacing: .04em; }
.institution-panel-head small { color: var(--blue-200); text-transform: uppercase; letter-spacing: .1em; font-size: .63rem; }
.institution-capability {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.institution-capability:last-child { border-bottom: 0; }
.institution-capability > span { color: var(--blue-600); font-size: .73rem; font-weight: 700; letter-spacing: .08em; padding-top: 2px; }
.institution-capability strong { display: block; color: var(--blue-950); margin-bottom: 3px; font-size: .95rem; }
.institution-capability small { color: var(--muted); line-height: 1.45; font-size: .82rem; }
.institutional-strip {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 54px;
}
.institutional-strip > div { min-height: 76px; display:flex; align-items:center; gap:12px; padding: 16px 18px; border-right:1px solid var(--line); color:#314b82; font-size:.86rem; }
.institutional-strip > div:last-child { border-right:0; }
.institutional-strip span { color:var(--blue-600); font-size:.68rem; font-weight:700; letter-spacing:.08em; }

.competency-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.competency-card { min-height:260px; padding:28px 26px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--white); }
.competency-card h3 { font-size:1.08rem; margin-top:32px; }
.competency-card p { color:var(--muted); font-size:.93rem; margin:0; }
.competency-index { color:var(--blue-600); font-size:.72rem; font-weight:700; letter-spacing:.08em; }

.service-index { border-top:1px solid var(--line-strong); }
.service-index-row { display:grid; grid-template-columns:72px minmax(0,1fr) 34px; gap:22px; align-items:center; min-height:132px; padding:24px 10px; border-bottom:1px solid var(--line); transition:background .18s ease; }
.service-index-row:hover { background:rgba(255,255,255,.8); }
.service-index-number { color:var(--blue-600); font-weight:700; letter-spacing:.08em; font-size:.78rem; }
.service-index-row h3 { margin:0 0 7px; font-size:1.28rem; }
.service-index-row p { margin:0; color:var(--muted); max-width:820px; }
.service-arrow { color:var(--blue-600); font-size:1.4rem; text-align:right; }

.institutional-split { align-items:start; }
.principles-list { border-top:1px solid var(--line-strong); }
.principle { display:grid; grid-template-columns:46px 1fr; gap:16px; padding:22px 0; border-bottom:1px solid var(--line); }
.principle > span { color:var(--blue-600); font-size:.7rem; font-weight:700; letter-spacing:.08em; padding-top:3px; }
.principle strong { display:block; color:var(--blue-950); margin-bottom:4px; }
.principle p { margin:0; color:var(--muted); }

.institutional-contact { border-top:1px solid var(--line-strong); border-bottom:1px solid var(--line-strong); padding:38px 0; display:flex; align-items:center; justify-content:space-between; gap:40px; }
.institutional-contact h2 { font-size:clamp(1.7rem,2.7vw,2.5rem); max-width:820px; margin-bottom:10px; }
.institutional-contact p { color:var(--muted); margin:0; }

.service-hero, .service-detail-hero { background:var(--blue-50); border-bottom:1px solid var(--line); }
.service-hero-grid, .service-detail-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr); gap:70px; align-items:center; min-height:500px; padding:72px 0; }
.service-hero h1, .service-detail-hero h1 { font-size:clamp(2.6rem,4.8vw,4.5rem); max-width:900px; }
.service-sequence { border:1px solid var(--line-strong); background:var(--white); }
.service-sequence span { display:block; padding:20px 24px; border-bottom:1px solid var(--line); color:var(--blue-900); font-weight:600; }
.service-sequence span:last-child { border-bottom:0; }
.service-sequence span::before { content:'—'; color:var(--blue-600); margin-right:12px; }
.service-definition { min-height:310px; padding:34px; display:flex; flex-direction:column; justify-content:space-between; border:1px solid var(--line-strong); background:var(--blue-950); color:var(--white); }
.service-definition > span { font-size:4rem; font-weight:500; color:var(--blue-300); line-height:1; }
.service-definition p { color:var(--blue-100); font-size:1.05rem; margin:50px 0 0; }
.sector-service-panel { border:1px solid var(--line); background:var(--white); padding:32px; }
.sector-service-panel h3 { font-size:1.55rem; }
.sector-service-panel p { color:var(--muted); }

.footer-grid-expanded { grid-template-columns:1.35fr 1.05fr .7fr .85fr; }
.footer-about p { max-width:360px; }

@media (max-width: 1100px) {
  .competency-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-grid-expanded { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-grid-expanded > div:last-child { grid-column:2 / 4; }
}
@media (max-width: 980px) {
  .institutional-hero-grid, .service-hero-grid, .service-detail-grid { grid-template-columns:1fr; gap:40px; min-height:auto; }
  .institutional-strip { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .institutional-strip > div:nth-child(2) { border-right:0; }
  .institutional-strip > div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .nav-dropdown.services .dropdown-menu { width:100%; }
  .institutional-contact { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 640px) {
  .institutional-hero-grid, .service-hero-grid, .service-detail-grid { padding:52px 0; }
  .institutional-strip, .competency-grid { grid-template-columns:1fr; }
  .institutional-strip > div { border-right:0; border-bottom:1px solid var(--line); }
  .institutional-strip > div:last-child { border-bottom:0; }
  .competency-card { min-height:auto; }
  .service-index-row { grid-template-columns:42px 1fr; gap:14px; min-height:0; padding:24px 4px; }
  .service-arrow { display:none; }
  .institutional-contact { padding:30px 0; }
  .footer-grid-expanded { grid-template-columns:1fr; }
  .footer-grid-expanded > div:last-child { grid-column:auto; }
}
