/* NormHow — Theme-Stylesheet (Port aus der statischen Seite)
   Schriften werden über theme.json registriert (fontFace).
   Komponenten/Klassen 1:1 wie auf der statischen NormHow-Seite. */

/* ==========================================================================
   NormHow — Design System (Startseite)
   Farben exakt aus dem Logo: BG #121315 · Gold (KLAR) #C69A42 · Warmweiß #EBECE8
   Health-Care-Akzent: Petrol #5FA8A0
   Schriften self-hosted: Sora (Headlines) · Mulish (Body) · Oxanium (Wortmark/Eyebrow)
   Komponenten/Klassen 1:1 wie auf der statischen NormHow-Seite.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable) ---------- */
/* ---------- Tokens ---------- */
:root {
  --nk-bg:        #121315;
  --nk-card:      #17181B;
  --nk-card-2:    #1C1E22;
  --nk-text:      #EBECE8;
  --nk-muted:     rgba(235, 236, 232, 0.62);
  --nk-muted-2:   rgba(235, 236, 232, 0.50);
  --nk-faint:     rgba(235, 236, 232, 0.40);
  --nk-line:      rgba(235, 236, 232, 0.08);
  --nk-line-2:    rgba(235, 236, 232, 0.18);

  --nk-accent:    #C69A42;   /* Gold „KLAR" */
  --nk-accent-rgb: 198, 154, 66;
  --nk-on-accent: #1A1405;
  --nk-teal:      #5FA8A0;
  --nk-teal-rgb:  95, 168, 160;

  --nk-light-bg:   #F4F2ED;
  --nk-light-ink:  #1A1C1F;
  --nk-light-mute: #5C5E60;
  --nk-light-gold: #A87B2E;

  --nk-font-head: 'Sora', system-ui, sans-serif;
  --nk-font-body: 'Mulish', system-ui, sans-serif;
  --nk-font-mark: 'Oxanium', system-ui, sans-serif;

  --nk-radius:    18px;
  --nk-radius-sm: 11px;
  --nk-max:       1240px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--nk-bg);
  color: var(--nk-text);
  font-family: var(--nk-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--nk-accent); color: var(--nk-bg); }
img { max-width: 100%; display: block; }
a { color: inherit; }

.nk-container { max-width: var(--nk-max); margin: 0 auto; padding-left: 40px; padding-right: 40px; }

@keyframes nkfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Eyebrow ---------- */
.nk-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--nk-font-mark);
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--nk-accent);
  margin-bottom: 16px;
}
.nk-eyebrow .dot { width: 6px; height: 6px; background: var(--nk-accent); border-radius: 50%; }
.nk-eyebrow--center { justify-content: center; }

/* ---------- Headlines ---------- */
.nk-h1 {
  font-family: var(--nk-font-head); font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4.3rem); line-height: 1.06; letter-spacing: -0.02em;
  text-wrap: balance;
}
.nk-h2 {
  font-family: var(--nk-font-head); font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem); line-height: 1.15; letter-spacing: -0.01em;
}
.nk-h3 { font-family: var(--nk-font-head); font-weight: 600; }
.nk-gold { color: var(--nk-accent); }

.nk-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.nk-section-head p { color: var(--nk-muted); font-size: 1.05rem; margin-top: 16px; line-height: 1.7; }

