/* ============================================================
   MTK SOLUTIONS — Design-System
   Typo: Clash Display (Display) · Satoshi (Body) · JetBrains Mono (Labels)
   Zodiak Italic (Serif-Akzente)
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-var.woff2') format('woff2');
  font-weight: 100 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Zodiak';
  src: url('../fonts/zodiak-italic-400.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben */
  --ink:     #0A0B0D;
  --ink-2:   #121318;
  --ink-3:   #1A1C22;
  --paper:   #F2F0EA;
  --paper-2: #E9E6DE;
  --accent:  #D5FF3D;
  --accent-ink: #0A0B0D;
  --white:   #F5F4F0;

  /* Typografie */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;
  --font-serif: 'Zodiak', 'Georgia', serif;

  --fs-hero: clamp(2.6rem, 0.5rem + 10.2vw, 10.4rem);
  --fs-h2:   clamp(2.3rem, 1rem + 5.4vw, 5.8rem);
  --fs-h3:   clamp(1.4rem, 1rem + 1.4vw, 2.2rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.45vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-mono: 0.78rem;

  /* Layout */
  --container: 1480px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-pad: clamp(6rem, 5rem + 8vw, 12rem);
  --radius-sheet: clamp(1.75rem, 4vw, 3.25rem);
  --header-h: 84px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.77, 0, 0.18, 1);
}

/* Themes: Sektionen setzen ihre eigene Farbwelt */
[data-theme="dark"] {
  --bg: var(--ink);
  --bg-2: var(--ink-2);
  --fg: var(--white);
  --muted: rgba(245, 244, 240, 0.58);
  --line: rgba(245, 244, 240, 0.14);
  background-color: var(--bg);
  color: var(--fg);
}
[data-theme="light"] {
  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --fg: #121318;
  --muted: rgba(18, 19, 24, 0.60);
  --line: rgba(18, 19, 24, 0.14);
  background-color: var(--bg);
  color: var(--fg);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  background-color: var(--ink);
  color: var(--white);
  overflow-x: clip;
  min-height: 100vh;
}

img, svg, canvas { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-style: italic; }

::selection { background: var(--accent); color: var(--accent-ink); }

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

/* dezente dunkle Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2A2D35; border-radius: 99px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: #3A3E48; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  font-weight: 400;
}
.label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.accent { color: var(--accent); }

/* Nur für Screenreader sichtbar */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px; left: 12px;
  z-index: 5000;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.7em 1.2em;
  border-radius: 999px;
  font-weight: 700;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus-visible { top: 12px; }

/* ---------- Korn-Textur ---------- */
.grain {
  position: fixed;
  inset: -100%;
  width: 300%; height: 300%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 3%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 1%); }
  60% { transform: translate(1%, 2%); }
  70% { transform: translate(-2%, -1%); }
  80% { transform: translate(2%, 3%); }
  90% { transform: translate(-1%, -2%); }
}

/* ---------- Custom Cursor (Akzent-Ring, nativer Cursor bleibt) ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 4000;
  pointer-events: none;
  display: none;
}
.js .cursor { display: block; }
.cursor__dot {
  position: fixed;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--accent);
}
.cursor__ring {
  position: fixed;
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border-radius: 50%;
  border: 1px solid rgba(245, 244, 240, 0.4);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background-color 0.35s;
}
.cursor.is-active .cursor__ring {
  transform: scale(1.7);
  border-color: var(--accent);
  background: rgba(213, 255, 61, 0.08);
}
@media (pointer: coarse) { .js .cursor { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--ink);
  color: var(--white);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.js .preloader { display: flex; }
.preloader.is-done { display: none; }
.preloader__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  text-transform: uppercase;
}
.preloader__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(5rem, 24vw, 18rem);
  line-height: 0.9;
  text-align: center;
  letter-spacing: -0.02em;
}
.preloader__foot {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.preloader__bar {
  flex: 1;
  height: 1px;
  background: rgba(245, 244, 240, 0.15);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.preloader__count { min-width: 4ch; text-align: right; color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: clamp(0.9rem, 2vw, 1.4rem) var(--gutter);
  transition: transform 0.5s var(--ease-out);
}
.header.is-hidden { transform: translateY(-120%); }
.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0.65rem 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.header.is-scrolled .header__inner {
  background: rgba(10, 11, 13, 0.62);
  border-color: rgba(245, 244, 240, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
}
.brand__reg { color: var(--accent); font-size: 0.55em; }
.brand__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  align-self: center;
  margin-left: -2px;
}
.brand__sub { color: var(--muted); text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.22em; }
.nav { display: flex; align-items: center; gap: clamp(0.85rem, 1.7vw, 1.65rem); }
.nav__drop { position: relative; }
.nav__drop > .nav__link { display: inline-flex; align-items: center; gap: 0.45em; }
.nav__chev { width: 9px; height: 9px; opacity: 0.55; transition: transform 0.3s var(--ease-out); }
.nav__drop:hover .nav__chev, .nav__drop:focus-within .nav__chev { transform: rotate(180deg); }
.nav__panel {
  position: absolute;
  top: 100%; left: 50%;
  padding-top: 14px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.nav__drop:hover .nav__panel, .nav__drop:focus-within .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__panel-inner {
  display: flex;
  flex-direction: column;
  min-width: 285px;
  padding: 0.5rem;
  background: rgba(10, 11, 13, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(245, 244, 240, 0.12);
  border-radius: 16px;
}
.nav__panel-inner a {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.68em 0.95em;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.8);
  transition: background-color 0.25s, color 0.25s;
}
.nav__panel-inner a:hover { background: rgba(245, 244, 240, 0.07); color: var(--white); }
.nav__panel-inner .mono { color: var(--accent); font-size: 0.66rem; }
.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.75);
  padding: 0.4em 0;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.header__right { display: flex; align-items: center; gap: 0.9rem; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(245, 244, 240, 0.2);
  position: relative;
}
.burger__line {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out);
}
.burger__line:nth-child(1) { transform: translate(-50%, calc(-50% - 3.5px)); }
.burger__line:nth-child(2) { transform: translate(-50%, calc(-50% + 3.5px)); }
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Vollbild-Menü (mobil) ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
  transform: translateY(-102%);
  transition: transform 0.65s var(--ease-inout);
  visibility: hidden;
}
.menu.is-open { transform: translateY(0); visibility: visible; }
.menu__nav { display: flex; flex-direction: column; margin-bottom: auto; }
.menu__link {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(245, 244, 240, 0.1);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.menu.is-open .menu__link { opacity: 1; transform: translateY(0); }
.menu.is-open .menu__link:nth-child(1) { transition-delay: 0.10s; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 0.16s; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 0.22s; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 0.28s; }
.menu.is-open .menu__link:nth-child(5) { transition-delay: 0.34s; }
.menu__link:hover .menu__word { color: var(--accent); }
.menu__num { color: var(--accent); font-size: 0.85rem; }
.menu__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.9rem 0 1rem;
  border-bottom: 1px solid rgba(245, 244, 240, 0.1);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.menu.is-open .menu__sub { opacity: 1; transform: none; transition-delay: 0.2s; }
.menu__sub a {
  border: 1px solid rgba(245, 244, 240, 0.22);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.85);
  transition: border-color 0.3s, color 0.3s;
}
.menu__sub a:hover { border-color: var(--accent); color: var(--accent); }
.menu__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 2rem;
  color: var(--muted);
}
.menu__mail { font-size: 1.1rem; font-weight: 500; color: var(--white); }
.menu__mail:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.35s, color 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
  will-change: transform;
}
.btn--sm { padding: 0.8em 1.4em; font-size: 0.88rem; }
.btn--xl {
  padding: 1.1em 1.6em;
  font-size: clamp(1.05rem, 1rem + 1.2vw, 1.7rem);
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0;
}
.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--accent:hover { background: #E4FF70; }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--fg); }
.btn__icon { display: inline-flex; width: 1.05em; height: 1.05em; overflow: hidden; }
.btn__icon svg { width: 100%; height: 100%; transition: transform 0.35s var(--ease-out); }
.btn:hover .btn__icon svg { transform: translate(15%, -15%); }
.header .btn--ghost, .hero .btn--ghost { --fg: var(--white); --line: rgba(245,244,240,0.25); }

.text-link {
  color: var(--fg);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
  transition: color 0.3s;
}
.text-link:hover { color: var(--accent); }
[data-theme="light"] .text-link:hover { color: inherit; opacity: 0.6; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + 2rem);
  overflow: clip;
}
.hero__gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
/* Statischer Fallback, falls WebGL nicht verfügbar */
.hero.no-gl .hero__gl { display: none; }
.hero.no-gl {
  background:
    radial-gradient(90% 70% at 78% 12%, rgba(213, 255, 61, 0.14), transparent 60%),
    radial-gradient(70% 60% at 12% 85%, rgba(96, 78, 255, 0.12), transparent 60%),
    var(--ink);
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10, 11, 13, 0.5), rgba(10, 11, 13, 0.1) 30%, rgba(10, 11, 13, 0.05) 55%, rgba(10, 11, 13, 0.82) 100%),
    radial-gradient(120% 90% at 30% 40%, transparent 40%, rgba(10, 11, 13, 0.45) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 2rem;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
}
.hero__eyebrow-sep { color: var(--accent); }
.hero__eyebrow-muted { color: var(--muted); }
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(213, 255, 61, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(213, 255, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(213, 255, 61, 0); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-hero);
  line-height: 0.96;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: clamp(1.6rem, 3vw, 2.6rem) 0 clamp(2rem, 4vw, 3.2rem);
}
.hero__line { display: block; overflow: hidden; }
.hero__line-inner { display: block; will-change: transform; }
.hero__line--indent { margin-left: clamp(1.5rem, 9vw, 13rem); }
.hero__title .serif { font-size: 0.97em; }
.hero__title .serif, .hero__title .accent { color: var(--accent); }
.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}
.hero__lead {
  max-width: 34em;
  font-size: var(--fs-lead);
  color: rgba(245, 244, 240, 0.78);
  text-wrap: pretty;
}
.hero__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem; flex-shrink: 0; }
@media (max-width: 560px) {
  .hero__cta { gap: 0.7rem; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}
.hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(245, 244, 240, 0.12);
  color: var(--muted);
  text-transform: uppercase;
}
.hero__scroll { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__scroll svg { width: 13px; height: 13px; animation: nudge 2s var(--ease-inout) infinite; }
@keyframes nudge {
  0%, 100% { transform: translateY(-2px); opacity: 0.5; }
  50% { transform: translateY(2px); opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: clip;
  border-block: 1px solid rgba(245, 244, 240, 0.12);
  padding: 1.05rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__group span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 1.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: rgba(245, 244, 240, 0.85);
  padding: 0 2.4rem;
}
.marquee__dia {
  width: 9px; height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Manifesto ---------- */
.manifesto { padding-block: var(--section-pad); }
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 1rem + 3.1vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 26ch;
  text-wrap: pretty;
}
.manifesto__text .word { display: inline-block; }

/* ---------- Sheets (Sektionen mit abgerundeter Oberkante) ---------- */
.sheet, .cta {
  position: relative;
  z-index: 5;
  border-radius: var(--radius-sheet) var(--radius-sheet) 0 0;
  margin-top: calc(var(--radius-sheet) * -1);
  padding-block: var(--section-pad);
}
.sheet--light { box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.2); }

/* ---------- Sektions-Kopf ---------- */
.section-head { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.0;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  max-width: 16ch;
}
.section-title .serif { color: inherit; }
.section-title .split-line { display: block; overflow: hidden; }
.section-title .split-line-inner { display: block; }
.section-sub {
  margin-top: 1.6rem;
  max-width: 34em;
  color: var(--muted);
  font-size: var(--fs-lead);
}

/* ---------- Leistungen ---------- */
.services { border-top: 1px solid var(--line); }
.service { border-bottom: 1px solid var(--line); }
.service__row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 3.5rem 1.25fr minmax(150px, 210px) 4.5rem;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 3.2rem) clamp(0.5rem, 1.5vw, 1.5rem);
  transition: color 0.4s;
}
/* Hover: dunkle Fläche schiebt sich von unten ein, Farben invertieren */
.service__row::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--gutter) * -0.4);
  z-index: -1;
  background: var(--ink);
  border-radius: 22px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-out);
}
@media (hover: hover) {
  .service__row:hover { color: var(--white); }
  .service__row:hover::before { transform: scaleY(1); }
  .service__row:hover .service__num { color: var(--accent); }
  .service__row:hover .service__desc { color: rgba(245, 244, 240, 0.65); }
  .service__row:hover .service__tags li { border-color: rgba(245, 244, 240, 0.25); color: rgba(245, 244, 240, 0.75); }
  .service__row:hover .service__art { transform: rotate(-2deg) scale(1.04); opacity: 1; }
  .service__row:hover .service__link { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
}
.service__num {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.4s;
  align-self: start;
  padding-top: 0.5rem;
}
.service__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}
.service__desc {
  margin-top: 0.9rem;
  max-width: 36em;
  color: var(--muted);
  transition: color 0.4s;
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.3rem;
}
.service__tags li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35em 0.95em;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: border-color 0.4s, color 0.4s;
}
.service__art {
  color: currentColor;
  opacity: 0.9;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
}
.art-accent { fill: var(--accent); }
.service__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--line);
  justify-self: end;
  transition: background-color 0.35s, color 0.35s, border-color 0.35s;
}
.service__link svg { width: 20px; height: 20px; }
/* macht die gesamte Leistungs-Zeile klickbar */
.service__link::after { content: ""; position: absolute; inset: 0; }

