:root {
  --ns-primary: #2FA8DF;
  --ns-primary-hover: #238BB8;
  --ns-primary-dark: #1E7FA8;
  --ns-primary-light: #6ECBF2;
  --ns-primary-rgb: 47, 168, 223;
  --ns-dark: #171A20;
  --ns-dark-soft: #20242B;
  --ns-dark-card: #242932;
  --ns-light: #F5F7FA;
  --ns-text: #E8EEF5;
  --ns-text-muted: #AAB4C0;
  --ns-border: rgba(255,255,255,0.12);
  --ns-ink: #182026;
  --ns-muted: #65717b;
  --ns-line: #dfe7eb;
  --ns-soft: #f4f7f5;
  --ns-white: #ffffff;
  --ns-teal: var(--ns-primary);
  --ns-teal-dark: var(--ns-primary-dark);
  --ns-amber: var(--ns-primary);
  --ns-rust: var(--ns-primary-dark);
  --ns-charcoal: var(--ns-dark-soft);
  --ns-shadow: 0 18px 45px rgba(24, 32, 38, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.norm-page {
  color: var(--ns-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background: var(--ns-white);
}

a {
  color: var(--ns-teal-dark);
}

a:hover {
  color: var(--ns-rust);
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid rgba(217, 154, 40, .72);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ns-ink);
  color: var(--ns-white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 14px;
  color: var(--ns-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(24, 32, 38, .08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  position: relative;
  align-items: flex-end;
  flex: 0 0 auto;
  gap: 8px;
  text-decoration: none;
  color: var(--ns-ink);
  font-weight: 800;
}

.site-logo img {
  display: block;
  width: 154px;
  max-height: 42px;
  object-fit: contain;
}

.site-logo span {
  font-size: 12px;
  line-height: 1;
  color: var(--ns-muted);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav > ul > li {
  position: relative;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--ns-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ns-teal-dark);
  background: rgba(29, 127, 122, .08);
}

.has-dropdown > a::after {
  content: "\f107";
  margin-left: 7px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 12px;
}

.site-nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  display: grid !important;
  min-width: 270px;
  padding: 10px;
  background: var(--ns-white);
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  box-shadow: var(--ns-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .18s ease;
}

.has-dropdown:hover .site-nav__dropdown,
.has-dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown a {
  justify-content: flex-start;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  font-weight: 700;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--ns-teal-dark);
  font-weight: 800;
  white-space: nowrap;
}

.tp-btn,
.outline-btn,
.squire-btn {
  border-radius: 6px;
  letter-spacing: 0;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 21px;
  color: var(--ns-white);
  background: var(--ns-teal);
  border: 1px solid var(--ns-teal);
  font-weight: 800;
  text-decoration: none;
}

.tp-btn:hover {
  color: var(--ns-white);
  background: var(--ns-teal-dark);
  border-color: var(--ns-teal-dark);
}

.slider-title {
  line-height: 1.08em;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 21px;
  color: var(--ns-ink);
  background: transparent;
  border: 1px solid rgba(24, 32, 38, .24);
  font-weight: 800;
  text-decoration: none;
}

.outline-btn:hover {
  color: var(--ns-teal-dark);
  border-color: var(--ns-teal);
}

.outline-btn--light {
  color: var(--ns-white);
  border-color: rgba(255, 255, 255, .58);
}

.outline-btn--light:hover {
  color: var(--ns-white);
  border-color: var(--ns-amber);
  background: rgba(255, 255, 255, .08);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--ns-line);
  border-radius: 6px;
  background: var(--ns-white);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ns-ink);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(24, 32, 38, .45);
}

.mobile-nav__panel {
  width: min(420px, 92vw);
  height: 100%;
  margin-left: auto;
  padding: 22px;
  overflow: auto;
  background: var(--ns-white);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-nav__top button,
.link-button,
.footer-link-button,
.cookie-modal__close {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.mobile-nav nav > a,
.mobile-nav__sub a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--ns-line);
  color: var(--ns-ink);
  font-weight: 800;
  text-decoration: none;
}

.mobile-nav__sub {
  padding-left: 18px;
}

.mobile-nav__sub a {
  color: var(--ns-muted);
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav__contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hero-corporate {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 110px 0 86px;
  overflow: hidden;
  color: var(--ns-white);
  background: var(--ns-charcoal) center / cover no-repeat;
}

.hero-corporate__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 32, 38, .92), rgba(24, 32, 38, .67) 48%, rgba(24, 32, 38, .28)),
    linear-gradient(180deg, rgba(24, 32, 38, .1), rgba(24, 32, 38, .58));
}