/* ---------- Buttons ---------- */
.nk-btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 16px; font-weight: 700;
  padding: 16px 30px; border-radius: var(--nk-radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
}
.nk-btn--primary {
  background: var(--nk-accent); color: var(--nk-on-accent);
  box-shadow: 0 8px 28px rgba(var(--nk-accent-rgb), 0.22);
}
.nk-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(var(--nk-accent-rgb), 0.32); }
.nk-btn--ghost {
  background: transparent; color: var(--nk-text); font-weight: 600;
  border-color: var(--nk-line-2);
}
.nk-btn--ghost:hover { border-color: rgba(235, 236, 232, 0.45); background: rgba(235, 236, 232, 0.04); }
.nk-btn--sm { padding: 11px 22px; font-size: 15px; }
.nk-btn--light { background: var(--nk-light-ink); color: var(--nk-light-bg); }
.nk-btn--light:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* ---------- Header / Nav ---------- */
.nk-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 19, 21, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(235, 236, 232, 0.07);
}
.nk-nav {
  max-width: var(--nk-max); margin: 0 auto;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nk-brand { display: flex; align-items: center; text-decoration: none; }
.nk-brand img { height: 46px; width: auto; }
.nk-navlinks { display: flex; align-items: center; gap: 30px; }
.nk-navlinks a {
  color: var(--nk-muted); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color .15s ease;
}
.nk-navlinks a:hover { color: var(--nk-text); }
.nk-navlinks a.nk-btn { color: var(--nk-on-accent); }
.nk-navlinks a.nk-btn:hover { color: var(--nk-on-accent); }

.nk-burger {
  display: none; background: none; border: 0; color: var(--nk-text);
  cursor: pointer; padding: 6px;
}

/* ---------- Hero ---------- */
.nk-hero { position: relative; padding: 56px 40px 80px; overflow: hidden; }
.nk-hero__logo {
  position: relative; z-index: 1;
  display: block; height: 208px; width: auto; max-width: 100%; margin: 0 auto 60px;
}
.nk-hero__glow {
  position: absolute; top: 200px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(var(--nk-accent-rgb), 0.16), rgba(var(--nk-accent-rgb), 0) 70%);
}
.nk-hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(235, 236, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 236, 232, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
}
.nk-hero__inner { position: relative; max-width: 1000px; margin: 0 auto; text-align: center; }
.nk-hero__inner .nk-eyebrow { margin-bottom: 28px; }
.nk-hero__inner h1 { margin-bottom: 26px; }
.nk-lead {
  max-width: 640px; margin: 0 auto 38px;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.7; color: var(--nk-muted);
}
.nk-hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.nk-hero__credential {
  max-width: 600px; margin: 34px auto 0; font-size: 14px; line-height: 1.7;
  color: var(--nk-muted-2);
}

/* framed media */
.nk-frame-wrap { position: relative; max-width: 880px; margin: 72px auto 0; }
.nk-frame {
  background: var(--nk-card-2); border: 1px solid rgba(235, 236, 232, 0.1);
  border-radius: var(--nk-radius); padding: 14px 14px 0;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.nk-frame__dots { display: flex; gap: 7px; padding: 4px 6px 14px; }
.nk-frame__dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(235, 236, 232, 0.18); }
.nk-frame__media { width: 100%; height: 430px; object-fit: cover; border-radius: 12px 12px 0 0; }
.nk-badge-float {
  position: absolute; bottom: -26px; left: 40px;
  background: var(--nk-accent); color: var(--nk-on-accent);
  padding: 16px 22px; border-radius: 13px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  animation: nkfloat 6s ease-in-out infinite;
}
.nk-badge-float .num { font-family: var(--nk-font-head); font-weight: 800; font-size: 26px; line-height: 1; }
.nk-badge-float .lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.78; margin-top: 4px; }

/* ---------- Sections ---------- */
.nk-section { padding: 104px 40px; max-width: var(--nk-max); margin: 0 auto; }
.nk-section--tight { padding-top: 40px; }