/* ---------- Standards ---------- */
.standards { padding-block: 0 var(--section-pad); }
.standards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 1rem + 3.6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.stat__unit {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat__desc { color: var(--muted); font-size: 0.95rem; max-width: 26em; }

.standards__note {
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 3.5vw, 2.6rem);
  max-width: 62em;
}
.standards__note p { font-size: var(--fs-lead); line-height: 1.55; text-wrap: pretty; }
.standards__note-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ---------- Prozess (gestapelte Sticky-Karten) ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vh, 2rem);
  counter-reset: step;
}
.step {
  position: sticky;
}
.step:nth-child(1) { top: calc(var(--header-h) + 8px); }
.step:nth-child(2) { top: calc(var(--header-h) + 26px); }
.step:nth-child(3) { top: calc(var(--header-h) + 44px); }
.step:nth-child(4) { top: calc(var(--header-h) + 62px); }
.step__card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  min-height: min(46vh, 430px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  will-change: transform;
  transform-origin: center top;
}
.step__num {
  color: var(--accent);
  font-size: 0.95rem;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 1rem + 2.4vw, 3.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.step__desc { color: var(--muted); max-width: 40em; font-size: var(--fs-lead); }

/* ---------- FAQ ---------- */
.faq-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.faq-section__head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 24px); }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 2.5vw, 1.9rem) 0;
  text-align: left;
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.6rem);
  line-height: 1.2;
  transition: color 0.3s;
}
.faq__btn:hover .faq__q { opacity: 0.65; }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color 0.35s, border-color 0.35s, transform 0.45s var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: currentColor;
  translate: -50% -50%;
  transition: rotate 0.45s var(--ease-out);
}
.faq__icon::after { rotate: 90deg; }
.faq__btn[aria-expanded="true"] .faq__icon {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-inout);
}
.faq__inner { overflow: hidden; }
.faq__inner p {
  padding-bottom: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--muted);
  max-width: 56em;
}
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }

