@font-face {
  font-family: "Vazirmatn";
  src: url("font/Vazirmatn[wght].woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --canvas: #f5f8f8;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --surface-soft: #edf4f4;
  --surface-strong: #e3eeee;
  --ink: #102a2e;
  --text: #38535a;
  --muted: #60777c;
  --line: #d5e2e4;
  --line-strong: #b8cdd0;
  --teal: #1b96a6;
  --teal-interactive: #147887;
  --teal-strong: #126f7c;
  --teal-soft: #ddf1f3;
  --trust: #3daa55;
  --trust-soft: #b3dabe;
  --red: #d71d29;
  --red-soft: #fbe6e8;
  --on-brand: #ffffff;
  --footer: #082329;
  --footer-surface: #0c2c32;
  --footer-line: #24464c;
  --footer-text: #b8cbce;
  --section-dark: #0a2a30;
  --section-dark-raised: #0d3137;
  --shadow-sm: 0 8px 24px rgba(17, 51, 57, 0.06);
  --shadow-md: 0 18px 48px rgba(17, 51, 57, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --container: 1200px;
  --section-space: 104px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --header-height: 76px;
  --z-base: 0;
  --z-sticky: 40;
  --z-menu: 80;
  --z-overlay: 100;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --canvas: #071c20;
  --surface: #0b272c;
  --surface-raised: #103137;
  --surface-soft: #12373d;
  --surface-strong: #174149;
  --ink: #f2f7f7;
  --text: #c2d2d4;
  --muted: #91aaae;
  --line: #25474d;
  --line-strong: #356069;
  --teal: #55c0cc;
  --teal-strong: #87d7df;
  --teal-soft: #123c43;
  --trust: #8bc4dc;
  --trust-soft: #153b4a;
  --red: #ff6973;
  --red-soft: #43252b;
  --on-brand: #061d21;
  --footer: #04171a;
  --footer-surface: #082329;
  --footer-line: #1f4147;
  --footer-text: #afc5c8;
  --section-dark: #061b1f;
  --section-dark-raised: #0a292f;
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.16);
  --shadow-md: 0 22px 52px rgba(0, 0, 0, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 220ms var(--ease),
    color 220ms var(--ease);
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
figure,
dl,
dd {
  margin-top: 0;
}

p {
  color: var(--text);
}

::selection {
  background: var(--teal-interactive);
  color: #ffffff;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 52%, transparent);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  position: relative;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--surface);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 480ms var(--ease),
    transform 480ms var(--ease);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* Header */

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: var(--z-sticky);
  min-height: var(--header-height);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
}

.nav-wrap {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 146px;
  min-height: 44px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  inset-block-end: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.main-nav a:hover {
  color: var(--teal-strong);
  background: var(--surface-soft);
}

.main-nav a.active {
  color: var(--teal-strong);
  font-weight: 800;
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.theme-toggle,
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease);
}

.theme-toggle {
  position: relative;
  display: block;
  color: var(--teal-strong);
  overflow: hidden;
}

.theme-toggle:hover,
.nav-toggle:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
}

.theme-toggle svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  transform: none;
  will-change: opacity;
  transition: opacity 200ms ease-in-out;
}

.theme-toggle .sun-icon {
  opacity: 0;
}

html[data-theme="dark"] .theme-toggle .moon-icon {
  opacity: 0;
}

html[data-theme="dark"] .theme-toggle .sun-icon {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle,
  .theme-toggle svg {
    transition-duration: 1ms;
  }
}

.nav-toggle {
  display: none;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 180ms var(--ease),
    opacity 180ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 18px;
  border: 1px solid var(--teal-interactive);
  border-radius: var(--radius-sm);
  background: var(--teal-interactive);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.header-cta:hover {
  border-color: var(--teal-strong);
  background: var(--teal-strong);
  box-shadow: var(--shadow-sm);
}

.inline-arrow,
.header-cta .inline-arrow,
.button .inline-arrow,
.text-link .inline-arrow,
.map-link .inline-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Shared typography and controls */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}

h1,
h2,
h3 {
  color: var(--ink);
}

h1,
h2 {
  letter-spacing: -0.025em;
}

h1 em,
h2 em {
  color: var(--teal-strong);
  font-style: normal;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  border-color: var(--teal-interactive);
  background: var(--teal-interactive);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 120, 135, 0.18);
}

.button-primary:hover {
  border-color: var(--teal-strong);
  background: var(--teal-strong);
}

.button-quiet {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--teal);
  color: var(--teal-strong);
  background: var(--teal-soft);
}

.button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: #0b5863;
}

.button-light:hover {
  background: #effbfc;
  box-shadow: 0 12px 30px rgba(5, 52, 59, 0.16);
}

.section-heading,
.delivery-heading,
.architecture-head,
.credentials-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 48px;
}

.section-heading h2,
.delivery-heading h2,
.architecture-head h2,
.credentials-head h2,
.center-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
  line-height: 1.45;
}

.section-heading > p,
.delivery-heading > p,
.architecture-head > p {
  max-width: 520px;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 2;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading > p:last-child {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 2;
}

/* Home hero */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 54px 72px;
  background:
    radial-gradient(ellipse at 50% 28%, color-mix(in srgb, var(--teal) 11%, transparent) 0, transparent 54%),
    linear-gradient(color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 72px 72px, 72px 72px, auto;
  background-position: center, center, center, center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(78vw, 980px);
  aspect-ratio: 1;
  inset-inline-start: 50%;
  inset-block-start: -760px;
  border: 1px solid color-mix(in srgb, var(--teal) 25%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px color-mix(in srgb, var(--teal) 4%, transparent),
    0 0 0 148px color-mix(in srgb, var(--teal) 2%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 4px;
  inset-inline-end: max(24px, calc((100vw - var(--container)) / 2));
  inset-block-end: -1px;
  background: var(--red);
}

.hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
}

.hero-content {
  width: min(100%, 930px);
  max-width: none;
  text-align: center;
}

.hero-brand-signature {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
  padding: 8px 18px 8px 10px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 82%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-raised) 88%, transparent);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--ink) 8%, transparent);
  backdrop-filter: blur(12px);
}

.hero-brand-trace {
  position: absolute;
  z-index: 0;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  overflow: visible;
  pointer-events: none;
}

.hero-brand-trace rect {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 9 91;
  stroke-dashoffset: 100;
  opacity: 0.78;
  filter: drop-shadow(0 0 3px color-mix(in srgb, var(--red) 50%, transparent));
  animation: hero-brand-border-trace 7.5s linear infinite;
}

.hero-brand-signature > :not(.hero-brand-trace) {
  position: relative;
  z-index: 1;
}

@keyframes hero-brand-border-trace {
  to { stroke-dashoffset: 0; }
}

.hero-brand-mark {
  width: 76px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4px;
  border-radius: 9px;
  background: #ffffff;
}

.hero-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-brand-name {
  display: grid;
  justify-items: start;
  line-height: 1;
}

.hero-brand-name strong {
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.hero-brand-name small {
  margin-top: 7px;
  color: var(--teal-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-content > .eyebrow {
  justify-content: center;
}

.hero h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 900;
  line-height: 1.28;
}

.hero-copy {
  max-width: 730px;
  margin-inline: auto;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 2;
}

.hero-actions,
.inner-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .hero-actions {
  justify-content: center;
}

.hero-capabilities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-capabilities span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-capabilities span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-inline-end: 14px;
  border-radius: 50%;
  background: var(--red);
}

.hero-capabilities b {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  width: min(100%, 620px);
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  min-width: 128px;
  display: grid;
  gap: 1px;
  padding-inline: 22px;
  border-inline-start: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-inline-start: 0;
}

.hero-proof > div:last-child {
  border-inline-start: 0;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  display: none;
}

.ecosystem-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--teal-soft) 72%, transparent), transparent 42%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 24px 24px, 24px 24px, auto;
  box-shadow: var(--shadow-md);
}

.ecosystem-scene::before,
.ecosystem-scene::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid color-mix(in srgb, var(--teal) 46%, transparent);
  border-radius: 50%;
}

.ecosystem-scene::after {
  inset: 92px;
  border-style: dashed;
  border-color: color-mix(in srgb, var(--teal) 34%, transparent);
}

.eco-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.32;
}

.glow-teal {
  inset-block-start: -45px;
  inset-inline-start: -40px;
  background: var(--teal-soft);
}

.glow-red {
  width: 90px;
  height: 90px;
  inset-inline-end: -30px;
  inset-block-end: -28px;
  background: var(--red-soft);
}

.eco-ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.eco-ring i {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--teal);
}

.eco-ring i:nth-child(1) {
  inset-block-start: 30px;
  inset-inline-start: 50%;
}

.eco-ring i:nth-child(2) {
  inset-inline-end: 27px;
  inset-block-start: 51%;
}

.eco-ring i:nth-child(3) {
  inset-inline-start: 19%;
  inset-block-end: 44px;
}

.eco-core {
  position: absolute;
  z-index: 3;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  width: 174px;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 10px solid var(--surface);
  border-radius: 32px 18px 32px 18px;
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 22px 45px rgba(13, 96, 108, 0.24);
  transform: translate(-50%, -50%);
}

.core-monogram {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.14);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
}

.eco-core b {
  font-size: 20px;
  font-weight: 850;
}

.eco-core small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.core-pulse {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: -34px;
  min-width: 150px;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding-inline: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 10px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.core-pulse i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24a36a;
  box-shadow: 0 0 0 4px color-mix(in srgb, #24a36a 15%, transparent);
}

.eco-module {
  position: absolute;
  z-index: 2;
  width: 150px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
}

.eco-module::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 118px;
  height: 1px;
  background: color-mix(in srgb, var(--teal) 52%, transparent);
  transform-origin: center;
}

.module-process {
  inset-inline-start: 18px;
  inset-block-start: 64px;
}

.module-process::after {
  inset-inline-start: 100%;
  inset-block-start: 68px;
  transform: rotate(-31deg);
}

.module-finance {
  inset-inline-end: 18px;
  inset-block-start: 68px;
}

.module-finance::after {
  inset-inline-end: 100%;
  inset-block-start: 67px;
  transform: rotate(31deg);
}

.module-human {
  inset-inline-end: 20px;
  inset-block-end: 28px;
}

.module-human::after {
  inset-inline-end: 100%;
  inset-block-start: 9px;
  transform: rotate(-35deg);
}

.module-insight {
  inset-inline-start: 18px;
  inset-block-end: 28px;
}

.module-insight::after {
  inset-inline-start: 100%;
  inset-block-start: 8px;
  transform: rotate(35deg);
}

.module-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.module-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eco-module div {
  min-width: 0;
}

.eco-module small {
  display: block;
  margin-bottom: 2px;
  color: var(--teal-strong);
  font-size: 11px;
  font-weight: 800;
  direction: ltr;
  text-align: right;
}

.eco-module b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

/* Homepage enterprise architecture illustration */

.hero-blueprint {
  position: absolute;
  inset: 0;
  min-height: 548px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-blueprint::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 76px;
  height: 3px;
  inset-inline-end: 22px;
  inset-block-start: 0;
  background: var(--red);
}

