/* ==========================================================================
   Nuviax — Page & Component library
   Built on top of the Webflow design system (nuviax-aa7a9d.webflow.css).
   Namespace: .nx-*  — never collides with Webflow classes.
   Reuses the existing CSS custom properties so colors/typography stay 1:1.
   ========================================================================== */

:root {
  --nx-bg: #161616;          /* page background        (bg-color-02) */
  --nx-bg-2: #1b1a19;        /* card / surface         (bg-color-03) */
  --nx-bg-3: #282522;        /* elevated surface       (bg-color-04) */
  --nx-bg-warm: #453f39;     /* warm accent surface    (bg-color-01) */
  --nx-border: #2f2b2a;      /* hairline border        (border-01)   */
  --nx-border-2: #3e3b39;    /* stronger border        (border-02)   */
  --nx-gold: #e8a41d;        /* brand accent           (border-03)   */
  --nx-gold-soft: rgba(232, 164, 29, .12);
  --nx-gold-line: rgba(232, 164, 29, .35);
  --nx-text: #ffffff;
  --nx-text-muted: #b2b0ae;  /* text-color-01 */
  --nx-text-dim: #7d7a77;
  --nx-radius: 16px;
  --nx-radius-sm: 12px;
  --nx-radius-lg: 24px;
  --nx-maxw: 1600px;
  --nx-ease: cubic-bezier(.22, 1, .36, 1);
  --nx-sans: 'Interdisplay', Arial, sans-serif;
  --nx-serif: 'Instrumentserif', Georgia, serif;
}

/* ---------- base scaffold ------------------------------------------------ */
.nx-page { background: var(--nx-bg); color: var(--nx-text); font-family: var(--nx-sans); }
.nx-container { width: 100%; max-width: var(--nx-maxw); margin: 0 auto; padding-left: var(--_spacing---padding--padding-12xl); padding-right: var(--_spacing---padding--padding-12xl); }
.nx-section { padding: 96px 0; position: relative; }
.nx-section.is-tight { padding: 64px 0; }
.nx-section.is-alt { background: var(--nx-bg-2); border-top: 1px solid var(--nx-border); border-bottom: 1px solid var(--nx-border); }
.nx-section.is-topic-start { padding-top: 132px; }
.nx-section.is-topic-start::before {
  content: "";
  position: absolute;
  top: 48px;
  left: max(var(--_spacing---padding--padding-12xl), calc((100% - var(--nx-maxw)) / 2 + var(--_spacing---padding--padding-12xl)));
  width: min(180px, calc(100% - 44px));
  height: 1px;
  background: linear-gradient(90deg, var(--nx-gold), var(--nx-gold-line), transparent);
}
.nx-section.is-topic-start::after {
  content: "";
  position: absolute;
  top: 44px;
  left: max(var(--_spacing---padding--padding-12xl), calc((100% - var(--nx-maxw)) / 2 + var(--_spacing---padding--padding-12xl)));
  width: 9px;
  height: 9px;
  box-sizing: border-box;
  border: 1px solid var(--nx-gold);
  background: var(--nx-bg);
  transform: rotate(45deg);
}
.nx-section.is-topic-start.is-alt::after { background: var(--nx-bg-2); }
.nx-divider { height: 1px; background: var(--nx-border); border: 0; margin: 0; }

/* ---------- typography helpers ------------------------------------------- */
/* Eyebrow = identical to homepage caption chip (.section-caption-block + .caption-text) */
.nx-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: var(--_spacing---padding--padding-3xs) var(--_spacing---padding--padding-md);
  border: 1px solid var(--border-color--border-color-01); border-radius: 8px;
  color: var(--beckground-color--white); text-transform: none;
  font-size: var(--_typography---paragraph-p2--p2-font-size);
  line-height: var(--_typography---paragraph-p2--p2-line-height);
  letter-spacing: var(--_typography---paragraph-p2--p2-letter-spacing);
  font-weight: 400;
}
.nx-eyebrow::before {
  content: ""; flex: 0 0 auto; box-sizing: border-box; width: 30px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8a41d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19 19 5'/%3E%3Cpath d='M8 5h11v11'/%3E%3C/svg%3E") left center / 15px 15px no-repeat;
  border-right: 1px solid var(--border-color--border-color-01);
}

.nx-h1 { font-size: clamp(33px, 4.2vw, 52px); line-height: 1.08em; letter-spacing: -.015em; font-weight: 500; margin: 0; }
.nx-h2 { font-size: clamp(27px, 3.4vw, 42px); line-height: 1.14em; letter-spacing: -.012em; font-weight: 500; margin: 0; }
.nx-h3 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2em; font-weight: 500; margin: 0; }
.nx-h4 { font-size: 22px; line-height: 1.3em; font-weight: 500; margin: 0; }
.nx-serif-accent { font-family: var(--nx-serif); font-style: italic; color: var(--nx-gold); font-weight: 400; }
.nx-lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55em; color: var(--nx-text-muted); margin: 0; }
.nx-p { font-size: 16px; line-height: 1.6em; color: var(--nx-text-muted); margin: 0 0 1em; }
.nx-p:last-child { margin-bottom: 0; }
.nx-muted { color: var(--nx-text-muted); }
.nx-max-60 { max-width: 60ch; }
.nx-max-46 { max-width: 46ch; }
.nx-center { text-align: center; margin-left: auto; margin-right: auto; }

.nx-text-reveal-pending { visibility: hidden; }
.nx-text-reveal-ready { visibility: visible; }
.nx-text-reveal-word {
  display: inline-block;
  white-space: nowrap;
}
.nx-text-reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.nx-text-reveal-unit {
  display: inline-block;
  will-change: transform, opacity;
}

.nx-hero .nx-h1 .nx-text-reveal-mask {
  padding-bottom: .11em;
  margin-bottom: -.11em;
}

/* ---------- buttons (mirror webflow button look) ------------------------- */
/* Buttons mirror the homepage Webflow buttons exactly (.button-primary / .button-secondery / .button-text) */
.nx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 12px; text-decoration: none; cursor: pointer; text-align: center;
  font-size: var(--_typography---title-text--b1-font-size);
  line-height: var(--_typography---title-text--b1-line-height);
  font-weight: var(--_typography---font-weight--font-weight-semi-bold);
  letter-spacing: var(--_typography---title-text--b1-letter-spacing);
  transition: filter .25s var(--nx-ease), background-color .25s var(--nx-ease), color .25s var(--nx-ease), border-color .25s var(--nx-ease), transform .2s var(--nx-ease);
}
.nx-btn--primary {
  padding: var(--_spacing---padding--padding-md) var(--_spacing---padding--padding-2xl);
  background-color: var(--border-color--border-color-03);
  background-image: url('../images/buttons-bg.svg'); background-position: 50%; background-repeat: no-repeat; background-size: cover;
  color: var(--beckground-color--white); border: 1px solid #ffd3d4;
  box-shadow: 0 0 0 3px var(--beckground-color--white), 0 2px 5px 0 #0003, 0 0 0 2px #f8eaf0, 0 3.714px 4.846px 0 #ee64591c, 0 10.268px 13.398px 0 #ee645938, 0 24.721px 32.257px 0 #ee64592e, 0 42px 107px 0 #ea423557, inset 0 1px 4px 2px #fef7f7, inset 0 1px 18px 2px #fef7f7;
}
.nx-btn--primary:hover { filter: brightness(1.04); }
.nx-btn--ghost {
  padding: var(--_spacing---padding--padding-xs) var(--_spacing---padding--padding-3xl);
  background: transparent; color: var(--beckground-color--white); border: 1px solid var(--border-color--border-color-01);
}
.nx-btn--ghost:hover { border-color: var(--nx-gold); color: var(--nx-gold); }
.nx-btn:active { transform: translateY(1px); }
.nx-btn .button-inner-block {
  height: 24px;
  overflow: hidden;
}
.nx-btn .button-text {
  display: block;
  white-space: nowrap;
  transition: transform .34s var(--nx-ease);
  will-change: transform;
}
.nx-btn:hover .button-text,
.nx-btn:focus-visible .button-text {
  transform: translateY(-24px);
}
.nx-btn.button-primary:hover { filter: brightness(1.04); }
.nx-btn.button-secondery:hover {
  border-color: var(--nx-gold-line);
  color: var(--nx-gold);
}
.nx-btn:focus-visible,
.nx-textlink:focus-visible,
.nx-service-card:focus-visible {
  outline: 2px solid var(--nx-gold);
  outline-offset: 4px;
}
.nx-btn--light { padding: var(--_spacing---padding--padding-md) var(--_spacing---padding--padding-2xl); background: #fff; color: #161616; border: 1px solid #fff; }
.nx-btn--light:hover { filter: brightness(.96); }
.nx-btn .nx-btn-arrow { font-size: 16px; line-height: 0; }
.nx-btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- glowing CTAs everywhere (match the hero .button-primary glow) -- */
/* The nav CTA top-right must be IDENTICAL to the homepage hero button:
   yellow fill + full glow. A Webflow interaction sets an inline
   `background-color: rgba(0,0,0,0)` on it, so the fill needs !important to win. */
.nav-button {
  padding: var(--_spacing---padding--padding-md) var(--_spacing---padding--padding-2xl);
  background-color: #e8a41d !important;
  background-image: url('../images/buttons-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--beckground-color--white);
  border: 1px solid #ffd3d4;
  border-radius: 12px;
  box-shadow: 0 0 0 3px var(--beckground-color--white), 0 2px 5px 0 #0003, 0 0 0 2px #f8eaf0, 0 3.714px 4.846px 0 #ee64591c, 0 10.268px 13.398px 0 #ee645938, 0 24.721px 32.257px 0 #ee64592e, 0 42px 107px 0 #ea423557, inset 0 1px 4px 2px #fef7f7, inset 0 1px 18px 2px #fef7f7;
}
.nav-button:hover { filter: brightness(1.04); }

/* Standalone secondary/ghost CTAs ("Zum DSGVO-Check", blog CTA, …) are styled
   IDENTICALLY to the hero button — same padding, fill and full glow — so every
   standalone call-to-action looks exactly the same across the site. */
.button-secondery,
.nx-btn--ghost {
  padding: var(--_spacing---padding--padding-md) var(--_spacing---padding--padding-2xl);
  background-color: var(--border-color--border-color-03);
  background-image: url('../images/buttons-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--beckground-color--white);
  border: 1px solid #ffd3d4;
  border-radius: 12px;
  box-shadow: 0 0 0 3px var(--beckground-color--white), 0 2px 5px 0 #0003, 0 0 0 2px #f8eaf0, 0 3.714px 4.846px 0 #ee64591c, 0 10.268px 13.398px 0 #ee645938, 0 24.721px 32.257px 0 #ee64592e, 0 42px 107px 0 #ea423557, inset 0 1px 4px 2px #fef7f7, inset 0 1px 18px 2px #fef7f7;
}
.button-secondery:hover,
.nx-btn--ghost:hover {
  filter: brightness(1.04);
  border-color: #ffd3d4;
  color: var(--beckground-color--white);
}

/* Keep a real secondary look (dezent, no glow) ONLY when a secondary/ghost
   button sits directly beside a primary in the same group — otherwise two
   identical glowing buttons would stand next to each other and the primary/
   secondary hierarchy would be lost. */
.nx-btn-row:has(.button-primary, .nx-btn--primary) .button-secondery,
.nx-btn-row:has(.button-primary, .nx-btn--primary) .nx-btn--ghost,
.nx-check-nav .nx-btn--ghost {
  background: transparent;
  background-image: none;
  border: 1px solid var(--border-color--border-color-01);
  box-shadow: none;
}
.nx-btn-row:has(.button-primary, .nx-btn--primary) .nx-btn--ghost:hover,
.nx-check-nav .nx-btn--ghost:hover {
  filter: none;
  border-color: var(--nx-gold);
  color: var(--nx-gold);
}

/* The Webflow base style clips this row for its entrance animation. That also
   cuts off the standalone CTA's intentionally wide glow. */
.number-top-block {
  overflow: visible;
}

/* Real partner logos inside the "Ein Partner für alle Themen" gold circles.
   Forced to white monochrome so any source logo (colour or black) sits cleanly
   on the gold disc, matching the original white placeholder marks. */
.integration-icon-block .integration-logo {
  width: 56px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Horizontal navbar logo (cloud + arrow left, "nuviax" right). Colours are
   baked into the SVG (white cloud/word, yellow arrow) — no filter recolour. */
.logo-h { height: 40px; width: auto; display: block; }
/* Footer logo: stacked variant, self-coloured (white cloud/word, yellow arrow
   + yellow "x"), no brightness filter. */
.logo-footer { height: 150px; width: auto; display: block; }

/* Certification trust bar (homepage, directly after the hero). No tiles: the
   badges (white-background JPGs) are turned into neutral monochrome marks that
   sit directly on the dark section — grayscale+invert flips the white bg to
   black, then mix-blend-mode:screen drops that black so only the light mark
   remains. Label sits above the row. */
.nx-certbar-section { padding: 32px 0 12px; }
.nx-certbar { max-width: 1600px; margin: 0 auto; padding: 0 47px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.nx-certbar-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--nx-text-muted); text-align: center; }
.nx-certbar-track { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.nx-certbar-tile { background: none; box-shadow: none; padding: 0; height: auto; min-width: 0; display: block; }
.nx-certbar-tile img { height: 54px; width: auto; max-width: 130px; object-fit: contain; display: block; filter: grayscale(1) invert(1); mix-blend-mode: screen; opacity: .72; transition: opacity .3s var(--nx-ease); }
.nx-certbar-tile:hover img { opacity: 1; }
/* IAPP badges (AIGP / CIPM / CIPP) render smaller than the others — bump 4–6 */
.nx-certbar-track .nx-certbar-tile:nth-child(4) img,
.nx-certbar-track .nx-certbar-tile:nth-child(5) img,
.nx-certbar-track .nx-certbar-tile:nth-child(6) img { height: 66px; }
@media (max-width: 700px){ .nx-certbar { padding: 0 20px; } .nx-certbar-track { gap: 28px; } .nx-certbar-tile img { height: 42px; } .nx-certbar-track .nx-certbar-tile:nth-child(4) img, .nx-certbar-track .nx-certbar-tile:nth-child(5) img, .nx-certbar-track .nx-certbar-tile:nth-child(6) img { height: 52px; } }

.nx-textlink { color: var(--nx-gold); text-decoration: none; border-bottom: 1px solid var(--nx-gold-line); padding-bottom: 1px; transition: border-color .2s; }
.nx-textlink:hover { border-color: var(--nx-gold); }

.nx-wf-caption {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

/* ---------- breadcrumb --------------------------------------------------- */
.nx-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--nx-text-dim); }
.nx-breadcrumb a { color: var(--nx-text-muted); text-decoration: none; }
.nx-breadcrumb a:hover { color: var(--nx-gold); }
.nx-breadcrumb span.sep { opacity: .5; }

/* ---------- page hero ---------------------------------------------------- */
.nx-hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.nx-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 420px at 78% -8%, var(--nx-gold-soft), transparent 70%);
}
.nx-hero:not(.nx-it-hero) {
  background-image: url("/images/hero-bg.svg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid var(--nx-border);
}
.nx-hero:not(.nx-it-hero)::before {
  content: "";
  position: absolute;
  inset: auto var(--_spacing---padding--padding-12xl) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  pointer-events: none;
}
/* Hero inner aligns to the nav frame (same max-width + auto margins as .nav-container);
   text width is constrained on the headline/lead instead of by centering the block. */
.nx-hero-inner { position: relative; z-index: 1; max-width: var(--nx-maxw); }
.nx-hero .nx-h1 { margin-top: 22px; max-width: 17ch; }
.nx-hero .nx-lead { margin-top: 24px; max-width: 58ch; }
.nx-hero .nx-btn-row { margin-top: 36px; }
.nx-hero-meta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 28px; }
.nx-hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.nx-hero-meta .item b { font-size: 26px; font-weight: 500; }
.nx-hero-meta .item span { font-size: 13px; color: var(--nx-text-muted); }

.nx-hero:not(.nx-it-hero) .nx-h1 {
  font-size: clamp(44px, 6.1vw, 82px);
  line-height: .98em;
  max-width: 13ch;
}

.nx-hero:not(.nx-it-hero) .nx-lead {
  max-width: 62ch;
}

/* ---------- IT services sample redesign --------------------------------- */
.nx-it-hero {
  padding-bottom: 44px;
  background-image: url("/images/hero-bg.svg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.nx-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, .78fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: center;
}

.nx-hero-copy .nx-eyebrow,
.nx-hero-copy .nx-wf-caption { margin-top: 26px; }
.nx-hero-copy .nx-h1 { font-size: clamp(48px, 7.2vw, 96px); line-height: .96em; max-width: 11ch; }
.nx-hero-copy .nx-h1 .nx-text-reveal-mask {
  padding-bottom: .11em;
  margin-bottom: -.11em;
}
.nx-hero-copy .nx-lead { max-width: 57ch; }

.nx-hero-frame {
  position: relative;
  height: clamp(460px, 43vw, 620px);
  min-height: 0;
  border: 1px solid var(--nx-border-2);
  border-radius: 0;
  overflow: hidden;
  background: var(--nx-bg-2);
  box-shadow: 0 22px 80px rgba(0,0,0,.36);
}

.nx-hero-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.08);
  z-index: 1;
  pointer-events: none;
}