/* ---------- Cards ---------- */
.nk-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nk-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.nk-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.nk-card {
  background: var(--nk-card); border: 1px solid var(--nk-line);
  border-radius: var(--nk-radius); padding: 34px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.nk-card:hover { border-color: rgba(var(--nk-accent-rgb), 0.35); transform: translateY(-4px); }
.nk-card h3 { font-size: 1.3rem; color: var(--nk-text); margin-bottom: 12px; }
.nk-h3--sm { font-size: 1.15rem; }
.nk-card p { color: var(--nk-muted); font-size: 15px; line-height: 1.7; }
.nk-card__link {
  display: inline-block; margin-top: 18px; color: var(--nk-accent);
  text-decoration: none; font-weight: 600; font-size: 15px;
}
.nk-card__link:hover { filter: brightness(1.12); }
.nk-card__link::after { content: " ›"; }

.nk-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.nk-icon--gold { background: rgba(var(--nk-accent-rgb), 0.12); }
.nk-icon--teal { background: rgba(var(--nk-teal-rgb), 0.14); }
.nk-icon svg { width: 26px; height: 26px; }

/* service card with inline title */
.nk-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.nk-card__head .nk-icon { width: 46px; height: 46px; border-radius: 11px; margin-bottom: 0; }
.nk-card__head .nk-icon svg { width: 24px; height: 24px; }
.nk-card__head h3 { font-size: 1.2rem; margin-bottom: 0; }

.nk-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.nk-list li { display: flex; gap: 11px; color: var(--nk-muted); font-size: 15px; }
.nk-list li .mk { flex-shrink: 0; }
.nk-list li .mk--gold { color: var(--nk-accent); }
.nk-list li .mk--teal { color: var(--nk-teal); }

/* compact audience tiles */
.nk-tile {
  background: var(--nk-card); border: 1px solid var(--nk-line);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.nk-tile:hover { border-color: rgba(var(--nk-accent-rgb), 0.3); background: var(--nk-card-2); }
.nk-tile svg { width: 30px; height: 30px; margin: 0 auto 14px; display: block; }
.nk-tile .t { font-family: var(--nk-font-head); font-weight: 600; font-size: 1.02rem; color: var(--nk-text); }

/* ---------- Über mich split ---------- */
.nk-split {
  max-width: var(--nk-max); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: center;
}
.nk-portrait { position: relative; }
.nk-portrait img { width: 100%; height: 520px; object-fit: cover; border-radius: 20px; }
.nk-portrait__stats {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--nk-card); border: 1px solid rgba(235, 236, 232, 0.1);
  border-radius: 14px; padding: 18px 24px; display: flex; gap: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.nk-stat .num { font-family: var(--nk-font-head); font-weight: 800; font-size: 1.7rem; color: var(--nk-accent); line-height: 1; }
.nk-stat .lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nk-muted-2); margin-top: 5px; }
.nk-stat__sep { width: 1px; background: rgba(235, 236, 232, 0.1); }
.nk-prose p { color: var(--nk-muted); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.nk-check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.nk-check-list li { display: flex; align-items: center; gap: 13px; font-size: 15px; color: var(--nk-text); }
.nk-check-list .chk {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(var(--nk-teal-rgb), 0.15);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Light section ---------- */
.nk-light { background: var(--nk-light-bg); color: var(--nk-light-ink); padding: 104px 40px; }
.nk-light .nk-inner { max-width: var(--nk-max); margin: 0 auto; }
.nk-light .nk-eyebrow { color: var(--nk-light-gold); }
.nk-light .nk-eyebrow .dot { background: var(--nk-light-gold); }
.nk-light .nk-h2 { color: var(--nk-light-ink); }
.nk-light .nk-section-head p { color: var(--nk-light-mute); }
.nk-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(20, 22, 25, 0.1); border: 1px solid rgba(20, 22, 25, 0.1);
  border-radius: var(--nk-radius); overflow: hidden;
}
.nk-step { background: var(--nk-light-bg); padding: 34px 28px; transition: background .15s ease; }
.nk-step:hover { background: #FBFAF6; }
.nk-step__no { font-family: var(--nk-font-mark); font-weight: 700; font-size: 13px; letter-spacing: 0.2em; color: var(--nk-light-gold); margin-bottom: 18px; }
.nk-step h3 { font-size: 1.15rem; color: var(--nk-light-ink); margin-bottom: 12px; }
.nk-step p { color: var(--nk-light-mute); font-size: 14.5px; line-height: 1.7; }

/* ---------- Impact / Philosophie ---------- */
.nk-impact { position: relative; overflow: hidden; padding: 104px 40px; text-align: center; }
.nk-impact__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 560px; height: 340px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(var(--nk-accent-rgb), 0.14), transparent 70%);
}
.nk-impact__inner { position: relative; max-width: 720px; margin: 0 auto; }
.nk-impact__inner p { color: var(--nk-muted); font-size: 1.1rem; line-height: 1.8; margin-top: 18px; }