.blueprint-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.blueprint-heading {
  display: grid;
}

.blueprint-heading small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.blueprint-heading strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.5;
}

.blueprint-state {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.blueprint-state i,
.blueprint-platform-state i,
.blueprint-foot i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #24a36a;
  box-shadow: 0 0 0 4px color-mix(in srgb, #24a36a 14%, transparent);
}

.blueprint-board {
  min-height: 0;
  padding: 18px 20px 16px;
  background: var(--canvas);
}

.blueprint-stage-head {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.blueprint-stage-head > span {
  width: 36px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--teal-strong);
  font-size: 14px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.blueprint-stage-head > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.blueprint-stage-head small {
  color: var(--muted);
  font-size: 12px;
}

.blueprint-stage-head b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.blueprint-domains {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.blueprint-domain {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.blueprint-domain-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.blueprint-domain-icon svg,
.blueprint-outcome-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blueprint-domain > div {
  min-width: 0;
  display: grid;
}

.blueprint-domain small {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 850;
  direction: ltr;
  text-align: right;
}

.blueprint-domain b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}

.blueprint-flow {
  position: relative;
  height: 28px;
  display: grid;
  place-items: center;
}

.blueprint-flow::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  inset-inline-start: 50%;
  background: var(--teal);
}

.blueprint-flow::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  inset-inline-start: calc(50% - 3px);
  inset-block-end: -3px;
  border: 2px solid var(--canvas);
  border-radius: 50%;
  background: var(--teal);
}

.blueprint-flow > span {
  position: relative;
  z-index: 1;
  padding-inline: 9px;
  background: var(--canvas);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.blueprint-platform {
  min-height: 78px;
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid #31565d;
  border-radius: 12px;
  background: var(--section-dark);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(6, 39, 45, 0.13);
}

.blueprint-brand {
  height: 52px;
  display: grid;
  place-items: center;
  padding: 6px 8px;
  border-radius: 8px;
  background: #ffffff;
}

.blueprint-brand img {
  width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.blueprint-platform-copy {
  min-width: 0;
  display: grid;
}

.blueprint-platform-copy small {
  color: #82ccd4;
  font-size: 12px;
}

.blueprint-platform-copy strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.65;
}

.blueprint-platform-state {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-inline: 9px;
  border: 1px solid rgba(126, 214, 223, 0.22);
  border-radius: 999px;
  color: #c8e3e6;
  font-size: 12px;
  font-weight: 700;
}

.blueprint-flow-output {
  height: 28px;
}

.blueprint-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.blueprint-outcome {
  min-width: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.blueprint-outcome-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--teal-strong);
}

.blueprint-outcome > div {
  min-width: 0;
  display: grid;
}

.blueprint-outcome b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
  white-space: normal;
}

.blueprint-outcome small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  white-space: normal;
}

.blueprint-foot {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-inline: 20px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.blueprint-foot > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blueprint-foot > span:last-child {
  color: var(--teal-strong);
  direction: ltr;
  font-size: 12px;
  font-weight: 850;
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.trust-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-inner > p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.trust-points {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-points span {
  position: relative;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.trust-points span::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-inline-end: 9px;
  border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
}

/* Home solutions */

.solutions {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.solutions .section-heading {
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--ink) 6%, transparent);
}

.solution-card {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 30px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition:
    background-color 180ms var(--ease),
    color 180ms var(--ease);
}

.solution-card::before {
  content: "";
  position: absolute;
  width: 2px;
  inset-block: 24px;
  inset-inline-start: 0;
  background: var(--red);
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.solution-card:nth-child(odd) {
  border-inline-end: 1px solid var(--line);
}

.solution-card:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.solution-card.featured {
  background: transparent;
}

.solution-card:hover,
.solution-card:focus-visible {
  background: color-mix(in srgb, var(--teal-soft) 34%, var(--surface));
}

.solution-card:focus-visible {
  z-index: 1;
  outline: 3px solid color-mix(in srgb, var(--teal) 30%, transparent);
  outline-offset: -3px;
}

.solution-card:hover::before,
.solution-card:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--teal) 24%, var(--line));
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-teal,
.icon-blue,
.icon-red,
.icon-gold {
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.card-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.solution-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.55;
}

.solution-card p {
  max-width: 480px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}

.card-foot {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.card-foot b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  direction: ltr;
  letter-spacing: 0.08em;
}

.card-foot span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 750;
}

.about-link i,
.contact-button i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--teal-strong);
  font-style: normal;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.card-foot svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.about-link svg,
.contact-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card:hover .card-foot svg,
.solution-card:focus-visible .card-foot svg {
  transform: translateX(-2px);
}

/* Home services */

.service-section {
  overflow: hidden;
  background: var(--section-dark);
  color: #ffffff;
}

.service-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.045) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, 0.03) 50%, transparent 50.1%);
  pointer-events: none;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 88px;
}

.service-intro {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 48px);
}

.service-intro .eyebrow {
  color: #7ed6df;
}

.service-intro h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.45;
}

.service-intro h2 em {
  color: #8ce0e7;
}

.service-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin-bottom: 24px;
  color: #b9ced1;
  font-size: 16px;
  line-height: 2;
}

.text-link,
.about-link,
.map-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-strong);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.service-intro .text-link {
  color: #7ed6df;
}

.text-link:hover,
.about-link:hover,
.map-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-item {
  min-height: 128px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  transition:
    background-color 220ms var(--ease),
    border-color 220ms var(--ease);
}

.service-item > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 214, 223, 0.32);
  border-radius: 50%;
  color: #7ed6df;
  font-style: normal;
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 220ms var(--ease);
}

.service-item > i svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item > div {
  transition: color 180ms var(--ease);
}

.service-item:hover,
.service-item:focus-visible {
  background: rgba(126, 214, 223, 0.055);
  border-color: rgba(126, 214, 223, 0.38);
}

.service-item:hover > i,
.service-item:focus-visible > i {
  border-color: rgba(126, 214, 223, 0.7);
  background: rgba(126, 214, 223, 0.14);
  color: #bff5fa;
  transform: translateX(-3px);
}

.service-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 214, 223, 0.28);
  border-radius: 10px;
  background: rgba(27, 150, 166, 0.12);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease);
}

.service-item:hover > span,
.service-item:focus-visible > span {
  border-color: rgba(126, 214, 223, 0.54);
  background: rgba(126, 214, 223, 0.18);
  color: #d9ffff;
}

.service-item h3 {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
  transition: color 180ms var(--ease);
}

.service-item p {
  margin-bottom: 0;
  color: #a9c2c6;
  font-size: 15px;
  line-height: 1.8;
  transition: color 180ms var(--ease);
}

.service-item:hover h3,
.service-item:focus-visible h3 {
  color: #bff5fa;
}

.service-item:hover p,
.service-item:focus-visible p {
  color: #c2d6d9;
}

/* Customers */

.customers {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.client-directory {
  display: grid;
  justify-items: center;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.client-directory-content {
  width: 100%;
  overflow: hidden;
  will-change: height, opacity, transform;
}

.client-directory:not([open]) .client-directory-content {
  display: none;
}

.client-directory summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 20px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--teal-strong);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease);
}

.client-directory summary::-webkit-details-marker {
  display: none;
}

.client-directory summary small {
  padding-right: 10px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.client-directory summary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 200ms var(--ease);
}

.client-directory summary:hover,
.client-directory[open] summary {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-strong);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--teal) 13%, transparent);
}

.client-directory[open] summary svg {
  transform: rotate(180deg);
}

.logo-grid-more {
  width: 100%;
  margin-top: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.client-directory.is-expanding .logo-grid-more figure {
  animation: client-logo-reveal 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.client-directory.is-expanding .logo-grid-more figure:nth-child(2) { animation-delay: 45ms; }
.client-directory.is-expanding .logo-grid-more figure:nth-child(3) { animation-delay: 90ms; }
.client-directory.is-expanding .logo-grid-more figure:nth-child(4) { animation-delay: 135ms; }
.client-directory.is-expanding .logo-grid-more figure:nth-child(5) { animation-delay: 180ms; }

@keyframes client-logo-reveal {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.client-directory-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.logo-grid figure {
  min-height: 150px;
  display: grid;
  grid-template-rows: 94px auto;
  padding: 12px 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
  transition:
    border-color 200ms var(--ease),
    background-color 200ms var(--ease),
    box-shadow 200ms var(--ease),
    transform 200ms var(--ease);
}

.logo-grid figure:hover {
  border-color: color-mix(in srgb, var(--teal) 56%, var(--line));
  background: var(--teal-soft);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 15px;
  border-radius: 10px;
  background: #ffffff;
}

.logo-mark::before {
  content: "";
  position: absolute;
  width: min(62%, 118px);
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--teal) 20%, var(--line));
  border-radius: 7px;
  background:
    linear-gradient(color-mix(in srgb, var(--teal) 23%, transparent), color-mix(in srgb, var(--teal) 23%, transparent)) center / 44% 3px no-repeat,
    linear-gradient(color-mix(in srgb, var(--teal) 16%, transparent), color-mix(in srgb, var(--teal) 16%, transparent)) center 65% / 64% 3px no-repeat,
    color-mix(in srgb, var(--surface-soft) 78%, #ffffff);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
}

.logo-mark img {
  position: relative;
  z-index: 1;
  max-width: 78%;
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition:
    filter 200ms var(--ease),
    opacity 200ms var(--ease),
    transform 200ms var(--ease);
}

.logo-grid figure.is-logo-loading .logo-mark::before {
  opacity: 1;
  animation: partner-logo-skeleton 1.5s ease-in-out infinite;
}

.logo-grid figure.is-logo-loading .logo-mark img {
  opacity: 0;
}

@keyframes partner-logo-skeleton {
  0%, 100% { transform: scale(0.96); opacity: 0.58; }
  50% { transform: scale(1); opacity: 0.95; }
}

/* A few supplied marks include generous internal whitespace; enlarge only those marks. */
.logo-grid figure.logo-zoom .logo-mark img {
  max-width: 92%;
  max-height: 76px;
}

.logo-grid figure.logo-zoom .logo-mark {
  padding: 9px;
}

.logo-grid figure.logo-zoom-xl .logo-mark img {
  max-width: 98%;
  max-height: 84px;
}

.logo-grid figure.logo-zoom-xl .logo-mark {
  padding: 4px;
}

.logo-grid figure:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.025);
}

.logo-grid figcaption {
  align-self: end;
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

/* Selected projects carousel */

.selected-projects {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.selected-projects-heading {
  margin-bottom: 30px;
}

.project-carousel {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.project-carousel::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 3px;
  inset-inline-end: 32px;
  inset-block-start: -1px;
  background: var(--red);
}

.project-carousel:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 30%, transparent);
  outline-offset: 4px;
}

.project-carousel-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 5px);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.project-carousel-viewport:active {
  cursor: grabbing;
}

.project-carousel-track {
  position: relative;
}

.project-slide {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
}

.project-slide[hidden] {
  display: none;
}

.project-slide.is-transitioning {
  position: absolute;
  inset: 0;
  width: 100%;
}