.nx-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,22,22,.1), rgba(22,22,22,.64));
  pointer-events: none;
}

.nx-hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  filter: saturate(.92) contrast(1.05);
}

.nx-hero-frame-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 18px 20px;
  background: rgba(27,26,25,.88);
  border: 1px solid var(--nx-border-2);
  backdrop-filter: blur(10px);
}

.nx-hero-frame-card span {
  color: var(--nx-text-muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nx-hero-frame-card b {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.nx-hero-frame-card.is-top { top: 42px; left: 32px; }
.nx-hero-frame-card.is-bottom { right: 32px; bottom: 34px; }

.nx-kihub-frame {
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 45%, rgba(232,164,29,.14), transparent 36%),
    linear-gradient(145deg, #20201f, #121110 72%);
}

.nx-kihub-frame::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22,22,22,.05), rgba(22,22,22,.2)),
    radial-gradient(circle at 50% 50%, transparent 0 55%, rgba(10,10,10,.3) 100%);
}

.nx-kihub-frame .nx-kihub {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.nx-kihub-frame .nx-kihub:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.nx-kihub-frame .khub-stage {
  max-width: min(100%, 455px);
}

.nx-kihub-frame .khub-readout {
  margin-top: 18px;
  margin-bottom: 0;
}

.nx-ai-map {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 44%, rgba(240,169,44,.18), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(166,217,135,.13), transparent 30%),
    linear-gradient(135deg, #24211f, #121110 72%);
}

.nx-ai-map::before {
  border-color: rgba(232,164,29,.18);
}

.nx-ai-map::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22,22,22,.03), rgba(22,22,22,.22)),
    radial-gradient(circle at 50% 48%, transparent 0 38%, rgba(10,10,10,.14) 76%);
}

.nx-ai-map-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.2) 1px, transparent 1.5px);
  background-size: 72px 72px, 72px 72px, 14px 14px;
  mask-image: radial-gradient(circle at center, #000 0 58%, transparent 86%);
}

.nx-ai-map-lines {
  position: absolute;
  inset: 6% 4%;
  z-index: 2;
  width: 92%;
  height: 88%;
  overflow: visible;
}

.nx-ai-orbit {
  fill: none;
  stroke: rgba(255,255,255,.25);
  stroke-width: 1.2;
}

.nx-ai-orbit-main {
  stroke-dasharray: 4 10;
}

.nx-ai-orbit-guard {
  stroke: rgba(240,169,44,.34);
  stroke-dasharray: 18 12 2 12;
}

.nx-ai-spoke {
  fill: none;
  stroke: rgba(232,164,29,.32);
  stroke-width: 1.4;
  stroke-dasharray: 2 8;
  stroke-linecap: round;
}

.nx-ai-link,
.nx-ai-signal {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nx-ai-link {
  stroke-width: 2.4;
  opacity: .78;
}

.nx-ai-link.is-green,
.nx-ai-signal.is-green {
  stroke: url("#nx-ai-flow-green");
}

.nx-ai-link.is-gold,
.nx-ai-signal.is-gold {
  stroke: url("#nx-ai-flow-gold");
}

.nx-ai-link.is-green {
  filter: drop-shadow(0 0 8px rgba(126,190,111,.2));
}

.nx-ai-link.is-gold {
  filter: drop-shadow(0 0 8px rgba(240,169,44,.2));
}

.nx-ai-link.is-guard {
  stroke: rgba(240,169,44,.3);
  stroke-width: 1.3;
  stroke-dasharray: 6 10;
}

.nx-ai-signal {
  stroke-width: 3.4;
  stroke-dasharray: .055 .945;
  stroke-dashoffset: 1;
  opacity: .62;
  filter: drop-shadow(0 0 9px rgba(232,164,29,.2));
}

.nx-ai-signal.is-green {
  filter: drop-shadow(0 0 9px rgba(126,190,111,.22));
}

.nx-ai-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 4px;
  min-width: 142px;
  padding: 16px 18px;
  text-align: center;
  color: #fff;
  background: rgba(24,23,22,.92);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}

.nx-ai-node span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.nx-ai-node small {
  max-width: 15ch;
  color: #c8c3bd;
  font-size: 12px;
  line-height: 1.2;
}

.nx-ai-center {
  left: 50%;
  top: 50%;
  width: 132px;
  min-width: 132px;
  height: 132px;
  padding: 0;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(145deg, rgba(240,169,44,.28), rgba(22,22,22,.94));
  border-color: rgba(240,169,44,.58);
  box-shadow:
    0 0 0 12px rgba(240,169,44,.04),
    0 0 46px rgba(240,169,44,.18),
    0 24px 70px rgba(0,0,0,.38);
}

.nx-ai-center span {
  color: var(--nx-gold);
  font-size: 42px;
  line-height: .9;
  font-family: var(--nx-serif);
}

.nx-ai-center small {
  max-width: none;
  color: #e7dfd3;
}

.nx-ai-node-top { left: 50%; top: 42px; transform: translateX(-50%); }
.nx-ai-node-right { right: 34px; top: 50%; transform: translateY(-50%); }
.nx-ai-node-bottom { left: 50%; bottom: 42px; transform: translateX(-50%); }
.nx-ai-node-left { left: 34px; top: 50%; transform: translateY(-50%); }

.nx-ai-map-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 6px;
  width: 206px;
  max-width: calc(100% - 68px);
  padding: 16px 18px;
  background: rgba(15,15,15,.82);
  border-left: 2px solid rgba(240,169,44,.72);
  backdrop-filter: blur(10px);
}

.nx-ai-map-note b {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.nx-ai-map-note span {
  color: #c8c3bd;
  font-size: 12px;
  line-height: 1.35;
}

.nx-ai-map-note.is-left { left: 34px; bottom: 34px; }
.nx-ai-map-note.is-right { right: 34px; top: 34px; }

@media (prefers-reduced-motion: no-preference) {
  .nx-ai-orbit-main { animation: nxAiDash 34s linear infinite; }
  .nx-ai-orbit-guard { animation: nxAiDash 52s linear infinite reverse; }
  .nx-ai-signal { animation: nxAiSignal 8.4s linear infinite; }
  .nx-ai-signal.d2 { animation-delay: -1.4s; }
  .nx-ai-signal.d3 { animation-delay: -2.8s; }
  .nx-ai-signal.d4 { animation-delay: -4.2s; }
  .nx-ai-signal.d5 { animation-delay: -2.1s; }
  .nx-ai-signal.d6 { animation-delay: -5.1s; }
  .nx-ai-center { animation: nxAiPulse 5.6s ease-in-out infinite; }
}

@keyframes nxAiDash {
  to { stroke-dashoffset: -120; }
}

@keyframes nxAiSignal {
  to { stroke-dashoffset: 0; }
}

@keyframes nxAiPulse {
  0%, 100% {
    box-shadow:
      0 0 0 12px rgba(240,169,44,.04),
      0 0 46px rgba(240,169,44,.18),
      0 24px 70px rgba(0,0,0,.38);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(240,169,44,.07),
      0 0 64px rgba(240,169,44,.24),
      0 24px 70px rgba(0,0,0,.38);
  }
}

.nx-signal-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
  border-top: 1px solid var(--nx-border);
  border-bottom: 1px solid var(--nx-border);
}

.nx-signal-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 30px;
  border-right: 1px solid var(--nx-border);
}

.nx-signal-strip > div:last-child { border-right: 0; }
.nx-signal-strip b { font-family: var(--nx-serif); color: var(--nx-gold); font-size: 26px; font-weight: 400; line-height: 1; }
.nx-signal-strip span { color: var(--nx-text-muted); font-size: 14px; line-height: 1.48em; }

.nx-service-section { padding-top: 112px; }
.nx-service-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 6vw, 96px);
  align-items: start;
}

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

.nx-service-sticky .nx-p { max-width: 48ch; }
.nx-service-board { border-top: 1px solid var(--nx-border); }

.nx-service-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 48px;
  gap: 28px;
  align-items: center;
  min-height: 178px;
  padding: 32px 14px 32px 0;
  color: var(--nx-text);
  text-decoration: none;
  border-bottom: 1px solid var(--nx-border);
  overflow: hidden;
  transition: padding .32s var(--nx-ease), border-color .32s var(--nx-ease), background-color .32s var(--nx-ease);
}

.nx-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(520px 180px at var(--mx) var(--my), rgba(232,164,29,.14), transparent 62%),
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 45%);
  transition: opacity .32s var(--nx-ease);
}

.nx-service-card:hover {
  padding-left: 24px;
  padding-right: 24px;
  border-color: var(--nx-border-2);
  background: rgba(255,255,255,.018);
}

.nx-service-card:hover::before { opacity: 1; }
.nx-service-card > * { position: relative; z-index: 1; }

.nx-service-num {
  font-family: var(--nx-serif);
  color: var(--nx-gold);
  font-size: 34px;
  line-height: 1;
}

