/* The ICCS Team — Website v1.0
   Responsive, dependency-free static site. */

:root {
  --navy-950: #0B1F3A;
  --navy-900: #081a39;
  --navy-850: #1B3048;
  --navy-800: #0d2856;
  --blue-800: #0B1F3A;
  --blue-700: #1B3048;
  --blue-600: #536B7F;
  --cyan-500: #C6A15B;
  --cyan-400: #D5B97D;
  --cyan-100: #dff5fd;
  --ink-900: #0c172b;
  --ink-800: #17233a;
  --ink-700: #33425d;
  --ink-600: #53627a;
  --ink-500: #718097;
  --line: #dce5ef;
  --line-strong: #c8d6e5;
  --surface: #ffffff;
  --surface-soft: #f4f8fc;
  --surface-blue: #edf5fc;
  --success: #1aa57a;
  --warning: #f3a83b;
  --danger: #d84c63;
  --shadow-sm: 0 8px 26px rgba(14, 35, 68, 0.08);
  --shadow-md: 0 18px 52px rgba(14, 35, 68, 0.13);
  --shadow-lg: 0 30px 90px rgba(2, 15, 40, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 82px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  color-scheme: light;
}

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

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

svg.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.3rem);
}

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

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 0;
}

::selection {
  background: var(--cyan-400);
  color: var(--navy-950);
}

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

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-tinted {
  background:
    radial-gradient(circle at 94% 4%, rgba(198, 161, 91, 0.11), transparent 27rem),
    var(--surface-soft);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(198, 161, 91, 0.18), transparent 25rem),
    radial-gradient(circle at 90% 100%, rgba(27, 48, 72, 0.28), transparent 31rem),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
}

.section-dark::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-950);
  font-weight: 750;
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

.topbar {
  position: relative;
  z-index: 31;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.topbar-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p,
.topbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar p .icon {
  color: var(--cyan-400);
}

.topbar-links {
  gap: 22px;
}

.topbar a {
  transition: color var(--transition);
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(214, 225, 238, 0.82);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 36px rgba(14, 35, 68, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(12, 48, 113, 0.2));
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--ink-900);
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  color: var(--ink-500);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: 26px;
}

.nav-links {
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--ink-600);
  font-size: 0.91rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}

.nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--surface-blue);
  color: var(--blue-800);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink-900);
  cursor: pointer;
}

.nav-toggle span {
  display: grid;
  place-items: center;
}

.nav-toggle .icon {
  width: 24px;
  height: 24px;
}

.nav-toggle-close {
  display: none !important;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-close {
  display: grid !important;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600) 55%, var(--cyan-500));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 770;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 26px rgba(27, 48, 72, 0.24);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition);
}

.button .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(27, 48, 72, 0.29);
}

.button:hover .icon {
  transform: translateX(3px);
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: 0.81rem;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.button-dark {
  background: var(--navy-950);
  box-shadow: 0 12px 26px rgba(6, 17, 38, 0.18);
}

.button-white {
  background: #fff;
  color: var(--blue-800);
  box-shadow: 0 12px 30px rgba(3, 15, 40, 0.18);
}

.button-white:hover {
  box-shadow: 0 18px 36px rgba(3, 15, 40, 0.24);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  box-shadow: none;
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-weight: 780;
}

.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan-400);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--blue-700);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 32%, rgba(198, 161, 91, 0.29), transparent 27rem),
    radial-gradient(circle at 18% 18%, rgba(27, 48, 72, 0.31), transparent 31rem),
    linear-gradient(135deg, var(--navy-950), #1B3048 58%, #1B3048);
  color: #fff;
}

.home-hero {
  min-height: min(790px, calc(100svh - 80px));
  display: grid;
  align-items: center;
  padding: clamp(80px, 9vw, 122px) 0 clamp(102px, 11vw, 150px);
}

.hero-grid-overlay,
.page-hero-grid,
.not-found-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 66% 45%, black 0, rgba(0, 0, 0, 0.85) 32%, transparent 72%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

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

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(3rem, 4.8vw, 4.35rem);
  margin-bottom: 25px;
  color: #fff;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 650;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof .icon {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
}

.hero-visual {
  position: relative;
  width: min(100%, 530px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -3;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 165, 224, 0.22), transparent 66%);
  content: "";
  filter: blur(8px);
}