.project-story-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(140, 224, 231, 0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(18, 63, 69, 0.84), rgba(6, 31, 35, 0.98)),
    var(--section-dark);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(151, 205, 212, 0.18);
}

.project-story-top > span {
  min-width: 42px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(126, 214, 223, 0.27);
  border-radius: 999px;
  color: #8ce0e7;
  font-size: 13px;
  font-weight: 850;
}

.project-story-top small {
  color: #8ce0e7;
  font-size: 12px;
  font-weight: 750;
}

.project-story-copy {
  margin-block: auto;
  padding-block: 32px;
}

.project-client-name {
  margin-bottom: 9px;
  color: #8ce0e7;
  font-size: 13px;
  font-weight: 750;
}

.project-story-copy h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.55;
}

.project-story-copy > p:last-child {
  margin-bottom: 0;
  color: #b8ced1;
  font-size: 15px;
  line-height: 2;
}

.project-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-story-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(151, 205, 212, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c4d9dc;
  font-size: 11px;
  font-weight: 650;
}

.project-partner-panel {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  margin: 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(color-mix(in srgb, var(--line) 35%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 35%, transparent) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 34px 34px, 34px 34px, auto;
}

.project-partner-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, transparent);
  border-radius: 50%;
}

.project-partner-panel > small,
.project-partner-panel > figcaption,
.project-partner-logo {
  position: relative;
  z-index: 1;
}

.project-partner-panel > small {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 800;
}

.project-partner-logo {
  width: min(100%, 310px);
  height: 176px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(7, 28, 32, 0.1);
}

.project-partner-logo img {
  max-width: 100%;
  max-height: 126px;
  object-fit: contain;
}

.project-partner-panel figcaption {
  max-width: 420px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.8;
  text-align: center;
}

.project-carousel-footer {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px 0;
}

.project-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
}

.project-carousel-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.project-carousel-button:hover,
.project-carousel-button:focus-visible {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.project-carousel-button:active {
  transform: scale(0.95);
}

.project-carousel-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.project-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: width 220ms var(--ease), background 220ms var(--ease);
}

.project-carousel-dots button.is-active {
  width: 28px;
  background: var(--teal);
}

.project-carousel-dots button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 28%, transparent);
  outline-offset: 3px;
}

.project-carousel-timing {
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-carousel-timing > span {
  width: min(22vw, 230px);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.project-carousel-timing > span i {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right center;
}

.project-carousel-timing small {
  min-width: 44px;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.project-carousel-timing b {
  color: var(--ink);
  font-size: 14px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Home about */

.about {
  overflow: hidden;
  background: var(--canvas);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 88px;
}

.about-evidence {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.about-evidence::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  inset-inline-start: -26px;
  inset-block-end: -28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.history-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #0b2d33;
  color: #ffffff;
}

.history-card > div {
  display: grid;
}

.history-card small {
  color: #91cdd3;
  font-size: 13px;
}

.history-card strong {
  color: #ffffff;
  font-size: 39px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.history-card > span {
  max-width: 190px;
  color: #d3e4e6;
  font-size: 13px;
  line-height: 1.7;
}

.history-card p {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: #86bfc5;
  font-size: 12px;
}

.credential-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
}

.credential-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--teal);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.credential-strip div {
  display: grid;
}

.credential-strip b {
  font-size: 13px;
}

.credential-strip small {
  color: var(--muted);
  font-size: 12px;
}

.certificate-rail {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--canvas);
}

.certificate-rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.certificate-rail-head span {
  color: var(--teal-strong);
  font-size: 11px;
  font-weight: 850;
}

.certificate-rail-head b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.certificate-rail-body {
  min-height: 178px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
}

.certificate-thumb-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.certificate-thumb-list button {
  min-width: 44px;
  min-height: 44px;
  overflow: hidden;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  opacity: 0.62;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), opacity 180ms var(--ease), transform 180ms var(--ease);
}

.certificate-thumb-list button:hover,
.certificate-thumb-list button:focus-visible,
.certificate-thumb-list button.is-active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 13%, transparent);
  opacity: 1;
}

.certificate-thumb-list button:active {
  transform: scale(0.96);
}

.certificate-thumb-list img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.certificate-preview {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

.certificate-preview-paper {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 28, 32, 0.08);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.certificate-preview:hover .certificate-preview-paper,
.certificate-preview:focus-visible .certificate-preview-paper {
  border-color: var(--teal);
  box-shadow: 0 14px 30px rgba(7, 28, 32, 0.14);
  transform: translateY(-2px);
}

.certificate-preview-paper img {
  width: 100%;
  height: 138px;
  display: block;
  object-fit: contain;
}

.certificate-preview-meta {
  display: grid;
  gap: 2px;
  text-align: center;
}

.certificate-preview-meta b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.certificate-preview-meta small {
  color: var(--muted);
  font-size: 10px;
}

.certificate-rail-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 800;
}

.certificate-rail-link svg,
.certificate-lightbox-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.certificate-lightbox {
  width: min(92vw, 880px);
  max-height: 92vh;
  overflow: auto;
  margin: auto;
  padding: 18px 18px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.certificate-lightbox::backdrop {
  background: rgba(3, 18, 21, 0.78);
  backdrop-filter: blur(4px);
}

.certificate-lightbox img {
  width: 100%;
  max-height: calc(92vh - 88px);
  display: block;
  object-fit: contain;
}

.certificate-lightbox p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.certificate-lightbox-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-inline-start: auto;
  margin-bottom: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.certificate-lightbox-close:hover,
.certificate-lightbox-close:focus-visible {
  border-color: var(--teal);
  color: var(--teal-strong);
}

.about-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.48;
}

.about-lead {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 550;
  line-height: 2.05;
}

.about-detail {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 2.05;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 24px 14px;
}

.about-values span,
.custom-benefits span,
.framework-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}

.about-link {
  gap: 12px;
}

.about-link:hover i {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
  transform: translateX(-2px);
}

/* Contact callout */

.contact {
  position: relative;
  padding-block: 0;
  background: var(--canvas);
}

.contact-card {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  overflow: hidden;
  padding: 46px 56px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    linear-gradient(var(--red) 0 0) 9% 100% / 34px 3px no-repeat,
    linear-gradient(var(--red) 0 0) 21% 100% / 58px 3px no-repeat,
    linear-gradient(var(--red) 0 0) 48% 100% / 42px 3px no-repeat,
    var(--teal-interactive);
  color: #ffffff;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  inset-inline-end: -94px;
  inset-block-start: -126px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 3px;
  inset-inline-start: 56px;
  inset-block-end: 0;
  background: var(--red);
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  margin-bottom: 10px;
  color: #ffffff;
}

.contact .eyebrow > span {
  background: #ffffff;
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
  line-height: 1.45;
}

.contact h2 em {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.contact-button {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-width: 190px;
  justify-content: space-between;
}

.consultation-trace {
  position: absolute;
  inset: -2px;
  z-index: 0;
  width: calc(100% + 4px) !important;
  height: calc(100% + 4px) !important;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.consultation-trace rect {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 11 89;
  stroke-dashoffset: 100;
  will-change: stroke-dashoffset;
  animation: consultation-border-trace 2.8s linear infinite both;
  animation-play-state: paused;
}

.contact-button > :not(.consultation-trace) {
  position: relative;
  z-index: 1;
}

.contact-button:hover .consultation-trace,
.contact-button:focus-visible .consultation-trace {
  opacity: 0.9;
}

.contact-button:hover .consultation-trace rect,
.contact-button:focus-visible .consultation-trace rect {
  animation-play-state: running;
}

.contact-button i {
  border-color: #d9eff1;
  background: #edf9fa;
  color: #0b6a76;
}

@keyframes consultation-border-trace {
  to {
    stroke-dashoffset: 0;
  }
}

/* Consultation contact dialog */

.consultation-dialog {
  width: min(calc(100% - 32px), 570px);
  max-width: 570px;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(7, 28, 32, 0.28);
  overflow: auto;
}

.consultation-dialog::backdrop {
  background: rgba(4, 27, 31, 0.62);
  backdrop-filter: blur(5px);
}

.consultation-dialog-inner {
  position: relative;
  padding: 42px;
  text-align: center;
}

.consultation-dialog-close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-start: 16px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.consultation-dialog-close:hover {
  border-color: var(--teal-interactive);
  background: var(--teal-soft);
  color: var(--teal-strong);
  transform: rotate(3deg);
}

.consultation-dialog-close svg,
.consultation-contact-icon svg,
.consultation-contact-option > i svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-dialog-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 800;
}

.consultation-dialog-eyebrow > span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}

.consultation-dialog h2 {
  max-width: 390px;
  margin: 0 auto 10px;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 850;
  line-height: 1.45;
}

.consultation-dialog h2 + p {
  max-width: 420px;
  margin: 0 auto 26px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

.consultation-dialog-actions {
  display: grid;
  gap: 12px;
}

.consultation-contact-option {
  min-height: 94px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.consultation-contact-option:hover {
  border-color: color-mix(in srgb, var(--teal-interactive) 62%, var(--line));
  background: var(--teal-soft);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.consultation-contact-option-call {
  border-color: var(--teal-interactive);
  background: var(--teal-interactive);
  color: #ffffff;
}

.consultation-contact-option-call:hover {
  border-color: var(--teal-strong);
  background: var(--teal-strong);
  color: #ffffff;
}

.consultation-contact-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.consultation-contact-option-call .consultation-contact-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.consultation-contact-option > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 1px;
  text-align: center;
}

.consultation-email-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  direction: ltr;
}

.copy-email-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--teal-strong);
  cursor: pointer;
  touch-action: manipulation;
  transition: color 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.copy-email-button:hover,
.copy-email-button:focus-visible {
  border-color: var(--teal-interactive);
  background: var(--teal-soft);
  color: var(--teal-interactive);
  transform: translateY(-1px);
}

.copy-email-button.is-copied {
  border-color: var(--teal-interactive);
  background: var(--teal-interactive);
  color: #ffffff;
}

.copy-email-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-contact-option small,
.consultation-contact-option em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.consultation-contact-option b {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.consultation-contact-option-call small,
.consultation-contact-option-call em,
.consultation-contact-option-call b {
  color: #ffffff;
}

.consultation-contact-option > i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-strong);
}