.nx-service-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--nx-text-dim);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nx-service-main h3 {
  margin: 0 0 9px;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.08em;
  font-weight: 500;
}

.nx-service-main p {
  max-width: 68ch;
  margin: 0;
  color: var(--nx-text-muted);
  font-size: 15px;
  line-height: 1.58em;
}

.nx-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.nx-service-tags span {
  color: var(--nx-text-muted);
  border: 1px solid var(--nx-border-2);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
}

.nx-service-go {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--nx-border-2);
  border-radius: 50%;
  color: var(--nx-gold);
  transition: transform .32s var(--nx-ease), border-color .32s var(--nx-ease), background-color .32s var(--nx-ease);
}

.nx-service-card:hover .nx-service-go {
  transform: translateX(5px);
  border-color: var(--nx-gold-line);
  background: var(--nx-gold-soft);
}

.nx-service-main h3 {
  transition: color .28s var(--nx-ease), transform .28s var(--nx-ease);
}

.nx-service-card:hover .nx-service-main h3 {
  color: var(--nx-gold);
  transform: translateX(3px);
}

.nx-proof-list {
  display: grid;
  gap: 1px;
  background: var(--nx-border);
  border: 1px solid var(--nx-border);
}

.nx-proof-list > div {
  background: var(--nx-bg-2);
  padding: 28px 30px;
}

.nx-proof-list b {
  display: block;
  margin-bottom: 8px;
  color: var(--nx-text);
  font-size: 18px;
  font-weight: 500;
}

.nx-proof-list span {
  color: var(--nx-text-muted);
  font-size: 14px;
  line-height: 1.55em;
}

@media (max-width: 991px) {
  .nx-hero-grid,
  .nx-service-layout {
    grid-template-columns: 1fr;
  }

  .nx-hero-frame,
  .nx-hero-frame img {
    height: clamp(360px, 58vw, 460px);
  }

  .nx-hero-frame-card.is-top {
    left: 22px;
  }

  .nx-ai-map-lines {
    inset: 7% 2%;
    width: 96%;
    height: 86%;
  }

  .nx-ai-node {
    min-width: 124px;
    padding: 14px 15px;
  }

  .nx-ai-node span {
    font-size: 16px;
  }

  .nx-ai-center {
    width: 112px;
    min-width: 112px;
    height: 112px;
  }

  .nx-ai-center span {
    font-size: 36px;
  }

  .nx-ai-node-top { top: 28px; }
  .nx-ai-node-right { right: 22px; }
  .nx-ai-node-bottom { bottom: 28px; }
  .nx-ai-node-left { left: 22px; }

  .nx-ai-map-note {
    display: none;
  }

  .nx-signal-strip {
    grid-template-columns: 1fr;
  }

  .nx-signal-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--nx-border);
  }

  .nx-signal-strip > div:last-child {
    border-bottom: 0;
  }

  .nx-service-sticky {
    position: static;
  }
}

@media (max-width: 600px) {
  .nx-hero-copy .nx-h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .nx-hero-frame,
  .nx-hero-frame img {
    height: 340px;
  }

  .nx-hero-frame-card {
    min-width: 0;
    padding: 14px 16px;
  }

  .nx-hero-frame-card.is-top {
    top: 24px;
    left: 18px;
  }

  .nx-hero-frame-card.is-bottom {
    right: 18px;
    bottom: 20px;
  }

  .nx-ai-map-lines {
    inset: 11% -10%;
    width: 120%;
    height: 78%;
  }

  .nx-ai-node {
    min-width: 104px;
    padding: 11px 12px;
  }

  .nx-ai-node span {
    font-size: 14px;
  }

  .nx-ai-node small {
    max-width: 12ch;
    font-size: 10px;
  }

  .nx-ai-center {
    width: 92px;
    min-width: 92px;
    height: 92px;
  }

  .nx-ai-center span {
    font-size: 30px;
  }

  .nx-ai-center small {
    font-size: 10px;
  }

  .nx-ai-node-top { top: 20px; }
  .nx-ai-node-right { right: 12px; }
  .nx-ai-node-bottom { bottom: 20px; }
  .nx-ai-node-left { left: 12px; }

  .nx-service-card {
    grid-template-columns: 1fr 44px;
    gap: 18px;
    padding: 28px 0;
  }

  .nx-service-card:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nx-service-num {
    grid-column: 1 / -1;
  }
}

/* ---------- generic section header --------------------------------------- */
.nx-section-head { max-width: 720px; margin-bottom: 56px; }
.nx-section-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.nx-section-head > .nx-eyebrow + .nx-h2,
.nx-section-head > .nx-eyebrow + .nx-h3,
.nx-section-head > .nx-eyebrow + .nx-h4 { margin-top: 18px; }
.nx-section-head .nx-lead { margin-top: 18px; }

/* ---------- generic card ------------------------------------------------- */
.nx-card {
  background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius);
  padding: 30px; transition: border-color .3s var(--nx-ease), transform .3s var(--nx-ease), background .3s;
  position: relative; height: 100%;
}
.nx-card:hover { border-color: var(--nx-border-2); transform: translateY(-3px); }
.nx-card.is-link { cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.nx-card .nx-card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--nx-gold-soft); border: 1px solid var(--nx-gold-line); margin-bottom: 22px;
  font-size: 22px; color: var(--nx-gold);
}
.nx-card .nx-card-icon img { width: 26px; height: 26px; }
.nx-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 500; }
.nx-card p { color: var(--nx-text-muted); font-size: 15px; line-height: 1.55em; margin: 0; }
.nx-card .nx-card-cta { margin-top: 20px; color: var(--nx-gold); font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }
.nx-card.is-link:hover .nx-card-cta { gap: 10px; }
.nx-card .nx-tag { position: absolute; top: 22px; right: 22px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--nx-gold); border: 1px solid var(--nx-gold-line); border-radius: 999px; padding: 4px 10px; }

/* ---------- homepage hero word rotator ----------------------------------- */
.hero-title-changing-words-wrapper.nx-hero-word-rotator {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
}

.hero-title-changing-words-wrapper.nx-hero-word-rotator .hero-title-changeing-word {
  position: absolute;
  inset: 0 auto auto 0;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: hidden !important;
  transform: none !important;
}

.hero-title-changing-words-wrapper.nx-hero-word-rotator .hero-title-changeing-word.is-active,
.hero-title-changing-words-wrapper.nx-hero-word-rotator .hero-title-changeing-word.is-exiting {
  visibility: visible !important;
}

.hero-title-changing-words-wrapper.nx-hero-word-rotator .gsap_split_word,
.hero-title-changing-words-wrapper.nx-hero-word-rotator .gsap_split_letter,
.hero-title-changing-words-wrapper.nx-hero-word-rotator .gsap_split_letter-mask {
  transform: none !important;
  translate: none !important;
  rotate: none !important;
  scale: none !important;
}

.hero-title-block.nx-static-headline-locked > h1 .gsap_split_word,
.hero-title-block.nx-static-headline-locked > h1 .gsap_split_letter,
.hero-title-block.nx-static-headline-locked > h1 .gsap_split_letter-mask,
.hero-title-block.nx-static-headline-locked .hero-title-inner-block > h1 .gsap_split_word,
.hero-title-block.nx-static-headline-locked .hero-title-inner-block > h1 .gsap_split_letter,
.hero-title-block.nx-static-headline-locked .hero-title-inner-block > h1 .gsap_split_letter-mask {
  transform: none !important;
  translate: none !important;
  rotate: none !important;
  scale: none !important;
}

.hero-title-changing-words-wrapper.nx-hero-word-rotator .nx-hero-word-char-mask {
  display: inline-block;
  overflow: clip;
  vertical-align: top;
}

.hero-title-changing-words-wrapper.nx-hero-word-rotator .nx-hero-word-char {
  display: inline-block;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-changing-words-wrapper.nx-hero-word-rotator .nx-hero-word-char {
    transition: none;
  }
}

/* ---------- homepage product sticky override ----------------------------- */
@media screen and (min-width: 992px) {
  .product-sticky-block { height: 200vh; }

  .product-sticky-inner-block {
    top: var(--nx-products-sticky-top, 104px) !important;
    transform: none;
  }

  .product-sticky-inner-block .products-top-block {
    margin-bottom: clamp(32px, 5vh, 56px);
  }

  .product-sticky-inner-block .section-contant-padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  .product-sticky-inner-block .section-border-02 {
    inset: 0 0% auto;
  }

  .product-sticky-inner-block .section-border-04 {
    inset: auto 0% 0;
  }

  .product-sticky-inner-block .section-border-bot-01,
  .product-sticky-inner-block .section-border-bot-02 {
    top: -4px;
  }

  .product-sticky-inner-block .section-border-bot-03,
  .product-sticky-inner-block .section-border-bot-04 {
    bottom: -4px;
  }

  .product-sticky-inner-block .products-cards-wrapper {
    height: clamp(400px, calc(100vh - var(--nx-products-cards-top, 360px) - 32px), 760px);
    min-height: 0;
  }

  .product-sticky-inner-block .products-card-name-wrapper,
  .product-sticky-inner-block .products-cards-right-block,
  .product-sticky-inner-block .products-cards-right-inner-block {
    min-height: 0;
  }

  .product-sticky-inner-block .products-card-name-block {
    padding: 0;
  }

  .product-sticky-inner-block .products-card-name-inner-block {
    border-radius: 0;
  }

  .product-sticky-inner-block .products-cards-right-inner-block,
  .product-sticky-inner-block .products-cards-dashboard-block {
    height: 100%;
    box-sizing: border-box;
  }

  .product-sticky-inner-block .products-cards-dashboard-block {
    justify-content: center;
    padding: clamp(28px, 4vh, 72px) clamp(48px, 8vw, 140px);
    grid-row-gap: clamp(24px, 4vh, 56px);
  }

  .product-sticky-inner-block .prodect-dashboard-image-block {
    max-height: none;
  }

  .product-sticky-inner-block .prodect-dashboard-image {
    object-fit: cover;
  }

  /* Keep the service photography beside the copy. On shorter desktop
     viewports this preserves useful image height instead of reducing the
     photo to a shallow banner above the text. */
  .product-sticky-inner-block .products-cards-dashboard-block {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(240px, .85fr);
    align-items: stretch;
    padding: clamp(24px, 4vh, 56px) clamp(28px, 4vw, 72px);
    column-gap: clamp(28px, 4vw, 64px);
  }

  .product-sticky-inner-block .prodect-dashboard-image-block {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .product-sticky-inner-block .products-cards-info-block {
    align-self: center;
  }

  .product-sticky-inner-block .products-cards-dashboard-block._01 .prodect-dashboard-image {
    object-position: center 45%;
  }

  .product-sticky-inner-block .products-cards-dashboard-block._02 .prodect-dashboard-image {
    object-position: center 42%;
  }

  .product-sticky-inner-block .products-card-name-block:focus-visible {
    outline: 2px solid #dc7723;
    outline-offset: -3px;
  }

  .product-sticky-block.nx-product-sticky-first .products-cards-dashboard-block._01 { opacity: 1 !important; }
  .product-sticky-block.nx-product-sticky-first .products-cards-dashboard-block._02 { opacity: 0 !important; }
  .product-sticky-block.nx-product-sticky-second .products-cards-dashboard-block._01 { opacity: 0 !important; }
  .product-sticky-block.nx-product-sticky-second .products-cards-dashboard-block._02 { opacity: 1 !important; }

  .product-sticky-block.nx-product-sticky-first .products-card-name-inner-block._01,
  .product-sticky-block.nx-product-sticky-second .products-card-name-inner-block._02 {
    background-color: var(--beckground-color--bg-color-04) !important;
    color: var(--beckground-color--white) !important;
  }

  .product-sticky-block.nx-product-sticky-first .products-card-name-inner-block._02,
  .product-sticky-block.nx-product-sticky-second .products-card-name-inner-block._01 {
    background-color: var(--beckground-color--bg-color-03) !important;
    color: var(--text-color--text-color-01) !important;
  }
}

@media screen and (max-width: 991px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-wrapper {
    max-width: 100vw;
    overflow-x: clip;
  }

  .product-sticky-block {
    height: auto !important;
  }

  .product-sticky-inner-block {
    position: static !important;
  }

  .products-cards-mobile.mobile {
    display: block !important;
  }

  .products-cards-mobile .products-cards-inner-block-mobile {
    display: block;
  }

  .products-cards-mobile .products-cards-dashboard-size,
  .products-cards-mobile .products-cards-dashboard-size._01,
  .products-cards-mobile .products-cards-dashboard-size._02 {
    height: auto !important;
    overflow: visible !important;
  }

  .products-cards-mobile .products-cards-dashboard-block,
  .products-cards-mobile .products-cards-dashboard-block._02 {
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
  }

  .products-cards-mobile .products-card-name-inner-block._01,
  .products-cards-mobile .products-card-name-inner-block._02 {
    background-color: var(--beckground-color--bg-color-04) !important;
    color: var(--beckground-color--white) !important;
  }

  .team-card-image-block {
    aspect-ratio: 4 / 5;
    height: auto !important;
  }

  .team-card-image {
    object-position: 50% 8% !important;
  }
}

/* ---------- grids -------------------------------------------------------- */
.nx-grid { display: grid; gap: 20px; }
.nx-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.nx-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.nx-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.nx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.nx-split.is-wide-left { grid-template-columns: 1.15fr .85fr; }

/* ---------- feature list (checklist) ------------------------------------- */
.nx-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
/* Bullet is absolutely positioned (NOT a flex item) so the list text — incl.
   inline <b> — flows as normal text instead of each <b> becoming its own
   gap-separated flex column. */
.nx-checklist li { position: relative; padding-left: 32px; color: var(--nx-text-muted); font-size: 15px; line-height: 1.5em; }
.nx-checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.08em; width: 20px; height: 20px; border-radius: 999px;
  background: var(--nx-gold-soft) url("/images/checkmark.svg") center/12px no-repeat; border: 1px solid var(--nx-gold-line);
}
.nx-checklist li b { color: var(--nx-text); font-weight: 500; }