/* ---------- CTA ---------- */
.cta {
  background: var(--bg);
  padding-block: clamp(7rem, 6rem + 10vw, 15rem);
}
.cta__kicker {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1rem + 1.6vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.4rem, 1rem + 9.5vw, 10rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.cta__title .serif, .cta__title .accent { color: var(--accent); }
.cta__title .split-line { display: block; overflow: hidden; }
.cta__title .split-line-inner { display: block; }
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.cta__note {
  margin-top: 2.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 2.1;
}
.cta__tel { color: var(--fg); font-weight: 500; transition: color 0.3s; }
.cta__tel:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: clip;
  padding-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid rgba(245, 244, 240, 0.1);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.footer__branddot { color: var(--accent); }
.footer__tag { color: var(--muted); max-width: 24em; }
.footer__head {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.footer__link {
  display: block;
  width: fit-content;
  padding: 0.28em 0;
  color: rgba(245, 244, 240, 0.8);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer__link:hover { color: var(--accent); transform: translateX(4px); }
.footer__meta { margin-top: 1.2rem; color: var(--muted); line-height: 1.9; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-block: 1.6rem;
  border-top: 1px solid rgba(245, 244, 240, 0.1);
  color: var(--muted);
}
.footer__legal { display: flex; align-items: center; gap: 1.8rem; }
.footer__legal .footer__link { display: inline; padding: 0; color: var(--muted); }
.footer__legal .footer__link:hover { color: var(--accent); transform: none; }
.footer__top { color: var(--muted); transition: color 0.3s; letter-spacing: 0.08em; }
.footer__top:hover { color: var(--accent); }
.footer__watermark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(8rem, 24vw, 26rem);
  line-height: 0.72;
  text-align: center;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 240, 0.14);
  user-select: none;
  pointer-events: none;
  margin-top: clamp(2rem, 4vw, 4rem);
  margin-bottom: -0.06em;
  will-change: transform;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .header__cta { display: none; }
  .standards__grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section__grid { grid-template-columns: 1fr; }
  .faq-section__head { position: static; margin-bottom: 1rem; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .nav { display: none; }
  .burger { display: block; }
  .menu {
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .menu__nav { margin-bottom: 1.5rem; }
  .menu__link {
    padding-block: 0.34rem;
    font-size: clamp(1.65rem, 6.2vw, 3.1rem);
  }
  .menu__sub { padding-block: 0.55rem 0.7rem; }
  .menu__sub a { padding: 0.42em 0.82em; font-size: 0.74rem; }
  .menu__foot { margin-top: auto; padding-top: 1rem; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .service__row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "num link"
      "body body";
    row-gap: 1.4rem;
  }
  .service__num { grid-area: num; padding-top: 0.9rem; }
  .service__link { grid-area: link; width: 50px; height: 50px; }
  .service__body { grid-area: body; }
  .service__art { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .standards__grid { grid-template-columns: 1fr; }
  .stat { min-height: 0; gap: 1rem; }
  .step__card { min-height: 0; gap: 2rem; }
  .hero__meta span:nth-child(2) { display: none; }
  .cta__actions .btn--xl { font-size: 1rem; padding: 1.1em 1.3em; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Unterseiten (Leistungen, Rechtliches, 404)
   ============================================================ */

/* ---------- Page-Hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(4rem, 8vw, 7rem)) 0 clamp(3.5rem, 6vw, 5.5rem);
  background:
    radial-gradient(80% 90% at 85% 0%, rgba(213, 255, 61, 0.07), transparent 55%),
    var(--ink);
  overflow: clip;
}
.page-hero__gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.page-hero.no-gl .page-hero__gl { display: none; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 11, 13, 0.42), rgba(10, 11, 13, 0.08) 45%, rgba(10, 11, 13, 0.55) 100%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.page-hero__crumb a { color: var(--muted); transition: color 0.3s; }
.page-hero__crumb a:hover { color: var(--accent); }
.page-hero__crumb .sep { color: var(--accent); }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 1rem + 6.5vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  max-width: 14ch;
}
.page-hero__title .serif, .page-hero__title .accent { color: var(--accent); }
.page-hero__lead {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 40em;
  font-size: var(--fs-lead);
  color: rgba(245, 244, 240, 0.78);
  text-wrap: pretty;
}
.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

/* ---------- Inhaltsblöcke ---------- */
.block { padding-block: var(--section-pad); }
.block--tight { padding-block: clamp(4rem, 7vw, 8rem); }
.block__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.block__label { position: sticky; top: calc(var(--header-h) + 24px); }
.statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 30ch;
  text-wrap: pretty;
}
.statement .serif { color: inherit; }
.block__copy > p { color: var(--muted); max-width: 62ch; }
.block__copy > p + p { margin-top: 1.2em; }

/* ---------- Hairline-Kartenraster ---------- */
.hairline-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.hairline-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hairline-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hcard {
  background: var(--bg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background-color 0.35s;
}
.hcard:hover { background: var(--bg-2); }
.hcard__num {
  color: var(--accent);
  font-size: 0.85rem;
}
[data-theme="light"] .hcard__num { color: inherit; opacity: 0.55; }
.hcard__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.hcard__text { color: var(--muted); font-size: 0.97rem; }

/* ---------- Leistungs-Checkliste ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.checklist li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 1.05rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  transition: padding-left 0.35s var(--ease-out), background-color 0.35s;
}
.checklist li:hover { padding-left: 0.85rem; background: var(--bg-2); }
.checklist li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--accent);
  flex-shrink: 0;
}
[data-theme="light"] .checklist li::before { color: inherit; opacity: 0.5; }
.checklist small {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ---------- Pakete & Preise ---------- */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.plan--featured {
  background: var(--ink);
  color: var(--white);
  border-color: rgba(245, 244, 240, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: clamp(1.8rem, 3.5vw, 2.8rem);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5em 1.1em;
  border-radius: 999px;
}
.plan__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.6rem);
  text-transform: uppercase;
}
.plan__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 1rem + 3vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan__per {
  display: inline-block;
  margin-left: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan--featured .plan__per { color: rgba(245, 244, 240, 0.55); }
.plan__desc { color: var(--muted); font-size: 0.98rem; }
.plan--featured .plan__desc { color: rgba(245, 244, 240, 0.68); }
.plan__list { display: flex; flex-direction: column; gap: 0.68rem; }
.plan__list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.plan__list li::before {
  content: "✓";
  font-family: var(--font-mono);
  flex: none;
  opacity: 0.55;
}
.plan--featured .plan__list li { color: rgba(245, 244, 240, 0.85); }
.plan--featured .plan__list li::before { color: var(--accent); opacity: 1; }
.plan__addon {
  border-top: 1px solid rgba(245, 244, 240, 0.14);
  padding-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.65);
}
.plan:not(.plan--featured) .plan__addon { border-top-color: var(--line); color: var(--muted); }
.plan .btn { margin-top: auto; justify-content: center; }
.plan__fine {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}
.plan--featured .plan__fine { color: rgba(245, 244, 240, 0.45); }
.plans__note {
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.4rem);
  max-width: 62em;
}
.plans__note p { font-size: 1rem; line-height: 1.6; color: var(--fg); text-wrap: pretty; }
.plans__note-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 0.72rem;
}
@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
}

/* ---------- Mini-Prozess (Unterseiten) ---------- */
.miniflow { counter-reset: mf; border-top: 1px solid var(--line); }
.miniflow li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: clamp(1.4rem, 2.5vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}
.miniflow li::before {
  counter-increment: mf;
  content: "0" counter(mf);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  padding-top: 0.35rem;
}
.miniflow h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 1rem + 0.9vw, 1.7rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.miniflow p { color: var(--muted); max-width: 56ch; }

/* ---------- Rechtstexte (Impressum, Datenschutz) ---------- */
.prose { max-width: 78ch; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.3rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 2.6em 0 0.8em;
  padding-top: 1.2em;
  border-top: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 1.8em 0 0.5em;
}
.prose p, .prose li { color: var(--muted); }
.prose p + p { margin-top: 0.9em; }
.prose ul { margin: 0.9em 0; padding-left: 1.1em; }
.prose ul li { list-style: square; margin: 0.35em 0; }
.prose ul li::marker { color: var(--accent); }
.prose a { color: var(--fg); text-decoration: underline; text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--accent); }
.prose strong { color: var(--fg); font-weight: 700; }
.prose .todo {
  background: rgba(213, 255, 61, 0.14);
  border: 1px dashed rgba(213, 255, 61, 0.6);
  border-radius: 6px;
  padding: 0.05em 0.4em;
  color: var(--fg);
  font-weight: 500;
}
.legal-updated { margin-top: 3rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- 404 ---------- */
.error-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 4rem;
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(213, 255, 61, 0.08), transparent 60%),
    var(--ink);
}
.error-hero__code {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(6rem, 24vw, 18rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 244, 240, 0.5);
}
.error-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  text-transform: uppercase;
  margin: 1.5rem 0 0.8rem;
}
.error-hero p { color: var(--muted); max-width: 34em; }
.error-hero .btn { margin-top: 2.2rem; }

@media (max-width: 1000px) {
  .block__grid { grid-template-columns: 1fr; }
  .block__label { position: static; }
}
@media (max-width: 760px) {
  .hairline-grid--3, .hairline-grid--2 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
}