.consultation-contact-option-call > i {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.consultation-contact-option-call .copy-email-button {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.consultation-contact-option-call .copy-email-button:hover,
.consultation-contact-option-call .copy-email-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.consultation-cooperation {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.consultation-cooperation h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.consultation-contact-option-cooperation {
  border-color: color-mix(in srgb, var(--teal-interactive) 38%, var(--line));
  background: color-mix(in srgb, var(--teal-soft) 44%, var(--surface));
}

/* Inner page foundation */

.inner-page main {
  overflow: clip;
}

.inner-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 10px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.inner-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.94%, color-mix(in srgb, var(--line) 42%, transparent) 49.94% 50.06%, transparent 50.06%),
    linear-gradient(0deg, transparent 0 49.94%, color-mix(in srgb, var(--line) 26%, transparent) 49.94% 50.06%, transparent 50.06%);
  pointer-events: none;
}

.inner-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  inset-inline-end: -245px;
  inset-block-start: -250px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.inner-hero-grid {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.inner-hero-copy {
  max-width: 720px;
}

.about-hero {
  padding-block-end: 80px;
  background:
    radial-gradient(ellipse at 50% 28%, color-mix(in srgb, var(--teal) 11%, transparent) 0, transparent 54%),
    linear-gradient(color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 72px 72px, 72px 72px, auto;
  background-position: center, center, center, center;
}

.about-hero::before {
  inset: auto;
  width: min(78vw, 980px);
  height: auto;
  aspect-ratio: 1;
  inset-inline-start: 50%;
  inset-block-start: -760px;
  border: 1px solid color-mix(in srgb, var(--teal) 25%, transparent);
  border-radius: 50%;
  background: none;
  box-shadow:
    0 0 0 74px color-mix(in srgb, var(--teal) 4%, transparent),
    0 0 0 148px color-mix(in srgb, var(--teal) 2%, transparent);
  transform: translateX(-50%);
}

.about-hero::after {
  width: 120px;
  height: 4px;
  inset-inline-end: max(24px, calc((100vw - var(--container)) / 2));
  inset-block-end: -1px;
  border: 0;
  border-radius: 0;
  background: var(--red);
}

.about-hero-grid {
  min-height: 560px;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
}

.about-hero-copy {
  width: min(100%, 930px);
  max-width: none;
  text-align: center;
}

.about-hero-copy .breadcrumb,
.about-hero-copy > .eyebrow,
.about-hero-copy .inner-hero-actions {
  justify-content: center;
}

.about-hero-copy .breadcrumb {
  margin-bottom: 18px;
}

.about-hero-copy .hero-brand-signature {
  margin-bottom: 24px;
}

.about-hero-copy h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(44px, 5.2vw, 68px);
}

.about-hero-copy > p:not(.eyebrow) {
  margin-inline: auto;
}

.about-hero-copy .hero-capabilities {
  margin-top: 30px;
}

.breadcrumb {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--teal-strong);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inner-hero h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.32;
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 2.05;
}

.arrow-down {
  width: 18px;
  height: 18px;
}

/* About page */

.company-identity {
  position: relative;
  min-height: 380px;
  padding: 28px;
  border: 1px solid #284d53;
  border-radius: var(--radius-lg);
  background: var(--section-dark);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 28, 32, 0.12);
  overflow: hidden;
}

.company-identity::before,
.company-identity::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.company-identity::before {
  width: 220px;
  height: 220px;
  inset-inline-end: -92px;
  inset-block-start: -112px;
  border: 1px solid rgba(117, 203, 212, 0.19);
  border-radius: 50%;
}

.company-identity::after {
  width: 112px;
  height: 112px;
  inset-inline-start: -58px;
  inset-block-end: -66px;
  border: 1px solid rgba(117, 203, 212, 0.13);
  border-radius: 50%;
}

.identity-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.identity-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.identity-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(117, 203, 212, 0.36);
  border-radius: 10px;
  background: rgba(117, 203, 212, 0.1);
  color: #91dce3;
}

.identity-icon svg,
.company-identity dt svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.identity-heading div {
  display: grid;
  gap: 2px;
}

.identity-heading small {
  color: #8fb3b8;
  font-size: 12px;
}

.identity-heading b {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.identity-status {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 12px;
  border: 1px solid rgba(111, 209, 219, 0.25);
  border-radius: 999px;
  color: #b9dfe3;
  font-size: 12px;
  font-weight: 700;
}

.identity-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42c888;
  box-shadow: 0 0 0 4px rgba(66, 200, 136, 0.12);
}

.identity-year {
  position: relative;
  z-index: 1;
  display: grid;
  margin-block: 42px 30px;
  padding-block: 20px 18px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.identity-year small {
  color: #95bcc1;
  font-size: 14px;
  font-weight: 650;
}

.identity-year strong {
  color: #f6ffff;
  font-size: 70px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.identity-year span {
  color: #75cbd4;
  font-size: 14px;
  font-weight: 700;
}

.company-identity dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 0;
}

.company-identity dl > div {
  display: grid;
  gap: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(117, 203, 212, 0.23);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
}

.company-identity dt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8fb3b8;
  font-size: 12px;
  font-weight: 650;
}

.company-identity dt svg {
  width: 15px;
  height: 15px;
  color: #75cbd4;
}

.company-identity dd {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.company-story {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px),
    var(--canvas);
  background-size: 120px 100%;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.story-copy h2,
.values-intro h2,
.service-deep-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.48;
}

.story-copy p {
  max-width: 720px;
  font-size: 15px;
  line-height: 2.1;
}

.story-copy .story-lead {
  color: var(--ink);
  font-size: 17px;
  font-weight: 550;
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-lg) + 2px);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: var(--shadow-sm);
}

.story-origin {
  position: relative;
  grid-column: 1 / -1;
  min-height: 142px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--teal) 72%, #ffffff);
  border-radius: calc(var(--radius-md) - 2px);
  background: linear-gradient(135deg, #147b89, var(--teal));
  color: #ffffff;
}

.story-origin::after {
  content: "۱۳۸۱";
  position: absolute;
  inset-inline-start: -14px;
  inset-block-end: -42px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 108px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.story-origin > div,
.story-origin p {
  position: relative;
  z-index: 1;
}

.story-origin small {
  display: block;
  margin-bottom: 2px;
  color: #b4edf2;
  font-size: 12px;
  font-weight: 800;
}

.story-origin strong {
  display: block;
  color: #ffffff;
  font-size: 54px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.story-origin p {
  max-width: 260px;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.story-origin p span {
  display: block;
  margin-top: 4px;
  color: #b4edf2;
  font-size: 12px;
  font-weight: 650;
}

.story-metric {
  min-height: 122px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 17px 18px 18px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 72%, var(--surface));
  border-radius: calc(var(--radius-md) - 2px);
  background: linear-gradient(145deg, var(--surface) 0%, color-mix(in srgb, var(--teal-soft) 20%, var(--surface)) 100%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--ink) 4%, transparent);
}

.story-metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.story-metric strong {
  color: var(--teal-strong);
  font-size: 36px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.story-metric-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: color-mix(in srgb, var(--teal) 12%, var(--surface));
  color: var(--teal-strong);
}

.story-metric-icon svg,
.facts-note-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.story-metric span {
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.8;
}

.story-credentials {
  grid-column: 1 / -1;
  min-height: 104px;
  grid-template-columns: minmax(0, 1fr);
  gap: 11px;
  border-color: color-mix(in srgb, var(--trust) 38%, var(--line));
  background: linear-gradient(135deg, color-mix(in srgb, var(--trust-soft) 72%, var(--surface)), var(--surface));
}

.story-credentials strong,
.story-credentials .story-metric-icon {
  color: var(--trust);
}

.story-credentials .story-metric-icon {
  background: color-mix(in srgb, var(--trust) 11%, var(--surface));
}

.facts-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--teal-soft) 44%, var(--surface));
}

.facts-note-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface);
  color: var(--teal-strong);
}

.facts-note p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

.purpose-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.purpose-section .section-heading {
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.purpose-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-lg) + 4px);
  background: var(--surface);
  box-shadow: 0 20px 52px color-mix(in srgb, var(--ink) 7%, transparent);
}

.purpose-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 38px 40px 36px;
  border: 0;
  border-radius: 0;
}

.purpose-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 40px auto;
  width: 54px;
  height: 3px;
  background: var(--red);
}

.mission-card {
  background: var(--section-dark);
  color: #ffffff;
}

.vision-card {
  border-inline-start: 1px solid var(--line);
  background: color-mix(in srgb, var(--teal-soft) 24%, var(--surface));
  color: var(--ink);
}

.purpose-card-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 15%, transparent);
}

.purpose-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.purpose-number {
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  opacity: 0.48;
}

.purpose-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  border-radius: 50%;
  color: currentColor;
}

.mission-card .purpose-icon {
  color: #7dd9e2;
}

.vision-card .purpose-icon {
  color: var(--teal-strong);
}

.purpose-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purpose-label small {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.mission-card .purpose-label small {
  color: #a9dce1;
}

.vision-card .purpose-label small {
  color: var(--teal-strong);
}

.purpose-card-copy {
  margin-top: 0;
  padding-top: 32px;
}

.purpose-card h3 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.65;
}

.mission-card h3 {
  color: #ffffff;
}

.purpose-card p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.95;
}

.mission-card p {
  color: #b8ced1;
}

.vision-card p {
  color: var(--text);
}

.values-section {
  background: var(--section-dark);
  color: #ffffff;
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 72px;
}

.values-intro {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 48px);
}

.values-intro .eyebrow {
  color: #7ed6df;
}

.values-intro h2 {
  color: #ffffff;
}

.values-intro h2 em {
  color: #8ce0e7;
}

.values-intro > p:not(.eyebrow) {
  color: #b4cbd0;
  font-size: 15px;
  line-height: 2;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.value-card {
  min-height: 205px;
  padding: 22px;
  border: 1px solid rgba(151, 205, 212, 0.21);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease);
}

.value-card:hover {
  border-color: rgba(126, 214, 223, 0.44);
  background: rgba(255, 255, 255, 0.045);
}

.value-card > span {
  min-width: 40px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  padding-inline: 8px;
  border: 1px solid rgba(126, 214, 223, 0.22);
  border-radius: 9px;
  background: rgba(27, 150, 166, 0.14);
  color: #8ce0e7;
  font-size: 14px;
  font-weight: 850;
}

.value-card h3 {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.value-card p {
  margin-bottom: 0;
  color: #a9c3c7;
  font-size: 14px;
  line-height: 1.9;
}

.approach-section {
  --approach-grid-size: 32px;
  --approach-grid-x: 0px;
  --approach-grid-y: 0px;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--canvas);
  background-size: var(--approach-grid-size) var(--approach-grid-size);
}

.approach-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: var(--approach-grid-size);
  height: var(--approach-grid-size);
  top: 0;
  left: 0;
  background: rgba(215, 29, 41, 0.3);
  box-shadow: inset 0 0 0 1px rgba(215, 29, 41, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--approach-grid-x), var(--approach-grid-y), 0);
  transition: opacity 130ms var(--ease), transform 120ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.approach-section.is-grid-hovering::after {
  opacity: 1;
}

.approach-grid-trace {
  position: absolute;
  z-index: 0;
  width: var(--approach-grid-size);
  height: var(--approach-grid-size);
  top: 0;
  left: 0;
  background: rgba(215, 29, 41, 0.16);
  box-shadow: inset 0 0 0 1px rgba(215, 29, 41, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--approach-trace-x), var(--approach-trace-y), 0);
  animation: approach-grid-trace 460ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--approach-trace-delay, 0ms) forwards;
}

@keyframes approach-grid-trace {
  from { opacity: 0.58; }
  35% { opacity: 0.28; }
  to { opacity: 0; }
}

.approach-section > .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .approach-section::after {
    transition: none;
  }

  .approach-grid-trace {
    display: none;
  }
}

.approach-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}

.approach-flow article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  box-shadow: var(--shadow-sm);
}