/* ---------- stat row ----------------------------------------------------- */
.nx-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--nx-border); border-radius: var(--nx-radius); overflow: hidden; background: var(--nx-bg-2); }
.nx-stats .stat { padding: 32px 28px; border-right: 1px solid var(--nx-border); }
.nx-stats .stat:last-child { border-right: 0; }
.nx-stats .stat b { display: block; font-size: 40px; font-weight: 500; line-height: 1; margin-bottom: 8px; }
.nx-stats .stat span { font-size: 14px; color: var(--nx-text-muted); }

/* ---------- process / steps --------------------------------------------- */
.nx-steps { display: grid; gap: 18px; }
.nx-step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 26px; background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); }
.nx-step .num { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-family: var(--nx-serif); font-size: 22px; color: var(--nx-gold); background: var(--nx-gold-soft); border: 1px solid var(--nx-gold-line); }
.nx-step h4 { margin: 0 0 8px; font-size: 18px; font-weight: 500; }
.nx-step p { margin: 0; color: var(--nx-text-muted); font-size: 15px; line-height: 1.55em; }

/* ---------- accordion / FAQ --------------------------------------------- */
.nx-accordion { border: 1px solid var(--nx-border); border-radius: var(--nx-radius); overflow: hidden; background: var(--nx-bg-2); }
.nx-acc-item { border-bottom: 1px solid var(--nx-border); }
.nx-acc-item:last-child { border-bottom: 0; }
.nx-acc-head { width: 100%; text-align: left; background: transparent; border: 0; color: var(--nx-text); padding: 24px 28px; font-size: 17px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--nx-sans); }
.nx-acc-head .ico { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--nx-border-2); display: grid; place-items: center; transition: transform .3s var(--nx-ease), border-color .3s, color .3s; color: var(--nx-text-muted); }
.nx-acc-item.is-open .nx-acc-head .ico { transform: rotate(45deg); border-color: var(--nx-gold); color: var(--nx-gold); }
.nx-acc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--nx-ease); }
.nx-acc-body-inner { padding: 0 28px 26px; color: var(--nx-text-muted); font-size: 15px; line-height: 1.6em; }

/* ---------- CTA banner --------------------------------------------------- */
.nx-cta {
  border-radius: var(--nx-radius-lg); padding: 64px 56px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--nx-bg-warm), var(--nx-bg-3));
  border: 1px solid var(--nx-border-2);
}
.nx-cta::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--nx-gold-soft), transparent 70%); }
.nx-cta-inner { position: relative; z-index: 1; max-width: 640px; }
.nx-cta .nx-h2 { margin-bottom: 18px; }
.nx-cta .nx-lead { margin-bottom: 30px; color: #d8d5d1; }

/* ---------- forms -------------------------------------------------------- */
.nx-form { display: grid; gap: 18px; }
.nx-field { display: grid; gap: 8px; }
.nx-field label { font-size: 14px; color: var(--nx-text); font-weight: 500; }
.nx-field .req { color: var(--nx-gold); }
.nx-input, .nx-select, .nx-textarea {
  width: 100%; background: var(--nx-bg); border: 1px solid var(--nx-border-2); border-radius: 12px;
  padding: 14px 16px; color: var(--nx-text); font-family: var(--nx-sans); font-size: 15px; transition: border-color .2s;
}
.nx-input:focus, .nx-select:focus, .nx-textarea:focus { outline: none; border-color: var(--nx-gold); }
.nx-input::placeholder, .nx-textarea::placeholder { color: var(--nx-text-dim); }
.nx-textarea { min-height: 130px; resize: vertical; }
.nx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.nx-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--nx-text-muted); line-height: 1.5em; }
.nx-check input { margin-top: 3px; accent-color: var(--nx-gold); }
.nx-form-privacy { margin: 0; font-size: 13px; color: var(--nx-text-muted); line-height: 1.5em; }
.nx-form-card { background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 36px; }
.nx-form-card > .nx-eyebrow + .nx-h3 { margin-top: 18px; }
.nx-file { border: 1px dashed var(--nx-border-2); border-radius: 12px; padding: 22px; text-align: center; color: var(--nx-text-muted); font-size: 14px; }
.nx-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.nx-form-status { min-height: 1.5em; color: var(--nx-text-muted); font-size: 14px; line-height: 1.5; }
.nx-form-status.is-error { color: #ef8d7d; }
.nx-form-status.is-success { color: #9fd3a9; }
.nx-form button[disabled] { cursor: wait; opacity: .58; }
.nx-contact-side .nx-section-head { margin-bottom: 22px; }
.nx-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.nx-contact-item {
  min-height: 126px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--nx-border);
  border-radius: 14px;
  background: var(--nx-bg-2);
  color: var(--nx-text);
  text-decoration: none;
}
.nx-contact-item b { display: block; margin-bottom: 7px; font-size: 15px; font-weight: 500; }
.nx-contact-item small { display: block; color: var(--nx-text-muted); font-size: 13px; line-height: 1.55; }
.nx-contact-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--nx-gold-line); border-radius: 10px; background: var(--nx-gold-soft); color: var(--nx-gold); }
.nx-contact-icon svg { width: 19px; height: 19px; }
.nx-contact-map { min-height: 300px; position: relative; margin-top: 12px; overflow: hidden; border: 1px solid var(--nx-border); border-radius: var(--nx-radius); background: var(--nx-bg-2); }
.nx-contact-map iframe { width: 100%; min-height: 300px; display: block; border: 0; filter: saturate(.72) contrast(.95); }
.nx-contact-map.is-consented .nx-consent-placeholder { display: none; }
.nx-split.is-wide-left.nx-contact-layout { grid-template-columns: minmax(0, 1fr); gap: 30px; }
.nx-contact-layout > .nx-form-card { grid-row: 2; }
.nx-contact-layout > .nx-contact-side {
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 20px 30px;
  align-items: stretch;
}
.nx-contact-layout .nx-section-head { grid-column: 1; margin-bottom: 0; align-self: end; }
.nx-contact-layout .nx-contact-grid { grid-column: 1; }
.nx-contact-layout .nx-contact-map { grid-column: 2; grid-row: 1 / span 2; min-height: 100%; margin-top: 0; }
.nx-contact-layout .nx-contact-map iframe,
.nx-contact-layout .nx-consent-placeholder { min-height: 100%; height: 100%; }
.nx-contact-map .nx-consent-placeholder { position: absolute; inset: 0; z-index: 1; }
.nx-contact-layout .nx-form-card { padding: clamp(30px, 4vw, 48px); }
.nx-consent-placeholder { min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 28px; text-align: center; color: var(--nx-text-muted); background: radial-gradient(circle at 50% 20%, var(--nx-gold-soft), transparent 45%), linear-gradient(135deg, var(--nx-bg-3), var(--nx-bg-2)); }
.nx-consent-placeholder b { color: var(--nx-text); font-size: 17px; }
.nx-consent-placeholder > span:not(.nx-contact-icon) { max-width: 34ch; font-size: 13px; line-height: 1.5; }

/* ---------- consent manager -------------------------------------------- */
.nx-cookie-settings { appearance: none; border: 0; padding: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; }
.nx-consent { position: relative; z-index: 9999; }
.nx-consent-backdrop { position: fixed; inset: 0; display: none; background: rgba(0,0,0,.38); }
.nx-consent.is-open .nx-consent-backdrop { display: block; }
.nx-consent-dialog {
  width: min(520px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 32px));
  position: fixed;
  right: 20px;
  bottom: 20px;
  overflow: auto;
  padding: 21px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(27,27,26,.98);
  color: var(--nx-text);
  box-shadow: 0 20px 60px rgba(0,0,0,.44);
}
.nx-consent-dialog[hidden] { display: none; }
.nx-consent-kicker { display: inline-flex; align-items: center; color: var(--nx-gold); font-size: 11px; line-height: 1; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.nx-consent-dialog h2 { margin: 8px 0 0; font-size: 24px; line-height: 1.15; font-weight: 500; letter-spacing: -.01em; }
.nx-consent-summary > p { max-width: 58ch; margin: 13px 0 0; color: var(--nx-text-muted); font-size: 13.5px; line-height: 1.55; }
.nx-consent-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 16px; }
.nx-consent-dialog .nx-btn { min-height: 40px; padding: 9px 15px; border-radius: 9px; background-image: none; box-shadow: none; font-size: 13px; line-height: 20px; font-weight: 500; }
.nx-consent-dialog .nx-btn--primary { border: 1px solid var(--nx-gold); background: var(--nx-gold); color: #171512; }
.nx-consent-dialog .nx-btn--primary:hover { filter: brightness(1.08); }
.nx-consent-dialog .nx-btn--ghost { border: 1px solid rgba(255,255,255,.2); background: transparent; color: var(--nx-text); }
.nx-consent-dialog .nx-btn--ghost:hover { filter: none; border-color: rgba(255,255,255,.4); color: var(--nx-text); }
.nx-consent-dialog .nx-textlink { appearance: none; padding: 8px 4px; border: 0; background: transparent; color: var(--nx-text-muted); font: inherit; font-size: 13px; text-underline-offset: 4px; cursor: pointer; }
.nx-consent-dialog .nx-textlink:hover { color: var(--nx-text); }
.nx-consent-legal { margin: 12px 0 0 !important; font-size: 11px !important; }
.nx-consent-legal a { color: var(--nx-text-muted); text-underline-offset: 3px; }
.nx-consent-details { display: grid; gap: 8px; }
.nx-consent-details[hidden] { display: none; }
.nx-consent-category { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 16px; align-items: center; padding: 14px; border: 1px solid var(--nx-border); border-radius: 11px; background: rgba(255,255,255,.025); color: var(--nx-text); cursor: pointer; }
.nx-consent-category b, .nx-consent-category small { display: block; }
.nx-consent-category b { margin-bottom: 4px; font-size: 15px; font-weight: 500; }
.nx-consent-category small { color: var(--nx-text-muted); font-size: 12px; line-height: 1.45; }
.nx-consent-category.is-required > span:last-child { color: var(--nx-text-dim); font-size: 12px; white-space: nowrap; }
.nx-consent-category input { position: absolute; opacity: 0; pointer-events: none; }
.nx-consent-category i { width: 42px; height: 24px; position: relative; border: 1px solid var(--nx-border-2); border-radius: 999px; background: var(--nx-bg-3); transition: background .2s, border-color .2s; }
.nx-consent-category i::after { content: ""; width: 16px; height: 16px; position: absolute; left: 3px; top: 3px; border-radius: 50%; background: var(--nx-text-muted); transition: transform .2s, background .2s; }
.nx-consent-category input:checked + i { border-color: var(--nx-gold); background: var(--nx-gold-soft); }
.nx-consent-category input:checked + i::after { transform: translateX(18px); background: var(--nx-gold); }
.nx-consent-category input:focus-visible + i { outline: 2px solid var(--nx-gold); outline-offset: 3px; }
.nx-consent-open { overflow: hidden; }

@media (max-width: 600px) {
  .nx-consent-dialog { width: calc(100vw - 16px); right: 8px; bottom: 8px; max-height: calc(100vh - 16px); padding: 20px; border-radius: 14px; }
  .nx-consent-dialog h2 { font-size: 23px; }
  .nx-consent-summary > p { font-size: 13px; }
  .nx-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .nx-consent-actions .nx-btn { width: 100%; }
  .nx-consent-actions .nx-textlink { grid-column: 1 / -1; justify-self: start; }
  .nx-consent-details .nx-consent-actions { display: flex; }
  .nx-consent-details .nx-consent-actions .nx-btn { width: auto; }
}

/* ---------- compliance / health check widget ---------------------------- */
.nx-check-widget { background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg); padding: 40px; max-width: 760px; margin: 0 auto; }
.nx-check-progress { height: 6px; background: var(--nx-bg-3); border-radius: 999px; overflow: hidden; margin-bottom: 28px; }
.nx-check-progress > i { display: block; height: 100%; background: var(--nx-gold); width: 0; transition: width .4s var(--nx-ease); }
.nx-check-step { display: none; }
.nx-check-step.is-active { display: block; animation: nxFade .35s var(--nx-ease); }
@keyframes nxFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.nx-check-q { font-size: 22px; font-weight: 500; margin: 0 0 6px; }
.nx-check-sub { color: var(--nx-text-muted); font-size: 14px; margin: 0 0 24px; }
.nx-check-options { display: grid; gap: 12px; margin-bottom: 28px; }
.nx-check-opt { display: flex; gap: 12px; align-items: center; padding: 16px 18px; border: 1px solid var(--nx-border-2); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s; color: var(--nx-text); font-size: 15px; }
.nx-check-opt:hover { border-color: var(--nx-gold-line); }
.nx-check-opt.is-selected { border-color: var(--nx-gold); background: var(--nx-gold-soft); }
.nx-check-opt .dot { width: 18px; height: 18px; border-radius: 999px; border: 1px solid var(--nx-border-2); flex: 0 0 auto; transition: border-color .2s, background .2s; }
.nx-check-opt.is-selected .dot { border-color: var(--nx-gold); background: var(--nx-gold); box-shadow: inset 0 0 0 4px var(--nx-bg-2); }
.nx-check-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.nx-check-count { font-size: 13px; color: var(--nx-text-dim); }
.nx-check-result { display: none; text-align: center; }
.nx-check-result.is-active { display: block; animation: nxFade .35s var(--nx-ease); }
.nx-check-result[hidden] { display: none; }
.nx-check-score { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 24px; display: grid; place-items: center; background: conic-gradient(var(--nx-gold) calc(var(--val,0) * 1%), var(--nx-bg-3) 0); }
.nx-check-score > span { width: 122px; height: 122px; border-radius: 50%; background: var(--nx-bg-2); display: grid; place-items: center; font-size: 34px; font-weight: 500; }
.nx-check-badge { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 13px; margin-bottom: 14px; border: 1px solid var(--nx-gold-line); color: var(--nx-gold); }
.nx-quiz-consult-actions { display: flex; justify-content: center; margin-top: 26px; }
.nx-quiz-consult { max-width: 640px; margin: 32px auto 0; text-align: left; }
.nx-quiz-consult[hidden] { display: none; }
.nx-quiz-consult .nx-divider { margin-bottom: 28px; }
.nx-quiz-consult h4 { margin: 0; color: var(--nx-text); font-size: 22px; font-weight: 500; }
.nx-quiz-consult > p { margin: 10px 0 0; color: var(--nx-text-muted); font-size: 15px; line-height: 1.55; }