.hero-corporate .container {
  position: relative;
  z-index: 1;
}

.hero-corporate h1 {
  max-width: 920px;
  margin: 0 0 24px;
  color: var(--ns-white);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-corporate p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-phone {
  color: var(--ns-white);
  font-weight: 800;
}

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

.hero-corporate__matrix span {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: var(--ns-white);
  background: rgba(255, 255, 255, .08);
  font-size: 18px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.section,
.section-pad {
  padding: 92px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-title {
  color: var(--ns-ink);
  line-height: 1.14;
  letter-spacing: 0;
}

.lead-copy {
  color: var(--ns-muted);
  font-size: 19px;
  line-height: 1.7;
}

.grey-bg {
  background-color: var(--ns-soft);
}

.black-bg {
  background-color: var(--ns-charcoal);
}

.norm-page-hero {
  min-height: 430px;
  padding: 128px 0 86px;
  overflow: hidden;
  color: var(--ns-white);
  background: var(--ns-charcoal) center / cover no-repeat;
}

.norm-page-hero .page__title-bg {
  position: absolute;
  inset: 0;
  background: inherit;
}

.norm-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 32, 38, .9), rgba(24, 32, 38, .62), rgba(24, 32, 38, .42));
}

.norm-page-hero .container {
  position: relative;
  z-index: 2;
}

.norm-page-hero .page__title-content {
  margin-top: 0;
  text-align: left;
}

.norm-page-hero h1 {
  margin: 0;
  color: var(--ns-white);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
}

.norm-page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.breadcrumb-wrap {
  background: var(--ns-white);
  border-bottom: 1px solid var(--ns-line);
}

.breadcrumb-wrap ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.breadcrumb-wrap li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--ns-muted);
}

.norm-group-card {
  height: 100%;
  min-height: 278px;
  padding: 28px 22px;
  border-radius: 8px;
  background: var(--ns-charcoal);
}

.norm-group-card .mservices__icon {
  color: var(--ns-amber);
}

.norm-group-card .ms-title,
.norm-group-card p {
  color: var(--ns-white);
}

.norm-group-card p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .75);
}

.norm-group-card a {
  color: var(--ns-amber);
  font-weight: 800;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  box-shadow: none;
}

.service-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(29, 127, 122, .08);
}

.service-card__media img {
  max-width: 54px;
  max-height: 54px;
  object-fit: contain;
}

.service-card .mf-title {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

.service-card p {
  color: var(--ns-muted);
}

.service-card .mf-btn {
  margin-top: auto;
}

.squire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ns-white);
  background: var(--ns-teal);
  text-decoration: none;
}

.service-group-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--ns-line);
}

.service-group-block:first-child {
  padding-top: 0;
}

.compact-list,
.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.compact-list li,
.check-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--ns-muted);
}

.compact-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ns-amber);
}

.process-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 20px 22px 20px 78px;
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  background: var(--ns-white);
  counter-increment: step;
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ns-teal-dark);
  font-size: 28px;
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  color: var(--ns-muted);
}

.process-list--compact li {
  min-height: auto;
  min-height: 70px;
}

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

.audience-grid div,
.why-grid div {
  min-height: 92px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: var(--ns-white);
  background: rgba(255, 255, 255, .06);
  font-weight: 800;
}

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