/* ---------- Kontaktformular ---------- */
.cta__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.cform {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}
.cform__field { display: flex; flex-direction: column; gap: 0.4rem; }
.cform__field label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.cform input, .cform textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--fg);
  font: inherit;
  padding: 0.5em 0;
  transition: border-color 0.3s;
}
.cform input:focus-visible, .cform textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}
.cform textarea { resize: vertical; min-height: 92px; }
.cform select {
  /* dunkles natives Dropdown-Popup (Browser/OS zeichnen es sonst weiß) */
  color-scheme: dark;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--fg);
  font: inherit;
  padding: 0.5em 1.6em 0.5em 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%23F5F4F0' stroke-opacity='.6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15em center;
  background-size: 11px;
  transition: border-color 0.3s;
}
.cform select:focus-visible {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}
.cform select option { background: var(--ink-2); color: var(--white); }
/* Honeypot: für Menschen unsichtbar, für Spam-Bots verlockend */
.cform__hp {
  position: absolute !important;
  left: -6000px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.cform .btn { justify-content: center; width: 100%; }
.cform__note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
}
.cform__note a { color: rgba(245, 244, 240, 0.8); text-decoration: underline; text-underline-offset: 0.2em; }
.cform__note a:hover { color: var(--accent); }
.cform__status {
  display: none;
  border-radius: 12px;
  padding: 0.9em 1.1em;
  font-size: 0.92rem;
  font-weight: 500;
}
.cform__status.is-ok { display: block; background: rgba(213, 255, 61, 0.12); border: 1px solid rgba(213, 255, 61, 0.4); color: var(--accent); }
.cform__status.is-err { display: block; background: rgba(255, 92, 92, 0.1); border: 1px solid rgba(255, 92, 92, 0.4); color: #FF8A8A; }

/* ---------- Signature-Visuals der Leistungsseiten ---------- */
.block__side { position: sticky; top: calc(var(--header-h) + 24px); }
.block__side .block__label { position: static; }
.visual { margin-top: 1.7rem; max-width: 345px; }
.visual__hint {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* generische Mini-UI-Bausteine (abstrakte Interfaces) */
.ui-bar { height: 8px; border-radius: 4px; background: rgba(245, 244, 240, 0.22); }
.ui-bar--lg { height: 12px; width: 72%; }
.ui-bar--md { width: 55%; }
.ui-bar--sm { width: 38%; opacity: 0.7; }
.ui-cols { display: flex; align-items: flex-end; gap: 6px; flex: 1; min-height: 52px; }
.ui-col { flex: 1; background: rgba(213, 255, 61, 0.6); border-radius: 4px 4px 0 0; }

/* Phone-Mini-App: lesbare Beispiel-Oberfläche */
.pui-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.pui-title { font-size: 12.5px; font-weight: 700; color: rgba(245, 244, 240, 0.95); letter-spacing: 0.01em; }
.pui-badge {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 3px 7px;
  font-weight: 500;
}
.pui-badge--ghost { background: transparent; border: 1px solid rgba(245, 244, 240, 0.25); color: rgba(245, 244, 240, 0.6); }
.pui-card {
  background: rgba(245, 244, 240, 0.07);
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: 11px;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pui-card--done { opacity: 0.55; }
.pui-line { display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.pui-name { font-size: 10.5px; font-weight: 700; color: rgba(245, 244, 240, 0.92); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pui-sub { font-size: 9.5px; color: rgba(245, 244, 240, 0.45); }
.pui-chip {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--accent);
  border: 1px solid rgba(213, 255, 61, 0.45);
  border-radius: 999px;
  padding: 2px 6px;
  flex: none;
}
.pui-check {
  width: 15px; height: 15px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 9.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.pui-check--off { background: transparent; border: 1px solid rgba(245, 244, 240, 0.3); }
/* Der offene Task wird per Klick auf den Button abgehakt (kein Auto-Loop) */
.pui-check--off::after { content: "✓"; opacity: 0; transition: opacity 0.25s; }
.pui-check--off.is-checked { background: var(--accent); border-color: var(--accent); }
.pui-check--off.is-checked::after { opacity: 1; }
.pui-btn { cursor: pointer; transition: transform 0.15s var(--ease-out), background-color 0.25s; user-select: none; }
.pui-btn:hover { background: #E4FF70; }
.pui-btn:active { transform: scale(0.96); }
.pui-btn.is-done { background: #E4FF70; }

/* Screen 3: Wochen-Balken wachsen beim Erreichen des Screens hoch */
.phone__screen .ui-col { transform-origin: bottom; }
.phone__screen.is-active .ui-col { animation: colgrow 0.7s var(--ease-out) backwards; }
.phone__screen.is-active .ui-col:nth-child(2) { animation-delay: 0.08s; }
.phone__screen.is-active .ui-col:nth-child(3) { animation-delay: 0.16s; }
.phone__screen.is-active .ui-col:nth-child(4) { animation-delay: 0.24s; }
.phone__screen.is-active .ui-col:nth-child(5) { animation-delay: 0.32s; }
@keyframes colgrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.pui-task { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 500; color: rgba(245, 244, 240, 0.85); }
.pui-btn {
  margin-top: auto;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  padding: 9px;
}
.pui-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 7px 12px 2px;
  border-top: 1px solid rgba(245, 244, 240, 0.1);
}
.pui-tabbar i { width: 14px; height: 3.5px; border-radius: 2px; background: rgba(245, 244, 240, 0.2); }
.pui-tabbar i.is-on { background: var(--accent); }
.pui-axis { display: flex; justify-content: space-around; font-family: var(--font-mono); font-size: 7.5px; color: rgba(245, 244, 240, 0.4); text-transform: uppercase; letter-spacing: 0.05em; }
.phone__screens { cursor: grab; }
.phone__screens.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.phone__dots i { transition: background-color 0.3s, transform 0.3s; }
.phone__dots i.is-on { background: var(--accent); transform: scale(1.25); }

/* Browser-Mini-Site: lesbarer Inhalt + Klick-Story */
.bui-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.bui-logo { font-family: var(--font-display); font-weight: 600; font-size: 10px; color: rgba(245, 244, 240, 0.95); display: inline-flex; align-items: center; gap: 3px; }
.bui-logo i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.bui-menu { display: inline-flex; gap: 3px; }
.bui-menu i { width: 12px; height: 1.5px; background: rgba(245, 244, 240, 0.4); border-radius: 2px; }
.bui-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.12;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.96);
  letter-spacing: 0;
}
.bui-h1 em { font-family: var(--font-serif); font-style: italic; text-transform: none; color: var(--accent); }
.bui-sub { font-size: 9.5px; color: rgba(245, 244, 240, 0.5); }

/* Telefon-Mockup (App-Seite): Screens per Scroll-Snap durchwischbar */
.visual--phone .phone {
  width: min(252px, 92%);
  background: var(--ink);
  border: 1.5px solid rgba(245, 244, 240, 0.18);
  border-radius: 34px;
  padding: 9px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.phone__screens {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 25px;
  background: #0E0F14;
  aspect-ratio: 9 / 17;
  scrollbar-width: none;
}
.phone__screens::-webkit-scrollbar { display: none; }
.phone__screen {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 16px 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone__dots { display: flex; justify-content: center; gap: 6px; padding-top: 9px; }
.phone__dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(245, 244, 240, 0.25); cursor: pointer; }

/* Browser-Mockup (Webdesign-Seite) mit animiertem Klick */
.visual--browser .browser {
  background: var(--ink);
  border: 1.5px solid rgba(245, 244, 240, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(245, 244, 240, 0.1);
}
.browser__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(245, 244, 240, 0.2); }
.browser__url {
  margin-left: 8px;
  flex: 1;
  background: rgba(245, 244, 240, 0.08);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.browser__body {
  position: relative;
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 175px;
}
.browser__cta {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 10.5px;
  font-weight: 700;
  padding: 7px 15px;
  margin-top: 2px;
  animation: ctapulse 7s infinite;
}
.browser__cards { display: flex; gap: 8px; margin-top: 6px; }
.browser__card {
  flex: 1;
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: 8px;
  background: rgba(245, 244, 240, 0.05);
  padding: 8px 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: cardpop 7s infinite;
}
.browser__card:nth-child(2) { animation-delay: 0.14s; }
.browser__card:nth-child(3) { animation-delay: 0.28s; }
.browser__card i { width: 10px; height: 10px; border-radius: 4px; background: rgba(213, 255, 61, 0.6); }
.browser__card b {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(245, 244, 240, 0.92);
}
.browser__card .ui-bar { height: 5px; background: rgba(245, 244, 240, 0.32); }
@keyframes cardpop {
  0%, 62%, 96%, 100% { border-color: rgba(245, 244, 240, 0.1); transform: translateY(0); }
  70%, 80% { border-color: rgba(213, 255, 61, 0.65); transform: translateY(-2px); }
}
.browser__cursor {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  width: 13px; height: 13px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 55%, 55% 62%, 38% 100%);
  animation: curmove 7s var(--ease-inout) infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.bui-toast {
  position: absolute;
  top: 10px; right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(14, 15, 20, 0.95);
  border: 1px solid rgba(213, 255, 61, 0.55);
  color: var(--accent);
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 8.5px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-6px);
  animation: toastpop 7s var(--ease-out) infinite;
}
/* Die Zielposition (--cur-x1/y1) wird per JavaScript exakt auf die
   Mitte des Buttons kalibriert — unabhängig von Schrift und Umbruch. */
@keyframes curmove {
  0%, 14%   { transform: translate(var(--cur-x0, 170px), var(--cur-y0, 22px)); }
  38%, 60%  { transform: translate(var(--cur-x1, 58px), var(--cur-y1, 92px)); }
  84%, 100% { transform: translate(var(--cur-x0, 170px), var(--cur-y0, 22px)); }
}
@keyframes ctapulse {
  0%, 38%, 62%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(213, 255, 61, 0); }
  46%, 54% { transform: scale(0.92); box-shadow: 0 0 0 9px rgba(213, 255, 61, 0.18); }
}
@keyframes toastpop {
  0%, 48% { opacity: 0; transform: translateY(-6px); }
  56%, 86% { opacity: 1; transform: translateY(0); }
  94%, 100% { opacity: 0; transform: translateY(-6px); }
}

/* Prozess-Flow (Digitalisierung): wandernder Impuls */
.visual--flow .flow { position: relative; display: flex; flex-direction: column; }
.visual--flow .flow::before {
  content: "";
  position: absolute;
  left: 19px; top: 26px; bottom: 26px;
  width: 1.5px;
  background: var(--line);
}
.flow__pulse {
  position: absolute;
  left: 15.5px;
  top: 15%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(213, 255, 61, 0.7);
  animation: flowdown 3.6s var(--ease-inout) infinite;
}
@keyframes flowdown {
  0%   { top: 10%; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: 86%; opacity: 0; }
}
.flow__item { display: flex; align-items: center; gap: 14px; padding: 11px 0; position: relative; }
.flow__icon {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.flow__icon svg { width: 18px; height: 18px; }
.flow__text { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.flow__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
[data-theme="light"] .flow__icon { color: var(--fg); }
[data-theme="light"] .ui-bar { background: rgba(18, 19, 24, 0.14); }

/* Mini-Dashboard (Individualsoftware): wachsende Balken */
.visual--dash .dash {
  background: var(--ink);
  border: 1.5px solid rgba(245, 244, 240, 0.18);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.dash__head { display: flex; justify-content: space-between; align-items: center; }
.dash__title {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 244, 240, 0.55);
}
.dash__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.dash__live i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s var(--ease-out) infinite;
}
.dash__rows { display: flex; flex-direction: column; gap: 10px; }
.dash__row {
  display: grid;
  grid-template-columns: 62px 1fr 34px;
  align-items: center;
  gap: 9px;
}
.dash__label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 244, 240, 0.5);
}
.dash__val {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(245, 244, 240, 0.95);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.dash__bar {
  height: 9px;
  border-radius: 5px;
  background: rgba(245, 244, 240, 0.1);
  overflow: hidden;
}
.dash__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0.15);
  animation: dashgrow 3.4s var(--ease-inout) infinite alternate;
}
.dash__row:nth-child(2) .dash__bar i { animation-delay: 0.35s; }
.dash__row:nth-child(3) .dash__bar i { animation-delay: 0.7s; }
@keyframes dashgrow {
  from { transform: scaleX(0.15); }
  to { transform: scaleX(var(--w, 0.8)); }
}
.dash__foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 244, 240, 0.4);
}

