/* =========================================================================
   GoToSec v8 — „Die Mitte"
   Der Kategorie-Standard, absichtlich gewählt, auf SaaS-Handwerksniveau
   ausgeführt. Weiß, Navy, Logo-Blau, Logo-Grün. Zentrierter Vorspann.
   ========================================================================= */

/* ---------- Marken ---------- */
:root {
  /* Flächen */
  --white:      #FFFFFF;
  --paper:      #F6F8FA;
  --paper-deep: #EEF2F6;

  /* Schrift auf Hell */
  --navy:       #1D3557;   /* Überschriften — Marken-Navy */
  --body:       #4B5C74;   /* Fließtext, 6,8:1 auf Weiß */
  --muted:      #5E7089;   /* Nebentext, 5,1:1 auf Weiß */

  /* Akzente aus dem Logo */
  --blue:       #2878B5;
  --blue-deep:  #1F6096;
  --blue-tint:  #EAF2F9;
  --green:      #50B848;
  --green-up:   #5FCB57;   /* Hover-Fläche */
  --green-text: #26721E;   /* Grün als Text auf Hell, WCAG-geprüft */
  --green-ink:  #0C2408;   /* Text auf grüner Fläche, 6,5:1 */
  --green-tint: #EBF7EA;

  /* Linien */
  --line:       rgba(29, 53, 87, .13);
  --line-soft:  rgba(29, 53, 87, .07);

  /* Schatten — ein System, immer Versatz plus Weichzeichnung */
  --sh-sm: 0 1px 2px rgba(16, 35, 59, .06), 0 2px 6px -2px rgba(16, 35, 59, .06);
  --sh-md: 0 2px 4px rgba(16, 35, 59, .05), 0 12px 24px -10px rgba(16, 35, 59, .14);
  --sh-lg: 0 4px 8px rgba(16, 35, 59, .05), 0 32px 64px -24px rgba(16, 35, 59, .22);

  /* Maße */
  --max:      1180px;
  --gutter:   clamp(20px, 4vw, 40px);
  --section:  clamp(72px, 9vw, 132px);
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --pill:  999px;

  /* Bewegung */
  --ease:     cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.2, .8, .3, 1);
  --nav-h: 72px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  color: var(--navy);
  margin: 0;
  font-weight: 620;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue-deep); }

/* Browser-Flächen gehören zum Entwurf */
::selection { background: rgba(80, 184, 72, .26); color: var(--navy); }
:root { accent-color: var(--blue); caret-color: var(--blue); }
* { scrollbar-color: rgba(29, 53, 87, .28) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(29, 53, 87, .24);
  border: 3px solid var(--white);
  border-radius: var(--pill);
}
::-webkit-scrollbar-thumb:hover { background: rgba(29, 53, 87, .40); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  transform: translateY(-200%);
  background: var(--navy);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s var(--ease-out);
}
.skip-link:focus-visible { transform: none; color: #fff; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typografie-Rampe ---------- */
.display {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.03;
  letter-spacing: -.038em;
}
.h2 {
  font-size: clamp(29px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -.032em;
}
.h3 { font-size: 19.5px; line-height: 1.32; letter-spacing: -.018em; }

h2 + .lead, h3 + .lead { margin-top: 16px; }
.lead {
  font-size: clamp(17px, 1.5vw, 19.5px);
  line-height: 1.62;
  color: var(--body);
  max-width: 62ch;
}
.small { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.num { font-variant-numeric: tabular-nums lining-nums; }

/* ---------- Knöpfe ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  background: var(--green);
  color: var(--green-ink);
  font: inherit;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s var(--ease-out), border-color .15s var(--ease-out),
              color .15s var(--ease-out), box-shadow .15s var(--ease-out);
}
.btn:hover { background: var(--green-up); color: var(--green-ink); }
.btn .arrow { transition: transform .15s var(--ease-out); }
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn--ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
  box-shadow: var(--sh-sm);
}
.btn--ghost:hover { background: var(--paper); border-color: rgba(29, 53, 87, .22); color: var(--navy); }

.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-deep); color: #fff; }

.btn--sm { padding: 10px 17px; font-size: 14.5px; }

.arrow { width: 13px; height: 13px; flex: none; }
.arrow path { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .25s var(--ease-out), border-color .25s var(--ease-out),
              backdrop-filter .25s var(--ease-out);
}
.nav.is-stuck {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo { display: block; flex: none; }
.nav__logo img { width: auto; height: 46px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  margin-inline: auto;
}
.nav__links a {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .15s var(--ease-out);
}
.nav__links a:hover { color: var(--navy); }
.nav__cta { flex: none; margin-left: 8px; }
.nav__menu-cta { display: none; }   /* nur im Handy-Menü, siehe 900px */

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
}
.nav__toggle-box { display: grid; gap: 4px; width: 17px; }
.nav__toggle-line {
  height: 1.6px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* ---------- Vorspann ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(28px, 3.6vw, 46px));
  padding-bottom: clamp(26px, 2.8vw, 36px);
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Punktraster, sehr schwach, zum Rand ausgeblendet */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(29, 53, 87, .16) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 76% 62% at 50% 34%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 76% 62% at 50% 34%, #000 0%, transparent 72%);
  opacity: .7;
}
/* Grün-blauer Lichtschein, Deckkraft unter 0,25 */
.hero__glow {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(1180px, 128vw);
  aspect-ratio: 2.1 / 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(80, 184, 72, .22), transparent 72%) -18% 50% / 62% 100% no-repeat,
    radial-gradient(closest-side, rgba(40, 120, 181, .20), transparent 72%) 118% 52% / 66% 100% no-repeat;
  filter: blur(14px);
}