/* ---------- blog / article grid ----------------------------------------- */
.nx-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.nx-chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--nx-border-2); background: transparent; color: var(--nx-text-muted); font-size: 14px; cursor: pointer; transition: all .2s; font-family: var(--nx-sans); text-decoration: none; }
.nx-chip:hover { color: var(--nx-text); border-color: var(--nx-text-dim); }
.nx-chip.is-active { background: var(--nx-gold); color: #1a1305; border-color: var(--nx-gold); }
.nx-post { display: flex; flex-direction: column; background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); overflow: hidden; text-decoration: none; color: inherit; transition: border-color .3s, transform .3s; height: 100%; }
.nx-post:hover { border-color: var(--nx-border-2); transform: translateY(-3px); }
.nx-post .thumb {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 78% 18%, rgba(230, 166, 23, .16), transparent 28%),
    linear-gradient(135deg, var(--nx-bg-3), var(--nx-bg-warm));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
}
.nx-post .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(120deg, transparent 0%, #000 20%, #000 68%, transparent 100%);
  opacity: .7;
}
.nx-post .thumb::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: 26px;
  width: 190px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 166, 23, .9), transparent);
  transform: rotate(-31deg);
  transform-origin: center;
}
.nx-post .thumb .cat {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  color: var(--nx-gold);
  border: 1px solid var(--nx-gold-line);
}
.nx-post .thumb-title {
  position: relative;
  z-index: 1;
  color: var(--nx-text);
  font-size: clamp(26px, 3vw, 40px);
  line-height: .95em;
  font-weight: 500;
  letter-spacing: 0;
}
.nx-post .thumb-kicker {
  position: relative;
  z-index: 1;
  color: var(--nx-text-muted);
  font-size: 13px;
  line-height: 1.3em;
}
.nx-post .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.nx-post .meta { font-size: 13px; color: var(--nx-text-dim); display: flex; gap: 10px; }
.nx-post h3 { font-size: 19px; font-weight: 500; margin: 0; line-height: 1.3em; }
.nx-post p { font-size: 14px; color: var(--nx-text-muted); margin: 0; line-height: 1.55em; }
.nx-post .more { margin-top: auto; color: var(--nx-gold); font-size: 14px; }

/* ---------- article (blog detail) prose --------------------------------- */
.nx-prose { max-width: 720px; margin: 0 auto; }
.nx-prose h2 { font-size: 30px; font-weight: 500; margin: 48px 0 16px; }
.nx-prose h3 { font-size: 22px; font-weight: 500; margin: 36px 0 12px; }
.nx-prose p { font-size: 17px; line-height: 1.7em; color: #cfccc8; margin: 0 0 1.2em; }
.nx-prose ul, .nx-prose ol { color: #cfccc8; font-size: 17px; line-height: 1.7em; padding-left: 22px; margin: 0 0 1.4em; }
.nx-prose li { margin-bottom: 8px; }
.nx-prose blockquote { border-left: 2px solid var(--nx-gold); padding: 6px 0 6px 24px; margin: 28px 0; font-family: var(--nx-serif); font-size: 24px; line-height: 1.4em; color: #fff; font-style: italic; }
.nx-prose a { color: var(--nx-gold); }
.nx-prose img { width: 100%; border-radius: var(--nx-radius); margin: 28px 0; }
.nx-prose code { background: var(--nx-bg-3); padding: 2px 7px; border-radius: 6px; font-size: .9em; }

/* ---------- imprint ----------------------------------------------------- */
.nx-imprint-section { padding-top: 0; }
.nx-imprint { max-width: 960px; margin: 0 auto; display: grid; gap: 22px; }
.nx-imprint-card {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 64px;
  padding: clamp(30px, 4vw, 52px); background: var(--nx-bg-2); border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius); position: relative; overflow: hidden;
}
.nx-imprint-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 2px;
  background: linear-gradient(180deg, transparent, var(--nx-gold), transparent);
}
.nx-imprint-label {
  display: block; margin-bottom: 18px; color: var(--nx-gold); font-size: 12px; line-height: 1.2;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
}
.nx-imprint-company h2,
.nx-imprint-disclaimer h2 { margin: 0; color: var(--nx-text); font-size: clamp(26px, 3vw, 36px); line-height: 1.15; font-weight: 500; }
.nx-imprint-company address {
  margin-top: 22px; color: var(--nx-text-muted); font-size: 17px; line-height: 1.7; font-style: normal;
}
.nx-imprint-details { margin: 0; display: grid; align-content: center; }
.nx-imprint-details > div { padding: 22px 0; border-bottom: 1px solid var(--nx-border); }
.nx-imprint-details > div:first-child { padding-top: 0; }
.nx-imprint-details > div:last-child { padding-bottom: 0; border-bottom: 0; }
.nx-imprint-details dt { margin-bottom: 7px; color: var(--nx-text-dim); font-size: 13px; line-height: 1.4; }
.nx-imprint-details dd { margin: 0; color: var(--nx-text); font-size: 17px; line-height: 1.5; }
.nx-imprint-details a { color: var(--nx-text); text-decoration-color: var(--nx-gold-line); text-underline-offset: 4px; transition: color .2s, text-decoration-color .2s; }
.nx-imprint-details a:hover { color: var(--nx-gold); text-decoration-color: var(--nx-gold); }
.nx-imprint-disclaimer { padding: clamp(28px, 4vw, 44px) clamp(30px, 4vw, 52px); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); }
.nx-imprint-disclaimer .nx-imprint-label { margin-bottom: 14px; }
.nx-imprint-disclaimer h2 { font-size: clamp(23px, 2.5vw, 30px); }
.nx-imprint-disclaimer p { max-width: 760px; margin: 18px 0 0; color: var(--nx-text-muted); font-size: 16px; line-height: 1.75; }

@media (max-width: 767px) {
  .nx-imprint-card { grid-template-columns: 1fr; gap: 36px; }
  .nx-imprint-details { padding-top: 28px; border-top: 1px solid var(--nx-border); }
  .nx-imprint-disclaimer p { font-size: 15px; }
}

/* ---------- legal disclosures ------------------------------------------ */
.nx-legal-section { padding-top: 0; }
.nx-legal-accordion { max-width: 960px; margin: 0 auto; display: grid; gap: 18px; }
.nx-legal-disclosure { scroll-margin-top: 110px; border: 1px solid var(--nx-border); border-radius: var(--nx-radius); background: var(--nx-bg-2); overflow: clip; }
.nx-legal-disclosure[open] { border-color: var(--nx-border-2); }
.nx-legal-summary { min-height: 104px; padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; color: var(--nx-text); }
.nx-legal-summary::-webkit-details-marker { display: none; }
.nx-legal-summary > span:first-child { display: grid; gap: 7px; }
.nx-legal-summary strong { font-size: 22px; line-height: 1.25; font-weight: 500; }
.nx-legal-summary small { color: var(--nx-text-muted); font-size: 14px; line-height: 1.5; }
.nx-legal-toggle { flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--nx-border-2); border-radius: 999px; display: grid; place-items: center; color: var(--nx-text-muted); font-size: 20px; line-height: 1; transition: transform .25s var(--nx-ease), border-color .25s, color .25s; }
.nx-legal-disclosure[open] .nx-legal-toggle { transform: rotate(45deg); border-color: var(--nx-gold); color: var(--nx-gold); }
.nx-legal-content { max-width: none; margin: 0; padding: 4px 30px 38px; border-top: 1px solid var(--nx-border); }
.nx-legal-content h2 { scroll-margin-top: 110px; }
.nx-legal-content h2:first-child { margin-top: 32px; }
.nx-legal-content h3 { font-size: 21px; }
.nx-legal-content strong { color: var(--nx-text); font-weight: 600; }

@media (max-width: 767px) {
  .nx-legal-summary { min-height: 88px; padding: 21px 20px; gap: 16px; }
  .nx-legal-summary strong { font-size: 19px; }
  .nx-legal-content { padding: 2px 20px 30px; }
  .nx-legal-content h2 { font-size: 25px; }
  .nx-legal-content h3 { font-size: 20px; }
  .nx-legal-content p,
  .nx-legal-content ul,
  .nx-legal-content ol { font-size: 15px; }
}

/* ---------- job listings ------------------------------------------------- */
.nx-job { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 30px; background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); text-decoration: none; color: inherit; transition: border-color .3s, transform .3s; }
.nx-job:hover { border-color: var(--nx-gold-line); transform: translateY(-2px); }
.nx-job .info h3 { font-size: 20px; font-weight: 500; margin: 0 0 8px; }
.nx-job .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.nx-job .tag { font-size: 12px; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--nx-border-2); color: var(--nx-text-muted); }
.nx-job .go { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--nx-border-2); display: grid; place-items: center; color: var(--nx-gold); transition: background .2s, border-color .2s; }
.nx-job:hover .go { border-color: var(--nx-gold); background: var(--nx-gold-soft); }

/* ---------- team grid ---------------------------------------------------- */
.nx-member { background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); overflow: hidden; transition: border-color .3s, transform .3s; }
.nx-member:hover { border-color: var(--nx-border-2); transform: translateY(-3px); }
.nx-member .photo { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--nx-bg-3), var(--nx-bg-warm)); position: relative; overflow: hidden; }
.nx-member .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.nx-member .body { padding: 22px; }
.nx-member h3 { font-size: 18px; font-weight: 500; margin: 0 0 4px; }
.nx-member .role { font-size: 14px; color: var(--nx-gold); margin: 0 0 10px; }
.nx-member p { font-size: 14px; color: var(--nx-text-muted); margin: 0; line-height: 1.5em; }

/* ---------- homepage team carousel -------------------------------------- */
.team-slider.nx-team-loop {
  overflow: hidden;
}

.team-slider.nx-team-loop .team-mask {
  max-width: none;
  display: flex;
  overflow: visible;
  transform: translate3d(var(--nx-team-x, 0px), 0, 0);
  transition: transform .5s ease;
  will-change: transform;
}

.team-slider.nx-team-loop .team-mask.is-jumping {
  transition: none;
}