.logo-core {
  position: relative;
  z-index: 2;
  width: 59%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 13px rgba(255, 255, 255, 0.025),
    0 35px 70px rgba(1, 10, 31, 0.47),
    inset 0 0 42px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.logo-core img {
  width: 94%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.logo-halo {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(213, 185, 125, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(198, 161, 91, 0.21);
  animation: haloPulse 4.5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(231, 236, 241, 0.24);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.orbit-one {
  inset: 11%;
}

.orbit-two {
  inset: 1%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.16);
  animation-duration: 32s;
  animation-direction: reverse;
}

.orbit span {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 20px rgba(213, 185, 125, 0.8);
}

.orbit-one span:nth-child(1) {
  top: 8%;
  left: 24%;
}

.orbit-one span:nth-child(2) {
  right: 5%;
  bottom: 27%;
}

.orbit-two span:nth-child(1) {
  top: 48%;
  left: -1%;
}

.orbit-two span:nth-child(2) {
  top: 8%;
  right: 22%;
}

.orbit-two span:nth-child(3) {
  right: 16%;
  bottom: 11%;
}

.status-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 19, 48, 0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 720;
  box-shadow: 0 13px 30px rgba(1, 10, 30, 0.3);
  backdrop-filter: blur(14px);
}

.status-chip .icon {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
}

.status-chip-one {
  top: 17%;
  left: 0;
}

.status-chip-two {
  top: 24%;
  right: -3%;
}

.status-chip-three {
  right: 5%;
  bottom: 14%;
}

.hero-wave {
  position: absolute;
  right: -4%;
  bottom: -89px;
  left: -4%;
  height: 150px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--surface);
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

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

.trust-grid > div > .icon {
  width: 30px;
  height: 30px;
  color: var(--blue-600);
}

.trust-grid span {
  display: grid;
  gap: 3px;
}

.trust-grid strong {
  color: var(--ink-900);
  font-size: 0.91rem;
}

.trust-grid small {
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.35;
}

.section-heading {
  margin-bottom: clamp(38px, 6vw, 66px);
}

.section-heading h2 {
  max-width: 710px;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 1.02rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 48px;
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2 {
  margin-inline: auto;
  margin-bottom: 18px;
}

.centered > p:last-child {
  margin-inline: auto;
}

.narrow {
  max-width: 700px;
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 0 0 100%;
  background: radial-gradient(circle at 100% 0, rgba(198, 161, 91, 0.16), transparent 70%);
  content: "";
}

.service-card:hover {
  border-color: rgba(83, 107, 127, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-icon,
.industry-icon,
.value-icon,
.service-detail-icon,
.contact-info-icon {
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600) 60%, var(--cyan-500));
  color: #fff;
  box-shadow: 0 12px 24px rgba(27, 48, 72, 0.18);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
}

.service-icon .icon {
  width: 26px;
  height: 26px;
}

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

.service-card p {
  margin-bottom: 24px;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 790;
}

.service-card a .icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card:hover a .icon {
  transform: translateX(4px);
}

.center-action {
  margin-top: 39px;
  text-align: center;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 8vw, 108px);
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.process-intro h2 {
  margin-bottom: 22px;
}

.process-intro > p:not(.eyebrow) {
  margin-bottom: 29px;
  color: var(--ink-600);
  font-size: 1.01rem;
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 31px;
  width: 1px;
  background: linear-gradient(var(--blue-600), var(--cyan-400), rgba(198, 161, 91, 0.1));
  content: "";
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 25px;
  padding: 0 0 43px;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li > span {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(83, 107, 127, 0.23);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 820;
  box-shadow: var(--shadow-sm);
}

.process-list li > div {
  padding-top: 8px;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  max-width: 520px;
  color: var(--ink-600);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 105px);
}

.why-copy h2 {
  margin-bottom: 23px;
}

.why-copy > p:not(.eyebrow) {
  margin-bottom: 31px;
  color: var(--ink-600);
  font-size: 1.01rem;
}

.feature-list {
  display: grid;
  gap: 17px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-list > div > .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(83, 107, 127, 0.17);
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--blue-700);
}

.feature-list span {
  display: grid;
  gap: 3px;
}

.feature-list strong {
  color: var(--ink-900);
  font-size: 0.94rem;
}

.feature-list small {
  color: var(--ink-600);
  font-size: 0.8rem;
  line-height: 1.48;
}

.why-visual {
  position: relative;
}

.why-visual::before {
  position: absolute;
  top: -42px;
  right: 14px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.14);
  content: "";
  filter: blur(45px);
}

.tech-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.tech-panel-header,
.tech-status {
  display: flex;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
}

.tech-panel-header {
  min-height: 52px;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-panel-header > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
}

.tech-panel-header > span:nth-child(2) {
  background: var(--warning);
}

.tech-panel-header > span:nth-child(3) {
  background: var(--success);
}

.tech-panel-header small {
  margin-left: auto;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tech-panel-body {
  position: relative;
  min-height: 390px;
  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: 34px 34px;
}

.tech-panel-body::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(83, 107, 127, 0.2), transparent 55%);
  content: "";
}

.tech-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(213, 185, 125, 0.3);
  stroke-width: 1.2;
  stroke-dasharray: 5 7;
}

.tech-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(11, 36, 80, 0.83);
  color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 13px 27px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.tech-node .icon {
  color: var(--cyan-400);
}

.node-main {
  top: 50%;
  left: 50%;
  width: 122px;
  height: 122px;
  gap: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(27, 48, 72, 0.95), rgba(15, 129, 190, 0.86));
  color: #fff;
  transform: translate(-50%, -50%);
}

.node-main .icon {
  width: 31px;
  height: 31px;
  color: #fff;
}

.node-main strong {
  font-size: 0.8rem;
}

.node-a,
.node-b,
.node-c,
.node-d {
  width: 92px;
  min-height: 72px;
  gap: 4px;
  padding: 10px;
}