.hero__inner { position: relative; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--sh-sm);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.005em;
}

.hero h1 { margin: clamp(14px, 1.6vw, 20px) auto 0; max-width: 17ch; }
.hero .lead { margin: clamp(14px, 1.4vw, 18px) auto 0; max-width: 56ch; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(20px, 2.1vw, 26px);
}
.cta-row--links { justify-content: flex-start; }

/* ---------- Kennzahlenband ---------- */
.kennzahlen {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kennzahlen__raster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.kennzahl {
  display: flex;
  flex-direction: column-reverse;   /* Zahl oben, Name darunter — DOM bleibt dt/dd */
  padding: clamp(16px, 1.7vw, 20px) 12px;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}
.kennzahl:first-child { border-left: 0; }
.kennzahl__wert {
  display: block;
  color: var(--navy);
  font-size: clamp(28px, 3.1vw, 38px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -.035em;
}
.kennzahl__name {
  display: block;
  margin-top: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Porträt-Karte ---------- */
.portraet { padding-top: clamp(32px, 3.4vw, 44px); }
.portraet__karte {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: end;
  gap: clamp(16px, 2.4vw, 32px);
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) 0;
  border-radius: var(--r-xl);
  background: linear-gradient(118deg, #4FB747 0%, #35A276 44%, #2878B5 100%);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.portraet__karte::after {
  /* feines Korn, damit der Verlauf nicht bandet */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(rgba(255, 255, 255, .55) .5px, transparent .5px);
  background-size: 4px 4px;
}
.portraet__bild {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(100%, 360px);
  filter: drop-shadow(0 26px 44px rgba(8, 30, 20, .34));
}
.portraet__text {
  position: relative;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-md);
}
.portraet__text .lead { margin-top: 16px; }
.portraet__wer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}
.portraet__wer b { color: var(--navy); font-weight: 600; }
.portraet__wer::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--green);
  flex: none;
}

/* ---------- Aussage mit Scroll-Aufhellung ---------- */
.aussage {
  padding-block: clamp(88px, 12vw, 176px);
}
.aussage__satz {
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(28px, 4.6vw, 56px);
  font-weight: 620;
  line-height: 1.13;
  letter-spacing: -.035em;
  color: var(--navy);
}
.aussage__satz em { font-style: normal; color: var(--green-text); }
.aussage__satz .w {
  color: rgba(29, 53, 87, .20);
  transition: color .28s var(--ease-out);
}
.aussage__satz .w.is-an { color: var(--navy); }
.aussage__satz .w--gruen.is-an { color: var(--green-text); }