.team-slider.nx-team-loop .team-slide {
  flex: 0 0 25%;
  width: auto !important;
  height: auto;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

.team-slider.nx-team-loop .team-slide[aria-hidden="true"] {
  visibility: visible;
}

@media screen and (max-width: 991px) {
  .team-slider.nx-team-loop .team-slide { flex-basis: 50%; }
}

@media screen and (max-width: 767px) {
  .team-slider.nx-team-loop .team-slide { flex-basis: 100%; }
}

/* ---------- references / logos / cases ---------------------------------- */
.nx-logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--nx-border); border-radius: var(--nx-radius); overflow: hidden; }
.nx-logo-wall .cell { padding: 36px; display: grid; place-items: center; border-right: 1px solid var(--nx-border); border-bottom: 1px solid var(--nx-border); }
.nx-logo-wall .cell img { max-height: 34px; opacity: .7; filter: grayscale(1) brightness(1.6); transition: opacity .3s; }
.nx-logo-wall .cell:hover img { opacity: 1; }
/* Homepage marquee: size each item to its logo and keep the visual gap constant. */
.partner-logo-top-wrapper,
.partner-logo-bottom-wrapper,
.partner-logo-top-block,
.partner-logo-bottom-block {
  column-gap: 24px;
}
.partner-logo-block { width: auto; flex: 0 0 auto; padding: 0; display: flex; align-items: center; justify-content: center; }
.partner-logo-block img {
  height: 50px;
  width: auto;
  max-width: 152px;
  object-fit: contain;
  opacity: 1;
}
.nx-logo-wordmark {
  display: block;
  color: rgba(255,255,255,.52);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 500;
  line-height: .98;
  text-align: center;
  transition: color .3s var(--nx-ease);
}
.nx-logo-wordmark span {
  display: block;
}
.nx-logo-wall .cell:hover .nx-logo-wordmark {
  color: rgba(255,255,255,.9);
}
.nx-case { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg); padding: 40px; }
.nx-case .visual { aspect-ratio: 4/3; border-radius: var(--nx-radius); background: linear-gradient(135deg, var(--nx-bg-3), var(--nx-bg-warm)); }
.nx-case .quote { font-family: var(--nx-serif); font-size: 26px; line-height: 1.35em; font-style: italic; margin: 18px 0; }
.nx-case .result { display: flex; gap: 28px; margin-top: 20px; }
.nx-case .result b { font-size: 30px; font-weight: 500; display: block; }
.nx-case .result span { font-size: 13px; color: var(--nx-text-muted); }
.nx-case-visual {
  position: relative;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--nx-border-2);
  background:
    radial-gradient(circle at 76% 18%, rgba(232,164,29,.18), transparent 30%),
    linear-gradient(145deg, #25221f, #141312 72%);
}
.nx-case-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(135deg, transparent 0, #000 22%, #000 74%, transparent 100%);
}
.nx-case-visual::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: 32%;
  width: 230px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,164,29,.9), transparent);
  transform: rotate(-34deg);
}
.nx-case-visual > * {
  position: relative;
  z-index: 1;
}
.nx-case-visual .cv-kicker {
  color: var(--nx-gold);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nx-case-visual strong {
  color: var(--nx-text);
  font-family: var(--nx-serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: .92;
}
.nx-case-visual span:last-child {
  max-width: 26ch;
  color: var(--nx-text-muted);
  font-size: 14px;
  line-height: 1.45;
}

/* ---------- portal login ------------------------------------------------- */
.nx-portal { min-height: 70vh; display: grid; place-items: center; padding: 120px 0 80px; }
.nx-portal > .nx-container { display: grid; place-items: center; }
.nx-portal-card { width: 100%; max-width: 440px; background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg); padding: 44px; }
.nx-portal-card .lock { width: 56px; height: 56px; border-radius: 14px; background: var(--nx-gold-soft); border: 1px solid var(--nx-gold-line); display: grid; place-items: center; margin: 0 auto 22px; color: var(--nx-gold); font-size: 24px; }

/* ---------- small utilities --------------------------------------------- */
.nx-mt-s { margin-top: 16px; } .nx-mt-m { margin-top: 28px; } .nx-mt-l { margin-top: 48px; }
.nx-pill { display: inline-block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--nx-gold); border: 1px solid var(--nx-gold-line); border-radius: 999px; padding: 5px 12px; }
.nx-note { background: var(--nx-gold-soft); border: 1px solid var(--nx-gold-line); border-radius: 12px; padding: 16px 18px; font-size: 14px; color: #e7d9bd; }

/* ---------- nav dropdown / mega menu ------------------------------------ */
.nx-nav-dd { position: relative; }
.nx-nav-dd > .nav-link { cursor: pointer; }
.nx-nav-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 520px; background: var(--nx-bg-2); border: 1px solid var(--nx-border-2); border-radius: var(--nx-radius);
  padding: 14px; opacity: 0; visibility: hidden; transition: opacity .22s var(--nx-ease), transform .22s var(--nx-ease);
  box-shadow: 0 24px 60px rgba(0,0,0,.5); z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.nx-nav-dd.is-open .nx-nav-panel,
.nx-nav-dd:hover .nx-nav-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nx-nav-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nx-nav-ditem { display: flex; gap: 12px; padding: 12px 14px; border-radius: 10px; text-decoration: none; color: var(--nx-text); transition: background .2s; }
.nx-nav-ditem:hover { background: var(--nx-bg-3); }
.nx-nav-ditem .ic { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px; background: var(--nx-gold-soft); border: 1px solid var(--nx-gold-line); display: grid; place-items: center; color: var(--nx-gold); font-size: 15px; }
.nx-nav-ditem b { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.nx-nav-ditem span { display: block; font-size: 12px; color: var(--nx-text-muted); line-height: 1.4em; }
.nx-nav-panel .full { grid-column: 1 / -1; }
@media (max-width: 991px) {
  /* Keep the page dimmer independent from Webflow's sliding menu wrapper.
     Otherwise the semi-transparent background moves down with the panel. */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9;
    pointer-events: none;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .3s var(--nx-ease);
  }

  body:has(.menu-button.w--open)::before {
    opacity: 1;
  }

  .nav-menu-link-block {
    width: 100%;
    align-items: stretch;
    gap: 10px;
  }

  .nav-menu-link-block > .nav-link,
  .nav-menu-link-block > .nx-nav-dd {
    width: 100%;
  }

  .nav-menu-link-block > .nav-link {
    display: flex;
    justify-content: center;
  }

  .nav-menu-link-block .nav-link-inner-block {
    height: auto;
    overflow: visible;
    flex-flow: row;
    justify-content: center;
  }

  .nav-menu-link-block .nav-link-text.hover-text {
    display: none;
  }

  .nav-menu-link-block .nav-link:focus:not(:focus-visible) {
    outline: none;
  }

  .nx-nav-dd {
    width: 100%;
  }

  .nx-nav-dd > .nav-link {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-menu-wrapper {
    background-color: transparent;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nx-nav-panel {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 10px 0 14px;
    display: none;
    gap: 4px;
    transform: none !important;
  }

  .nx-nav-dd.is-open .nx-nav-panel { display: grid; }
  .nx-nav-dd.is-open:hover .nx-nav-panel { transform: none; }

  .nx-nav-ditem {
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 0;
    text-align: left;
  }

  .nx-nav-ditem .ic {
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-top: 1px;
  }

  .nx-nav-ditem b {
    font-size: 14px;
  }

  .nx-nav-ditem span {
    text-align: left;
  }
}

/* ---------- responsive --------------------------------------------------- */
@media (max-width: 991px) {
  .nx-section { padding: 72px 0; }
  .nx-section.is-topic-start { padding-top: 104px; }
  .nx-section.is-topic-start::before { top: 36px; }
  .nx-section.is-topic-start::after { top: 32px; }
  .nx-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .nx-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .nx-stats { grid-template-columns: repeat(2, 1fr); }
  .nx-stats .stat:nth-child(2) { border-right: 0; }
  .nx-split, .nx-split.is-wide-left { grid-template-columns: 1fr; gap: 36px; }
  .nx-contact-layout > .nx-contact-side { grid-template-columns: 1fr; grid-template-rows: auto; }
  .nx-contact-layout .nx-section-head,
  .nx-contact-layout .nx-contact-grid,
  .nx-contact-layout .nx-contact-map { grid-column: 1; grid-row: auto; }
  .nx-contact-layout .nx-contact-map { min-height: 360px; }
  .nx-contact-layout .nx-contact-map iframe,
  .nx-contact-layout .nx-consent-placeholder { min-height: 360px; height: 360px; }
  .nx-case { grid-template-columns: 1fr; }
  .nx-logo-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nx-container { padding-left: 22px; padding-right: 22px; }
  .nx-section.is-topic-start::before,
  .nx-section.is-topic-start::after { left: 22px; }
  .nx-hero { padding: 116px 0 64px; }
  .nx-btn {
    max-width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
  .nx-btn-row {
    width: 100%;
  }
  .nx-btn .button-inner-block {
    height: 24px;
    min-height: 0;
    overflow: hidden;
  }
  .nx-btn .button-text {
    white-space: nowrap;
  }
  .nx-grid.cols-2, .nx-grid.cols-3, .nx-grid.cols-4 { grid-template-columns: 1fr; }
  .nx-stats { grid-template-columns: 1fr; }
  .nx-stats .stat { border-right: 0; border-bottom: 1px solid var(--nx-border); }
  .nx-form-row { grid-template-columns: 1fr; }
  .nx-contact-grid { grid-template-columns: 1fr; }
  .nx-cta .nx-form-row,
  .nx-checklist { grid-template-columns: 1fr !important; }
  .nx-cta { padding: 44px 28px; }
  .nx-check-widget, .nx-form-card, .nx-portal-card { padding: 26px; }
  .nx-job { flex-direction: column; align-items: flex-start; }
}

/* ======================================================================
   v2 ADDITIONS — nav affordance + layout-variance components
   ====================================================================== */

/* ---- Nav dropdown caret (signals expandable menus) -------------------- */
.nx-nav-dd > .nav-link { display: inline-flex; align-items: center; }
.nx-nav-dd > .nav-link::after {
  content: ""; flex: 0 0 auto; width: 6px; height: 6px; margin-left: 8px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .45;
  transition: transform .25s var(--nx-ease), opacity .2s, color .2s;
}
.nx-nav-dd.is-open > .nav-link::after { transform: rotate(-135deg) translateY(2px); opacity: 1; color: var(--nx-gold); }

@media (hover: hover) and (pointer: fine) {
  .nx-nav-dd:hover > .nav-link::after { transform: rotate(-135deg) translateY(2px); opacity: 1; color: var(--nx-gold); }
}

/* ---- Display hero variant (editorial, restrained scale) -------------- */
.nx-hero.is-display .nx-hero-inner { max-width: var(--nx-maxw); }
.nx-hero.is-display .nx-h1 { font-size: clamp(37px, 4.9vw, 60px); line-height: 1.06em; max-width: 19ch; }

/* ---- Category pill strip (real, navigable categories) ---------------- */
.nx-pillstrip { display: flex; flex-wrap: wrap; gap: 10px; }
.nx-pillstrip a, .nx-pillstrip span {
  font-size: 13px; color: var(--nx-text-muted); border: 1px solid var(--nx-border-2);
  border-radius: 999px; padding: 8px 16px; text-decoration: none; transition: all .2s var(--nx-ease);
}
.nx-pillstrip a:hover { color: var(--nx-gold); border-color: var(--nx-gold-line); background: var(--nx-gold-soft); }

/* ---- Editorial service index (numbered rows, not cards) -------------- */
.nx-index { border-top: 1px solid var(--nx-border); }
.nx-index-row {
  display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 28px;
  padding: 30px 10px; border-bottom: 1px solid var(--nx-border); text-decoration: none; color: var(--nx-text);
  transition: background .3s var(--nx-ease), padding .3s var(--nx-ease);
}
.nx-index-row:hover { background: var(--nx-bg-2); padding-left: 22px; padding-right: 22px; }
.nx-index-row .ix-num { font-family: var(--nx-serif); font-size: 32px; color: var(--nx-gold); line-height: 1; }
.nx-index-row .ix-title { font-size: 22px; font-weight: 500; margin: 0 0 5px; }
.nx-index-row .ix-title .ix-tag { font-family: var(--nx-sans); font-size: 12px; color: var(--nx-gold); border: 1px solid var(--nx-gold-line); border-radius: 999px; padding: 3px 9px; margin-left: 12px; vertical-align: middle; }
.nx-index-row .ix-desc { font-size: 14.5px; color: var(--nx-text-muted); margin: 0; max-width: 64ch; line-height: 1.5em; }
.nx-index-row .ix-go { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--nx-border-2); display: grid; place-items: center; color: var(--nx-text-muted); transition: all .3s var(--nx-ease); }
.nx-index-row:hover .ix-go { border-color: var(--nx-gold); color: var(--nx-gold); transform: translateX(4px); }

/* ---- Editorial rows for dense secondary sections --------------------- */
.nx-row-list {
  border-top: 1px solid var(--nx-border);
}

.nx-row-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  min-height: 154px;
  padding: 34px 0;
  border-bottom: 1px solid var(--nx-border);
  color: var(--nx-text);
  text-decoration: none;
  transition: border-color .3s var(--nx-ease), padding-left .3s var(--nx-ease), background-color .3s var(--nx-ease);
}

.nx-row-item.has-image {
  grid-template-columns: 56px minmax(160px, 240px) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 38px);
}

.nx-row-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--nx-border);
  border-radius: 14px;
  background: var(--nx-bg-3);
}

.nx-row-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s var(--nx-ease);
}

.nx-row-item:hover .nx-row-image img { transform: scale(1.035); }

.nx-row-item:hover {
  padding-left: 14px;
  border-color: var(--nx-border-2);
  background: linear-gradient(90deg, rgba(232,164,29,.045), transparent 42%);
}