/* Digitalisierungs-Flow: Stationen leuchten im Takt des Pulses auf */
.flow__item:nth-child(2) .flow__icon { animation: flowglow 3.6s var(--ease-inout) infinite; animation-delay: 0.1s; }
.flow__item:nth-child(3) .flow__icon { animation: flowglow 3.6s var(--ease-inout) infinite; animation-delay: 1.3s; }
.flow__item:nth-child(4) .flow__icon { animation: flowglow 3.6s var(--ease-inout) infinite; animation-delay: 2.6s; }
@keyframes flowglow {
  0%, 100% { border-color: var(--line); color: inherit; }
  12%, 26% { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 14px rgba(213, 255, 61, 0.25); }
  40% { border-color: var(--line); }
}

@media (max-width: 1000px) {
  .cta__grid { grid-template-columns: 1fr; }
  .cform__row { grid-template-columns: 1fr; }
  .block__side { position: static; }
  .visual { max-width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .browser__cursor, .browser__cta, .bui-toast, .flow__pulse, .flow__icon,
  .dash__bar i, .dash__live i, .pui-check--off, .pui-check--off::after,
  .phone .pui-btn { animation: none !important; }
  .dash__bar i { transform: scaleX(var(--w, 0.8)); }
  .bui-toast { opacity: 1; transform: none; }
}

/* ---------- Vorher/Nachher-Regler (Digitalisierung) ---------- */
.visual--ba .ba {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(245, 244, 240, 0.18);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --pos: 55%;
}
.ba__after, .ba__before { position: absolute; inset: 0; padding: 14px; }
.ba__after { display: flex; flex-direction: column; gap: 9px; background: #0E0F14; }
.ba__tag {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(245, 244, 240, 0.25);
  color: rgba(245, 244, 240, 0.6);
}
/* nur der Papier-Tag stapelt über den Zetteln — der Digital-Tag bleibt in
   seiner Ebene und wird beim Schieben korrekt mit verdeckt */
.ba__before .ba__tag { z-index: 1; left: 10px; right: auto; }
.ba__tag--after { border-color: rgba(213, 255, 61, 0.5); color: var(--accent); }
.ba__text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.ba__text b {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(245, 244, 240, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ba__text span { font-size: 9px; color: rgba(245, 244, 240, 0.45); }
.ba__rowd {
  display: flex;
  /* Häkchen rechts — so bleibt es auch bei mittlerer Regler-Position sichtbar */
  flex-direction: row-reverse;
  align-items: center;
  gap: 9px;
  background: rgba(245, 244, 240, 0.06);
  border: 1px solid rgba(245, 244, 240, 0.09);
  border-radius: 10px;
  padding: 9px 10px;
}
.ba__rowd:first-of-type { margin-top: 26px; }
.ba__lines { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.ba__lines i { display: block; height: 5px; border-radius: 3px; background: rgba(245, 244, 240, 0.25); }
.ba__before {
  background:
    radial-gradient(120% 100% at 20% 0%, #1B1C21, #131418 70%);
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba__paper {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 34%;
  aspect-ratio: 3 / 3.8;
  background: #ECE9DF;
  border-radius: 3px;
  transform: rotate(var(--r));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 7px,
    rgba(18, 19, 24, 0.22) 7px 8.5px
  );
  background-position: 0 6px;
  background-size: 78% auto;
  background-repeat: repeat-y;
  background-origin: content-box;
  padding: 5px 6px;
}
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: var(--accent);
  z-index: 2;
  pointer-events: none;
}
.ba__handle span {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
}
.ba__handle span::before {
  content: "◂ ▸";
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--accent-ink);
}
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
}
.visual--ba .ba:has(.ba__range:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Modul-Baukasten (Individualsoftware) ---------- */
.visual--builder .builder {
  border: 1.5px solid rgba(245, 244, 240, 0.18);
  border-radius: 16px;
  background: var(--ink);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.builder__toggles { display: flex; flex-direction: column; gap: 6px; }
.builder__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 244, 240, 0.18);
  border-radius: 999px;
  padding: 6px 12px 6px 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.75);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s, color 0.25s;
}
.builder__toggle:hover { border-color: rgba(213, 255, 61, 0.5); }
.builder__toggle input { position: absolute; opacity: 0; pointer-events: none; }
.builder__switch {
  width: 26px; height: 15px;
  border-radius: 999px;
  background: rgba(245, 244, 240, 0.18);
  position: relative;
  transition: background-color 0.25s;
  flex: none;
}
.builder__switch::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--white);
  transition: translate 0.25s var(--ease-out);
}
.builder__toggle:has(input:checked) { color: var(--white); border-color: rgba(213, 255, 61, 0.5); }
.builder__toggle:has(input:checked) .builder__switch { background: var(--accent); }
.builder__toggle:has(input:checked) .builder__switch::after { translate: 11px 0; background: var(--accent-ink); }
.builder__toggle:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }
.builder__preview {
  background: #0E0F14;
  border: 1px solid rgba(245, 244, 240, 0.09);
  border-radius: 12px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
}
.builder__mod {
  border: 1px solid rgba(245, 244, 240, 0.12);
  border-radius: 9px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: opacity 0.35s, transform 0.35s var(--ease-out), border-color 0.35s;
}
.builder__mod b {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.9);
}
.builder__mod .ui-bar { height: 6px; background: rgba(245, 244, 240, 0.3); }
/* Standard: Modul „aus" — gestrichelt und blass */
.builder__mod { opacity: 0.28; border-style: dashed; transform: scale(0.985); }
.builder:has([data-module="auftraege"]:checked) .builder__mod--auftraege,
.builder:has([data-module="lager"]:checked) .builder__mod--lager,
.builder:has([data-module="zeiten"]:checked) .builder__mod--zeiten {
  opacity: 1;
  border-style: solid;
  border-color: rgba(213, 255, 61, 0.35);
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .browser__card, .phone__screen.is-active .ui-col { animation: none !important; }
}

/* Debug-Modus für Ganzseiten-Screenshots (?flat) */
.flat .hero { min-height: 780px; }
.flat .step__card { min-height: 400px; }

/* ============================================================
   Erstgespräch-Buchung (erstgespraech.html)
   ============================================================ */
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}
.meta-chip {
  display: inline-block;
  padding: 0.42em 1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-mono);
  letter-spacing: 0.04em;
  color: var(--muted);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.booking__panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.booking__noscript {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1.4rem;
}
.booking__noscript a { color: inherit; text-decoration: underline; }
.booking__offline {
  font-size: var(--fs-mono);
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* Schritte-Anzeige */
.bsteps {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.bstep {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.05em;
  color: var(--muted);
  white-space: nowrap;
}
.bstep__dot {
  display: inline-grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9em;
}
.bstep.is-active { color: var(--fg); }
.bstep.is-active .bstep__dot {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}
.bstep.is-done .bstep__dot {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}
.bsteps__sep { flex: 0 1 34px; height: 1px; background: var(--line); }

/* Kalender */
.cal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.cal__month {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: 0.01em;
}
.cal__nav { display: flex; gap: 0.5rem; }
.cal__btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: none;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.25s, background-color 0.25s, opacity 0.25s;
}
.cal__btn:hover:not(:disabled) { border-color: var(--fg); }
.cal__btn:disabled { opacity: 0.3; cursor: default; }
.cal__btn:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal__dow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 0.45em;
}
.cal__day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.cal__day:hover:not(:disabled) { border-color: var(--fg); }
.cal__day:focus-visible { outline: 2px solid var(--fg); outline-offset: 1px; }
.cal__day:disabled { color: var(--muted); opacity: 0.42; cursor: default; }
.cal__day.is-other { visibility: hidden; }
.cal__day.is-selected {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
  font-weight: 700;
}
.free-dot {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #7A9E00;
}
.cal__day.is-selected .free-dot { background: var(--accent); }
.cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-top: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.cal__legend .free-dot {
  position: static;
  display: inline-block;
  transform: none;
  margin-right: 0.45em;
  vertical-align: middle;
}