/* ---------- Abschnittsköpfe ---------- */
.abschnitt { padding-block: var(--section); }
.abschnitt--paper { background: var(--paper); border-block: 1px solid var(--line-soft); }
.kopf { max-width: 40ch; margin-bottom: clamp(34px, 4vw, 52px); }
.kopf--mitte { margin-inline: auto; text-align: center; }
.kopf .lead { margin-top: 16px; }
.kopf--mitte .lead { margin-inline: auto; }

/* ---------- Prinzip: der Kreislauf ---------- */
.kreis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}
.kreis__ring { width: clamp(150px, 17vw, 210px); height: auto; flex: none; }
.kreis__ring circle,
.kreis__ring path { fill: none; stroke-linecap: round; }
.kreis__spur { stroke: var(--line); stroke-width: 1.5; }
.kreis__bogen { stroke-width: 7; stroke-dasharray: var(--len) var(--len); stroke-dashoffset: var(--len); }
.kreis__bogen--gruen { stroke: var(--green); }
.kreis__bogen--blau  { stroke: var(--blue); }
.is-in .kreis__bogen { transition: stroke-dashoffset 1.1s var(--ease) .1s; stroke-dashoffset: 0; }
.kreis__pfeil { stroke: var(--navy); stroke-width: 1.6; opacity: .5; }

.kreis__seite h3 { display: flex; align-items: center; gap: 10px; }
.kreis__seite p { margin-top: 12px; color: var(--body); }
.kreis__seite--rechts { text-align: right; }
.kreis__seite--rechts h3 { justify-content: flex-end; }
.punkt { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.punkt--gruen { background: var(--green); }
.punkt--blau  { background: var(--blue); }

/* ---------- Leistungen ---------- */
.leistungen {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.leistung {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--sh-sm);
  color: inherit;
  text-decoration: none;
  transition: box-shadow .18s var(--ease-out), border-color .18s var(--ease-out),
              transform .18s var(--ease-out);
}
.leistung:hover {
  border-color: rgba(29, 53, 87, .2);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  color: inherit;
}
.leistung__sym {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--blue-tint);
  color: var(--blue);
}
.leistung:nth-child(4n + 2) .leistung__sym,
.leistung:nth-child(4n + 3) .leistung__sym { background: var(--green-tint); color: var(--green-text); }
.leistung__sym svg { width: 21px; height: 21px; }
.leistung__sym path, .leistung__sym circle, .leistung__sym rect {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.leistung__name { color: var(--navy); font-size: 16.5px; font-weight: 600; letter-spacing: -.018em; line-height: 1.3; }
.leistung__tag { margin-top: auto; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- Arbeitsweise ---------- */
.arbeit { display: grid; gap: clamp(40px, 6vw, 88px); }
.arbeit__reihe {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 4.5vw, 68px);
}
.arbeit__bild {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--paper-deep);
}
.arbeit__bild img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.arbeit__reihe--gedreht .arbeit__bild { order: 2; }
.arbeit__text .lead { margin-top: 16px; }

/* ---------- Stimmen ---------- */
.stimmen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.stimme {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
}
.stimme blockquote {
  margin: 0;
  color: var(--navy);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  letter-spacing: -.016em;
}
.stimme figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}
.stimme figcaption::before { content: ""; width: 26px; height: 1px; background: var(--blue); flex: none; }
.stimme cite { font-style: normal; color: var(--navy); font-weight: 600; }

/* ---------- Branchen ---------- */
.branchen { display: flex; flex-wrap: wrap; gap: 10px; }
.branche {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 500;
}

/* ---------- Schluss ---------- */
.schluss {
  padding-block: var(--section);
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
}
.schluss h2 { color: #fff; }
.schluss .lead { color: rgba(255, 255, 255, .78); }
.schluss__raster {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.schluss__zwischen { margin-top: 48px; color: #fff; }
.schluss .branchen { margin-top: 16px; }
.schluss .branche {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .88);
}
.schluss .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  box-shadow: none;
}
.schluss .btn--ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); color: #fff; }
.schluss :focus-visible { outline-color: var(--green); }