.nx-row-num {
  font-family: var(--nx-serif);
  color: var(--nx-gold);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  font-style: italic;
}

.nx-row-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--nx-text-dim);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nx-row-title {
  margin: 0;
  color: var(--nx-text);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.nx-row-copy {
  max-width: 76ch;
  margin: 12px 0 0;
  color: var(--nx-text-muted);
  font-size: 16px;
  line-height: 1.55;
}

.nx-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.nx-row-tags span {
  color: var(--nx-text-muted);
  border: 1px solid var(--nx-border-2);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 13px;
  line-height: 1;
}

.nx-row-go {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--nx-border-2);
  border-radius: 50%;
  color: var(--nx-gold);
  transition: transform .3s var(--nx-ease), border-color .3s var(--nx-ease), background-color .3s var(--nx-ease);
}

.nx-row-item:hover .nx-row-go {
  transform: translateX(5px);
  border-color: var(--nx-gold-line);
  background: var(--nx-gold-soft);
}

.nx-row-item.is-compact {
  min-height: 0;
  padding: 26px 0;
}

.nx-row-meta {
  color: var(--nx-text-dim);
  font-size: 13px;
}

.nx-team-directory {
  border-top: 1px solid var(--nx-border);
}

.nx-team-section {
  padding-top: 76px;
}

.nx-team-section .nx-section-head {
  margin-bottom: 36px;
}

.nx-team-row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  padding: 30px 0;
  border-bottom: 1px solid var(--nx-border);
}

.nx-team-row .photo,
.team-card-image-block {
  position: relative;
  border: 1px solid var(--nx-border);
  background:
    radial-gradient(circle at 74% 18%, rgba(232,164,29,.2), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(166,217,135,.11), transparent 32%),
    linear-gradient(145deg, #282522, #151413 74%);
  overflow: hidden;
}

a.team-card {
  color: inherit;
  text-decoration: none;
}

a.team-card:focus-visible {
  outline: 2px solid var(--nx-accent, #e8a41d);
  outline-offset: -4px;
}

.nx-team-row .photo {
  aspect-ratio: 4 / 5;
}

.nx-team-row .photo::before,
.nx-team-profile-photo::before,
.team-card-image-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, transparent 44%, rgba(232,164,29,.55) 44% 44.5%, transparent 44.5% 58%, rgba(166,217,135,.32) 58% 58.5%, transparent 58.5%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  mask-image: linear-gradient(135deg, transparent 0, #000 18%, #000 80%, transparent 100%);
  opacity: .78;
}

.nx-team-row .photo img,
.team-card-image-block img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}

.nx-team-profile-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--nx-border-2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 18%, rgba(232,164,29,.2), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(166,217,135,.11), transparent 32%),
    linear-gradient(145deg, #282522, #151413 74%);
}
.nx-team-profile-photo img { width: 100%; height: 100%; display: block; position: relative; z-index: 1; object-fit: cover; object-position: center top; }

.nx-team-row .body {
  display: grid;
  align-content: center;
  max-width: 70ch;
}

.nx-team-row .role {
  margin: 8px 0 0;
  color: var(--nx-gold);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nx-team-row h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  font-weight: 500;
}

.nx-team-row p:not(.role) {
  margin: 20px 0 0;
  color: var(--nx-text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.nx-team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.nx-profile-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--nx-gold-line);
  border-radius: 999px;
  background: var(--nx-gold-soft);
  color: var(--nx-gold);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background-color .2s var(--nx-ease), border-color .2s var(--nx-ease), color .2s var(--nx-ease), transform .2s var(--nx-ease);
}

.nx-profile-link:hover,
.nx-profile-link:focus-visible {
  border-color: var(--nx-gold);
  background: rgba(232, 164, 29, .18);
  color: var(--nx-text);
  transform: translateY(-1px);
}

.nx-profile-more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--nx-text);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: var(--nx-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color .2s var(--nx-ease), text-decoration-color .2s var(--nx-ease);
}

.nx-profile-more:hover,
.nx-profile-more:focus-visible {
  color: var(--nx-gold);
  text-decoration-color: currentColor;
}

.nx-blog-hero {
  padding-bottom: 84px;
}

.nx-blog-hero-inner {
  max-width: var(--nx-maxw);
}

.nx-blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  gap: clamp(34px, 4.8vw, 72px);
  align-items: end;
  margin-top: 28px;
}

.nx-blog-hero-grid.is-text-only {
  grid-template-columns: minmax(0, 920px);
}

.nx-blog-hero-copy {
  align-self: center;
  min-width: 0;
}

.nx-hero.nx-blog-hero .nx-h1 {
  font-size: clamp(42px, 4.25vw, 68px);
  line-height: 1em;
  margin-top: 18px;
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
}

.nx-blog-meta {
  margin: 0;
  color: var(--nx-text-dim);
  font-size: 14px;
  line-height: 1.45;
}

.nx-blog-meta a,
.nx-prose a {
  color: var(--nx-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--nx-gold-line);
  transition: color .2s var(--nx-ease), border-color .2s var(--nx-ease);
}

.nx-blog-meta a:hover,
.nx-prose a:hover {
  color: var(--nx-text);
  border-color: var(--nx-gold);
}

.nx-blog-hero-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--nx-border-2);
  border-radius: 8px;
  background: var(--nx-bg-2);
}

.nx-blog-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(22,22,22,0) 62%, rgba(22,22,22,.22));
}

.nx-blog-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nx-blog-article-section {
  padding-top: 72px;
}

.nx-blog-article-section .nx-prose {
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .nx-blog-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nx-hero.nx-blog-hero .nx-h1 {
    max-width: 16ch;
  }
}

/* ---- Big-number band (distinct from .nx-stats) ----------------------- */
.nx-bignum { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--nx-border); border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg); overflow: hidden; }
.nx-bignum .bn { background: var(--nx-bg); padding: 42px 34px; }
.nx-bignum .bn b { display: block; font-family: var(--nx-serif); font-size: clamp(40px, 5.5vw, 64px); line-height: .95em; font-weight: 400; }
.nx-bignum .bn b em { font-style: normal; color: var(--nx-gold); }
.nx-bignum .bn span { display: block; margin-top: 14px; font-size: 14px; color: var(--nx-text-muted); line-height: 1.5em; }

/* ---- Bento grid (asymmetric tiles) ----------------------------------- */
.nx-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.nx-bento .cell { background: var(--nx-bg-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 30px; text-decoration: none; color: var(--nx-text); display: flex; flex-direction: column; transition: border-color .3s, transform .3s; }
.nx-bento .cell:hover { border-color: var(--nx-border-2); transform: translateY(-3px); }
.nx-bento .cell.span-2 { grid-column: span 2; }
.nx-bento .cell.is-gold { background: linear-gradient(155deg, var(--nx-gold-soft), var(--nx-bg-2) 60%); border-color: var(--nx-gold-line); }
.nx-bento .cell .b-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--nx-gold-soft); border: 1px solid var(--nx-gold-line); display: grid; place-items: center; color: var(--nx-gold); font-size: 18px; margin-bottom: 20px; }
.nx-bento .cell h3 { font-size: 19px; font-weight: 500; margin: 0 0 8px; }
.nx-bento .cell p { font-size: 14px; color: var(--nx-text-muted); line-height: 1.55em; margin: 0; }
.nx-bento .cell .b-go { margin-top: auto; padding-top: 18px; color: var(--nx-gold); font-size: 14px; display: inline-flex; gap: 6px; }

/* ---- Feature row (alternating media + text) -------------------------- */
.nx-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.nx-feature + .nx-feature { margin-top: 64px; }
.nx-feature.flip .nx-feature-media { order: -1; }
.nx-feature-media { border-radius: var(--nx-radius-lg); overflow: hidden; border: 1px solid var(--nx-border); background: linear-gradient(135deg, var(--nx-bg-3), var(--nx-bg-warm)); aspect-ratio: 4/3; }
.nx-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Logo wall: white-monochrome variant for dark backgrounds -------- */
.nx-logo-wall.is-mono .cell img { filter: brightness(0) invert(1); opacity: .5; }
.nx-logo-wall.is-mono .cell:hover img { opacity: .9; filter: brightness(0) invert(1); }

@media (max-width: 991px) {
  .nx-bignum { grid-template-columns: 1fr; }
  .nx-bento { grid-template-columns: 1fr 1fr; }
  .nx-feature { grid-template-columns: 1fr; gap: 28px; }
  .nx-feature.flip .nx-feature-media { order: 0; }
}
@media (max-width: 600px) {
  .nx-index-row { grid-template-columns: 42px 1fr; gap: 18px; }
  .nx-index-row .ix-go { display: none; }
  .nx-row-item,
  .nx-row-item.has-image { grid-template-columns: 1fr; gap: 14px; padding: 26px 0; }
  .nx-row-image { order: -1; width: 100%; }
  .nx-row-item:hover { padding-left: 0; }
  .nx-row-go { display: none; }
  .nx-team-row { grid-template-columns: 1fr; gap: 20px; }
  .nx-team-row .photo { aspect-ratio: 5 / 4; }
  .nx-bento, .nx-bento .cell.span-2 { grid-template-columns: 1fr; grid-column: auto; }
}

/* ---- Scroll reveal + hero entrance ----------------------------------- */
.nx-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--nx-ease), transform .7s var(--nx-ease); transition-delay: var(--nx-d, 0ms); }
.nx-reveal.nx-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .nx-reveal { opacity: 1; transform: none; transition: none; } }

@media (prefers-reduced-motion: no-preference) {
  .nx-hero-inner > *, .nx-hero .nx-split > *, .nx-hero-copy > *, .nx-hero-frame { animation: nxHeroUp .85s var(--nx-ease) both; }
  .nx-hero-copy .nx-breadcrumb { animation-delay: 0s; }
  .nx-hero-copy .nx-eyebrow { animation-delay: .05s; }
  .nx-hero .nx-h1 { animation-delay: .08s; }
  .nx-hero .nx-lead { animation-delay: .16s; }
  .nx-hero .nx-btn-row { animation-delay: .24s; }
  .nx-hero .nx-pillstrip { animation-delay: .32s; }
  .nx-hero .nx-feature-media, .nx-hero-frame { animation-delay: .2s; }
}
@keyframes nxHeroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ======================================================================
   KI-HUB — interactive orbital diagram (replaces static ki-hub-diagramm.svg)
   KI at the centre; inner ring = operative layer (cardinal), outer ring =
   strategic layer (diagonal). Hover/focus a node to light its spoke and
   update the readout. Decorative orbit rotation respects reduced-motion.
   ====================================================================== */
.nx-kihub { position: relative; }
.khub-stage {
  position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 560px; margin: 0 auto;
}
.khub-orbits { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.khub-orbits .ring { fill: none; stroke: var(--nx-border-2); stroke-width: 1; stroke-dasharray: 3 7; opacity: .65; transform-origin: 200px 200px; }
@media (prefers-reduced-motion: no-preference) {
  .khub-orbits .ring.r-in  { animation: khubSpin 60s linear infinite; }
  .khub-orbits .ring.r-out { animation: khubSpin 90s linear infinite reverse; }
}
@keyframes khubSpin { to { transform: rotate(360deg); } }
.khub-orbits .spoke { stroke: var(--nx-border-2); stroke-width: 1.25; opacity: .5; transition: stroke .3s var(--nx-ease), opacity .3s var(--nx-ease), stroke-width .3s; }
.khub-orbits .spoke.is-strat { stroke-dasharray: 2 5; }

.khub-node {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  display: grid; gap: 1px; justify-items: start; text-align: left;
  padding: 9px 13px; border-radius: 11px; cursor: default; font-family: var(--nx-sans);
  background: var(--nx-bg-3); border: 1px solid var(--nx-border-2); color: var(--nx-text);
  box-shadow: 0 6px 18px rgba(0,0,0,.35); transition: border-color .3s var(--nx-ease), transform .3s var(--nx-ease), background .3s, box-shadow .3s; z-index: 2; white-space: nowrap;
}
.khub-node b { font-size: 13.5px; font-weight: 500; line-height: 1.1; }
.khub-node span { font-size: 10.5px; color: var(--nx-text-dim); letter-spacing: .02em; }
.khub-node::before { content: ""; position: absolute; inset: -1px; border-radius: 11px; border: 1px solid transparent; transition: border-color .3s; pointer-events: none; }
.khub-node.is-strat { background: linear-gradient(160deg, var(--nx-bg-3), var(--nx-bg-2)); }
.khub-node:hover, .khub-node:focus-visible { outline: none; border-color: var(--nx-gold-line); transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 10px 26px rgba(0,0,0,.5); }
.khub-node.is-on::before { border-color: var(--nx-gold); }
.khub-node.is-on { border-color: var(--nx-gold); }

/* centre node */
.khub-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; text-align: center; gap: 0;
  background: radial-gradient(circle at 50% 35%, var(--nx-bg-warm), var(--nx-bg-3));
  border: 1px solid var(--nx-gold-line); color: #fff; z-index: 3;
  box-shadow: 0 0 0 6px rgba(232,164,29,.05), 0 0 40px rgba(232,164,29,.12);
}
.khub-center b { font-size: 20px; font-weight: 500; line-height: 1; }
.khub-center span { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--nx-gold); margin-top: 3px; }
.khub-center::after { content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid var(--nx-gold); opacity: 0; animation: khubPulse 3.4s var(--nx-ease) infinite; }
@media (prefers-reduced-motion: reduce) { .khub-center::after { animation: none; } }
@keyframes khubPulse { 0% { opacity: .5; transform: scale(1); } 70%,100% { opacity: 0; transform: scale(1.28); } }

