:root {
  --blue-light: #9acde7;
  --blue-medium: #00365a;
  --blue: #2b5c86;
  --blue-bright: #00b2f7;
  --blue-dark: #01121c;
  --blue-soft: #edf8fd;
  --teal: #147d78;
  --teal-soft: #eaf7f5;
  --green: #2f7d57;
  --green-soft: #edf7f1;
  --amber: #8c5700;
  --amber-soft: #fff6df;
  --grey: #f1f1f1;
  --white: #ffffff;
  --ink: #061925;
  --muted: #63717c;
  --line: #dce7ee;
  --shadow: 0 22px 60px rgba(1, 18, 28, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main#home,
section[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Skia, "Poppins", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body.is-locked {
  overflow: hidden;
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 231, 238, 0.8);
  backdrop-filter: blur(18px);
}

.site-header.has-depth {
  box-shadow: 0 12px 34px rgba(1, 18, 28, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  font-family: KoHo, "Poppins", "Avenir Next", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  color: var(--blue-medium);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid var(--blue-dark);
  border-radius: var(--radius);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-medium);
  border-color: var(--blue-medium);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--blue-dark);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.nav-toggle:focus-visible {
  border-color: var(--blue-bright);
  outline: 2px solid rgba(0, 178, 247, 0.28);
  outline-offset: 2px;
}

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

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

.section-band,
.section,
.service-strip,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(90vh - var(--header-h));
  padding: clamp(44px, 7vw, 84px) 0 clamp(26px, 5vw, 56px);
}

.hero-content {
  min-width: 0;
  max-width: 720px;
}

h1,
h2,
h3,
.brand,
.proof-row dt {
  font-family: KoHo, "Poppins", "Avenir Next", system-ui, sans-serif;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
}

h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #203b4d;
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-medium);
  border-color: var(--blue-medium);
}

.button-secondary {
  color: var(--blue-medium);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--blue-dark);
  border-color: var(--blue-light);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
}

.proof-row div {
  min-height: 108px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-soft) 100%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-bright);
  border-radius: var(--radius);
}

.proof-row div:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, var(--teal-soft) 100%);
  border-top-color: var(--teal);
}

.proof-row div:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, var(--amber-soft) 100%);
  border-top-color: var(--amber);
}

.proof-row dt {
  color: var(--blue-medium);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}

.proof-row div:nth-child(2) dt {
  color: var(--teal);
}

.proof-row div:nth-child(3) dt {
  color: var(--amber);
}

.proof-row dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(100%, 430px);
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  inset: 6% -4% auto auto;
  z-index: -1;
  width: 76%;
  height: 58%;
  content: "";
  background:
    linear-gradient(90deg, rgba(154, 205, 231, 0.25) 1px, transparent 1px),
    linear-gradient(180deg, rgba(154, 205, 231, 0.25) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.service-profile {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-bright);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-profile dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 20px 0 0;
}

.service-profile div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-profile dt {
  color: var(--blue-medium);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-profile div:nth-child(2) dt {
  color: var(--teal);
}

.service-profile div:nth-child(3) dt {
  color: var(--green);
}

.service-profile div:nth-child(4) dt {
  color: var(--amber);
}

.service-profile dd {
  margin: 7px 0 0;
  color: var(--blue-dark);
  font-weight: 700;
  line-height: 1.4;
}

.signal-panel {
  padding: 22px;
  color: var(--white);
  background: var(--blue-dark);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(1, 18, 28, 0.16);
}

.signal-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.signal-heading img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.signal-panel ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.signal-panel li {
  position: relative;
  padding-left: 22px;
}

.signal-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--blue-bright);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-strip a {
  --service-accent: var(--blue-bright);
  --service-soft: var(--blue-soft);
  min-height: 130px;
  padding: 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
  box-shadow: inset 0 3px 0 var(--service-accent);
  transition: background-color 180ms ease;
}

.service-strip a:nth-child(3),
.service-strip a:nth-child(6) {
  --service-accent: var(--teal);
  --service-soft: var(--teal-soft);
}

.service-strip a:nth-child(4) {
  --service-accent: var(--green);
  --service-soft: var(--green-soft);
}

.service-strip a:nth-child(7),
.service-strip a:nth-child(8) {
  --service-accent: var(--amber);
  --service-soft: var(--amber-soft);
}

.service-strip a:last-child {
  border-right: 0;
}

.service-strip a:nth-child(4n) {
  border-right: 0;
}

.service-strip a:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.service-strip a:hover,
.service-strip a:focus-visible {
  background: var(--service-soft);
}

.service-strip span {
  display: block;
  color: var(--blue-dark);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-strip small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding: clamp(76px, 10vw, 124px) 0;
}