/* ---------- Pilot box ---------- */
.nk-pilot {
  max-width: 760px; margin: 36px auto 0;
  background: var(--nk-card); border: 1px solid var(--nk-line);
  border-left: 3px solid var(--nk-teal);
  border-radius: 16px; padding: 32px 36px; text-align: left;
}
.nk-pilot .tag {
  display: inline-block; font-family: var(--nk-font-mark); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--nk-teal);
  margin-bottom: 14px;
}
.nk-pilot p { color: var(--nk-muted); font-size: 1.02rem; line-height: 1.7; margin: 0; }

/* ---------- Praxis list (light) ---------- */
.nk-praxis { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.nk-praxis__item { padding: 28px 0; border-bottom: 1px solid rgba(20, 22, 25, 0.1); }
.nk-praxis__item:last-child { border-bottom: 0; }
.nk-praxis__item h3 { font-size: 1.15rem; color: var(--nk-light-ink); margin-bottom: 8px; }
.nk-praxis__item p { color: var(--nk-light-mute); font-size: 1rem; line-height: 1.7; margin: 0; }

/* ---------- Final CTA ---------- */
.nk-cta-section { padding: 20px 40px 104px; max-width: var(--nk-max); margin: 0 auto; }
.nk-cta {
  position: relative; overflow: hidden;
  background: var(--nk-card); border: 1px solid rgba(235, 236, 232, 0.1);
  border-radius: 24px; padding: 72px 56px; text-align: center;
}
.nk-cta__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 560px; height: 340px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(var(--nk-accent-rgb), 0.18), transparent 70%);
}
.nk-cta__inner { position: relative; }
.nk-cta__inner p { max-width: 560px; margin: 18px auto 36px; font-size: 17px; line-height: 1.7; color: var(--nk-muted); }