/* dim siblings when one node is active */
.khub-stage.has-active .khub-node:not(.is-on) { opacity: .4; }
.khub-stage .khub-node { transition: opacity .3s var(--nx-ease), border-color .3s var(--nx-ease), transform .3s var(--nx-ease), background .3s, box-shadow .3s; }

/* layer labels */
.khub-layer { position: absolute; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--nx-text-dim); z-index: 1; }
.khub-layer.op  { top: calc(50% - 100px); margin-top: -14px; opacity: .55; }
.khub-layer.st  { top: calc(50% - 150px); margin-top: -14px; opacity: .55; }

/* readout under the stage */
.khub-readout { margin-top: 22px; min-height: 62px; max-width: 460px; margin-left: auto; margin-right: auto; text-align: center; }
.khub-readout b { display: block; font-size: 15px; font-weight: 500; color: var(--nx-text); margin-bottom: 5px; }
.khub-readout b::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--nx-gold); margin-right: 9px; vertical-align: middle; }
.khub-readout span { font-size: 13.5px; line-height: 1.55em; color: var(--nx-text-muted); }

@media (max-width: 991px) {
  /* collapse the orbital layout into a clean vertical list on narrow screens */
  .nx-kihub-frame {
    height: auto;
    padding: 18px;
  }
  .nx-kihub-frame .nx-kihub {
    max-width: none;
  }
  .nx-kihub-frame .khub-stage {
    max-width: none;
  }
  .khub-stage { aspect-ratio: auto; max-width: 460px; display: grid; gap: 10px; padding: 4px 0; }
  .khub-orbits, .khub-layer { display: none; }
  .khub-node { position: static; transform: none; left: auto; top: auto; white-space: normal; box-shadow: none; width: 100%; }
  .khub-node:hover, .khub-node:focus-visible { transform: none; }
  .khub-center { position: static; transform: none; width: 100%; height: auto; border-radius: 14px; padding: 16px; flex-direction: row; }
  .khub-center { display: flex; gap: 12px; justify-content: center; align-items: baseline; }
  .khub-center span { margin-top: 0; }
  .khub-readout { text-align: left; }
}
.khub-orbits .spoke.is-on { stroke: var(--nx-gold); opacity: 1; stroke-width: 2; stroke-dasharray: none; }

/* Inline line-icons inside icon chips (replaces former glyph characters) */
.nx-card-icon svg { width: 24px; height: 24px; display: block; }
.nx-bento .cell .b-ic svg { width: 20px; height: 20px; display: block; }
.nx-nav-ditem .ic svg { width: 17px; height: 17px; display: block; }

/* ---- Numbered editorial stack ---------------------------------------- */
.nx-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--nx-border);
  padding-bottom: 0;
}
.nx-stack-item {
  position: relative;
  display: grid; grid-template-columns: 70px 1fr 64px; gap: 30px; align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--nx-border);
  border-radius: 0;
  padding: 34px 0;
  box-shadow: none;
  transform-origin: 50% 0;
  transition: border-color .3s var(--nx-ease), padding-left .3s var(--nx-ease), background-color .3s var(--nx-ease);
}
.nx-stack-item:hover {
  padding-left: 14px;
  border-color: var(--nx-border-2);
  background: linear-gradient(90deg, rgba(232,164,29,.045), transparent 42%);
}
.nx-stack-item .ns-num { font-family: var(--nx-serif); font-size: 46px; line-height: 1; color: var(--nx-gold); }
.nx-stack-item .ns-body h3 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); line-height: 1.1; font-weight: 500; }
.nx-stack-item .ns-body p { margin: 0; color: var(--nx-text-muted); font-size: 16px; line-height: 1.58em; max-width: 70ch; }
.nx-stack-item .ns-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--nx-border-2);
  color: var(--nx-gold);
  transition: transform .3s var(--nx-ease), border-color .3s var(--nx-ease), background-color .3s var(--nx-ease);
}
.nx-stack-item:hover .ns-ic {
  transform: translateX(5px);
  border-color: var(--nx-gold-line);
  background: var(--nx-gold-soft);
}
.nx-stack-item .ns-ic svg { width: 23px; height: 23px; }
@media (max-width: 760px) {
  .nx-stack-item { position: static; grid-template-columns: 1fr; gap: 14px; padding: 28px 0; box-shadow: none; }
  .nx-stack-item:hover { padding-left: 0; }
  .nx-stack-item .ns-ic { order: -1; }
}

/* ======================================================================
   PROCESS — sticky media (right) while the steps scroll past (left)
   ====================================================================== */
.nx-process { display: grid; grid-template-columns: 1.04fr .96fr; gap: 64px; align-items: start; }
.nx-process-steps { display: flex; flex-direction: column; }
.np-step { position: relative; padding: 0 0 44px 56px; }
.np-step:last-child { padding-bottom: 0; }
.np-step::before { /* node */
  content: ""; position: absolute; left: 13px; top: 6px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--nx-bg); border: 2px solid var(--nx-border-2); transition: border-color .3s var(--nx-ease), background .3s, box-shadow .3s; z-index: 1;
}
.np-step::after { /* connector line */
  content: ""; position: absolute; left: 21px; top: 18px; bottom: -6px; width: 2px; background: var(--nx-border);
}
.np-step:last-child::after { display: none; }
.np-step .np-n { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--nx-text-dim); margin-bottom: 7px; transition: color .3s; }
.np-step h4 { margin: 0 0 9px; font-size: 20px; font-weight: 500; transition: color .3s; }
.np-step p { margin: 0; color: var(--nx-text-muted); font-size: 15px; line-height: 1.6em; }
.np-step.is-current::before { border-color: var(--nx-gold); background: var(--nx-gold); box-shadow: 0 0 0 5px var(--nx-gold-soft); }
.np-step.is-current .np-n { color: var(--nx-gold); }
.nx-process-media {
  position: sticky; top: 104px; aspect-ratio: 4/5; border-radius: var(--nx-radius-lg); overflow: hidden;
  border: 1px solid var(--nx-border); background: linear-gradient(150deg, var(--nx-bg-3), var(--nx-bg-warm));
  display: grid; place-items: end start;
}
.nx-process-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nx-process-media img[src*="office-it-consulting"],
.nx-process-media img[src*="Berater-am-Telefon"] { object-position: center 22%; }
.nx-process-media .pm-cap { position: relative; z-index: 1; padding: 26px 28px; }
.nx-process-media .pm-cap b { display: block; font-size: 16px; font-weight: 500; }
.nx-process-media .pm-cap span { font-size: 13px; color: #d8d2ca; }
.nx-process-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.18) 42%, transparent 68%); }
.nx-process-media:not(:has(img)) {
  background:
    radial-gradient(circle at 72% 18%, rgba(232,164,29,.18), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(166,217,135,.10), transparent 32%),
    linear-gradient(145deg, #24211f, #141312 72%);
}
.nx-process-media:not(:has(img))::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, transparent 44%, rgba(232,164,29,.42) 44% 45%, transparent 45% 58%, rgba(166,217,135,.28) 58% 59%, transparent 59%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
  mask-image: radial-gradient(circle at 50% 46%, #000 0 58%, transparent 82%);
  opacity: .78;
}
@media (max-width: 991px) {
  .nx-process { grid-template-columns: 1fr; gap: 36px; }
  .nx-process-media { position: relative; top: auto; order: -1; aspect-ratio: 16/9; }
}

/* Nav labels must never wrap (hyphenated items like "IT-Leistungen" were
   breaking to a 2nd line and showing only "IT-" at some widths). */
.nav-link-text { white-space: nowrap; }
.nx-mobile-nav-actions { display: none; }

@media screen and (max-width: 991px) {
  .nav-container { width: calc(100% - 32px); padding-left: 0; padding-right: 0; }
  .nav-brand { width: auto; min-width: 0; }
  .logo-h { width: auto; height: 40px; max-width: 146px; }
  .nav-menu-inner-block { width: calc(100% - 32px); max-height: calc(100vh - 32px); overflow-y: auto; padding-left: 24px; padding-right: 24px; }
  .nx-mobile-nav-actions { display: flex; width: 100%; justify-content: center; padding-top: 20px; }
  .nx-mobile-nav-actions .nav-button { width: min(100%, 320px); display: flex; justify-content: center; align-items: center; }
  .nav-menu-link-block .nav-link-text,
  .nav-menu-link-block .nav-link-text.hover-text { transform: none !important; transition: none !important; }
  .nav-menu-link-block .nav-link { min-height: 42px; }
}

@media screen and (max-width: 767px) {
  .logo-h { height: 36px; max-width: 136px; }
  .hero-title-changing-words-wrapper.nx-hero-word-rotator .hero-title-changeing-word {
    width: 100%;
    text-align: center;
  }
}

@media (hover: none) {
  .nx-btn:hover .button-text,
  .nx-btn:focus-visible .button-text { transform: none; }
  .nx-service-card:hover,
  .nx-post:hover,
  .nx-row-item:hover,
  .nx-profile-link:hover { transform: none; }
  .nx-row-item:hover { padding-left: 0; background: transparent; }
  .nx-nav-ditem:hover { background: transparent; }
}

@media screen and (min-width: 992px) {
  .nav-cta-block {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-cta-block > .nav-link {
    margin-right: 0 !important;
    flex: 0 0 auto;
  }

  .nav-cta-block > .nav-button {
    flex: 0 0 auto;
  }
}

/* Status / severity badge (colored dot + label) — replaces gold uppercase pill */
.nx-sev { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: .02em;
  padding: 5px 12px 5px 10px; border-radius: 999px; border: 1px solid var(--nx-border-2); color: var(--nx-text-muted); background: var(--nx-bg); }
.nx-sev::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 18%, transparent); }
.nx-sev.is-crit { color: #e5705f; border-color: rgba(229,112,95,.4); }
.nx-sev.is-high { color: var(--nx-gold); border-color: var(--nx-gold-line); }
.nx-sev.is-normal { color: #5fa97e; border-color: rgba(95,169,126,.4); }

/* small tag inside a stacking card body */
.nx-stack-item .ns-tag { display: inline-block; font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--nx-gold); border: 1px solid var(--nx-gold-line); border-radius: 999px; padding: 3px 10px; margin-bottom: 10px; }

/* ======================================================================
   NAVBAR — frosted / darker background once the page is scrolled
   ====================================================================== */
.navbar { transition: background-color .35s var(--nx-ease), backdrop-filter .35s var(--nx-ease),
  top .35s var(--nx-ease), box-shadow .35s var(--nx-ease), padding .35s var(--nx-ease); }
.navbar.nx-scrolled {
  top: 0;
  background-color: rgba(20, 19, 18, .66);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .055), 0 10px 30px rgba(0, 0, 0, .32);
  padding-top: 6px; padding-bottom: 6px;
}

/* Footer nav columns should align to the same left edge. Webflow centered each
   nav block independently, so shorter groups like "Unternehmen" drifted right. */
@media screen and (min-width: 992px) {
  .footer-nav-block {
    align-items: flex-start;
    box-sizing: border-box;
    padding-left: clamp(34px, 3.4vw, 70px);
  }
}

/* ---------- Consent: aufklappbare Dienst-Listen je Kategorie -------------- */
.nx-consent-block { border: 1px solid var(--nx-border); border-radius: 12px; overflow: hidden; }
.nx-consent-block + .nx-consent-block { margin-top: 10px; }
.nx-consent-block .nx-consent-category { border: 0; border-radius: 0; margin: 0; }
.nx-consent-services { border-top: 1px solid var(--nx-border); background: var(--nx-bg-2); }
.nx-consent-services summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 7px;
  padding: 9px 14px; font-size: 12.5px; color: var(--nx-text-dim);
  transition: color .2s var(--nx-ease);
}
.nx-consent-services summary::-webkit-details-marker { display: none; }
.nx-consent-services summary::before {
  content: ""; width: 7px; height: 7px; flex: 0 0 auto;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg); transition: transform .2s var(--nx-ease); margin-top: -2px;
}
.nx-consent-services[open] summary::before { transform: rotate(45deg); margin-top: -4px; }
.nx-consent-services summary:hover { color: var(--nx-gold); }
.nx-consent-services ul { list-style: none; margin: 0; padding: 2px 14px 12px; display: flex; flex-direction: column; gap: 9px; }
.nx-consent-services li { display: flex; flex-direction: column; gap: 2px; }
.nx-consent-services li b { font-size: 13px; font-weight: 500; color: var(--nx-text); }
.nx-consent-services li span { font-size: 12px; line-height: 1.5; color: var(--nx-text-muted); }