.section-services {
  background:
    linear-gradient(180deg, rgba(237, 248, 253, 0) 0%, rgba(237, 248, 253, 0.9) 52%, rgba(237, 248, 253, 0) 100%);
}

.section[id],
.service-strip[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

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

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

.section-heading p,
.contact-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.service-card {
  --card-accent: var(--blue-bright);
  --card-soft: var(--blue-soft);
  min-height: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--card-accent);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:nth-child(3) {
  --card-accent: var(--teal);
  --card-soft: var(--teal-soft);
}

.service-card:nth-child(4) {
  --card-accent: var(--green);
  --card-soft: var(--green-soft);
}

.service-card:nth-child(6) {
  --card-accent: var(--amber);
  --card-soft: var(--amber-soft);
}

.service-card:hover {
  border-color: var(--line);
  border-top-color: var(--card-accent);
  box-shadow: 0 18px 46px rgba(1, 18, 28, 0.08);
  transform: translateY(-4px);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--card-accent);
  background: var(--card-soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
}

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

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.data-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  overflow: hidden;
  margin-top: clamp(34px, 6vw, 66px);
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(20, 125, 120, 0.22), transparent 46%),
    linear-gradient(135deg, rgba(0, 178, 247, 0.16), transparent 38%),
    var(--blue-dark);
  border-radius: var(--radius);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.data-copy h3 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.data-copy p:not(.panel-label) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}

.data-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.data-copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
}

.data-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--blue-bright);
}

