/* WS IT 2.0 — corporate WSIT-style theme */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --blue: #004896;
  --blue-dark: #003366;
  --blue-light: #0066cc;
  --blue-pale: #e8f0fa;
  --white: #ffffff;
  --bg: #f4f6f9;
  --text: #1a2b3c;
  --muted: #5a6b7d;
  --line: #d8e0ea;
  --max: 1180px;
  --content-measure: 760px;
  --pad: clamp(16px, 2.5vw, 24px);
  --header-h: 120px;
  --topbar-h: 42px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0, 51, 102, 0.08);
  --shadow-hover: 0 8px 32px rgba(0, 51, 102, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: var(--white);
}

.skip:focus {
  left: 0;
}

/* ── Top bar ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  min-height: var(--topbar-h);
}

.topbar a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.topbar a:hover {
  color: var(--white);
  text-decoration: underline;
}

.topbar svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Site header ── */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.siteHeader__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand img {
  height: 88px;
  width: auto;
}

.navToggle {
  display: none;
  margin-left: auto;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.mainNav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  gap: 0;
}

.navItem {
  position: relative;
}

.navItem > a,
.navItem > button.navLink {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1rem;
  min-height: var(--header-h);
  border: none;
  background: none;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.navItem > a:hover,
.navItem > button.navLink:hover,
.navItem.is-open > button.navLink {
  color: var(--blue);
  background: var(--blue-pale);
  text-decoration: none;
}

.navItem > a.is-active {
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.navChevron {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform 0.2s;
}

.navItem.is-open .navChevron {
  transform: rotate(180deg);
}

.megaMenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 1rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}

.navItem.is-open .megaMenu,
.navItem:focus-within .megaMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 901px) {
  .navItem.hasDropdown:hover .megaMenu,
  .navItem.hasDropdown:focus-within .megaMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.megaMenu--wide {
  min-width: min(640px, calc(100vw - var(--pad) * 2));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 1.25rem;
}

.megaMenu__col h3 {
  margin: 0 0 0.5rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.megaMenu a {
  display: block;
  padding: 0.45rem 0.75rem;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
}

.megaMenu a:hover {
  background: var(--blue-pale);
  color: var(--blue);
  text-decoration: none;
}

.megaMenu a.is-active {
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-weight: 700;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #005baa 100%);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.hero__watermark {
  display: none;
  justify-self: center;
  align-self: center;
  width: min(100%, 360px);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 28%, transparent 92%);
  mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 28%, transparent 92%);
}

.hero__watermark img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.2;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 961px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .hero__watermark {
    display: block;
  }
}

.hero__kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 18ch;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn--primary:hover {
  background: var(--blue-pale);
  color: var(--blue-dark);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--white);
  text-decoration: none;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

.tile__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ── Sections ── */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--alt {
  background: var(--bg);
}

.sectionHead {
  margin-bottom: 2rem;
  text-align: center;
}

.sectionHead h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--blue-dark);
}

.sectionHead p {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.0625rem;
}

/* ── Service tiles (WSIT-style) ── */
.tileGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.tile:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.tile__media {
  aspect-ratio: 16 / 10;
  background: var(--white);
  overflow: hidden;
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile__media img.fit-contain {
  object-fit: contain;
  padding: 1rem;
  background: var(--white);
}

.tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.tile__brand {
  height: 28px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
  object-position: left;
}

.tile__media--logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile__media--msp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
}

.tile__media--msp .msp-infographic {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.tile__logoPair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
}

.tile__logoPair img,
.tile__media--logos > img {
  height: clamp(36px, 8vw, 52px);
  width: auto;
  max-width: 90%;
  object-fit: contain;
}

.tile__logoPair img {
  max-width: 42%;
}

.tile__brands {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.tile__brands img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.tile__brand--wsit {
  height: 36px;
  width: auto;
}

.tile__brand--unifi {
  height: 36px;
}

.tile__title {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
}

.tile__title--lg {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--blue-dark);
}