.node-a { top: 10%; left: 9%; }
.node-b { top: 8%; right: 8%; }
.node-c { bottom: 9%; left: 7%; }
.node-d { right: 6%; bottom: 8%; }

.tech-node small {
  font-size: 0.65rem;
}

.tech-status {
  justify-content: space-between;
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.71rem;
}

.tech-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tech-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(26, 165, 122, 0.8);
}

.tech-status strong {
  color: #fff;
  letter-spacing: 0.14em;
}

.industry-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.industry-pill-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.industry-pill-grid a:hover {
  border-color: rgba(213, 185, 125, 0.42);
  background: rgba(198, 161, 91, 0.09);
  transform: translateY(-3px);
}

.industry-pill-grid .icon {
  width: 25px;
  height: 25px;
  color: var(--cyan-400);
}

.contact-cta-section {
  padding: 82px 0;
  background: #fff;
}

.compact-cta {
  padding-top: 22px;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: clamp(36px, 6vw, 63px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 5%, rgba(213, 185, 125, 0.33), transparent 20rem),
    linear-gradient(135deg, var(--blue-800), #1B3048 60%, #536B7F);
  color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 26px 62px rgba(16, 61, 139, 0.24);
}

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

.contact-cta::before {
  width: 330px;
  height: 330px;
  top: -210px;
  right: -80px;
}

.contact-cta::after {
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -330px;
}

.contact-cta > * {
  position: relative;
  z-index: 1;
}

.contact-cta h2 {
  max-width: 750px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
}

.contact-cta p:not(.eyebrow) {
  margin: 0;
}

.contact-cta-actions {
  display: grid;
  gap: 15px;
  justify-items: start;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.contact-phone > .icon {
  width: 26px;
  height: 26px;
}

.contact-phone span {
  display: grid;
  line-height: 1.2;
}

.contact-phone small {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.7rem;
}

.contact-phone strong {
  font-size: 0.89rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.62);
}

.footer-glow {
  position: absolute;
  top: -220px;
  left: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(83, 107, 127, 0.18);
  filter: blur(70px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.8fr 1fr;
  gap: 45px;
  padding-bottom: 60px;
}

.brand-footer .brand-copy strong {
  color: #fff;
  font-size: 1.06rem;
}

.brand-footer .brand-copy small {
  color: var(--cyan-400);
}

.footer-brand > p {
  max-width: 340px;
  margin: 23px 0 24px;
  font-size: 0.87rem;
}

.footer-social {
  display: flex;
  gap: 9px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  transition: border-color var(--transition), background var(--transition), transform var(--transition), color var(--transition);
}

.icon-button:hover {
  border-color: rgba(213, 185, 125, 0.38);
  background: rgba(198, 161, 91, 0.1);
  color: #fff;
  transform: translateY(-3px);
}

.icon-button .icon {
  width: 19px;
  height: 19px;
}

.footer-heading {
  margin: 9px 0 22px;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.footer-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
}

.footer-list a,
.footer-contact a,
.footer-bottom a {
  transition: color var(--transition);
}

.footer-list a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--cyan-400);
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-size: 0.82rem;
  font-style: normal;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: var(--navy-950);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-700);
}

.back-to-top .icon {
  transform: rotate(-90deg);
}

/* Interior page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 80% 30%, rgba(198, 161, 91, 0.24), transparent 27rem),
    radial-gradient(circle at 10% 10%, rgba(27, 48, 72, 0.3), transparent 30rem),
    linear-gradient(135deg, var(--navy-950), #1B3048 62%, #1B3048);
  color: rgba(255, 255, 255, 0.72);
}

.page-hero::after {
  position: absolute;
  right: -100px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 145px rgba(255, 255, 255, 0.015);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  max-width: 970px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: clamp(2.65rem, 6vw, 4.8rem);
}

.page-hero-content > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.page-hero-services {
  background:
    radial-gradient(circle at 75% 20%, rgba(198, 161, 91, 0.28), transparent 28rem),
    linear-gradient(135deg, var(--navy-950), #1B3048 62%, #1B3048);
}

.page-hero-industries {
  background:
    radial-gradient(circle at 16% 20%, rgba(213, 185, 125, 0.19), transparent 24rem),
    linear-gradient(135deg, #0B1F3A, #1B3048 60%, #103f7d);
}

.page-hero-contact {
  background:
    radial-gradient(circle at 78% 30%, rgba(213, 185, 125, 0.24), transparent 24rem),
    linear-gradient(135deg, #0B1F3A, #1B3048 65%, #1B3048);
}

.page-hero-legal {
  min-height: 430px;
}

/* About */
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 104px);
}

.story-copy h2 {
  margin-bottom: 23px;
}

.story-copy p {
  color: var(--ink-600);
}

.story-copy .lead-copy {
  color: var(--ink-800);
  font-size: 1.17rem;
  font-weight: 560;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy-950), #1B3048);
  box-shadow: var(--shadow-lg);
}

.story-card > img {
  width: min(78%, 360px);
  margin: 40px auto 18px;
  filter: drop-shadow(0 25px 38px rgba(0, 0, 0, 0.38));
}