.why-grid div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ns-ink);
  background: var(--ns-white);
  border-color: var(--ns-line);
}

.why-grid i {
  color: var(--ns-teal);
  margin-top: 4px;
}

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

.ecosystem-card,
.detail-card,
.reference-card,
.contact-card,
.contact-panel,
.service-sidebar,
.not-found-panel,
.legal-content {
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  background: var(--ns-white);
  box-shadow: 0 10px 28px rgba(24, 32, 38, .06);
}

.ecosystem-card,
.detail-card,
.reference-card,
.contact-card,
.contact-panel,
.service-sidebar,
.not-found-panel {
  padding: 28px;
}

.ecosystem-card h2,
.ecosystem-card h3,
.detail-card h3,
.reference-card h2,
.contact-card h2,
.service-sidebar h2 {
  margin-bottom: 12px;
  color: var(--ns-ink);
  font-size: 22px;
  line-height: 1.25;
}

.ecosystem-card p,
.detail-card p,
.reference-card p,
.contact-card p,
.service-sidebar p {
  color: var(--ns-muted);
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ns-orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-feature-block {
  border-left: 4px solid var(--ns-orange);
  padding-left: 26px;
}

.ecosystem-card a {
  font-weight: 800;
}

.ecosystem-card--large {
  min-height: 300px;
}

.sticky-side {
  position: sticky;
  top: 112px;
}

.service-detail__intro {
  padding: 0 0 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--ns-line);
}

.service-detail__intro p {
  max-width: 840px;
  margin: 0;
  font-size: 21px;
  line-height: 1.7;
  color: var(--ns-ink);
}

.content-block {
  margin-bottom: 56px;
}

.content-block--tight {
  margin-bottom: 34px;
}

.content-block h2 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
}

.content-block h3 {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.25;
}

.spoke-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.spoke-link-card {
  position: relative;
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  background: var(--ns-white);
  color: var(--ns-ink);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.spoke-link-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px 0 8px 0;
  background: var(--ns-orange);
}

.spoke-link-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ns-ink);
  font-family: var(--ns-heading-font);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.spoke-link-card small {
  display: block;
  color: var(--ns-muted);
  font-size: 15px;
  line-height: 1.55;
}

.spoke-link-card em {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--ns-orange);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.spoke-link-card:hover {
  border-color: var(--ns-orange);
  box-shadow: 0 18px 45px rgba(18, 20, 24, .12);
  color: var(--ns-ink);
  transform: translateY(-2px);
}

.capability-block {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  background: #fbfbfc;
}

.content-block .capability-block {
  margin-top: 0;
}

.capability-block--compact {
  padding: 28px;
}

.capability-block__head {
  max-width: 860px;
  margin-bottom: 22px;
}

.capability-block__head span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ns-orange);
  font-family: var(--ns-heading-font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.capability-block__head h2 {
  margin: 0 0 10px;
  color: var(--ns-ink);
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: 0;
}

.capability-block__head p {
  margin: 0;
  color: var(--ns-muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.capability-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 8px;
  background: var(--ns-white);
  box-shadow: 0 12px 36px rgba(18, 20, 24, .06);
}

.capability-card h3 {
  margin: 0 0 14px;
  color: var(--ns-ink);
  font-family: var(--ns-heading-font);
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.capability-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ns-muted);
  font-size: 15px;
  line-height: 1.45;
}

.capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ns-orange);
}

.service-group-block--ideas {
  border-top: 1px solid var(--ns-line);
  padding-top: 70px;
}

.service-group-block--ideas .capability-block + .capability-block {
  margin-top: 22px;
}

.service-sidebar {
  position: sticky;
  top: 112px;
}

.service-sidebar img {
  display: block;
  max-width: 120px;
  max-height: 120px;
  margin-bottom: 24px;
  object-fit: contain;
}

.service-sidebar nav {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.service-sidebar nav a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--ns-line);
  border-radius: 6px;
  color: var(--ns-ink);
  text-decoration: none;
  font-weight: 800;
}