.approach-flow article > span {
  color: var(--teal-strong);
  font-size: 15px;
  font-weight: 900;
}

.approach-flow h3 {
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 850;
}

.approach-flow p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.9;
}

.approach-flow > i {
  width: 36px;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-style: normal;
}

.approach-flow > i svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credentials-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(color-mix(in srgb, var(--line) 24%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 24%, transparent) 1px, transparent 1px),
    var(--surface);
  background-size: 56px 56px, 56px 56px, auto;
  border-top: 1px solid var(--line);
}

.credentials-section::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 3px;
  inset-inline-end: max(24px, calc((100vw - var(--container)) / 2));
  inset-block-start: -1px;
  background: var(--red);
}

.credentials-head {
  align-items: center;
}

.credentials-intro {
  max-width: 670px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.credentials-count {
  justify-self: end;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
}

.credentials-count strong {
  color: var(--teal-strong);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.credentials-count span {
  max-width: 140px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.certificate-gallery {
  position: relative;
}

.certificate-gallery-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-raised) 92%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.certificate-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.certificate-filters button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  color: var(--text);
  cursor: pointer;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.certificate-filters button:hover,
.certificate-filters button:focus-visible {
  border-color: var(--teal);
  color: var(--teal-strong);
}

.certificate-filters button:active {
  transform: scale(0.97);
}

.certificate-filters button.is-active {
  border-color: var(--teal-interactive);
  background: var(--teal-interactive);
  color: #ffffff;
}

.certificate-filters button span {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.certificate-filters button small {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding-inline: 5px;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 10%, transparent);
  font-size: 10px;
  font-weight: 850;
}

.certificate-filters button.is-active small {
  background: rgba(255, 255, 255, 0.18);
}

.certificate-gallery-result {
  min-width: 108px;
  display: grid;
  justify-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding-inline: 14px;
  border-inline-start: 1px solid var(--line);
  color: var(--muted);
}

.certificate-gallery-result b {
  color: var(--teal-strong);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.certificate-gallery-result span {
  font-size: 10px;
  white-space: nowrap;
}

.certificate-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.certificate-gallery-card[hidden] {
  display: none;
}

.certificate-gallery-card {
  min-width: 0;
}

.certificate-gallery-card > button {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 255px auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(7, 28, 32, 0.055);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.certificate-gallery-card > button:hover,
.certificate-gallery-card > button:focus-visible {
  border-color: color-mix(in srgb, var(--teal) 68%, var(--line));
  box-shadow: 0 18px 42px rgba(7, 28, 32, 0.12);
  transform: translateY(-3px);
}

.certificate-gallery-paper {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(color-mix(in srgb, var(--line) 30%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 30%, transparent) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 28px 28px, 28px 28px, auto;
}

.certificate-gallery-paper::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 2px;
  inset-inline-end: 18px;
  inset-block-start: 0;
  background: var(--red);
}

.certificate-gallery-paper::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: min(52%, 132px);
  aspect-ratio: 0.707;
  left: 50%;
  top: 50%;
  border: 1px solid color-mix(in srgb, var(--teal) 30%, var(--line));
  border-radius: 4px;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--teal) 29%, transparent) 0 48%, transparent 51%) 50% 73% / 26px 26px no-repeat,
    linear-gradient(color-mix(in srgb, var(--teal) 24%, transparent), color-mix(in srgb, var(--teal) 24%, transparent)) 50% 56% / 52% 3px no-repeat,
    linear-gradient(color-mix(in srgb, var(--teal) 20%, transparent), color-mix(in srgb, var(--teal) 20%, transparent)) 50% 49% / 64% 3px no-repeat,
    linear-gradient(color-mix(in srgb, var(--teal) 26%, transparent), color-mix(in srgb, var(--teal) 26%, transparent)) 50% 34% / 40% 4px no-repeat,
    linear-gradient(180deg, color-mix(in srgb, #ffffff 92%, var(--surface)), color-mix(in srgb, #ffffff 78%, var(--teal-soft)));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--ink) 9%, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.certificate-gallery-card.is-loading .certificate-gallery-paper::before {
  opacity: 1;
  animation: certificate-skeleton-pulse 1.65s ease-in-out infinite;
}

.certificate-gallery-paper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(7, 28, 32, 0.13));
  transition: opacity 220ms var(--ease), transform 260ms var(--ease);
}

.certificate-gallery-card.is-loading .certificate-gallery-paper img {
  opacity: 0;
}

@keyframes certificate-skeleton-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.985);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.certificate-gallery-card > button:hover .certificate-gallery-paper img,
.certificate-gallery-card > button:focus-visible .certificate-gallery-paper img {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .certificate-gallery-card.is-loading .certificate-gallery-paper::before {
    animation: none;
  }
}

.certificate-gallery-meta {
  position: relative;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 15px 16px 15px 50px;
}

.certificate-gallery-meta small {
  color: var(--teal-strong);
  font-size: 10px;
  font-weight: 850;
}

.certificate-gallery-meta b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.certificate-gallery-meta i {
  position: absolute;
  width: 32px;
  height: 32px;
  inset-inline-end: 14px;
  inset-block-end: 15px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--muted);
}

.certificate-gallery-meta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-gallery-lightbox {
  box-sizing: border-box;
  max-height: 92dvh;
  overflow: hidden;
}

.certificate-gallery-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.certificate-gallery-lightbox .certificate-lightbox-close {
  margin: 0;
}

.certificate-gallery-zoom {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  direction: ltr;
}

.certificate-gallery-zoom button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.certificate-gallery-zoom button:hover,
.certificate-gallery-zoom button:focus-visible {
  border-color: var(--teal);
  color: var(--teal-strong);
}

.certificate-gallery-zoom button:disabled {
  cursor: default;
  opacity: 0.35;
}

.certificate-gallery-zoom output {
  min-width: 54px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.certificate-gallery-lightbox-stage {
  position: relative;
  width: 100%;
  height: min(calc(92vh - 128px), 720px);
  height: min(calc(92dvh - 128px), 720px);
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  touch-action: none;
  user-select: none;
}

.certificate-gallery-lightbox-stage.is-zoomed {
  cursor: grab;
}

.certificate-gallery-lightbox-stage.is-dragging {
  cursor: grabbing;
}

.certificate-lightbox .certificate-gallery-lightbox-stage img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
  transition: opacity 120ms ease;
}

body.certificate-viewer-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .certificate-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .certificate-gallery-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .certificate-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .certificate-filters::after {
    content: "";
    min-width: 2px;
  }

  .certificate-gallery-result {
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    padding-top: 8px;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .certificate-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .certificate-gallery-card > button {
    grid-template-rows: 225px auto;
  }

}

@media (max-width: 480px) {
  .certificate-gallery-grid {
    grid-template-columns: 1fr;
  }

  .certificate-gallery-card > button {
    grid-template-rows: 250px auto;
  }

  .certificate-gallery-paper {
    padding: 14px;
  }

  .certificate-gallery-lightbox {
    width: calc(100vw - 20px);
    padding: 12px 12px 10px;
  }

  .certificate-gallery-lightbox-stage {
    height: calc(92vh - 142px);
    height: calc(92dvh - 142px);
  }
}

.inner-contact {
  padding-top: 16px;
}

/* Solutions page */

.solutions-hero .inner-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.solutions-directory {
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow-md);
}

.directory-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 3px 4px 18px;
  border-bottom: 1px solid var(--line);
}

.directory-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--teal);
  color: #ffffff;
}

.directory-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.directory-head > div {
  display: grid;
}

.directory-head small {
  color: var(--muted);
  font-size: 12px;
}

.directory-head strong {
  font-size: 18px;
  font-weight: 850;
}

.solutions-directory > a {
  min-height: 57px;
  display: grid;
  grid-template-columns: 62px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding-inline: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    padding-inline 180ms var(--ease);
}

.solutions-directory > a:last-child {
  border-bottom: 0;
}

.solutions-directory > a:hover {
  padding-inline: 14px;
  background: var(--surface-soft);
  color: var(--teal-strong);
}

.solutions-directory > a > span {
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 850;
  direction: ltr;
}

.solutions-directory > a > b {
  font-size: 14px;
  font-weight: 750;
}

.solutions-directory > a > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  color: var(--teal-strong);
  transition: color 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.solutions-directory > a > i svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.solutions-directory > a:hover > i,
.solutions-directory > a:focus-visible > i {
  border-color: var(--teal-interactive);
  background: var(--teal-interactive);
  color: #ffffff;
  transform: scale(1.06);
}

.solutions-jump-wrap,
.services-jump-wrap {
  position: sticky;
  inset-block-start: var(--header-height);
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: blur(12px);
}

.solutions-jump,
.services-jump {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.solutions-jump a,
.services-jump a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-inline: 14px;
  border: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms var(--ease);
}

.solutions-jump a::after,
.services-jump a::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  inset-inline: 0;
  inset-block-end: 3px;
  margin-inline: auto;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.solutions-jump a span {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 850;
  direction: ltr;
}

.solutions-jump a:hover,
.services-jump a:hover {
  color: var(--teal-strong);
}

.solutions-jump a.is-active,
.services-jump a.is-active {
  color: var(--teal-strong);
  font-weight: 850;
}

.solutions-jump a.is-active::after,
.services-jump a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.solutions-jump a.is-active span {
  color: currentColor;
}

.solution-detail {
  background: var(--canvas);
}

.solution-detail,
.service-deep-section,
.adoption-card {
  scroll-margin-top: calc(var(--header-height) + 84px);
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 80px;
}

.solution-detail-grid.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.solution-detail-grid.reverse > .solution-copy {
  grid-column: 2;
  grid-row: 1;
}

.solution-detail-grid.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.solution-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.solution-main-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--teal) 30%, var(--line));
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.solution-main-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-main-icon svg.vote-icon {
  fill: currentColor;
  stroke: none;
}

.solution-title-row > div {
  display: grid;
}

.solution-title-row small {
  margin-bottom: 2px;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 850;
  direction: ltr;
  text-align: right;
}

.solution-title-row h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.7vw, 42px);
  font-weight: 850;
  line-height: 1.45;
}

.solution-copy > p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 2.05;
}

.solution-copy .solution-lead {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.solution-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.solution-benefits li {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.solution-benefits li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--teal) 35%, var(--line));
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-size: 14px;
  font-weight: 900;
}

.erp-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.erp-module-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.erp-module-grid article:nth-child(1) {
  border-block-start: 3px solid var(--teal);
}

.erp-module-grid article:nth-child(2) {
  border-block-start: 3px solid var(--red);
}

.erp-module-grid article:nth-child(3),
.erp-module-grid article:nth-child(4) {
  border-block-start: 3px solid var(--line-strong);
}

.module-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.module-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.erp-module-grid small {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 850;
  direction: ltr;
  text-align: right;
}

.erp-module-grid h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 850;
}

.erp-module-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.85;
}

.solution-divider {
  min-height: 1px;
  display: grid;
  grid-template-columns: 1fr 14px 1fr;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.solution-divider > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}

.solution-divider > span:last-child {
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.solution-divider > b {
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal);
  transform: rotate(45deg);
}