.story-card-copy {
  padding: 27px 31px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.67);
}

.story-card-copy span {
  color: var(--cyan-400);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-card-copy h3 {
  margin: 8px 0 11px;
  color: #fff;
}

.story-card-copy p {
  font-size: 0.86rem;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.vision-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.vision-card::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(83, 107, 127, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(83, 107, 127, 0.025), 0 0 0 88px rgba(83, 107, 127, 0.018);
  content: "";
}

.vision-number {
  position: absolute;
  top: 24px;
  right: 29px;
  color: rgba(83, 107, 127, 0.12);
  font-size: 4.4rem;
  font-weight: 840;
  line-height: 1;
}

.vision-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 17px;
  background: var(--surface-blue);
  color: var(--blue-700);
}

.vision-icon .icon {
  width: 29px;
  height: 29px;
}

.vision-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.vision-card p:last-child {
  position: relative;
  z-index: 1;
  color: var(--ink-600);
}

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

.value-card {
  position: relative;
  min-height: 270px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
  border-color: rgba(83, 107, 127, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.value-card > span:first-child {
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--line-strong);
  font-size: 0.76rem;
  font-weight: 800;
}

.value-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
}

.value-card h3 {
  margin-bottom: 13px;
}

.value-card p {
  color: var(--ink-600);
  font-size: 0.89rem;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.approach-steps li:hover {
  border-color: rgba(213, 185, 125, 0.33);
  background: rgba(198, 161, 91, 0.08);
  transform: translateY(-4px);
}

.approach-steps li > span {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(255, 255, 255, 0.23);
  font-size: 0.75rem;
  font-weight: 800;
}

.approach-steps li > div > .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 27px;
  color: var(--cyan-400);
}

.approach-steps h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 1.15rem;
}

.approach-steps p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.governance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.governance-copy h2 {
  margin-bottom: 22px;
}

.governance-copy p:last-child {
  color: var(--ink-600);
  font-size: 1.01rem;
}

.governance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.governance-list > div {
  min-height: 145px;
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-soft);
}

.governance-list > div > .icon {
  width: 43px;
  height: 43px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.governance-list span {
  display: grid;
  gap: 5px;
}

.governance-list strong {
  color: var(--ink-900);
  font-size: 0.9rem;
}

.governance-list small {
  color: var(--ink-600);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Services */
.service-index-section {
  padding-bottom: 48px;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.service-index a {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink-800);
  font-size: 0.83rem;
  font-weight: 740;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.service-index a:hover {
  border-color: rgba(83, 107, 127, 0.35);
  color: var(--blue-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-index .icon {
  width: 29px;
  height: 29px;
  color: var(--blue-600);
}

.service-detail {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(52px, 8vw, 106px);
}

.service-detail-reverse .service-detail-copy {
  order: 2;
}

.service-detail-reverse .service-capability-card {
  order: 1;
}

.service-detail-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 29px;
  border-radius: 19px;
}

.service-detail-icon .icon {
  width: 34px;
  height: 34px;
}

.service-detail-copy h2 {
  margin-bottom: 22px;
}

.service-detail-copy > p:not(.eyebrow) {
  margin-bottom: 27px;
  color: var(--ink-600);
  font-size: 1.01rem;
}

.service-capability-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.service-capability-card::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.09);
  content: "";
}

.service-capability-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 23px;
  color: var(--blue-800);
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 0.87rem;
}

.check-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.check-list .icon {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  background: var(--cyan-100);
  color: var(--blue-700);
}

.service-outcomes-section {
  background: #fff;
}

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

.outcome-grid article {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.outcome-grid article > .icon {
  width: 35px;
  height: 35px;
  margin-bottom: 25px;
  color: var(--blue-600);
}

.outcome-grid h3 {
  margin-bottom: 12px;
}

.outcome-grid p {
  color: var(--ink-600);
  font-size: 0.83rem;
}

/* Industries */
.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-height) + 24px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.industry-card::after {
  position: absolute;
  right: -75px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(83, 107, 127, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(83, 107, 127, 0.018);
  content: "";
}

.industry-card:hover {
  border-color: rgba(83, 107, 127, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.industry-icon {
  width: 59px;
  height: 59px;
  margin-bottom: 27px;
  border-radius: 17px;
}

.industry-icon .icon {
  width: 29px;
  height: 29px;
}

.industry-card h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.industry-card > p {
  color: var(--ink-600);
  font-size: 0.92rem;
}

.industry-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-800);
  font-size: 0.82rem;
  font-weight: 680;
}

.industry-card li {
  position: relative;
  padding-left: 17px;
}

.industry-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-500);
  content: "";
}