.dashboard-preview {
  padding: clamp(20px, 4vw, 30px);
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top span,
.metric-row span,
.insight-list span {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-top span {
  color: var(--blue-bright);
  text-transform: uppercase;
}

.dashboard-top strong {
  max-width: 190px;
  color: var(--blue-dark);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  text-align: right;
  text-transform: uppercase;
}

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

.metric-row div {
  min-height: 92px;
  padding: 14px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-row div:nth-child(1) {
  background: var(--blue-soft);
}

.metric-row div:nth-child(2) {
  background: var(--teal-soft);
  border-color: #c7e5e1;
}

.metric-row div:nth-child(3) {
  background: var(--amber-soft);
  border-color: #eed9aa;
}

.metric-row span {
  display: block;
  color: var(--muted);
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-medium);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.metric-row div:nth-child(2) strong {
  color: var(--teal);
}

.metric-row div:nth-child(3) strong {
  color: var(--amber);
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  min-height: 170px;
  margin-top: 20px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(220, 231, 238, 0.54) 1px, transparent 1px),
    #f8fbfd;
  background-size: 100% 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.chart-grid span {
  min-height: 34px;
  background: var(--blue-bright);
  border-radius: 6px 6px 2px 2px;
}

.chart-grid span:nth-child(2),
.chart-grid span:nth-child(5) {
  background: var(--teal);
}

.chart-grid span:nth-child(3) {
  background: var(--green);
}

.chart-grid span:nth-child(4),
.chart-grid span:nth-child(6) {
  background: var(--amber);
}

.chart-grid .bar-low {
  height: 42%;
}

.chart-grid .bar-high {
  height: 68%;
}

.chart-grid .bar-mid {
  height: 54%;
}

.chart-grid .bar-tall {
  height: 82%;
}

.chart-grid .bar-steady {
  height: 61%;
}

.chart-grid .bar-peak {
  height: 90%;
}

.insight-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.insight-list span {
  display: block;
  padding: 10px 12px;
  color: #203b4d;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue-bright);
  border-radius: var(--radius);
}

.insight-list span:nth-child(2) {
  border-left-color: var(--green);
}

.insight-list span:nth-child(3) {
  border-left-color: var(--amber);
}

.catalog-heading {
  max-width: 760px;
  margin: clamp(42px, 7vw, 74px) 0 22px;
}

.catalog-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.category-card {
  display: block;
  min-height: 172px;
  padding: 20px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  background: #ffffff;
  border-color: var(--blue-light);
  box-shadow: 0 14px 34px rgba(1, 18, 28, 0.07);
  transform: translateY(-3px);
}

.category-card span {
  display: block;
  color: var(--blue-dark);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}

.category-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.category-link {
  color: inherit;
  background: var(--blue-dark);
}

.category-link:hover,
.category-link:focus-visible {
  background: var(--blue-medium);
  border-color: var(--blue-medium);
}

.category-link span,
.category-link p {
  color: var(--white);
}

.category-link p {
  opacity: 0.78;
}

.section-approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue-medium);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  background: #eff8fc;
  border-radius: var(--radius);
}

.process-list li:nth-child(2) span {
  color: var(--teal);
  background: var(--teal-soft);
}

.process-list li:nth-child(3) span {
  color: var(--green);
  background: var(--green-soft);
}

.process-list li:nth-child(4) span {
  color: var(--amber);
  background: var(--amber-soft);
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-expertise {
  background:
    linear-gradient(180deg, rgba(234, 247, 245, 0.88), rgba(255, 255, 255, 0)),
    var(--white);
}

.expertise-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.expertise-tabs {
  display: grid;
  gap: 10px;
}

.tab-button {
  --tab-accent: var(--blue-dark);
  min-height: 54px;
  padding: 0 18px;
  color: var(--blue-medium);
  text-align: left;
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.tab-button:nth-child(3),
.tab-button:nth-child(9) {
  --tab-accent: var(--teal);
}

.tab-button:nth-child(4),
.tab-button:nth-child(6) {
  --tab-accent: var(--green);
}

.tab-button:nth-child(7),
.tab-button:nth-child(8) {
  --tab-accent: var(--amber);
}

.tab-button.is-active,
.tab-button:hover,
.tab-button:focus-visible {
  color: var(--white);
  background: var(--tab-accent);
  border-color: var(--tab-accent);
}

.tab-button:focus-visible {
  outline: 2px solid rgba(0, 178, 247, 0.32);
  outline-offset: 2px;
}

.expertise-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(1, 18, 28, 0.08);
}

.panel-label {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.expertise-panel h3 {
  max-width: 420px;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.expertise-panel p:not(.panel-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.expertise-panel ul {
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-panel li {
  position: relative;
  padding: 14px 16px 14px 34px;
  color: #203b4d;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.expertise-panel li::before {
  position: absolute;
  top: 23px;
  left: 16px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue-bright);
  border-radius: 50%;
}

.section-experience {
  padding-top: clamp(76px, 10vw, 116px);
  background:
    linear-gradient(180deg, rgba(255, 246, 223, 0) 0%, rgba(255, 246, 223, 0.72) 58%, rgba(255, 246, 223, 0) 100%);
  border-top: 1px solid var(--line);
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: stretch;
}

.experience-story {
  max-width: 820px;
}

.experience-story h2 {
  max-width: 760px;
}

.experience-story p:not(.panel-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.experience-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.experience-proof div {
  min-height: 126px;
  padding: 18px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.experience-proof div:nth-child(2) {
  background: var(--teal-soft);
}

.experience-proof div:nth-child(3) {
  background: var(--amber-soft);
}

.experience-proof strong {
  display: block;
  color: var(--blue-medium);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.experience-proof div:nth-child(2) strong {
  color: var(--teal);
}

.experience-proof div:nth-child(3) strong {
  color: var(--amber);
}

.experience-proof span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cert-summary {
  padding: clamp(26px, 4vw, 40px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 178, 247, 0.14), transparent 46%),
    var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cert-summary img {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}

.cert-summary h3 {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.cert-summary p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.cert-summary ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cert-summary li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
}

.cert-summary li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--blue-bright);
}

.certification-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 6vw, 58px);
}

.cert-group {
  min-height: 286px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.cert-group:hover {
  border-color: var(--blue-light);
  box-shadow: 0 18px 46px rgba(1, 18, 28, 0.08);
  transform: translateY(-3px);
}

.cert-group > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue-medium);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #f7fbfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cert-group h3 {
  margin-top: 20px;
  font-size: 1.22rem;
}

.cert-group ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cert-group li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

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

.section-brands {
  background:
    linear-gradient(180deg, rgba(234, 247, 245, 0.76), rgba(255, 255, 255, 0) 72%);
  border-top: 1px solid var(--line);
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.brand-intro {
  position: sticky;
  top: calc(var(--header-h) + 26px);
}

.brand-intro h2 {
  max-width: 560px;
}

.brand-intro p:not(.panel-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.brand-card {
  min-height: 190px;
  padding: 22px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.brand-card-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 178, 247, 0.16), transparent 48%),
    var(--blue-dark);
  border-color: var(--blue-dark);
}

.brand-card:hover {
  background: #ffffff;
  border-color: var(--blue-light);
  box-shadow: 0 16px 40px rgba(1, 18, 28, 0.08);
  transform: translateY(-3px);
}

.brand-card-primary:hover {
  background:
    linear-gradient(135deg, rgba(0, 178, 247, 0.2), transparent 48%),
    var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 20px 50px rgba(1, 18, 28, 0.14);
}

.brand-card span {
  display: block;
  color: var(--blue-dark);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-card-primary span {
  color: var(--white);
}

.brand-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.brand-card-primary p {
  color: rgba(255, 255, 255, 0.8);
}

.support-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  min-height: calc(82vh - var(--header-h));
  padding: clamp(52px, 8vw, 96px) 0 clamp(44px, 7vw, 72px);
}

.support-panel,
.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 40px);
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-panel::before,
.contact-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue-bright), var(--teal), var(--green), var(--amber));
}