.solution-detail-dark {
  overflow: hidden;
  background: var(--section-dark);
  color: #ffffff;
}

.solution-detail-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, 0.025) 50%, transparent 50.1%);
  pointer-events: none;
}

.solution-detail-dark .container {
  position: relative;
}

.solution-detail-dark .solution-main-icon {
  border-color: rgba(126, 214, 223, 0.28);
  background: rgba(27, 150, 166, 0.14);
  color: #8ce0e7;
}

.solution-detail-dark .solution-title-row small {
  color: #7ed6df;
}

.solution-detail-dark h2,
.solution-detail-dark h3 {
  color: #ffffff;
}

.solution-detail-dark .solution-copy .solution-lead {
  color: #edf7f8;
}

.solution-detail-dark .solution-copy > p,
.solution-detail-dark .solution-benefits li {
  color: #b2c9cd;
}

.solution-detail-dark .solution-benefits li span {
  border-color: rgba(126, 214, 223, 0.24);
  background: rgba(27, 150, 166, 0.13);
  color: #8ce0e7;
}

.subsystem-panel {
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(151, 205, 212, 0.23);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.subsystem-head {
  display: grid;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(151, 205, 212, 0.18);
}

.subsystem-head small {
  color: #7ed6df;
  font-size: 12px;
}

.subsystem-head strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 850;
}

.subsystem-list {
  display: grid;
}

.subsystem-list article,
.election-components article {
  min-height: 78px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding-block: 13px;
  border-bottom: 1px solid rgba(151, 205, 212, 0.16);
}

.subsystem-list article:last-child,
.election-components article:last-child {
  border-bottom: 0;
}

.subsystem-list article > span,
.election-components article > span {
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 214, 223, 0.23);
  border-radius: 9px;
  background: rgba(27, 150, 166, 0.12);
  color: #8ce0e7;
  font-size: 14px;
  font-weight: 850;
}

.subsystem-list h3 {
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 800;
}

.subsystem-list p {
  margin-bottom: 0;
  color: #9fbabf;
  font-size: 13px;
  line-height: 1.75;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.outcome-grid article {
  min-height: 174px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.outcome-grid article > span {
  min-width: 38px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  padding-inline: 8px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-size: 14px;
  font-weight: 850;
}

.outcome-grid h3 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 850;
}

.outcome-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.85;
}

/* BI decision flow */

.bi-tool-panel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.solution-benefits li .check-icon {
  background: transparent;
}

.check-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.bi-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.bi-board-head > div {
  display: grid;
  gap: 4px;
}

.bi-board-head small {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 750;
}

.bi-board-head strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.bi-board-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.bi-board-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}

.bi-decision-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: stretch;
  padding: 20px;
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, var(--canvas), color-mix(in srgb, var(--teal-soft) 38%, var(--surface)));
}

.bi-flow-stage {
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--teal);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.bi-flow-analysis {
  border-top-color: var(--teal-strong);
}

.bi-flow-decision {
  border-top-color: var(--red);
}

.bi-flow-index {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding-inline: 8px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.bi-flow-stage h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.bi-flow-stage > p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.85;
}

.bi-source-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.bi-source-chips span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-strong);
  font-size: 10px;
  font-weight: 750;
}

.bi-analysis-list {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.bi-analysis-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

.bi-analysis-list li::before {
  width: 7px;
  height: 7px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.bi-decision-callout {
  display: grid;
  gap: 3px;
  margin-top: 16px;
  padding: 10px 12px;
  border-right: 3px solid var(--red);
  background: var(--red-soft);
}

.bi-decision-callout small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.bi-decision-callout strong {
  color: var(--ink);
  font-size: 11px;
  line-height: 1.65;
}

.bi-flow-connector {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.bi-flow-connector::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 4px 10px rgba(17, 51, 57, 0.08);
  transform: translate(-50%, -50%);
  content: "";
}

.bi-flow-connector::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  transform: translate(-32%, -50%) rotate(135deg);
  content: "";
}

.bi-flow-connector::before,
.bi-flow-connector::after { display: none; }

.bi-animated-arrow { width: 24px; height: 24px; color: var(--teal-strong); overflow: visible; }
.bi-animated-arrow .arrow-line,
.bi-animated-arrow .arrow-head { stroke-dasharray: 20; stroke-dashoffset: 20; }
.bi-solution.bi-visible .bi-animated-arrow .arrow-line { animation: bi-arrow-line 0.8s ease-out forwards; }
.bi-solution.bi-visible .bi-animated-arrow .arrow-head { animation: bi-arrow-head 0.45s 0.8s ease-out forwards; }
@keyframes bi-arrow-line { to { stroke-dashoffset: 0; } }
@keyframes bi-arrow-head { to { stroke-dashoffset: 0; } }

.bi-board-foot {
  margin: 0;
  padding: 14px 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.election-panel {
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.election-components article {
  border-color: var(--line);
}

.election-components article > span {
  border-color: var(--line);
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.election-components h3 {
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 850;
}

.election-components p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.75;
}

.election-usecases {
  margin-top: 10px;
  padding: 16px;
  border-inline-start: 3px solid var(--red);
  background: var(--surface-soft);
}

.election-usecases small {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.election-usecases p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.85;
}

.specialist-solutions {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.specialist-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
}

.specialist-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.specialist-grid svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialist-grid h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.7;
}

.specialist-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.9;
}

/* Services page */

.services-hero .inner-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
}

.service-scope-panel {
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow-md);
}

.scope-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 4px 18px;
  border-bottom: 1px solid var(--line);
}

.scope-panel-head > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--teal);
  color: #ffffff;
}

.scope-panel-head svg,
.scope-groups > a > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scope-panel-head > div {
  display: grid;
}

.scope-panel-head small {
  color: var(--muted);
  font-size: 12px;
}

.scope-panel-head strong {
  font-size: 18px;
  font-weight: 850;
}

.scope-groups {
  display: grid;
}

.scope-groups > a {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px 1fr 34px;
  align-items: center;
  gap: 13px;
  padding-inline: 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    padding-inline 180ms var(--ease);
}

.scope-groups > a:hover {
  padding-inline: 12px;
  background: var(--surface-soft);
  color: var(--teal-strong);
}

.scope-groups > a > i {
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--canvas);
  color: var(--teal-strong);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.scope-groups > a > div {
  display: grid;
}

.scope-groups > a small {
  color: var(--muted);
  font-size: 11px;
}

.scope-groups > a strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.scope-groups > a > svg {
  width: 19px;
  height: 19px;
  color: var(--teal-strong);
}

.scope-panel-foot {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 8px 2px;
}

.scope-panel-foot > div {
  display: grid;
  padding-inline-end: 16px;
  border-inline-end: 1px solid var(--line);
}

.scope-panel-foot strong {
  color: var(--teal-strong);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.scope-panel-foot span {
  color: var(--muted);
  font-size: 11px;
}

.scope-panel-foot p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.scope-panel-foot p i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #24a36a;
}

.service-catalog {
  scroll-margin-top: 0;
  background: var(--canvas);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card-large {
  position: relative;
  min-height: 326px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 200ms var(--ease),
    box-shadow 200ms var(--ease),
    transform 200ms var(--ease),
    background-color 200ms var(--ease);
}

.service-card-large:hover {
  border-color: color-mix(in srgb, var(--teal) 55%, var(--line));
  background: var(--surface-raised);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.service-card-top > span {
  min-width: 40px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding-inline: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.service-card-top > i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--teal) 25%, var(--line));
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-style: normal;
}

.service-card-top svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-large > small {
  margin-bottom: 5px;
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 850;
}

.service-card-large h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 850;
}

.service-card-large p {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.95;
}

.service-card-large > b {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 850;
}

.service-card-large > b svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.service-card-large:hover > b svg {
  transform: translateX(-2px);
}

.service-delivery {
  overflow: hidden;
  background: var(--section-dark);
  color: #ffffff;
}

.service-delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, 0.025) 50%, transparent 50.1%);
  pointer-events: none;
}

.service-delivery .container {
  position: relative;
}

.delivery-heading .eyebrow {
  color: #7ed6df;
}

.delivery-heading h2 {
  color: #ffffff;
}

.delivery-heading h2 em {
  color: #8ce0e7;
}

.delivery-heading > p {
  color: #b2c9cd;
}

.delivery-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.delivery-track::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset-inline: 9%;
  inset-block-start: 50px;
  height: 1px;
  background: rgba(126, 214, 223, 0.25);
}

.delivery-track::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 49px;
  left: 0;
  width: 20%;
  height: 2px;
  border-radius: 999px;
  background: #d71d29;
  filter: drop-shadow(0 0 5px rgba(215, 29, 41, 0.42));
  pointer-events: none;
  opacity: 0;
  animation: delivery-line-progress 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes delivery-line-progress {
  0%, 8% { opacity: 0; transform: translateX(500%); }
  18%, 78% { opacity: 0.82; }
  92%, 100% { opacity: 0; transform: translateX(-100%); }
}

.delivery-track article {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(151, 205, 212, 0.21);
  border-radius: var(--radius-md);
  background: rgba(14, 57, 62, 0.78);
}

.delivery-track article > span {
  min-width: 40px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding-inline: 8px;
  border: 1px solid rgba(126, 214, 223, 0.22);
  border-radius: 999px;
  background: var(--section-dark);
  color: #8ce0e7;
  font-size: 14px;
  font-weight: 850;
}

.delivery-track article > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-block: 28px 22px;
  border: 1px solid rgba(126, 214, 223, 0.22);
  border-radius: 12px;
  background: rgba(27, 150, 166, 0.13);
  color: #8ce0e7;
  font-style: normal;
}

.delivery-track svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-track h3 {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.delivery-track p {
  margin-bottom: 0;
  color: #a7c1c5;
  font-size: 13px;
  line-height: 1.85;
}

.service-deep-section {
  scroll-margin-top: calc(var(--header-height) + 84px);
  background: var(--canvas);
}

.service-deep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 80px;
}

.service-deep-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-deep-grid.reverse > .service-deep-copy {
  grid-column: 2;
  grid-row: 1;
}

.service-deep-grid.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.service-deep-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 550;
  line-height: 2.05;
}

.service-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-check-list li {
  min-height: 82px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.service-check-list li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.service-check-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-check-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 850;
}

.service-check-list p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.75;
}

.consulting-board,
.custom-build-panel,
.framework-panel {
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.consulting-board-head,
.build-panel-head {
  display: grid;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.consulting-board-head small,
.build-panel-head small {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 750;
}

.consulting-board-head strong,
.build-panel-head strong {
  font-size: 18px;
  font-weight: 850;
}

.consulting-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding-block: 34px;
}

.consulting-flow > div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--canvas);
  text-align: center;
}

.consulting-flow > div span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.consulting-flow > div p {
  margin-bottom: 1px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.consulting-flow > div small {
  color: var(--muted);
  font-size: 11px;
}

.consulting-flow > i {
  color: var(--teal);
  font-style: normal;
}

.consulting-flow > i svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consulting-output {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-inline-start: 3px solid var(--red);
  background: var(--surface-soft);
}

.consulting-output > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
}