/* Zeiten */
.slots { margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.slots__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px;
}
.slot {
  padding: 0.7em 0.4em;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.slot:hover:not(:disabled) { border-color: var(--fg); }
.slot:focus-visible { outline: 2px solid var(--fg); outline-offset: 1px; }
.slot:disabled {
  color: var(--muted);
  opacity: 0.45;
  text-decoration: line-through;
  cursor: default;
}
.slot.is-selected {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
  font-weight: 700;
}

/* Buchungsformular */
.bform {
  display: none;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-top: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
}
.bform.is-visible { display: block; }
.bform__summary {
  padding: 0.8em 1.1em;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(213, 255, 61, 0.16);
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}
.bform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label,
.field .field__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.72em 0.9em;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--fg);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 1px;
  border-color: var(--fg);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%23121318' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  padding-right: 2.4em;
}
.req { color: #7A9E00; }
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.bcheck {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.7em !important;
  align-items: flex-start;
  font-family: var(--font-body) !important;
  font-size: 0.86rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--muted) !important;
  cursor: pointer;
  line-height: 1.55;
}
.bcheck input {
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.18em;
  accent-color: #7A9E00;
  flex: 0 0 auto;
}
.bcheck a { color: var(--fg); text-decoration: underline; }

/* Gesprächsart-Pills */
.mode-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.mode-pill { position: relative; cursor: pointer; }
.mode-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.mode-pill span {
  display: inline-block;
  padding: 0.55em 1.3em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.mode-pill:hover span { border-color: var(--fg); }
.mode-pill input:checked + span {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
  font-weight: 600;
}
.mode-pill input:focus-visible + span { outline: 2px solid var(--fg); outline-offset: 2px; }

.bform__actions { margin-top: 1.6rem; }
.form-status {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  min-height: 1.5em;
}
.form-status.is-ok { color: #5d7a00; }
.form-status.is-err { color: #b23b3b; }

/* Erfolg */
.booking__success {
  display: none;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(0.5rem, 2vw, 1.5rem);
}
.booking__success.is-visible { display: block; }
.booking__success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
}
.booking__success-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
}
.booking__success-text {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 1.2rem;
}
.booking__success-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}

/* Info-Spalte */
.binfo { display: flex; flex-direction: column; gap: 1.2rem; }
.binfo__card {
  border: 1px solid var(--line);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  background: rgba(255, 255, 255, 0.55);
}
.binfo__card--alt { background: var(--ink); color: var(--white); border-color: var(--ink); }
.binfo__card--alt .binfo__title { color: var(--white); }
.binfo__card--alt .binfo__text { color: rgba(245, 244, 240, 0.72); }
.binfo__card--alt a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.binfo__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.binfo__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.binfo__list li {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}
.binfo__list svg { flex: 0 0 auto; margin-top: 0.28em; color: #7A9E00; }
.binfo__list strong { color: var(--fg); font-weight: 600; }
.binfo__text { font-size: 0.95rem; line-height: 1.8; }

@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
  .bform__grid { grid-template-columns: 1fr; }
  .bsteps__sep { flex-basis: 16px; }
}

/* ============================================================
   Projekte / Case (Startseite)
   ============================================================ */
.case {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.case__media {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  border-radius: clamp(0.8rem, 1.6vw, 1.25rem);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.5s var(--ease-out);
}
.case__media:hover { border-color: rgba(213, 255, 61, 0.55); transform: translateY(-4px); }
.case__media:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.case__media img { display: block; width: 100%; height: auto; }
.case__visit {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.4em 0.95em;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.case__tag {
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.case__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}
.case__text { color: var(--muted); max-width: 52ch; }
.case__facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
  margin: 1.6rem 0 1.8rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case__facts li { display: flex; flex-direction: column; gap: 0.15rem; }
.case__facts strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.case__facts span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.case__more {
  margin-top: clamp(2rem, 4vw, 3rem);
  color: var(--muted);
}

/* Weitere Referenzen (kompakte Karten) */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.mini {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.3rem, 2.5vw, 1.9rem);
  border: 1px solid var(--line);
  border-radius: clamp(0.8rem, 1.6vw, 1.25rem);
  transition: border-color 0.3s, transform 0.5s var(--ease-out);
}
.mini:hover { border-color: rgba(213, 255, 61, 0.45); transform: translateY(-4px); }
.mini__tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.mini__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: 0;
}
.mini__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}
.mini__foot {
  margin-top: auto;
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.mini__link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(213, 255, 61, 0.4);
  transition: border-color 0.25s;
}
.mini__link:hover { border-bottom-color: var(--accent); }
.mini__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.mini__domain { font-size: 0.8rem; letter-spacing: 0.05em; color: var(--fg); }
.mini__soon {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.3em 0.85em;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}
@media (max-width: 1000px) {
  .case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; }
}

/* ============================================================
   Kontaktformular: Zwei-Schritte-Führung (JS-erweitert)
   ============================================================ */