.sector-challenge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(450px, 1.25fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.sector-challenge-layout > div:first-child h2 {
  margin-bottom: 22px;
}

.sector-challenge-layout > div:first-child p:last-child {
  color: var(--ink-600);
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.challenge-grid article {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.challenge-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 23px;
  color: var(--blue-600);
}

.challenge-grid h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.challenge-grid p {
  color: var(--ink-600);
  font-size: 0.81rem;
}

.sector-fit-section {
  padding-bottom: 34px;
}

.sector-fit {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.sector-fit-mark {
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(213, 185, 125, 0.37), transparent 65%),
    var(--navy-950);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  box-shadow: var(--shadow-md);
}

.sector-fit h2 {
  margin-bottom: 13px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.sector-fit p:last-child {
  color: var(--ink-600);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: clamp(48px, 7vw, 90px);
}

.contact-details > h2 {
  margin-bottom: 19px;
}

.contact-details > p:not(.eyebrow) {
  color: var(--ink-600);
}

.contact-card-stack {
  display: grid;
  gap: 11px;
  margin: 30px 0 26px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(83, 107, 127, 0.32);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-info-card > .icon:last-child {
  width: 17px;
  height: 17px;
  color: var(--blue-600);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.contact-info-icon .icon {
  width: 23px;
  height: 23px;
}

.contact-info-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
  line-height: 1.3;
}

.contact-info-card small {
  color: var(--ink-500);
  font-size: 0.67rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info-card strong {
  overflow: hidden;
  color: var(--ink-900);
  font-size: 0.86rem;
  text-overflow: ellipsis;
}

.contact-info-card em {
  color: var(--ink-500);
  font-size: 0.69rem;
  font-style: normal;
}

.location-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 145px 1fr;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface-soft);
}

.location-card > div:last-child {
  padding: 23px;
}

.location-card small {
  display: block;
  color: var(--blue-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  margin: 3px 0 4px;
  color: var(--ink-900);
}

.location-card p {
  margin-bottom: 11px;
  color: var(--ink-600);
  font-size: 0.76rem;
  line-height: 1.45;
}

.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 770;
}

.location-card a .icon {
  width: 14px;
  height: 14px;
}

.location-map {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background:
    linear-gradient(27deg, transparent 46%, rgba(255, 255, 255, 0.33) 47%, rgba(255, 255, 255, 0.33) 52%, transparent 53%),
    linear-gradient(-34deg, transparent 43%, rgba(255, 255, 255, 0.3) 44%, rgba(255, 255, 255, 0.3) 49%, transparent 50%),
    #dcecf6;
}

.location-map::before,
.location-map::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.16);
  content: "";
}

.location-map::before {
  width: 90px;
  height: 90px;
  top: 16px;
  left: -30px;
}

.location-map::after {
  width: 70px;
  height: 70px;
  right: -20px;
  bottom: 10px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
}

.map-pin .icon {
  width: 22px;
  height: 22px;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(29px, 5vw, 47px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.contact-form-card::after {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.08);
  content: "";
}

.form-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-heading > span:first-child {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-blue);
  color: var(--blue-700);
}

.form-heading > span:first-child .icon {
  width: 28px;
  height: 28px;
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.form-heading .eyebrow {
  margin-bottom: 6px;
}

.form-intro {
  position: relative;
  z-index: 1;
  margin: 19px 0 30px;
  color: var(--ink-600);
  font-size: 0.84rem;
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink-800);
  font-size: 0.75rem;
  font-weight: 740;
}

.form-field label > span[aria-hidden="true"] {
  color: var(--danger);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #fff;
  color: var(--ink-900);
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input,
.form-field select {
  min-height: 49px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 145px;
  padding: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(83, 107, 127, 0.1);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: rgba(216, 76, 99, 0.025);
}

.field-error {
  min-height: 1em;
  color: var(--danger);
  font-size: 0.67rem;
}

.consent-field label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-600);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.5;
}

.consent-field input {
  width: 17px;
  min-height: 17px;
  margin: 3px 0 0;
  accent-color: var(--blue-700);
}

.consent-field a {
  color: var(--blue-700);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button-submit {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.form-status {
  position: relative;
  z-index: 1;
  min-height: 1.4em;
  margin-top: 14px;
  color: var(--blue-700);
  font-size: 0.74rem;
  text-align: center;
}

.form-status.is-error {
  color: var(--danger);
}

.noscript-note {
  padding: 12px;
  border-radius: 9px;
  background: #fff5e7;
  color: #72500d;
  font-size: 0.75rem;
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-step-grid li {
  position: relative;
  min-height: 250px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.next-step-grid li > span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 820;
}

.next-step-grid li::after {
  position: absolute;
  top: 41px;
  left: 69px;
  width: calc(100% - 100px);
  height: 1px;
  background: linear-gradient(90deg, rgba(83, 107, 127, 0.35), transparent);
  content: "";
}

.next-step-grid h3 {
  margin-bottom: 12px;
}

.next-step-grid p {
  color: var(--ink-600);
  font-size: 0.83rem;
}

/* Privacy */
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: center;
  align-items: start;
  gap: clamp(45px, 7vw, 88px);
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.legal-nav strong {
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 0.78rem;
}

.legal-nav a {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--ink-600);
  font-size: 0.75rem;
  transition: background var(--transition), color var(--transition);
}

.legal-nav a:hover {
  background: #fff;
  color: var(--blue-700);
}

.legal-content section {
  padding-bottom: 32px;
  margin-bottom: 33px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 25px);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-content p {
  color: var(--ink-600);
}

.legal-content a {
  color: var(--blue-700);
  font-weight: 690;
}

.legal-note {
  padding: 22px;
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 12px 12px 0;
  background: var(--surface-blue);
  color: var(--ink-700);
  font-size: 0.82rem;
}

/* 404 */
.page-404 .topbar,
.page-404 .site-header,
.page-404 .site-footer,
.page-404 .back-to-top {
  display: none;
}

.not-found-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(198, 161, 91, 0.26), transparent 27rem),
    linear-gradient(135deg, var(--navy-950), #1B3048 65%, #1B3048);
  color: rgba(255, 255, 255, 0.72);
}

.not-found-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 70px 20px;
  text-align: center;
}