.consulting-output svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consulting-output > div {
  display: grid;
}

.consulting-output small {
  color: var(--muted);
  font-size: 11px;
}

.consulting-output strong {
  font-size: 14px;
  font-weight: 850;
}

.implementation-service {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.implementation-step {
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
}

.implementation-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 42px;
}

.implementation-step-head > span {
  min-width: 40px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding-inline: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.implementation-step-head > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-style: normal;
}

.implementation-step-head svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.implementation-step h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 850;
}

.implementation-step p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.9;
}

.adoption-service {
  background: var(--canvas);
}

.adoption-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.adoption-card {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.adoption-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}

.adoption-card-head > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-strong);
}

.training-card .adoption-card-head > span {
  background: var(--red-soft);
  color: var(--red);
}

.adoption-card-head svg,
.adoption-features svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adoption-card-head > div {
  display: grid;
}

.adoption-card-head small {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 800;
}

.training-card .adoption-card-head small {
  color: var(--red);
}

.adoption-card-head h2 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 850;
  line-height: 1.5;
}

.adoption-card > p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 2;
}

.adoption-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.adoption-features > div {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--canvas);
}

.adoption-features i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-style: normal;
}

.adoption-features i svg {
  width: 20px;
  height: 20px;
}

.adoption-features > div > span {
  display: grid;
}

.adoption-features small {
  color: var(--muted);
  font-size: 10px;
}

.adoption-features strong {
  font-size: 13px;
  font-weight: 800;
}

.custom-service {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.custom-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.custom-build-panel ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.custom-build-panel li {
  min-height: 80px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.custom-build-panel li:last-child {
  border-bottom: 0;
}

.custom-build-panel li > span {
  width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-size: 14px;
  font-weight: 850;
}

.custom-build-panel li > div {
  display: grid;
}

.custom-build-panel li strong {
  font-size: 15px;
  font-weight: 850;
}

.custom-build-panel li small {
  color: var(--muted);
  font-size: 12px;
}

.architecture-service {
  overflow: hidden;
  background: var(--section-dark);
  color: #ffffff;
}

.architecture-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, 0.025) 50%, transparent 50.1%);
  pointer-events: none;
}

.architecture-service .container {
  position: relative;
}

.architecture-head .eyebrow {
  color: #7ed6df;
}

.architecture-head h2 {
  color: #ffffff;
}

.architecture-head h2 em {
  color: #8ce0e7;
}

.architecture-head > p {
  color: #b2c9cd;
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: stretch;
  gap: 18px;
}

.architecture-outcomes {
  padding: 22px;
  border: 1px solid rgba(151, 205, 212, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.architecture-outcomes > small {
  display: block;
  margin-bottom: 16px;
  color: #7ed6df;
  font-size: 12px;
  font-weight: 800;
}

.architecture-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.architecture-outcome-grid article {
  min-height: 165px;
  padding: 17px;
  border: 1px solid rgba(151, 205, 212, 0.16);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.architecture-outcome-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: #8ce0e7;
  font-size: 14px;
  font-weight: 850;
}

.architecture-outcome-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
}

.architecture-outcome-grid p {
  margin-bottom: 0;
  color: #a6c0c4;
  font-size: 13px;
  line-height: 1.8;
}

.framework-panel {
  border-color: rgba(151, 205, 212, 0.24);
  background: var(--section-dark-raised);
  box-shadow: none;
}

.framework-panel-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(151, 205, 212, 0.18);
}

.framework-panel-head > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(27, 150, 166, 0.14);
  color: #8ce0e7;
}

.framework-panel-head svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.framework-panel-head > div {
  display: grid;
}

.framework-panel-head small {
  color: #83cfd7;
  font-size: 11px;
}

.framework-panel-head strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.framework-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-block: 22px;
}

.framework-list span {
  border-color: rgba(151, 205, 212, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: #d2e2e4;
  font-size: 12px;
  direction: ltr;
}

.framework-panel > p {
  margin-bottom: 0;
  color: #9eb9bd;
  font-size: 13px;
  line-height: 1.9;
}

/* Footer */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--footer);
  color: var(--footer-text);
}

.footer-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0 74%, var(--red) 74% 82%, #11363c 82%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(155px, 0.7fr) minmax(140px, 0.62fr) minmax(280px, 1.1fr);
  gap: 50px;
  padding-block: 72px 54px;
}

.footer-brand {
  width: 164px;
  min-height: auto;
  display: flex;
  margin-bottom: 22px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #ffffff;
}

.footer-brand img {
  max-height: 58px;
}

.footer-intro > p {
  max-width: 320px;
  margin-bottom: 24px;
  color: var(--footer-text);
  font-size: 15px;
  line-height: 2;
}

.footer-call {
  min-height: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 8px 16px;
  border-inline-start: 3px solid var(--teal);
  background: var(--footer-surface);
  color: #ffffff;
  text-decoration: none;
}

.footer-call span {
  color: #91b1b6;
  font-size: 11px;
}

.footer-call b {
  font-size: 18px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.footer-call-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  direction: rtl;
}

.footer-call-meta small {
  align-self: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column > h3 {
  position: relative;
  margin: 4px 0 24px;
  padding-bottom: 11px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.footer-column > h3::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  inset-inline-start: 0;
  inset-block-end: 0;
  background: var(--teal);
}

.footer-column > a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: var(--footer-text);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    padding-inline 180ms var(--ease);
}

.footer-column > a:hover {
  padding-inline-start: 5px;
  color: #ffffff;
}

.footer-contact {
  align-items: stretch;
}

.footer-contact-list {
  display: grid;
  gap: 9px;
}

.footer-contact-item {
  min-height: 66px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--footer-line);
  border-radius: 11px;
  background: var(--footer-surface);
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-email {
  min-height: 58px;
}

.footer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #2e5a62;
  border-radius: 10px;
  color: #67c7d1;
}

.footer-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.contact-detail small {
  color: #88a8ad;
  font-size: 11px;
}

.contact-detail b {
  color: #f1f6f7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.footer-contact-email .contact-detail b {
  font-size: 15px;
}

.footer-location {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;
  gap: 28px;
  padding-block: 28px;
  border-block: 1px solid var(--footer-line);
}

.location-copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 20px;
}

.location-pin {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #2e5a62;
  border-radius: 12px;
  color: #67c7d1;
}

.location-pin svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-copy small {
  color: #7f9fa4;
  font-size: 12px;
}

.location-copy h3 {
  margin: 3px 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
}

.location-copy p {
  max-width: 390px;
  margin-bottom: 14px;
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.9;
}

.map-link {
  color: #67c7d1;
  font-size: 13px;
}

.map-frame {
  position: relative;
  min-width: 0;
  height: 276px;
  overflow: hidden;
  border: 1px solid #2c535a;
  border-radius: var(--radius-md);
  background: var(--footer-surface);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.86) contrast(1.03);
}

html[data-theme="dark"] .map-frame iframe {
  filter: invert(0.92) hue-rotate(165deg) saturate(0.6) brightness(0.72) contrast(1.15);
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding-block: 18px;
  color: #839fa4;
  font-size: 12px;
  text-align: center;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
}

.footer-bottom > div::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-inline-end: 18px;
  border-radius: 50%;
  background: var(--teal);
}