/* ---------- Footer ---------- */
.nk-footer { border-top: 1px solid rgba(235, 236, 232, 0.07); padding: 56px 40px 40px; }
.nk-footer__inner { max-width: var(--nk-max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.nk-footer img { height: 42px; width: auto; margin-bottom: 16px; }
.nk-footer__about { color: var(--nk-muted-2); font-size: 14px; line-height: 1.7; max-width: 300px; }
.nk-footer__col h4 {
  font-family: var(--nk-font-mark); font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--nk-faint); margin-bottom: 18px;
}
.nk-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.nk-footer__col a { color: var(--nk-muted); text-decoration: none; font-size: 14px; transition: color .15s ease; }
.nk-footer__col a:hover { color: var(--nk-accent); }
.nk-footer__bottom {
  max-width: var(--nk-max); margin: 44px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(235, 236, 232, 0.07);
  font-size: 13px; color: var(--nk-faint);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.nk-footer__bottom a { color: var(--nk-muted); text-decoration: none; }
.nk-footer__bottom a:hover { color: var(--nk-accent); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .nk-split { grid-template-columns: 1fr; gap: 40px; }
  .nk-portrait img { height: 420px; }
  .nk-portrait__stats { right: 0; }
  .nk-grid-3, .nk-grid-2, .nk-steps { grid-template-columns: repeat(2, 1fr); }
  .nk-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nk-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nk-container, .nk-nav, .nk-hero, .nk-section, .nk-light, .nk-impact, .nk-cta-section, .nk-footer { padding-left: 22px; padding-right: 22px; }
  .nk-nav { padding-left: 22px; padding-right: 22px; }
  .nk-burger { display: inline-flex; }
  .nk-navlinks {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(18, 19, 21, 0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--nk-line);
    padding: 8px 22px 18px; display: none;
  }
  .nk-navlinks.open { display: flex; }
  .nk-navlinks a { padding: 12px 0; }
  .nk-navlinks a.nk-btn { margin-top: 8px; text-align: center; justify-content: center; }
  .nk-section { padding-top: 64px; padding-bottom: 64px; }
  .nk-light, .nk-impact { padding-top: 64px; padding-bottom: 64px; }
  .nk-hero { padding-top: 40px; }
  .nk-hero__logo { height: 128px; margin-bottom: 40px; }
  .nk-hero__glow { top: 180px; width: 92vw; }
  .nk-grid-3, .nk-grid-2, .nk-grid-4, .nk-steps { grid-template-columns: 1fr; }
  .nk-frame__media { height: 280px; }
  .nk-badge-float { left: 50%; transform: translateX(-50%); }
  .nk-badge-float { animation: none; }
  .nk-cta { padding: 48px 26px; }
  .nk-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nk-portrait__stats { position: static; margin-top: 18px; }
}

/* ==========================================================================
   Subpages — shared components
   ========================================================================== */

/* ---------- Sub-hero (page header) ---------- */
.nk-subhero { position: relative; overflow: hidden; padding: 72px 40px 64px; text-align: center; border-bottom: 1px solid var(--nk-line); }
.nk-subhero__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 620px; height: 320px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(var(--nk-accent-rgb), 0.13), transparent 70%);
}
.nk-subhero__inner { position: relative; max-width: 880px; margin: 0 auto; }
.nk-subhero h1 {
  font-family: var(--nk-font-head); font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--nk-text); text-wrap: balance;
}
.nk-subhero .nk-lead { margin-top: 20px; margin-bottom: 0; }

/* ---------- Breadcrumb ---------- */
.nk-breadcrumb { font-size: 13px; color: var(--nk-muted-2); margin-bottom: 18px; }
.nk-breadcrumb a { color: var(--nk-muted-2); text-decoration: none; }
.nk-breadcrumb a:hover { color: var(--nk-accent); }
.nk-breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.nk-breadcrumb .cur { color: var(--nk-text); }

/* ---------- Rich text block ---------- */
.nk-rich { max-width: 820px; margin: 0 auto; }
.nk-rich > .nk-eyebrow { margin-bottom: 16px; }
.nk-rich h2 { margin-bottom: 22px; }
.nk-rich p { color: var(--nk-muted); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.3rem; }
.nk-rich p:last-child { margin-bottom: 0; }
.nk-rich a { color: var(--nk-accent); text-decoration: underline; text-underline-offset: 2px; }
.nk-rich strong { color: var(--nk-text); font-weight: 700; }
.nk-rich ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 8px 0 1.3rem; }
/* buttons inside rich text keep their own styling, not the link color/underline */
.nk-rich a.nk-btn { text-decoration: none; }
.nk-rich a.nk-btn--primary, .nk-rich a.nk-btn--primary:hover { color: var(--nk-on-accent); }
.nk-rich a.nk-btn--ghost { color: var(--nk-text); }
.nk-rich a.nk-btn--light { color: var(--nk-light-bg); }

/* light variant of rich block */
.nk-light .nk-rich p { color: var(--nk-light-mute); }
.nk-light .nk-rich strong { color: var(--nk-light-ink); }
.nk-light .nk-rich a { color: var(--nk-light-gold); }

/* ---------- Arrow list ---------- */
.nk-arrow-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.nk-arrow-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--nk-muted); font-size: 1rem; line-height: 1.7; }
.nk-arrow-list .ar { color: var(--nk-accent); flex-shrink: 0; font-weight: 700; }
.nk-arrow-list strong { color: var(--nk-text); }