.tile p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.tile__link {
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  text-decoration: none;
}

.tile__link:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

.tile__link::after {
  content: " →";
}

.mspHighlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .mspHighlight {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem 2.25rem;
  }
}

.mspHighlight__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.mspHighlight__logos img {
  display: block;
  height: auto;
  object-fit: contain;
}

.mspHighlight__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.mspHighlight__body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.mspHighlight__body .btn {
  margin-top: 0.25rem;
}

/* ── Quick facts ── */
.factsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.fact {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.fact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-dark);
  font-size: 1rem;
}

.fact span {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* ── Partners strip ── */
.partners {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

@media (min-width: 640px) {
  .partners__list {
    grid-template-columns: repeat(4, auto);
    gap: 1.25rem 2rem;
  }
}

@media (min-width: 1100px) {
  .partners__list {
    grid-template-columns: repeat(8, auto);
    gap: 1rem 1.75rem;
  }
}

.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

.partners__item img,
.partners__item svg {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: center;
  opacity: 0.78;
  filter: grayscale(25%);
  transition: opacity 0.2s, filter 0.2s;
}

.partners__item:hover img,
.partners__item:hover svg {
  opacity: 1;
  filter: none;
}

.partners__item--ms svg {
  max-height: 32px;
  max-width: 32px;
  filter: none;
  opacity: 1;
}

.partners__item--unifi img {
  max-width: 108px;
}

.partners__item--voip img {
  max-width: 118px;
}

.partners__item--bitdefender svg {
  width: 136px;
  height: 26px;
  max-width: 136px;
  max-height: 26px;
  filter: none;
  opacity: 0.95;
}

.partners__item--hikvision svg {
  width: 124px;
  height: 24px;
  max-width: 124px;
  max-height: 24px;
  filter: none;
  opacity: 0.88;
}

.partners__item--jablotron img {
  max-width: 118px;
}

.partners__item--hp img {
  max-width: 40px;
}

.partners__item--lenovo img,
.partners__item--lenovo svg {
  max-height: 36px;
  max-width: 140px;
  filter: none;
  opacity: 0.95;
}

/* ── Trust & CTA bands (homepage) ── */
.trustBand {
  padding: 2rem 0;
  background: var(--blue-pale);
  border-block: 1px solid var(--line);
}

.trustBand__inner {
  text-align: center;
}

.trustBand__lead {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.trustBand__list {
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.trustBand__list li {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.trustBand__list li::before {
  content: "✓ ";
  color: var(--blue);
  font-weight: 700;
}

.ctaBand {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
}

.ctaBand__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.ctaBand__text {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
}

.ctaBand__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.ctaBand .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.ctaBand .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.sectionFoot {
  margin: 1.5rem 0 0;
  text-align: center;
}

.sectionFoot a {
  font-weight: 600;
  color: var(--blue);
}

.tileGrid--blog {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ── NIS2 block (homepage) ── */
.nis2Block {
  margin-top: 2.5rem;
  padding: 2.5rem 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nis2Block__intro h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--blue-dark);
}

.nis2Block__intro p {
  margin: 0;
  max-width: none;
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
}

.nis2Block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .nis2Block__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nis2Block__card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.nis2Block__card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.nis2Block__card ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.nis2Block__card li + li {
  margin-top: 0.4rem;
}

.nis2Block__foot {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--muted);
}

.nis2Block__foot a {
  font-weight: 600;
  color: var(--blue);
}

/* ── Downloads page ── */
.downloadWrap {
  max-width: 56rem;
}

.downloadList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.downloadIntro {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--blue-pale) 0%, rgba(255,255,255,0.95) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.downloadIntro__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.downloadIntro__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--blue-dark);
}

.downloadIntro__text {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.downloadCategory {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.downloadCategory:first-child {
  margin-top: 0;
}

.downloadCategory h3 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.downloadCard {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: start;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.downloadCard__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--blue-pale);
  color: var(--blue);
}

.downloadCard__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.downloadCard__body {
  min-width: 0;
}

.downloadCard__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.downloadCard__meta {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.downloadCard__size {
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid var(--line);
}

.downloadCard p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.downloadCard__filename {
  margin-top: 0.65rem !important;
  font-size: 0.75rem !important;
  color: var(--muted) !important;
  word-break: break-all;
}

.downloadCard .btn {
  align-self: center;
  white-space: nowrap;
}

.downloadStatus {
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.downloadStatus__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.downloadStatus__link {
  font-weight: 600;
  color: var(--blue);
}

.downloadEmpty {
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.downloadEmpty p {
  margin: 0 0 0.5rem;
}

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

.downloadEmpty code {
  font-size: 0.875em;
}

.downloadNote {
  margin: 1.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.downloadNote a {
  font-weight: 600;
  color: var(--blue);
}

.downloadLogin {
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 720px) {
  .downloadCard {
    grid-template-columns: 2.75rem 1fr;
  }

  .downloadCard .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

/* ── About / prose ── */
.prose {
  max-width: 68ch;
  margin-inline: auto;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text);
}

.proseCard {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Contact ── */
.contactGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.contactCard {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contactCard:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}

.contactCard__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--blue-pale);
  border-radius: var(--radius);
  color: var(--blue);
}

.contactCard__icon svg {
  width: 20px;
  height: 20px;
}

.contactCard strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.contactCard small {
  font-size: 0.9375rem;
  color: var(--text);
}

.contactForm {
  max-width: 640px;
  margin-inline: auto;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.formRow {
  margin-bottom: 1rem;
}

.formRow label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.formRow input,
.formRow textarea,
.formRow select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: var(--white);
}

.formRow select {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
  padding-right: 2.5rem;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}

.formRow select:invalid {
  color: var(--muted);
}

.formRow input:focus,
.formRow textarea:focus,
.formRow select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.formRow textarea {
  min-height: 120px;
  resize: vertical;
}

.formRow--hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contactStatus {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}

.contactStatus--ok {
  color: #0d7a4a;
}

.contactStatus--error {
  color: #b42318;
}

.contactStatus--info {
  color: var(--muted);
}

/* ── Subpages ── */
.pageHero {
  background: var(--blue-pale);
  padding: 2rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
}

.pageHero .back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.pageHero .back:hover {
  text-decoration: underline;
}

.pageHero__brandSlot {
  justify-self: end;
  align-self: center;
}

.pageHero__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.pageHero__copy {
  min-width: 0;
}

.pageHero__brands {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem 1.25rem;
}

.pageHero__brands img {
  display: block;
  flex-shrink: 0;
  height: 4.25rem;
  width: auto;
  object-fit: contain;
  object-position: right center;
}

.pageHero__brands .pageHero__logo--msp {
  width: 18.5rem;
  height: 6.125rem;
}

.pageHero__brands .pageHero__logo--wide {
  height: 4.25rem;
  width: auto;
  max-width: 16rem;
}

.pageHero__brands .pageHero__logo--wsit {
  height: 4.75rem;
  width: auto;
  max-width: 10.5rem;
}

.pageHero__brands .pageHero__logo--icon {
  width: 3.75rem;
  height: 3.75rem;
}

.pageHero__brands .pageHero__logo--wsit.pageHero__logo--lg {
  height: 6rem;
  max-width: 13.5rem;
}

.pageHero__brands .pageHero__logo--icon.pageHero__logo--lg {
  width: 5.25rem;
  height: 5.25rem;
}

/* Gelaagd beveiligingsdiagram (HTML/CSS) */
.layersChart {
  width: 100%;
  max-width: 22rem;
}

.layersChart__attack {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.layersChart__stack {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.layersChart__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 51, 102, 0.12);
}

.layersChart__row--network { background: #1a5f9e; }
.layersChart__row--endpoint { background: #0077b6; }
.layersChart__row--tenant { background: #e67e22; }
.layersChart__row--baseline { background: #2d8a5e; }
.layersChart__row--backup { background: #6b4c9a; }

.layersChart__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.875rem;
  font-weight: 700;
}

.layersChart__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.layersChart__text strong {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.layersChart__text span {
  font-size: 0.6875rem;
  opacity: 0.92;
  line-height: 1.3;
}

.layersChart__foot {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  color: var(--muted);
  text-align: center;
}

.layersChart--compact {
  max-width: 15rem;
}

.layersChart--compact .layersChart__row {
  padding: 0.45rem 0.65rem;
  gap: 0.5rem;
}

.layersChart--compact .layersChart__num {
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.75rem;
}

.layersChart--compact .layersChart__text strong {
  font-size: 0.75rem;
}

.layersChart--compact .layersChart__text span {
  font-size: 0.625rem;
}

.pageHero__brandSlot .layersChart--compact {
  max-width: min(15rem, 100%);
}

/* Verwijder witte PNG-achtergrond op lichtblauwe hero */
.pageHero__brands img.pageHero__logo--blend {
  mix-blend-mode: multiply;
}

.pageHero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--blue-dark);
}

.pageHero .tagline {
  margin: 0;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 52ch;
}

@media (max-width: 720px) {
  .pageHero__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.25rem;
  }

  .pageHero__brandSlot {
    justify-self: end;
  }

  .pageHero__brands .pageHero__logo--msp {
    width: min(18.5rem, 100%);
    height: auto;
    max-height: 5.5rem;
  }

  .pageHero__brands .pageHero__logo--wide {
    height: 3.75rem;
  }

  .pageHero__brands .pageHero__logo--wsit {
    height: 4rem;
  }
}

.pageContent,
.pageHero__wrap {
  max-width: var(--content-measure);
}

.pageContent {
  padding: 2.5rem 0 3rem;
}

.blogMeta {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.pageHero .blogMeta {
  margin-bottom: 0.625rem;
}

.tile__body .blogMeta {
  margin-bottom: 0.625rem;
}

.blogNote {
  margin: 1rem 0 0;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
}

.pageContent--wide {
  max-width: min(var(--max), calc(100% - var(--pad) * 2));
}

.wrap.pageContent--guides {
  width: calc(100% - var(--pad) * 2);
  max-width: none;
}

.pageContent--guides {
  max-width: none;
}

.securityLayersDiagram {
  margin: 1.75rem 0 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.securityLayersDiagram .layersChart {
  max-width: 26rem;
  margin-inline: auto;
}

.securityLayersDiagram figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

.securityLayers {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.securityLayer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left-width: 4px;
}

.securityLayer--network { border-left-color: #1a5f9e; }
.securityLayer--endpoint { border-left-color: #0077b6; }
.securityLayer--tenant { border-left-color: #e67e22; }
.securityLayer--baseline { border-left-color: #2d8a5e; }
.securityLayer--backup { border-left-color: #6b4c9a; }

.securityLayer__badge {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.securityLayer--network .securityLayer__badge { background: #1a5f9e; }
.securityLayer--endpoint .securityLayer__badge { background: #0077b6; }
.securityLayer--tenant .securityLayer__badge { background: #e67e22; }
.securityLayer--baseline .securityLayer__badge { background: #2d8a5e; }
.securityLayer--backup .securityLayer__badge { background: #6b4c9a; }

.securityLayer__body h2 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  color: var(--blue-dark);
}

.securityLayer__body p {
  margin: 0 0 0.75rem;
}

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

.securityLayer__body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

.securityLayer__body li {
  margin-bottom: 0.35rem;
}

@media (max-width: 560px) {
  .securityLayer {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.pageContent h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--blue-dark);
}

.pageContent h2:first-child {
  margin-top: 0;
}

.pageContent p,
.pageContent li {
  color: var(--text);
  line-height: 1.65;
}

.pageContent ul {
  padding-left: 1.25rem;
}

.pageContent li {
  margin-bottom: 0.35rem;
}

.docFigure {
  margin: 1.5rem 0;
}

.docFigure img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.docFigure figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.pageCta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--blue-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}

/* ── Footer ── */
.siteFooter {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9375rem;
}

.siteFooter a {
  color: rgba(255, 255, 255, 0.92);
}

.siteFooter a:hover {
  color: var(--white);
}

.footerGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footerGrid h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

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

.footerGrid li {
  margin-bottom: 0.4rem;
}

.footerBottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ── Mobile nav ── */
@media (max-width: 900px) {
  .brand img {
    height: 56px;
  }

  .siteHeader__inner {
    min-height: 80px;
  }

  .navToggle {
    display: block;
  }

  .mainNav {
    position: fixed;
    inset: calc(var(--topbar-h) + var(--header-h)) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0.5rem 0 2rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .mainNav.is-open {
    transform: translateX(0);
  }

  .navItem > a,
  .navItem > button.navLink {
    min-height: auto;
    padding: 0.85rem var(--pad);
    width: 100%;
    justify-content: space-between;
  }

  .megaMenu,
  .megaMenu--wide {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 0 0 0.5rem;
    min-width: 0;
    display: none;
    grid-template-columns: 1fr;
  }

  .navItem.is-open .megaMenu {
    display: block;
  }

  .megaMenu--wide.is-open-grid {
    display: grid;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tile:hover {
    transform: none;
  }
}

/* Handleidingen (geconverteerd uit Word) */
.guideContent h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--blue-dark);
}

.guideContent h2:first-child {
  margin-top: 0;
}

.guideContent p,
.guideContent li {
  margin: 0 0 1rem;
}

.guideContent ol,
.guideContent ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.guideContent li ul,
.guideContent li ol {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.guideContent img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guideContent strong {
  color: var(--text);
}

.guideList {
  display: grid;
  gap: 1rem;
}

.guideSections {
  display: grid;
  gap: 2.75rem;
}

.guideSection {
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 0.75rem);
}

.guideSection__head {
  margin-bottom: 1rem;
}

.guideSection__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.guideSection__desc {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.guideSubsections {
  display: grid;
  gap: 1.75rem;
}

.guideSubsection {
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 0.75rem);
}

.guideSubsection__title {
  margin: 0 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue);
}

.guideIndexJump {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.guideIndexJump__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.guideIndexJump__card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.guideIndexJump__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.35rem;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: var(--radius);
}

.guideIndexJump__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.guideIndexJump__label {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--blue-dark);
}

.guideIndexJump__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}

.guideIndexJump__meta {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
}

.guideList--compact {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: 0.65rem;
}

.guideList--compact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  min-height: 0;
}

.guideList--compact .guideList__title {
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.35;
}

.guideList--compact .guideList__cat {
  display: none;
}

.guideList__arrow {
  flex-shrink: 0;
  color: var(--blue);
  opacity: 0.55;
  transition: opacity 0.15s, transform 0.15s;
}

.guideList--compact a:hover .guideList__arrow {
  opacity: 1;
  transform: translateX(2px);
}

@media (min-width: 1100px) {
  .guideSubsections {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2rem;
    align-items: start;
  }

  .guideSubsection:only-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .guideIndexJump {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .guideIndexJump {
    grid-template-columns: 1fr;
  }

  .guideList--compact {
    grid-template-columns: 1fr;
  }
}

.megaMenu--guides {
  min-width: 220px;
  padding: 0.35rem 0;
  display: block;
}

.megaMenu--guides > a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
}

.megaMenu--guides > a:hover {
  background: var(--blue-pale);
  color: var(--blue);
  text-decoration: none;
}

.megaMenu--guides > a.is-active {
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-weight: 700;
}

.guideFigure {
  margin: 1rem 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #f4f7fb;
  line-height: 0;
}

.guideFigure svg,
.guideFigure img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

.guideFigure--icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  max-width: 420px;
  line-height: 1.45;
  background: var(--white);
}

.guideFigure--icon img {
  width: auto;
  max-width: none;
  height: 48px;
  margin: 0;
  flex-shrink: 0;
  image-rendering: auto;
}

.guideFigure--icon figcaption {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.45;
}

.guideActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.guideActions__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.guideActions__btn:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--white);
}

.guideActions__btn:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}

.guideActions__btn--secondary {
  background: var(--white);
  color: var(--blue);
}

.guideActions__btn--secondary:hover {
  background: var(--blue-pale);
  color: var(--blue-dark);
}

.guideActions__btn[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.guidePdfExport {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
}

.guidePdfExport h1 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  color: var(--blue-dark);
}

.guidePdfExport__tagline {
  margin: 0 0 1rem;
  color: var(--muted);
}

@media print {
  .topbar,
  .siteHeader,
  .siteFooter,
  .guideActions,
  .back,
  .navToggle,
  .skip,
  .crisp-client {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .pageHero {
    padding: 0 0 1rem;
    background: none;
    border: none;
  }

  .pageHero h1 {
    font-size: 1.5rem;
  }

  .wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .guideContent img,
  .guideFigure img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .guideContent h2 {
    page-break-after: avoid;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    word-break: break-all;
  }

  a[href^="../"]::after,
  a[href^="./"]::after,
  a[href^="#"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after {
    content: "";
  }
}

.guideList a {
  display: block;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.guideList a:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}

.guideList__cat {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.guideList__title {
  display: block;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--blue-dark);
}

/* Blog sectie verborgen (zet SHOW_BLOG in ws-it-nav.js op true om te tonen) */
html.blog-hidden .navItem--blog,
html.blog-hidden .footerBlog,
html.blog-hidden .footerBlogLink {
  display: none !important;
}

/* ── Cookie banner ── */
.cookieOverlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px var(--pad);
  padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
}

.cookieOverlay[hidden] {
  display: none !important;
}

.cookieOverlay__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.62);
}

.cookiePanel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(85vh, calc(100vh - 2rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 51, 102, 0.22);
  padding: 1.25rem 1.35rem;
}

body.cookieOverlayOpen {
  overflow: hidden;
}

.cookieTitle {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
  color: var(--blue-dark);
}

.cookieMsg {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.cookieMsg strong {
  color: var(--text);
}

.cookieActions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cookieActions--prefs {
  margin-top: 1rem;
}

.cookieBtn.btn {
  min-height: 38px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.cookieBtn.btnPrimary {
  background: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookieBtn.btnPrimary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

.cookieBtn.btnGhost {
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--text);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookieBtn.btnGhost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.cookiePrefs {
  display: none;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cookiePanel--prefs .cookieMsg,
.cookiePanel--prefs .cookieActions:not(.cookieActions--prefs) {
  display: none;
}

.cookiePanel--prefs .cookiePrefs {
  display: block;
}

.cookiePrefsTitle {
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.cookieRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.cookieRowMain {
  display: grid;
  gap: 0.15rem;
  cursor: pointer;
}

.cookieRowLabel {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9375rem;
}

.cookieRowHelp {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.4;
  max-width: 46ch;
}

.cookieRowRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.cookiePill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: var(--radius);
}

.cookieToggle {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

@media (max-width: 520px) {
  .cookiePanel {
    padding: 1rem;
  }

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

  .cookieRowRight {
    width: 100%;
    justify-content: flex-start;
  }

  .cookieActions {
    flex-direction: column;
  }

  .cookieBtn.btn {
    width: 100%;
    justify-content: center;
  }
}