.service-sidebar nav a:hover {
  border-color: var(--ns-teal);
  color: var(--ns-teal-dark);
}

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

.faq-list details {
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  background: var(--ns-white);
}

.faq-list summary {
  min-height: 58px;
  padding: 17px 20px;
  cursor: pointer;
  color: var(--ns-ink);
  font-weight: 900;
}

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

.faq-list--wide {
  max-width: 920px;
  margin: 0 auto;
}

.price-table {
  width: 100%;
  margin: 16px 0 28px;
  border-collapse: collapse;
  background: var(--ns-white);
}

.price-table th,
.price-table td {
  padding: 13px 14px;
  border: 1px solid var(--ns-line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--ns-soft);
  color: var(--ns-ink);
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 34px;
  border-radius: 8px;
  background: var(--ns-soft);
}

.about-visual img {
  width: 260px;
}

.about-visual__since {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 14px 18px;
  border-radius: 6px;
  color: var(--ns-white);
  background: var(--ns-teal-dark);
  font-weight: 900;
}

.reference-card {
  height: 100%;
}

.reference-card__logo {
  display: grid;
  place-items: center;
  height: 118px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--ns-soft);
}

.reference-card__logo img {
  max-width: 170px;
  max-height: 82px;
  object-fit: contain;
}

.content-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 22px 55px rgba(13, 22, 28, .16);
}

.tech-card {
  min-height: 100%;
  padding: 34px;
  border-radius: 6px;
  background: var(--ns-white);
  border: 1px solid var(--ns-line);
  box-shadow: 0 18px 45px rgba(13, 22, 28, .08);
}

.tech-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tech-card--link:hover,
.tech-card--link:focus-visible {
  color: inherit;
  border-color: var(--ns-orange);
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(13, 22, 28, .14);
}