.not-found-code {
  margin-bottom: 7px;
  background: linear-gradient(180deg, #fff, rgba(213, 185, 125, 0.35));
  background-clip: text;
  color: transparent;
  font-size: clamp(7rem, 22vw, 14rem);
  font-weight: 860;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found-content .eyebrow {
  justify-content: center;
}

.not-found-content h1 {
  margin-bottom: 21px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.not-found-content > p:last-of-type {
  max-width: 600px;
  margin: 0 auto 29px;
}

.not-found-content .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal.reveal-delay-2 {
  transition-delay: 190ms;
}

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

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.56; transform: scale(0.99); }
  50% { opacity: 1; transform: scale(1.035); }
}

/* Responsive */
@media (max-width: 1100px) {
  :root { --container: 980px; }

  .primary-nav { gap: 12px; }
  .nav-link { padding-inline: 10px; }
  .hero-layout { grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.8fr); gap: 35px; }
  .status-chip { font-size: 0.68rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-grid > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .service-card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 310px; }
  .industry-pill-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 0.7fr 0.9fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
  .service-index { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: minmax(330px, 0.75fr) minmax(460px, 1.25fr); gap: 40px; }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; }

  .topbar p { display: none; }
  .topbar-inner { justify-content: flex-end; }

  .nav-toggle { display: grid; margin-left: auto; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 40;
    display: block;
    height: calc(100dvh - var(--header-height));
    padding: 23px 20px 35px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links { display: grid; gap: 5px; margin-bottom: 19px; }
  .nav-link { padding: 14px; font-size: 1rem; }
  .primary-nav .button { width: 100%; }

  .home-hero { min-height: auto; padding-top: 76px; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 780px; margin-inline: auto; }
  .hero-copy h1, .hero-lead { margin-inline: auto; }
  .hero-copy .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { width: min(82vw, 500px); margin-top: 20px; }
  .status-chip-one { left: 4%; }
  .status-chip-two { right: 1%; }

  .split-heading { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .process-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-intro { position: static; max-width: 700px; }
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { width: min(100%, 650px); margin-inline: auto; }
  .contact-cta { grid-template-columns: 1fr; gap: 27px; }
  .contact-cta-actions { grid-template-columns: auto auto; align-items: center; }

  .story-layout { grid-template-columns: 1fr; }
  .story-card { width: min(100%, 560px); margin-inline: auto; }
  .vision-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .governance-layout { grid-template-columns: 1fr; }
  .governance-copy { max-width: 720px; }

  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-reverse .service-detail-copy,
  .service-detail-reverse .service-capability-card { order: initial; }
  .service-capability-card { max-width: 650px; }

  .sector-challenge-layout { grid-template-columns: 1fr; }
  .sector-fit { grid-template-columns: 120px 1fr; }
  .sector-fit .button { grid-column: 2; justify-self: start; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-details { max-width: 700px; }
  .contact-form-card { max-width: 760px; width: 100%; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .topbar { display: none; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy small { display: none; }

  .home-hero { padding-top: 62px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 11vw, 3.45rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; justify-items: center; }
  .hero-visual { width: min(96vw, 450px); }
  .status-chip { padding: 8px 11px; font-size: 0.62rem; }
  .status-chip-three { right: 1%; }
  .hero-wave { bottom: -112px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }

  .service-card-grid,
  .values-grid,
  .industry-card-grid,
  .approach-steps,
  .outcome-grid,
  .next-step-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 295px; }
  .process-list li { grid-template-columns: 55px 1fr; gap: 18px; }
  .process-list::before { left: 27px; }
  .process-list li > span { width: 55px; height: 55px; }
  .tech-panel-body { min-height: 330px; }
  .node-main { width: 100px; height: 100px; }
  .node-a, .node-b, .node-c, .node-d { width: 76px; min-height: 62px; padding: 8px; }
  .tech-node small { font-size: 0.58rem; }
  .industry-pill-grid { grid-template-columns: 1fr; }
  .contact-cta-actions { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }

  .page-hero { min-height: 480px; padding: 65px 0 75px; }
  .page-hero h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
  .breadcrumb { margin-bottom: 25px; }
  .vision-card { padding: 34px 27px; }
  .governance-list { grid-template-columns: 1fr; }

  .service-index { grid-template-columns: 1fr; }
  .service-index a { min-height: 69px; }
  .service-capability-card { padding: 27px; }

  .industry-card { min-height: auto; padding: 29px; }
  .challenge-grid { grid-template-columns: 1fr; }
  .sector-fit { grid-template-columns: 1fr; }
  .sector-fit-mark { width: 120px; height: 105px; }
  .sector-fit .button { grid-column: 1; }

  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 145px; }
  .contact-form-card { padding: 27px 22px; }
  .form-heading { align-items: flex-start; }
  .form-heading > span:first-child { width: 49px; height: 49px; }
  .form-heading > span:first-child .icon { width: 23px; height: 23px; }
  .next-step-grid li { min-height: auto; }

  .legal-nav { grid-template-columns: 1fr 1fr; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 480px) {
  .section { padding: 68px 0; }
  .header-inner { gap: 12px; }
  .brand-copy strong { font-size: 0.92rem; }
  .nav-toggle { width: 43px; height: 43px; }
  .hero-visual { width: 100%; }
  .status-chip-one { top: 13%; left: 0; }
  .status-chip-two { top: 25%; right: -1%; }
  .status-chip-three { bottom: 12%; }
  .service-card, .value-card, .industry-card { padding: 25px; }
  .tech-panel-body { min-height: 300px; }
  .node-main { width: 88px; height: 88px; }
  .node-a, .node-b, .node-c, .node-d { width: 69px; min-height: 56px; }
  .node-a { left: 4%; }
  .node-b { right: 4%; }
  .node-c { left: 3%; }
  .node-d { right: 3%; }
  .tech-panel-header small { display: none; }
  .contact-cta { padding: 29px 23px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom > div { gap: 14px; }
  .approach-steps li { min-height: 240px; }
  .governance-list > div { min-height: auto; }
  .contact-info-card { grid-template-columns: 44px minmax(0, 1fr); }
  .contact-info-card > .icon:last-child { display: none; }
  .contact-info-icon { width: 44px; height: 44px; }
  .contact-info-card strong { font-size: 0.78rem; }
  .legal-nav { grid-template-columns: 1fr; }
}

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

@media print {
  .topbar, .site-header, .contact-cta-section, .site-footer, .back-to-top, .nav-toggle { display: none !important; }
  body { color: #000; }
  .page-hero, .section-dark { background: #fff !important; color: #000 !important; }
  .page-hero h1, .section-dark h2, .section-dark h3 { color: #000 !important; }
  .section { padding: 35px 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================
   ICCS Brand Refresh — Trusted Technology / Colour Palette V2
   Base: #0B1F3A · Accent: #C6A15B
   ========================================================== */
:root {
  --navy-950: #0B1F3A;
  --navy-900: #1B3048;
  --navy-850: #223A52;
  --navy-800: #2A4258;
  --blue-800: #1B3048;
  --blue-700: #536B7F;
  --blue-600: #C6A15B;
  --cyan-500: #C6A15B;
  --cyan-400: #D5B97D;
  --cyan-100: #F2E8D4;
  --ink-900: #0B1F3A;
  --ink-800: #1B3048;
  --ink-700: #222B35;
  --ink-600: #536B7F;
  --ink-500: #6B7E8E;
  --line: #CBD4DC;
  --line-strong: #B7C3CD;
  --surface: #F8F7F4;
  --surface-soft: #E7ECF1;
  --surface-blue: #EEF1F3;
  --shadow-sm: 0 8px 26px rgba(11, 31, 58, 0.07);
  --shadow-md: 0 18px 52px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 30px 90px rgba(11, 31, 58, 0.22);
}

html { color-scheme: light; }
body {
  background: var(--surface);
  color: var(--ink-700);
  font-family: Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
::selection { background: #C6A15B; color: #0B1F3A; }
:focus-visible { outline-color: #C6A15B; }

.topbar { background: #0B1F3A; color: rgba(255,255,255,.72); }
.site-header { background: rgba(248,247,244,.96); border-bottom-color: rgba(203,212,220,.55); }
.site-header.is-scrolled { background: rgba(248,247,244,.985); border-color: #CBD4DC; box-shadow: 0 12px 36px rgba(11,31,58,.08); }
.brand { gap: 13px; }
.brand img { filter: none; width: 52px; height: 52px; }
.brand-copy { gap: 0; min-width: 164px; }
.brand-copy small { color: #C6A15B; font-size: .54rem; font-weight: 850; letter-spacing: .22em; line-height: 1.1; }
.brand-copy strong { color: #0B1F3A; font-size: 1.04rem; font-weight: 850; letter-spacing: -.02em; line-height: 1.15; text-transform: uppercase; }
.brand-copy em { color: #536B7F; font-size: .49rem; font-style: normal; font-weight: 700; letter-spacing: .095em; line-height: 1.2; text-transform: uppercase; }
.nav-link { color: #536B7F; border-radius: 8px; }
.nav-link::after { background: #C6A15B; }
.nav-link:hover, .nav-link.is-active { background: rgba(198,161,91,.10); color: #0B1F3A; }
.nav-toggle { background: #F8F7F4; border-color: #CBD4DC; color: #0B1F3A; }

.button {
  border-color: #C6A15B;
  background: #C6A15B;
  color: #0B1F3A;
  box-shadow: 0 12px 26px rgba(11,31,58,.16);
}
.button:hover { filter: none; background: #D1AF70; border-color: #D1AF70; box-shadow: 0 18px 34px rgba(11,31,58,.20); }
.button-dark { border-color: #0B1F3A; background: #0B1F3A; color: #fff; }
.button-dark:hover { background: #1B3048; border-color: #1B3048; }
.button-white { border-color: #fff; background: #fff; color: #0B1F3A; }
.button-secondary, .button-ghost-light { color: #fff; border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.06); }
.button-secondary:hover, .button-ghost-light:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.52); }

.eyebrow { color: #C6A15B; }
.eyebrow-dark { color: #536B7F; }
.eyebrow-dark > span:first-child { background: #C6A15B; }
.section-tinted { background: radial-gradient(circle at 94% 4%, rgba(198,161,91,.10), transparent 27rem), #E7ECF1; }
.section-dark { background: radial-gradient(circle at 8% 8%, rgba(198,161,91,.12), transparent 25rem), radial-gradient(circle at 90% 100%, rgba(83,107,127,.23), transparent 31rem), #0B1F3A; }

.hero,
.page-hero,
.page-hero-services,
.page-hero-industries,
.page-hero-contact {
  background:
    radial-gradient(circle at 78% 30%, rgba(198,161,91,.17), transparent 27rem),
    radial-gradient(circle at 16% 12%, rgba(83,107,127,.22), transparent 31rem),
    linear-gradient(135deg, #0B1F3A 0%, #122A43 58%, #1B3048 100%);
}
.hero-grid-overlay, .page-hero-grid, .not-found-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
}
.hero-copy h1 { letter-spacing: -.045em; }
.hero-lead { color: rgba(255,255,255,.76); }
.hero-proof .icon, .status-chip .icon { color: #C6A15B; }
.hero-visual::before { background: radial-gradient(circle, rgba(198,161,91,.16), transparent 66%); }
.logo-core { border-color: rgba(198,161,91,.28); background: rgba(255,255,255,.035); box-shadow: 0 0 0 13px rgba(255,255,255,.018), 0 35px 70px rgba(3,13,28,.46), inset 0 0 42px rgba(255,255,255,.045); }
.logo-core img { width: 72%; filter: drop-shadow(0 18px 28px rgba(0,0,0,.28)); }
.logo-halo { border-color: rgba(198,161,91,.36); box-shadow: 0 0 40px rgba(198,161,91,.17); }
.orbit { border-color: rgba(198,161,91,.28); }
.orbit span { background: #C6A15B; border-color: #F8F7F4; box-shadow: 0 0 18px rgba(198,161,91,.58); }
.status-chip { background: rgba(11,31,58,.76); border-color: rgba(198,161,91,.23); }
.hero-wave { background: #F8F7F4; }
.trust-strip { background: #F8F7F4; }
.trust-grid > div > .icon { color: #C6A15B; }

.service-card, .vision-card, .value-card, .contact-card, .industry-card, .story-card, .faq-item, .service-detail-card { background: #fff; border-color: #CBD4DC; }
.service-card::before { background: radial-gradient(circle at 100% 0, rgba(198,161,91,.16), transparent 70%); }
.service-card:hover { border-color: rgba(198,161,91,.58); }
.service-icon, .industry-icon, .value-icon, .service-detail-icon, .contact-info-icon {
  background: #0B1F3A;
  color: #C6A15B;
  box-shadow: 0 12px 24px rgba(11,31,58,.16);
}
.service-card a, .text-link { color: #1B3048; }
.service-card a:hover, .text-link:hover { color: #0B1F3A; }
.process-list::before { background: linear-gradient(#C6A15B, rgba(198,161,91,.08)); }
.process-list li > span { background: #0B1F3A; color: #C6A15B; border-color: #C6A15B; }
.tech-panel { border-color: #CBD4DC; box-shadow: 0 22px 54px rgba(11,31,58,.12); }
.tech-panel-header { background: #0B1F3A; }
.tech-panel-header > span:first-child { background: #C6A15B; }

.site-footer { background: #0B1F3A; }
.footer-glow { background: rgba(198,161,91,.10); }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: #C6A15B; }
.brand-footer .brand-copy em { color: #E7ECF1; opacity: .82; }
.footer-list a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: #C6A15B; }
.icon-button:hover { border-color: rgba(198,161,91,.48); background: rgba(198,161,91,.09); }
.back-to-top:hover { background: #1B3048; color: #C6A15B; }

.breadcrumb { color: rgba(255,255,255,.54); }
.story-card img { filter: none; }

input:focus, textarea:focus, select:focus { border-color: #C6A15B; box-shadow: 0 0 0 4px rgba(198,161,91,.11); }
input[type="checkbox"] { accent-color: #0B1F3A; }

/* Remove residual electric-blue/cyan accents from decorative components. */
.progress-bar, .timeline-line, .accent-line { background: #C6A15B !important; }

@media (max-width: 860px) {
  .brand-copy em { display: none; }
  .brand-copy { min-width: 0; }
  .primary-nav { background: #F8F7F4; }
}