/* ---------- Callout (left-border card) ---------- */
.nk-callout {
  background: var(--nk-card); border: 1px solid var(--nk-line);
  border-left: 3px solid var(--nk-accent); border-radius: 14px;
  padding: 24px 28px;
}
.nk-callout--teal { border-left-color: var(--nk-teal); }
.nk-callout h3 { font-size: 1.15rem; color: var(--nk-text); margin-bottom: 10px; }
.nk-callout p { color: var(--nk-muted); font-size: 1rem; line-height: 1.8; margin: 0 0 12px; }
.nk-callout p:last-child { margin-bottom: 0; }
.nk-callout a { color: var(--nk-accent); text-decoration: underline; }
.nk-callout strong { color: var(--nk-text); }

/* ---------- Price cards ---------- */
.nk-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nk-price-card {
  display: flex; flex-direction: column;
  background: var(--nk-card); border: 1px solid var(--nk-line);
  border-radius: var(--nk-radius); padding: 30px 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.nk-price-card:hover { border-color: rgba(var(--nk-accent-rgb), 0.35); transform: translateY(-4px); }
.nk-price-card--soft { border-style: dashed; }
.nk-price-card .zg { font-size: 13px; color: var(--nk-muted-2); margin-bottom: 12px; min-height: 38px; }
.nk-price-card h3 { font-family: var(--nk-font-head); font-weight: 600; font-size: 1.2rem; color: var(--nk-text); margin-bottom: 14px; }
.nk-price-card .preis { font-family: var(--nk-font-head); font-weight: 800; font-size: 1.9rem; color: var(--nk-accent); line-height: 1; }
.nk-price-card .preis small { font-size: 1rem; font-weight: 400; }
.nk-price-card .note { font-size: 12px; color: var(--nk-faint); margin: 6px 0 16px; }
.nk-price-card .inhalt { color: var(--nk-muted); font-size: 15px; line-height: 1.7; margin-bottom: 22px; flex-grow: 1; }

/* ---------- Timeline (vertical) ---------- */
.nk-timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 28px; }
.nk-timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--nk-line-2); }
.nk-timeline__item { position: relative; padding: 0 0 28px 24px; }
.nk-timeline__item:last-child { padding-bottom: 0; }
.nk-timeline__item::before { content: ""; position: absolute; left: -28px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--nk-accent); box-shadow: 0 0 0 4px rgba(var(--nk-accent-rgb), 0.15); }
.nk-timeline__year { font-family: var(--nk-font-mark); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; color: var(--nk-accent); }
.nk-timeline__title { color: var(--nk-text); font-size: 1.02rem; margin-top: 4px; }
.nk-timeline__title small { display: block; color: var(--nk-muted-2); font-size: 0.82rem; margin-top: 3px; font-weight: 400; }

/* ---------- Principle blocks ---------- */
.nk-principles { display: flex; flex-direction: column; gap: 26px; }
.nk-principle h3 {
  font-family: var(--nk-font-mark); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--nk-accent);
  margin-bottom: 8px;
}
.nk-principle p { color: var(--nk-muted); line-height: 1.8; margin: 0; }

/* ---------- Download list ---------- */
.nk-download-list { list-style: none; max-width: 820px; margin: 0 auto; border-top: 1px solid var(--nk-line); }
.nk-download-list li { display: flex; align-items: center; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--nk-line); }
.nk-download-list svg { color: var(--nk-accent); flex-shrink: 0; }
.nk-download-list a { color: var(--nk-text); text-decoration: none; font-size: 15px; }
.nk-download-list a:hover { color: var(--nk-accent); }