.kontaktliste { display: grid; gap: 18px; }
.kontaktliste div { display: grid; gap: 3px; }
.kontaktliste dt {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255, 255, 255, .64);
}
.kontaktliste dd { color: #fff; font-size: 16.5px; }
.kontaktliste a { color: #fff; text-decoration-color: rgba(255, 255, 255, .4); }
.kontaktliste a:hover { color: var(--green); text-decoration-color: var(--green); }

/* ---------- Fußzeile ---------- */
.fuss {
  padding-block: 30px;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}
.fuss__inner { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between; }
.fuss a { color: rgba(255, 255, 255, .78); }
.fuss a:hover { color: #fff; }
.fuss__claim { color: var(--green); font-weight: 600; letter-spacing: -.01em; }

/* ---------- Einblenden beim Scrollen ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(18px); }
[data-reveal] { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js [data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================================
   Haltepunkte
   ========================================================================= */
@media (max-width: 1024px) {
  .leistungen { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portraet__karte { grid-template-columns: minmax(0, 1fr); align-items: stretch; padding-inline: clamp(18px, 3vw, 30px); }
  .portraet__bild { width: min(88%, 300px); margin-top: 8px; }
  .portraet__text { margin-bottom: clamp(18px, 3vw, 30px); }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: grid;
    gap: 2px;
    padding: 14px var(--gutter) 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
  }
  .nav.is-offen .nav__links { opacity: 1; transform: none; visibility: visible; }
  .nav.is-offen { background: var(--white); border-bottom-color: transparent; }
  .nav__links a { display: block; padding: 13px 4px; font-size: 19px; font-weight: 600;
    letter-spacing: -.015em; text-transform: none; color: var(--navy);
    border-bottom: 1px solid var(--line-soft); }
  .nav__links li:last-child a { border-bottom: 0; }
  .nav__menu-cta { display: block; margin-top: 12px; }
  .nav__links .nav__menu-cta .btn { width: 100%; justify-content: center; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }

  /* Ohne JavaScript lässt sich das Menü nicht öffnen. Dann steht die
     Navigation offen in der Kopfzeile, und die Kopfzeile scrollt mit. */
  html:not(.js) .nav { position: static; height: auto; padding-block: 12px; }
  html:not(.js) .nav__inner { flex-wrap: wrap; gap: 12px; }
  html:not(.js) .nav__links {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 20px;
    width: 100%;
    padding: 6px 0 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  html:not(.js) .nav__links a {
    display: inline-block;
    padding: 6px 0;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--muted);
    border: 0;
  }
  html:not(.js) .nav__toggle { display: none; }
  html:not(.js) .nav__menu-cta { width: 100%; margin: 4px 0 0; }
  html:not(.js) .nav__menu-cta .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    color: #fff;
  }
  html:not(.js) .hero { padding-top: clamp(40px, 8vw, 80px); }

  .kreis { grid-template-columns: minmax(0, 1fr); text-align: left; }
  .kreis__ring { justify-self: center; order: -1; }
  .kreis__seite--rechts { text-align: left; }
  .kreis__seite--rechts h3 { justify-content: flex-start; }

  .arbeit__reihe { grid-template-columns: minmax(0, 1fr); }
  .arbeit__reihe--gedreht .arbeit__bild { order: 0; }
  .stimmen { grid-template-columns: minmax(0, 1fr); }
  .schluss__raster { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .kennzahlen__raster { grid-template-columns: repeat(2, 1fr); }
  .kennzahl:nth-child(odd) { border-left: 0; }
  .kennzahl:nth-child(n + 3) { border-top: 1px solid var(--line-soft); }
  .leistungen { grid-template-columns: minmax(0, 1fr); }
  .cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .hero h1 { max-width: none; }
}

@media (max-width: 420px) {
  .nav__logo img { height: 34px; }
}

/* ---------- Weniger Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .aussage__satz .w { color: var(--navy); }
  .aussage__satz .w--gruen { color: var(--green-text); }
  .kreis__bogen { stroke-dashoffset: 0; }
}