.cform__rest { display: contents; }
.cform--steps:not(.is-step2) .cform__rest { display: none; }
.cform--steps.is-step2 .cform__pick { display: none; }
.cform--steps .cform__field--topic { display: none; }
.cform__pick-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.cform__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.cform__tile {
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: none;
  color: var(--fg);
  font: inherit;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.cform__tile:hover { border-color: var(--accent); }
.cform__tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.cform__tile.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}
.cform__back {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s;
}
.cform__back:hover { color: var(--accent); }
.cform__back:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 560px) {
  .cform__tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   Website-Check (website-check.html)
   ============================================================ */
.checkgrid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.checkform {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}
.checkform .btn { align-self: flex-start; }
.checkform__note {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}
.checkform__note a { color: var(--fg); text-decoration: underline; }
.ticklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--muted);
}
.ticklist li {
  display: flex;
  gap: 0.6em;
  align-items: baseline;
  line-height: 1.5;
}
.ticklist li::before {
  content: "✓";
  flex: 0 0 auto;
  font-weight: 700;
  color: #7A9E00;
}
.binfo__card--alt .steplist { color: rgba(245, 244, 240, 0.72); }
.steplist {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.94rem;
  line-height: 1.6;
}
.steplist li { display: flex; gap: 0.8em; counter-increment: step; }
.steplist li::before {
  content: counter(step);
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.82em;
  font-weight: 700;
  margin-top: 0.1em;
}
.steplist strong { color: inherit; }
.binfo__card--alt .steplist strong { color: var(--white); }
@media (max-width: 900px) {
  .checkgrid { grid-template-columns: 1fr; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .marquee__track, .pulse-dot, .hero__scroll svg { animation: none !important; }
  .menu { transition: none; }
  .menu__link { transition: none; opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ============================================================
   CONVERSION-AUSBAU v3 — Sofort-Check, Konfigurator, Garantien,
   Tempo-Demo, Showroom. (Juli 2026)
   ============================================================ */

/* ---------- Sofort-Check (website-check.html) ---------- */
.scan { max-width: 900px; }
.scan__bar { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.scan__bar input[type="url"] {
  flex: 1 1 320px; min-width: 0;
  background: var(--white); border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.95em 1.5em; font: inherit; color: var(--ink);
}
.scan__bar input[type="url"]:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.scan__hint { margin-top: 0.7rem; font-size: 0.85rem; color: rgba(10, 11, 13, 0.55); }
.scan__hint a { color: inherit; }

.scan__status { margin-top: 1.4rem; display: none; align-items: center; gap: 0.9rem; }
.scan__status.is-on { display: flex; }
.scan__spinner { width: 22px; height: 22px; border-radius: 50%; border: 3px solid rgba(10, 11, 13, 0.15); border-top-color: var(--ink); animation: scanspin 0.8s linear infinite; flex: 0 0 auto; }
@keyframes scanspin { to { transform: rotate(360deg); } }
.scan__status p { font-family: var(--font-mono); font-size: 0.85rem; color: rgba(10, 11, 13, 0.7); }

.scan__error { display: none; margin-top: 1.4rem; border: 2px solid #B3402A; background: rgba(179, 64, 42, 0.07); border-radius: 14px; padding: 1rem 1.2rem; color: #7E2D1A; font-size: 0.95rem; }
.scan__error.is-on { display: block; }

.report { display: none; margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.report.is-on { display: block; }
.report__head { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.2rem; padding: clamp(1.2rem, 2.5vw, 1.8rem); background: var(--ink); border-radius: 18px; color: var(--white); }
.report__ring { position: relative; width: 108px; height: 108px; flex: 0 0 auto; }
.report__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.report__ring circle { fill: none; stroke-width: 9; }
.report__ring .ring-bg { stroke: rgba(245, 244, 240, 0.15); }
.report__ring .ring-val { stroke: var(--accent); stroke-linecap: round; transition: stroke-dashoffset 1s var(--ease-out); }
.report__ring b { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; }
.report__meta { flex: 1 1 320px; min-width: 260px; }
.report__host { font-family: var(--font-mono); font-size: 0.8rem; color: rgba(245, 244, 240, 0.55); overflow-wrap: anywhere; }
.report__verdict { margin-top: 0.4rem; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.45; }
.report__legend { margin-top: 0.9rem; display: flex; gap: 1.1rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.72rem; color: rgba(245, 244, 240, 0.6); }
.report__legend i { font-style: normal; }

.report__group { margin-top: clamp(1.6rem, 3.5vw, 2.2rem); }
.report__cat { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(10, 11, 13, 0.5); margin-bottom: 0.7rem; }
.report__list { display: grid; gap: 0.6rem; }
.rep { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; background: var(--white); border: 1.5px solid rgba(10, 11, 13, 0.12); border-radius: 14px; padding: 0.95rem 1.1rem; }
.rep__dot { width: 13px; height: 13px; border-radius: 50%; margin-top: 0.32em; flex: 0 0 auto; }
.rep--ok .rep__dot { background: #3E9B4F; }
.rep--warn .rep__dot { background: #E3A008; }
.rep--bad .rep__dot { background: #C7442E; }
.rep--bad { border-color: rgba(199, 68, 46, 0.45); }
.rep__title { font-weight: 700; font-size: 0.98rem; }
.rep__note { margin-top: 0.15rem; font-size: 0.9rem; line-height: 1.55; color: rgba(10, 11, 13, 0.65); }

.report__psi { margin-top: 1.4rem; border: 1.5px dashed rgba(10, 11, 13, 0.25); border-radius: 14px; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; font-size: 0.92rem; }
.report__psi b { font-family: var(--font-display); font-size: 1.4rem; }
.report__psi .mono { font-size: 0.75rem; color: rgba(10, 11, 13, 0.55); }

.report__cta { margin-top: clamp(1.8rem, 4vw, 2.4rem); background: var(--paper-2); border-radius: 18px; padding: clamp(1.3rem, 3vw, 1.9rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.report__cta p { max-width: 46ch; font-size: 0.98rem; }
.report__note-src { margin-top: 1rem; font-size: 0.8rem; color: rgba(10, 11, 13, 0.45); }

/* ---------- Mini-Check auf der Startseite ---------- */
.scanmini { margin-top: 2.2rem; max-width: 620px; }
.scanmini__label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 244, 240, 0.55); margin-bottom: 0.6rem; }
.scanmini form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.scanmini input[type="url"] { flex: 1 1 260px; min-width: 0; background: rgba(245, 244, 240, 0.08); border: 1.5px solid rgba(245, 244, 240, 0.3); border-radius: 999px; padding: 0.85em 1.3em; font: inherit; color: var(--white); }
.scanmini input[type="url"]::placeholder { color: rgba(245, 244, 240, 0.4); }
.scanmini input[type="url"]:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 2px; border-color: transparent; }

/* ---------- Angebots-Signale & Gründer ---------- */
.hero__proofline,
.offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}
.hero__proofline li,
.offer-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(245, 244, 240, 0.22);
  border-radius: 999px;
  padding: 0.52rem 0.82rem;
  color: rgba(245, 244, 240, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__proofline li::before,
.offer-strip li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(213, 255, 61, 0.1);
}
.offer-strip { margin-top: clamp(1.6rem, 3vw, 2.2rem); }

.founder {
  position: relative;
  z-index: 5;
  padding-block: var(--section-pad);
  overflow: hidden;
}
.founder__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.8rem, 7vw, 8rem);
  align-items: center;
}
.founder__portrait {
  position: relative;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  border-radius: clamp(1.3rem, 3vw, 2.4rem);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 32px 80px -34px rgba(10, 11, 13, 0.58);
}
.founder__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  box-shadow: inset 0 -100px 100px -80px rgba(10, 11, 13, 0.8);
}
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.8s var(--ease-out), filter 0.8s;
}
.founder__portrait:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}
.founder__portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1rem;
  color: rgba(245, 244, 240, 0.78);
  text-transform: uppercase;
}
.founder__lead {
  margin-top: clamp(1.6rem, 3vw, 2.3rem);
  max-width: 36em;
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.founder__copy {
  margin-top: 1.1rem;
  max-width: 58ch;
  color: var(--muted);
}
.founder__facts {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.founder__facts li {
  display: grid;
  grid-template-columns: 2.4rem minmax(130px, 0.65fr) 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.founder__facts li > span { color: var(--muted); }
.founder__facts strong {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}
.founder__facts small {
  color: var(--muted);
  font-size: 0.9rem;
}
.founder__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin-top: clamp(1.8rem, 3vw, 2.5rem);
}

/* ---------- Website-Abo: Nutzen & Eigentum ---------- */
.abo-value { padding-top: clamp(3rem, 6vw, 7rem); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.value-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  background: var(--bg);
}
.value-card--accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.value-card__num {
  color: var(--muted);
  text-transform: uppercase;
}
.value-card--accent .value-card__num { color: rgba(10, 11, 13, 0.58); }
.value-card h3 {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.7rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.value-card p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}
.value-card--accent p:last-child { color: rgba(10, 11, 13, 0.72); }
.ownership {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 4vw, 3.3rem);
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
}
.ownership__intro .label { margin-bottom: 1rem; }
.ownership__intro h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 1rem + 2vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}
.ownership__intro > p:last-child {
  margin-top: 1rem;
  color: rgba(245, 244, 240, 0.6);
  max-width: 32ch;
}
.ownership__list { border-top: 1px solid rgba(245, 244, 240, 0.16); }
.ownership__list > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) 1fr;
  gap: 1.3rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(245, 244, 240, 0.16);
}
.ownership__list dt { font-weight: 700; }
.ownership__list dd { color: rgba(245, 244, 240, 0.62); font-size: 0.92rem; }
.legal-scope {
  margin-top: 1.2rem;
  max-width: 82ch;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 0.84rem;
}
.legal-scope strong { color: var(--fg); }