/* ---------- Partner cards ---------- */
.nk-partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.nk-partner-card { background: var(--nk-card); border: 1px solid var(--nk-line); border-radius: var(--nk-radius); padding: 32px; }
.nk-partner-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.nk-partner-card__head h3 { font-family: var(--nk-font-head); font-weight: 600; font-size: 1.4rem; color: var(--nk-text); margin: 4px 0 2px; }
.nk-partner-card__head .who { color: var(--nk-muted-2); font-size: 0.9rem; }
.nk-partner-card > p { color: var(--nk-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.nk-triggers__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--nk-faint); margin-bottom: 12px; }

/* ---------- Flow rows (Zusammenspiel) ---------- */
.nk-flow { display: flex; flex-direction: column; gap: 18px; }
.nk-flow__row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.nk-flow__chip {
  background: var(--nk-accent); color: var(--nk-on-accent);
  font-weight: 700; font-size: 0.82rem; padding: 5px 12px; border-radius: 8px;
  white-space: nowrap; margin-top: 2px;
}
.nk-flow__row p { color: var(--nk-muted); margin: 0; line-height: 1.8; }
.nk-flow__row strong { color: var(--nk-text); }

/* ---------- Contact meta ---------- */
.nk-meta { max-width: 720px; margin: 0 auto; display: flex; gap: 56px; flex-wrap: wrap; }
.nk-meta h3 { font-family: var(--nk-font-mark); color: var(--nk-accent); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.nk-meta p { color: var(--nk-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.nk-meta small { color: var(--nk-muted-2); }

/* ---------- FAQ accordion ---------- */
.nk-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.nk-faq-item { background: var(--nk-card); border: 1px solid var(--nk-line); border-radius: 14px; overflow: hidden; }
.nk-faq-item[open] { border-color: rgba(var(--nk-accent-rgb), 0.3); }
.nk-faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--nk-font-head); font-weight: 600; font-size: 1.08rem; color: var(--nk-text);
}
.nk-faq-item summary::-webkit-details-marker { display: none; }
.nk-faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--nk-accent); flex-shrink: 0; transition: transform .2s ease; line-height: 1; }
.nk-faq-item[open] summary::after { transform: rotate(45deg); }
.nk-faq-item .nk-faq-a { padding: 0 26px 24px; color: var(--nk-muted); font-size: 1rem; line-height: 1.8; }
.nk-faq-item .nk-faq-a a { color: var(--nk-accent); text-decoration: underline; }

/* ---------- 404 ---------- */
.nk-404 { min-height: 64vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 40px; position: relative; overflow: hidden; }
.nk-404__code { font-family: var(--nk-font-head); font-weight: 800; font-size: clamp(4rem, 12vw, 7rem); color: var(--nk-accent); line-height: 1; }

/* ---------- Legal pages ---------- */
.nk-legal { max-width: 760px; margin: 0 auto; }
.nk-legal h2 { font-family: var(--nk-font-head); font-weight: 600; font-size: 1.1rem; color: var(--nk-text); margin: 32px 0 10px; }
.nk-legal h2:first-child { margin-top: 0; }
.nk-legal p { color: var(--nk-muted); line-height: 1.8; margin-bottom: 8px; }
.nk-legal a { color: var(--nk-accent); text-decoration: underline; }
.nk-legal ul { color: var(--nk-muted); line-height: 1.8; padding-left: 1.4rem; margin: 8px 0; }
.nk-legal .stand { color: var(--nk-faint); font-size: 0.85rem; margin-top: 24px; }

/* ---------- Utility ---------- */
.nk-center { text-align: center; }
.nk-mt-lg { margin-top: 40px; }
.nk-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.nk-section--narrow { max-width: 900px; }

@media (max-width: 960px) {
  .nk-price-grid { grid-template-columns: repeat(2, 1fr); }
  .nk-partner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nk-subhero { padding: 48px 22px 48px; }
  .nk-price-grid { grid-template-columns: 1fr; }
  .nk-meta { gap: 28px; }
  .nk-flow__row { grid-template-columns: 1fr; gap: 6px; }
  .nk-flow__chip { justify-self: start; }
}