.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #a7c0c4;
  font-weight: 750;
  text-decoration: none;
  direction: ltr;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.back-top {
  position: fixed;
  z-index: var(--z-sticky);
  inset-inline-start: 22px;
  inset-block-end: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid color-mix(in srgb, var(--teal) 45%, var(--line));
  border-radius: 50%;
  background: var(--surface-raised);
  color: var(--teal-strong);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-top:hover {
  background: var(--teal);
  color: #ffffff;
}

.back-top svg {
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-top span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Theme-specific refinement */

html[data-theme="dark"] .button-primary,
html[data-theme="dark"] .header-cta {
  color: #061d21;
}

html[data-theme="dark"] .button-light {
  color: #0b5863;
}

html[data-theme="dark"] .logo-mark {
  border: 1px solid #dfe8e9;
}

html[data-theme="dark"] .solution-card:hover,
html[data-theme="dark"] .solution-card:focus-visible {
  background: color-mix(in srgb, var(--teal-soft) 38%, var(--surface));
}

html[data-theme="dark"] .service-card-large:hover,
html[data-theme="dark"] .logo-grid figure:hover {
  border-color: var(--teal);
  background: color-mix(in srgb, var(--teal-soft) 70%, var(--surface));
}

html[data-theme="dark"] .company-identity,
html[data-theme="dark"] .solution-detail-dark,
html[data-theme="dark"] .service-section,
html[data-theme="dark"] .values-section,
html[data-theme="dark"] .service-delivery,
html[data-theme="dark"] .architecture-service {
  background: var(--section-dark);
}

/* Responsive system */

@media (max-width: 1200px) {
  :root {
    --section-space: 92px;
  }

  .hero-grid,
  .inner-hero-grid {
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-grid,
  .about-grid,
  .story-grid,
  .solution-detail-grid,
  .service-deep-grid {
    gap: 58px;
  }

  .section-heading,
  .delivery-heading,
  .architecture-head,
  .credentials-head {
    gap: 46px;
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-grid-more {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-card {
    min-height: 236px;
  }

  .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .delivery-track::before {
    display: none;
  }

  .delivery-track::after {
    display: none;
  }

  .implementation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.15fr 0.7fr 0.65fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 80px;
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    z-index: 35;
    inset: var(--header-height) 0 0;
    background: rgba(3, 17, 20, 0.48);
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .brand {
    width: 132px;
  }

  .nav-toggle {
    display: block;
    grid-column: 4;
    grid-row: 1;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .theme-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .main-nav {
    position: fixed;
    z-index: var(--z-menu);
    inset-inline: 20px;
    inset-block-start: calc(var(--header-height) + 10px);
    max-height: calc(100dvh - var(--header-height) - 28px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .main-nav a::after {
    width: 3px;
    height: 22px;
    inset-inline-start: auto;
    inset-inline-end: 3px;
    inset-block: 13px auto;
    transform: scaleY(0);
  }

  .main-nav a.active::after {
    transform: scaleY(1);
  }

  .hero,
  .about-hero {
    padding-block: 10px 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 548px;
    margin-inline: auto;
  }

  .inner-hero {
    padding-block: 10px 64px;
  }

  .inner-hero-grid,
  .solutions-hero .inner-hero-grid,
  .services-hero .inner-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 48px;
  }

  .company-identity,
  .solutions-directory,
  .service-scope-panel {
    width: min(100%, 620px);
  }

  .section-heading,
  .delivery-heading,
  .architecture-head,
  .credentials-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .service-grid,
  .about-grid,
  .story-grid,
  .values-layout,
  .solution-detail-grid,
  .solution-detail-grid.reverse,
  .service-deep-grid,
  .service-deep-grid.reverse,
  .architecture-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-intro,
  .values-intro {
    position: static;
  }

  .about-copy {
    grid-row: 1;
  }

  .about-evidence {
    grid-row: 2;
  }

  .solution-detail-grid.reverse > .solution-copy,
  .service-deep-grid.reverse > .service-deep-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .solution-detail-grid.reverse > :last-child,
  .service-deep-grid.reverse > :last-child {
    grid-column: 1;
    grid-row: 2;
  }

  .approach-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .approach-flow article {
    min-height: 180px;
  }

  .approach-flow > i {
    width: 100%;
    height: 34px;
  }

  .approach-flow > i svg {
    transform: rotate(-90deg);
  }

  .architecture-layout {
    grid-template-columns: 1fr;
  }

  .footer-location {
    grid-template-columns: 1fr;
  }

  .location-copy {
    padding-bottom: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 64px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .hero,
  .about-hero {
    padding-block: 36px 56px;
    background:
      radial-gradient(ellipse at 50% 22%, color-mix(in srgb, var(--teal) 11%, transparent) 0, transparent 54%),
      linear-gradient(color-mix(in srgb, var(--line) 30%, transparent) 1px, transparent 1px),
      linear-gradient(90deg, color-mix(in srgb, var(--line) 30%, transparent) 1px, transparent 1px),
      var(--surface);
    background-size: auto, 48px 48px, 48px 48px, auto;
  }

  .hero::before,
  .about-hero::before {
    width: 420px;
    height: 420px;
    inset-inline-start: 50%;
    inset-block-start: -350px;
    transform: translateX(-50%);
  }

  .hero::after,
  .about-hero::after {
    width: 72px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.34;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-visual {
    display: none;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof > div {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-proof strong {
    font-size: 21px;
  }

  .hero-proof span {
    font-size: 12px;
  }

  .trust-inner {
    min-height: 104px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-block: 16px;
  }

  .trust-points {
    flex-wrap: wrap;
    gap: 6px 18px;
  }

  .section-heading,
  .delivery-heading,
  .architecture-head,
  .credentials-head {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .delivery-heading h2,
  .architecture-head h2,
  .credentials-head h2,
  .center-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .center-heading {
    margin-bottom: 36px;
  }

  .solution-grid,
  .services-card-grid,
  .purpose-cards,
  .value-grid,
  .erp-module-grid,
  .outcome-grid,
  .implementation-grid,
  .adoption-grid,
  .architecture-outcome-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 230px;
    padding: 24px 22px 20px;
  }

  .solution-card:nth-child(odd) {
    border-inline-end: 0;
  }

  .solution-card:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .solutions .section-heading {
    margin-bottom: 22px;
    padding-bottom: 20px;
  }

  .service-grid,
  .about-grid,
  .story-grid,
  .values-layout,
  .solution-detail-grid,
  .service-deep-grid {
    gap: 38px;
  }

  .service-item {
    grid-template-columns: 42px 1fr;
  }

  .service-item > i {
    display: none;
  }

  .service-item:hover {
    padding-inline: 8px;
  }

  .service-item h3 {
    font-size: 18px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .logo-grid figure {
    min-height: 138px;
    grid-template-rows: 82px auto;
    padding: 9px 9px 12px;
  }

  .logo-mark {
    padding: 11px;
  }

  .logo-mark img {
    max-width: 84%;
    max-height: 54px;
  }

  .logo-grid figure.logo-zoom .logo-mark img {
    max-width: 92%;
    max-height: 66px;
  }

  .logo-grid figure.logo-zoom .logo-mark {
    padding: 7px;
  }

  .logo-grid figure.logo-zoom-xl .logo-mark img {
    max-width: 98%;
    max-height: 74px;
  }

  .logo-grid figure.logo-zoom-xl .logo-mark {
    padding: 4px;
  }

  .logo-grid figcaption {
    font-size: 12px;
    line-height: 1.55;
  }

  .history-card {
    grid-template-columns: 1fr;
  }

  .history-card > span {
    max-width: none;
  }

  .purpose-card {
    min-height: 360px;
    padding: 24px;
  }

  .purpose-card::before {
    inset-inline-start: 24px;
  }

  .vision-card {
    border-block-start: 1px solid var(--line);
    border-inline-start: 0;
  }

  .purpose-card-copy {
    padding-top: 34px;
  }

  .purpose-card h3 {
    font-size: 20px;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .story-origin {
    min-height: 184px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-origin p {
    max-width: none;
  }

  .story-metric,
  .story-credentials {
    grid-column: auto;
  }

  .credentials-count {
    justify-self: start;
  }

  .contact-card {
    min-height: 260px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 36px 28px;
  }

  .contact-card::after {
    inset-inline-start: 28px;
  }

  .inner-hero {
    padding-block: 42px 56px;
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .inner-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .company-identity {
    min-height: 350px;
    padding: 20px;
  }

  .identity-year {
    margin-block: 42px 28px;
  }

  .solutions-jump-wrap,
  .services-jump-wrap {
    overflow: hidden;
  }

  .solutions-jump,
  .services-jump {
    min-height: 62px;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .solutions-jump::after,
  .services-jump::after {
    content: "";
    min-width: 1px;
    height: 1px;
  }

  .solution-detail-grid,
  .solution-detail-grid.reverse {
    gap: 40px;
  }

  .solution-title-row {
    align-items: flex-start;
  }

  .solution-main-icon {
    width: 54px;
    height: 54px;
  }

  .solution-title-row h2 {
    font-size: 29px;
  }

  .delivery-track {
    grid-template-columns: 1fr;
  }

  .delivery-track article {
    min-height: 220px;
  }

  .consulting-flow {
    grid-template-columns: 1fr;
    padding-block: 24px;
  }

  .consulting-flow > i {
    display: grid;
    place-items: center;
  }

  .consulting-flow > i svg {
    transform: rotate(-90deg);
  }

  .adoption-card {
    padding: 22px;
  }

  .adoption-features {
    grid-template-columns: 1fr;
  }

  .architecture-layout {
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 22px;
    padding-block: 56px 42px;
  }

  .footer-intro,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-location {
    min-height: auto;
    gap: 16px;
  }

  .map-frame {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    width: 116px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    inset-inline: 14px;
  }

  .hero-brand-signature {
    gap: 11px;
    margin-bottom: 22px;
    padding: 7px 12px 7px 8px;
  }

  .hero-brand-mark {
    width: 62px;
    height: 46px;
  }

  .hero-brand-name strong {
    font-size: 22px;
  }

  .hero-brand-name small {
    font-size: 10px;
  }

  .hero-actions,
  .inner-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .inner-hero-actions .button {
    width: 100%;
  }

  .hero-capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    text-align: start;
  }

  .hero-capabilities span {
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .hero-capabilities span + span::before {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-proof > div {
    min-height: 54px;
    grid-template-columns: 64px 1fr;
    align-items: center;
    padding: 0;
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof > div:last-child {
    border-bottom: 0;
  }

  .trust-points {
    display: grid;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-grid figure {
    min-width: 0;
  }

  .company-identity dl {
    grid-template-columns: 1fr;
  }

  .identity-year strong {
    font-size: 56px;
  }

  .purpose-card,
  .value-card,
  .service-card-large,
  .implementation-step {
    padding: 20px;
  }

  .purpose-card::before {
    inset-inline-start: 20px;
  }

  .purpose-card-head {
    gap: 12px;
    padding-bottom: 20px;
  }

  .purpose-card-copy {
    padding-top: 28px;
  }

  .contact-card {
    padding-inline: 22px;
  }

  .contact-button {
    width: 100%;
  }

  .scope-panel-foot {
    grid-template-columns: repeat(2, 1fr);
  }

  .scope-panel-foot p {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .scope-groups > a {
    grid-template-columns: 40px 1fr;
  }

  .scope-groups > a > svg {
    display: none;
  }

  .bi-board-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .bi-decision-flow {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .bi-flow-stage {
    min-height: 0;
  }

  .bi-flow-connector {
    height: 28px;
  }

  .bi-flow-connector::before {
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
  }

  .bi-flow-connector::after {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -64%) rotate(45deg);
  }

  .bi-board-foot {
    padding-inline: 16px;
  }

  .adoption-card-head {
    align-items: flex-start;
  }

  .architecture-outcomes,
  .framework-panel,
  .consulting-board,
  .custom-build-panel {
    padding: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-intro,
  .footer-contact {
    grid-column: auto;
  }

  .footer-column {
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--footer-line);
  }

  .footer-brand,
  .footer-call,
  .footer-intro > p {
    margin-inline: auto;
  }

  .footer-call {
    align-items: center;
    text-align: center;
  }

  .footer-call-meta {
    align-items: center;
  }

  .footer-column > h3::after {
    inset-inline-start: 50%;
    transform: translateX(50%);
  }

  .footer-column > a {
    justify-content: center;
    text-align: center;
  }

  .footer-contact {
    border-bottom: 0;
  }

  .footer-contact-list {
    width: 100%;
  }

  .location-copy {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0;
  }

  .footer-bottom > div::before {
    display: none;
  }

  .back-top {
    inset-inline-start: 14px;
    inset-block-end: 14px;
    width: 48px;
    height: 48px;
  }
}

@media (hover: none) {
  .solution-card:hover,
  .service-card-large:hover,
  .logo-grid figure:hover {
    transform: none;
    box-shadow: none;
  }

  .logo-mark img {
    filter: grayscale(0);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .project-carousel {
    padding: 12px;
  }

  .project-slide {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-partner-panel {
    min-height: 220px;
    order: -1;
    gap: 12px;
    padding: 22px;
  }

  .project-partner-panel::before {
    width: 230px;
    height: 230px;
  }

  .project-partner-logo {
    width: min(100%, 250px);
    height: 120px;
    padding: 16px;
  }

  .project-partner-logo img {
    max-height: 88px;
  }

  .project-partner-panel figcaption {
    font-size: 14px;
  }

  .project-story-card {
    min-height: 360px;
    padding: 22px;
  }

  .project-story-copy {
    padding-block: 24px;
  }

  .project-carousel-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .project-carousel-controls,
  .project-carousel-timing {
    width: 100%;
    justify-content: space-between;
  }

  .project-carousel-timing > span {
    width: calc(100% - 62px);
  }
}

@media (max-width: 480px) {
  .selected-projects-heading {
    margin-bottom: 22px;
  }

  .project-story-copy h3 {
    font-size: 23px;
  }

  .project-story-copy > p:last-child {
    font-size: 14px;
  }

  .project-carousel-button {
    width: 42px;
    height: 42px;
  }

  .certificate-rail {
    padding: 12px;
  }

  .certificate-rail-body {
    min-height: 166px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
  }

  .certificate-preview-paper img {
    height: 126px;
  }

  .certificate-preview-meta small {
    font-size: 10px;
  }

  .consultation-dialog-inner {
    padding: 34px 22px 22px;
  }

  .consultation-dialog h2 {
    max-width: 250px;
    font-size: 26px;
  }

  .consultation-contact-option {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding: 13px;
  }

  .consultation-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .consultation-contact-option > i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .solutions-jump-wrap,
  .services-jump-wrap,
  .contact,
  .site-footer,
  .back-top,
  .consultation-dialog {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .section,
  .inner-hero {
    padding-block: 28px;
    break-inside: avoid;
  }
}