.support-panel img,
.contact-panel img {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}

.support-panel h2,
.contact-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  overflow-wrap: break-word;
}

.support-panel ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.support-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.support-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--blue-bright);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.contact-list div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list dt {
  color: var(--blue-light);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-list a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 4px;
}

.support-flow {
  border-top: 1px solid var(--line);
}

.contact-intake {
  border-top: 1px solid var(--line);
}

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

.support-steps article {
  min-height: 238px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--blue-medium);
  font-family: KoHo, "Poppins", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  background: #eff8fc;
  border-radius: var(--radius);
}

.support-steps article:nth-child(2) span {
  color: var(--teal);
  background: var(--teal-soft);
}

.support-steps article:nth-child(3) span {
  color: var(--green);
  background: var(--green-soft);
}

.support-steps article:nth-child(4) span {
  color: var(--amber);
  background: var(--amber-soft);
}

.support-steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-contact {
  padding-top: clamp(66px, 9vw, 110px);
  padding-bottom: clamp(66px, 9vw, 110px);
}

.contact-content {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
}

.contact-content::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-bright), var(--teal), var(--green), var(--amber));
}

.contact-logo {
  width: min(170px, 48vw);
  height: auto;
  margin-bottom: 34px;
  filter: brightness(0) invert(1);
}

.contact-content h2 {
  max-width: 850px;
  color: var(--white);
}

.contact-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-content .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-content .button-primary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--white);
}

.contact-content .button-primary:hover,
.contact-content .button-primary:focus-visible {
  color: var(--white);
  background: var(--blue-medium);
  border-color: var(--blue-medium);
}

.legal-hero {
  max-width: 940px;
  padding: clamp(52px, 8vw, 96px) 0 clamp(32px, 6vw, 66px);
}

.legal-hero h1 {
  max-width: 880px;
  overflow-wrap: break-word;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 980px;
}

.legal-card {
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-wrap: anywhere;
}

.legal-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.legal-card h3 {
  margin-top: 24px;
}

.legal-card p,
.legal-card li,
.legal-card dd {
  color: var(--muted);
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-card p {
  margin: 14px 0 0;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.legal-meta li {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--blue-medium);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  background: #f7fbfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.legal-contact-grid div {
  padding: 18px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-contact-grid dt {
  color: var(--blue-dark);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-contact-grid dd {
  margin: 8px 0 0;
}

.legal-contact-grid a {
  color: var(--blue-medium);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 30px 0 42px;
  color: var(--muted);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--blue-dark);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--blue-medium);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-content {
    max-width: none;
  }

  .hero-visual {
    grid-template-columns: minmax(260px, 0.72fr) minmax(260px, 1fr);
    align-items: stretch;
    min-width: 0;
    width: min(100%, 620px);
    justify-self: stretch;
  }

  .signal-panel {
    align-content: center;
    display: grid;
  }

  .service-strip,
  .service-grid,
  .category-grid,
  .certification-groups,
  .brand-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip a,
  .service-strip a:last-child {
    border-right: 0;
  }

  .service-strip a:nth-child(2n + 1) {
    border-right: 1px solid var(--line);
  }

  .service-strip a:nth-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .section-approach,
  .support-hero,
  .contact-hero,
  .expertise-shell,
  .expertise-panel,
  .data-feature,
  .experience-shell,
  .brand-layout {
    grid-template-columns: 1fr;
  }

  .brand-intro {
    position: static;
  }

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

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

  .tab-button {
    text-align: center;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 70px;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .site-nav a {
    padding: 14px;
  }

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

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 820px) {

  .section-band,
  .section,
  .service-strip,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.72rem, 12vw, 4.3rem);
  }

  .legal-hero h1 {
    font-size: clamp(2.45rem, 9vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

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

  .proof-row,
  .hero-visual,
  .service-strip,
  .service-grid,
  .category-grid,
  .experience-proof,
  .certification-groups,
  .brand-showcase,
  .expertise-tabs,
  .support-steps {
    grid-template-columns: 1fr;
  }

  .service-strip a,
  .service-strip a:nth-child(2n + 1) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip a:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    width: min(100%, 460px);
    justify-self: center;
  }

  .service-profile dl {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
  }

  .expertise-panel {
    min-height: auto;
  }

  .legal-contact-grid {
    grid-template-columns: 1fr;
  }

  .data-feature {
    padding: 28px 20px;
  }

  .dashboard-top {
    display: grid;
  }

  .dashboard-top strong {
    max-width: none;
    text-align: left;
  }

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

  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .button {
    width: 100%;
  }

  .proof-row div {
    min-height: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .contact-content {
    padding: 30px 20px;
  }
}

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