.tech-card__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ns-orange);
  font-family: var(--ns-heading-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tech-card h2 {
  margin-bottom: 12px;
  color: var(--ns-ink);
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.tech-card p {
  margin-bottom: 18px;
  color: var(--ns-muted);
}

.tech-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-card li {
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(241, 137, 72, .1);
  color: var(--ns-ink);
  font-size: 13px;
  font-weight: 800;
}

.tech-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--ns-teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.technology-items {
  display: grid;
  gap: 18px;
}

.technology-item {
  padding: 26px 28px;
  border: 1px solid var(--ns-line);
  border-left: 4px solid var(--ns-orange);
  border-radius: 6px;
  background: var(--ns-white);
  box-shadow: 0 14px 36px rgba(13, 22, 28, .06);
}

.technology-item h3 {
  margin-bottom: 10px;
  color: var(--ns-ink);
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
}

.technology-item p {
  margin: 0;
  color: var(--ns-muted);
  line-height: 1.75;
}

.service-sidebar nav a.is-current {
  border-color: var(--ns-orange);
  background: rgba(241, 137, 72, .1);
  color: var(--ns-ink);
}

.inline-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ns-teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card {
  position: sticky;
  top: 112px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.contact-note {
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid var(--ns-line);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ns-ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd7dc;
  border-radius: 6px;
  background: var(--ns-white);
  color: var(--ns-ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.privacy-check {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600 !important;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.field-error,
.form-errors {
  color: #8d2d1f;
}

.field-error {
  margin: 7px 0 0;
  font-size: 14px;
}

.form-errors,
.form-success {
  padding: 16px 18px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.form-errors {
  border: 1px solid #8be3fa;
  background: #e8f9ff;
}

.form-success {
  border: 1px solid #b8d9cf;
  background: #eef8f5;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-content {
  max-width: 980px;
  padding: 42px;
  margin: 0 auto;
}

.norm-cta {
  padding: 72px 0;
  background: var(--ns-charcoal);
}

.norm-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.norm-cta h2 {
  color: var(--ns-white);
  font-size: 34px;
  line-height: 1.2;
}

.norm-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.norm-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.norm-cta .outline-btn {
  color: var(--ns-white);
  border-color: rgba(255, 255, 255, .35);
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: var(--ns-charcoal) center / cover no-repeat;
}

.footer-top {
  padding: 86px 0 26px;
  background: rgba(24, 32, 38, .94);
}

.footer-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--ns-white);
  text-decoration: none;
  font-weight: 800;
}

.footer-logo img {
  width: 168px;
}

.footer-logo span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.footer-widget h3 {
  margin-bottom: 20px;
  color: var(--ns-white);
  font-size: 20px;
}

.footer-widget p,
.footer-widget li {
  color: rgba(255, 255, 255, .72);
}

.footer-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-widget li {
  margin-bottom: 9px;
}

.footer-widget a,
.footer-link-button {
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
}

.footer-widget a:hover,
.footer-link-button:hover {
  color: var(--ns-amber);
}

.footer-cta {
  color: var(--ns-amber) !important;
  font-weight: 800;
}

.footer-bottom {
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.mobile-sticky-cta {
  display: none;
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1300;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(760px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid var(--ns-line);
  border-radius: 8px;
  background: var(--ns-white);
  box-shadow: var(--ns-shadow);
}

.cookie-consent[hidden],
.cookie-modal[hidden],
.mobile-nav[hidden] {
  display: none;
}

.cookie-consent__title {
  margin-bottom: 4px;
  color: var(--ns-ink);
  font-weight: 900;
}

.cookie-consent p {
  margin: 0;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.link-button {
  color: var(--ns-teal-dark);
  font-weight: 800;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(24, 32, 38, .55);
}

.cookie-modal__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border-radius: 8px;
  background: var(--ns-white);
}

.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 22px;
}

.cookie-toggle {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--ns-line);
  font-weight: 800;
}

.cookie-toggle input {
  width: 20px;
  height: 20px;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cookie-status {
  margin: 16px 0 0;
  color: var(--ns-muted);
}

@media (max-width: 1199px) {
  .site-nav,
  .header-phone {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .site-header__actions {
    margin-left: auto;
  }

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

@media (max-width: 991px) {
  .hero-corporate {
    min-height: auto;
    padding: 92px 0 70px;
  }

  .hero-corporate__matrix {
    margin-top: 34px;
  }

  .section,
  .section-pad {
    padding: 68px 0;
  }

  .sticky-side,
  .service-sidebar,
  .contact-card {
    position: static;
  }

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

  .capability-block__grid {
    grid-template-columns: 1fr;
  }

  .norm-cta__panel {
    display: block;
  }

  .norm-cta__actions {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    min-height: 70px;
  }

  .site-logo img {
    width: 136px;
  }

  .site-logo span,
  .header-cta {
    display: none;
  }

  .hero-corporate h1 {
    font-size: 40px;
  }

  .hero-corporate p,
  .norm-page-hero p,
  .lead-copy,
  .service-detail__intro p {
    font-size: 17px;
  }

  .hero-corporate__matrix,
  .audience-grid,
  .why-grid,
  .why-grid--small,
  .spoke-link-grid {
    grid-template-columns: 1fr;
  }

  .norm-page-hero {
    min-height: 360px;
    padding: 96px 0 62px;
  }

  .norm-page-hero h1 {
    font-size: 38px;
  }

  .content-block h2,
  .norm-cta h2 {
    font-size: 28px;
  }

  .process-list li {
    padding-left: 64px;
  }

  .legal-content,
  .norm-cta__panel,
  .capability-block,
  .capability-block--compact {
    padding: 24px;
  }

  .capability-block__head h2 {
    font-size: 26px;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 82px;
    width: auto;
    display: block;
  }

  .cookie-consent__actions {
    margin-top: 14px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--ns-white);
    border-top: 1px solid var(--ns-line);
  }

  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    color: var(--ns-ink);
    font-weight: 900;
    text-decoration: none;
  }
}