@media (max-width: 1050px) {
  .founder__grid { grid-template-columns: minmax(250px, 0.72fr) 1fr; gap: clamp(2.4rem, 5vw, 4rem); }
  .founder__facts li { grid-template-columns: 2rem 1fr; }
  .founder__facts small { grid-column: 2; }
  .value-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .founder__grid,
  .ownership { grid-template-columns: 1fr; }
  .founder__portrait { width: min(100%, 520px); min-height: 0; }
  .ownership__intro > p:last-child { max-width: 48ch; }
}
@media (max-width: 560px) {
  .hero__proofline,
  .offer-strip { gap: 0.45rem; }
  .hero__proofline li,
  .offer-strip li { width: 100%; justify-content: flex-start; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 225px; }
  .ownership__list > div { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* ---------- SEO-Einstiege & Ratgeber ---------- */
.insights {
  position: relative;
  z-index: 5;
  padding-block: 0 var(--section-pad);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.7rem);
}
.insight-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 58px -38px rgba(10, 11, 13, 0.6);
}
.insight-card--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.insight-card--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.insight-card__meta { color: var(--muted); text-transform: uppercase; }
.insight-card--dark .insight-card__meta { color: rgba(245, 244, 240, 0.5); }
.insight-card--accent .insight-card__meta { color: rgba(10, 11, 13, 0.72); }
.insight-card h3 {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.45rem, 1rem + 1.2vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.insight-card > p:not(.insight-card__meta) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.insight-card--dark > p:not(.insight-card__meta) { color: rgba(245, 244, 240, 0.62); }
.insight-card--accent > p:not(.insight-card__meta) { color: rgba(10, 11, 13, 0.68); }
.insight-card a {
  margin-top: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.35em;
}
.insight-card--dark a { color: var(--white); }
.insight-card--accent a { text-decoration-color: rgba(10, 11, 13, 0.45); }

.guide-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.guide-grid__head {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  margin-bottom: 0;
}
.guide-body { max-width: 72ch; }
.guide-body h3 {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.7rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.guide-body h3:first-child { margin-top: 0; }
.guide-body > p,
.guide-body > ul,
.guide-body > ol {
  margin-top: 0.8rem;
  color: var(--muted);
}
.guide-body > ul,
.guide-body > ol {
  display: grid;
  gap: 0.72rem;
  padding-left: 1.35rem;
}
.guide-body > ul { list-style: disc; }
.guide-body > ol { list-style: decimal; }
.guide-body li { padding-left: 0.3rem; }
.guide-body strong { color: var(--fg); }
.guide-callout {
  margin-top: 2.4rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 18px;
  background: var(--bg-2);
  border-left: 4px solid var(--accent);
}
.guide-callout > p:first-child {
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.guide-callout > p:last-child { color: var(--fg); }

@media (max-width: 850px) {
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 260px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-grid__head { position: static; }
}

/* ---------- Konfigurator ---------- */
.wizard { max-width: 860px; }
.wizard__progress { display: flex; gap: 0.4rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem); }
.wizard__prog-seg { height: 4px; flex: 1; border-radius: 2px; background: rgba(10, 11, 13, 0.12); }
.wizard__prog-seg.is-done { background: var(--ink); }
.wizard__step { display: none; }
.wizard__step.is-on { display: block; }
.wizard__q { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.1; margin-bottom: 0.5rem; }
.wizard__sub { color: rgba(10, 11, 13, 0.6); margin-bottom: 1.6rem; max-width: 56ch; }
.wizard__opts { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.8rem; }
.wopt { position: relative; }
.wopt input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.wopt label { display: block; cursor: pointer; border: 2px solid rgba(10, 11, 13, 0.15); border-radius: 16px; padding: 1.05rem 1.15rem; background: var(--white); transition: border-color 0.2s, background-color 0.2s, transform 0.2s; height: 100%; }
.wopt label:hover { border-color: rgba(10, 11, 13, 0.45); transform: translateY(-1px); }
.wopt input:checked + label { border-color: var(--ink); background: var(--ink); color: var(--white); }
.wopt input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; }
.wopt__t { font-weight: 700; font-size: 1rem; display: flex; justify-content: space-between; gap: 0.6rem; }
.wopt__t .mono { font-size: 0.7rem; opacity: 0.6; white-space: nowrap; }
.wopt__d { margin-top: 0.25rem; font-size: 0.86rem; line-height: 1.5; opacity: 0.68; }
.wizard__nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: clamp(1.6rem, 3.5vw, 2.2rem); }
.wizard__back { background: none; border: 0; font: inherit; font-family: var(--font-mono); font-size: 0.85rem; color: rgba(10, 11, 13, 0.6); cursor: pointer; padding: 0.6em 0.2em; }
.wizard__back:hover { color: var(--ink); }
.wizard__back[hidden] { visibility: hidden; }

.wizard__result { display: none; }
.wizard__result.is-on { display: block; }
.westimate { background: var(--ink); color: var(--white); border-radius: 18px; padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem; align-items: baseline; }
.westimate__label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 244, 240, 0.55); }
.westimate__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1; }
.westimate__num .accent { color: var(--accent); }
.westimate__per { font-family: var(--font-mono); font-size: 0.8rem; color: rgba(245, 244, 240, 0.6); }
.westimate__note { flex-basis: 100%; font-size: 0.9rem; color: rgba(245, 244, 240, 0.65); max-width: 62ch; }
.wizard__summary { margin-top: 1.2rem; border: 1.5px solid rgba(10, 11, 13, 0.15); border-radius: 14px; padding: 1.1rem 1.3rem; font-size: 0.93rem; }
.wizard__summary dt { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(10, 11, 13, 0.5); margin-top: 0.7rem; }
.wizard__summary dt:first-child { margin-top: 0; }
.wizard__summary dd { margin: 0.1rem 0 0; }
.wizard__form { margin-top: clamp(1.6rem, 3.5vw, 2.2rem); }

/* ---------- Garantien ---------- */
.pledges { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.9rem, 2vw, 1.4rem); }
.pledge { border: 2px solid var(--ink); border-radius: 18px; padding: clamp(1.2rem, 2.6vw, 1.7rem); background: var(--white); display: flex; flex-direction: column; gap: 0.55rem; }
.pledge__num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; color: #666764; }
.pledge__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.12; }
.pledge__text { font-size: 0.92rem; line-height: 1.6; color: rgba(10, 11, 13, 0.66); }
.pledge__proof { margin-top: auto; padding-top: 0.7rem; font-family: var(--font-mono); font-size: 0.72rem; color: #666764; border-top: 1.5px dashed rgba(10, 11, 13, 0.2); }
@media (max-width: 1080px) { .pledges { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pledges { grid-template-columns: 1fr; } }

/* ---------- Tempo-Demo (Speedlab) ---------- */
.speedlab { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.2rem); }
.slab { border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(245, 244, 240, 0.18); background: var(--ink-2); }
.slab__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.65rem 0.9rem; border-bottom: 1px solid rgba(245, 244, 240, 0.12); }
.slab__dots { display: flex; gap: 0.3rem; }
.slab__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(245, 244, 240, 0.25); }
.slab__url { flex: 1; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(245, 244, 240, 0.55); background: rgba(245, 244, 240, 0.07); border-radius: 6px; padding: 0.32em 0.7em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slab__time { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); min-width: 4.5em; text-align: right; }
.slab__view { position: relative; height: 300px; padding: 1rem; overflow: hidden; }
.slab__page { display: grid; gap: 0.7rem; height: 100%; align-content: start; }
.sk { border-radius: 8px; background: rgba(245, 244, 240, 0.92); opacity: 0; }
.sk--nav { height: 26px; }
.sk--hero { height: 84px; background: var(--accent); }
.sk--row { height: 40px; }
.sk--half { height: 40px; width: 55%; }
.sk--btn { height: 34px; width: 40%; background: rgba(213, 255, 61, 0.85); }
.slab--mtk .sk { transition: opacity 0.18s ease-out; }
.slab.is-loaded .sk { opacity: 1; }
.slab__overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(10, 11, 13, 0.35); opacity: 1; transition: opacity 0.3s; pointer-events: none; }
.slab.is-loaded .slab__overlay { opacity: 0; }
.slab__spin { width: 30px; height: 30px; border-radius: 50%; border: 3px solid rgba(245, 244, 240, 0.25); border-top-color: rgba(245, 244, 240, 0.9); animation: scanspin 0.9s linear infinite; }
.slab--slow .sk { transition: opacity 0.5s; }
/* Harter Reset für „Noch einmal abspielen": ohne Transition sofort auf Ausgangszustand,
   damit die transition-delays den Reset nicht verschlucken und das Laden neu abläuft. */
.speedlab.is-resetting .sk { transition: none !important; opacity: 0 !important; }
.speedlab.is-resetting .slab__overlay { transition: none !important; opacity: 1 !important; }
.slab__label { padding: 0.8rem 1rem 1rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.slab__name { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.slab__sub { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(245, 244, 240, 0.5); }
.speedlab__foot { margin-top: 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }
.speedlab__note { font-size: 0.85rem; color: rgba(245, 244, 240, 0.55); max-width: 56ch; }
@media (max-width: 860px) { .speedlab { grid-template-columns: 1fr; } .slab__view { height: auto; min-height: 240px; } }
@media (max-width: 640px) { .slab__label { flex-direction: column; align-items: flex-start; gap: 0.3rem; } }

/* ---------- Showroom ---------- */
.showroom { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.demo-card { position: relative; border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(10, 11, 13, 0.14); background: var(--white); display: flex; flex-direction: column; transition: transform 0.3s var(--ease-out), box-shadow 0.3s; }
.demo-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(10, 11, 13, 0.35); }
.demo-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.demo-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.demo-card__body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; flex-grow: 1; }
.demo-card__branche { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: #666764; }
.demo-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.15; }
.demo-card__desc { font-size: 0.88rem; line-height: 1.55; color: rgba(10, 11, 13, 0.62); }
.demo-card__links { margin-top: auto; padding-top: 0.85rem; display: flex; gap: 1.2rem; font-size: 0.85rem; font-weight: 700; }
.demo-card__links a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--accent); }
.demo-card__links a:hover { border-color: var(--ink); }
@media (max-width: 1080px) { .showroom { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .showroom { grid-template-columns: 1fr; } }

/* Gestaffeltes "Laden" der Baukasten-Simulation */
.slab--slow .sk:nth-child(1) { transition-delay: 0s; }
.slab--slow .sk:nth-child(2) { transition-delay: 1.1s; }
.slab--slow .sk:nth-child(3) { transition-delay: 2.2s; }
.slab--slow .sk:nth-child(4) { transition-delay: 3.1s; }
.slab--slow .sk:nth-child(5) { transition-delay: 3.9s; }
.slab--mtk .sk { transition-delay: 0s !important; }

/* Reduced Motion für neue Module */
@media (prefers-reduced-motion: reduce) {
  .scan__spinner, .slab__spin { animation: none; }
  .report__ring .ring-val { transition: none; }
  .sk, .slab__overlay, .demo-card { transition: none !important; transition-delay: 0s !important; }
}
