/* ============================================================
   DIGITALGRADE — gemeinsames Stylesheet
   ------------------------------------------------------------
   Gestaltungssystem: helle Seite mit wechselnden Bändern
   (weiß / hellgrau / dunkel), fette Grotesk-Überschriften mit
   enger Laufweite, ein einziger flacher Akzent plus Tönung,
   Pillen für Badges und Schaltflächen, Karten mit 12 px Radius.

   Bewusst NICHT enthalten: Farbverläufe in Text, weichge-
   zeichnete Leuchtflächen, Rasterüberlagerungen.

   Nur Systemschriften — externe Fonts sind laut
   Datenschutzerklärung ausgeschlossen.
   ============================================================ */

:root {
  /* Schwere Grotesk aus dem System. Windows 11 liefert
     "Segoe UI Variable Display" mit echten fetten Schnitten,
     macOS SF Pro über -apple-system. */
  --display: "Segoe UI Variable Display", "Segoe UI Semibold", "Segoe UI", system-ui,
             -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --sans: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system,
          BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: Consolas, "SF Mono", ui-monospace, "Cascadia Mono", monospace;

  --maxw: 100%;
  --gutter: clamp(18px, 4vw, 72px);
  --ease: cubic-bezier(.2,.6,.3,1);

  --r: 12px;
  --r-sm: 8px;
  --r-lg: 18px;
  --pill: 9999px;
}

html[data-theme="light"] {
  --paper:      #FFFFFF;
  --paper-2:    #F6F7F9;
  --surface:    #FFFFFF;
  --ink:        #1C1F26;
  --ink-2:      #6C727F;
  --ink-3:      #9AA0AC;
  --rule:       #E2E4E9;
  --rule-2:     #CBD0D8;
  --band:       #14161C;
  --band-2:     #1C1F26;
  --on-band:    #FFFFFF;
  --on-band-2:  rgba(255,255,255,.68);
  --on-band-3:  rgba(255,255,255,.42);
  --band-rule:  rgba(255,255,255,.12);
  --accent:     #1E63E9;
  --accent-ink: #1748B8;
  --accent-bg:  rgba(30,99,233,.10);
  --accent-br:  rgba(30,99,233,.25);
  /* Aufgehellter Akzent für dunkle Flächen. #1E63E9 erreicht dort
     nur 3,46:1 und fällt bei kleiner Schrift durch WCAG AA;
     #6BA5FF kommt auf 7,28:1. */
  --accent-band: #6BA5FF;
  --on-accent:  #FFFFFF;
  --shadow:     0 1px 2px rgba(28,31,38,.05), 0 8px 24px -12px rgba(28,31,38,.12);
  color-scheme: light;
}

html[data-theme="dark"] {
  --paper:      #14161C;
  --paper-2:    #191C23;
  --surface:    #1B1E26;
  --ink:        #F0F1F4;
  --ink-2:      #A2A8B4;
  --ink-3:      #757B87;
  --rule:       #2A2E37;
  --rule-2:     #3B404B;
  --band:       #0C0E12;
  --band-2:     #111319;
  --on-band:    #FFFFFF;
  --on-band-2:  rgba(255,255,255,.66);
  --on-band-3:  rgba(255,255,255,.40);
  --band-rule:  rgba(255,255,255,.10);
  --accent:     #6BA5FF;
  --accent-ink: #96C0FF;
  --accent-bg:  rgba(107,165,255,.13);
  --accent-br:  rgba(107,165,255,.30);
  --accent-band: #6BA5FF;
  --on-accent:  #0B1220;
  --shadow:     0 1px 2px rgba(0,0,0,.4), 0 10px 30px -14px rgba(0,0,0,.6);
  color-scheme: dark;
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 16.5px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  display: flex; flex-direction: column; min-height: 100vh;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
main { flex: 1 0 auto; }
body.no-scroll { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--on-accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5 { margin: 0; }
.h1, .h2 {
  font-family: var(--display); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.07; text-wrap: balance;
}
.h1 { font-size: clamp(2.15rem, 4.4vw, 3.5rem); }
.h2 { font-size: clamp(1.7rem, 3.3vw, 2.9rem); }
.h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem); letter-spacing: -.015em; line-height: 1.3;
}
.lead { font-size: clamp(1.02rem, 1.35vw, 1.12rem); line-height: 1.62; color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--ink-2); }
.small { font-size: .875rem; }
/* Frühere Gradienten-Auszeichnung: jetzt flacher Akzent */
.grad-text { color: var(--accent); }

/* ---------- Pillen-Badge über Abschnitten ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 15px 6px 12px; border-radius: var(--pill);
  border: 1px solid var(--accent-br); background: var(--accent-bg);
  color: var(--accent); font-family: var(--sans);
  font-size: .8rem; font-weight: 600; letter-spacing: 0; text-transform: none;
  margin: 0 0 20px; width: fit-content;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex: 0 0 auto;
}

/* ---------- Raster ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; }
.section { padding: clamp(56px, 6.5vw, 104px) 0; position: relative; }
.section-tight { padding: clamp(40px, 4.5vw, 68px) 0; }
.section-alt { background: var(--paper-2); }
/* Dunkles Band — der Träger des ganzen Rhythmus */
.section-band { background: var(--band); color: var(--on-band); }
.section-band .lead, .section-band .muted { color: var(--on-band-2); }
.section-band .eyebrow { border-color: var(--band-rule); background: rgba(255,255,255,.06); color: var(--on-band); }
.center { text-align: center; }

.sec-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 54px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { margin-left: auto; margin-right: auto; }
.sec-head.center .lead { margin-left: auto; margin-right: auto; }
.sec-head p { margin-top: 16px; }

/* ---------- Schaltflächen: Pillen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--pill);
  font-family: var(--sans); font-weight: 650; font-size: .95rem; letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: background-color .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost { border-color: var(--rule-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.section-band .btn-ghost, .cta-box .btn-ghost { border-color: var(--band-rule); color: var(--on-band); }
.section-band .btn-ghost:hover, .cta-box .btn-ghost:hover { border-color: var(--on-band); background: rgba(255,255,255,.08); }
.btn-arrow { transition: transform .18s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .89rem; }
.btn-full { width: 100%; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 650; font-size: .96rem; color: var(--accent);
  transition: color .18s;
}
.tlink:hover { color: var(--accent-ink); }
.tlink:hover .btn-arrow { transform: translateX(3px); }
.section-band .tlink { color: var(--on-band); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { width: 30px; height: 30px; border-radius: var(--r-sm); flex: 0 0 auto; }
.logo-text { font-family: var(--display); font-size: 1.05rem; font-weight: 800; letter-spacing: -.025em; }
.logo-text i { font-style: normal; }
.logo-text .lg-a { color: var(--ink); }
.logo-text .lg-b { color: var(--accent); }
.logo-stack { flex-direction: column; gap: 12px; align-items: flex-start; }
.logo-stack img { width: 40px; height: 40px; }
.logo-stack .logo-text { font-size: 1.25rem; }
.section-band .logo-text .lg-a, .footer-band .logo-text .lg-a { color: var(--on-band); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .nav { background: var(--paper); }
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 70px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .93rem; font-weight: 550; color: var(--ink-2);
  padding: 8px 13px; border-radius: var(--pill);
  transition: color .18s, background-color .18s;
}
.nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.nav-links a[aria-current="page"] { color: var(--accent); background: var(--accent-bg); }
.nav-right { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 36px; height: 36px; border-radius: var(--pill);
  display: grid; place-items: center;
  border: 1px solid var(--rule); background: transparent; color: var(--ink-2);
  transition: color .18s, border-color .18s, background-color .18s;
}
.icon-btn:hover { color: var(--ink); border-color: var(--rule-2); background: var(--paper-2); }
.icon-btn svg { width: 16px; height: 16px; }
html[data-theme="dark"] .icon-sun { display: block; }
html[data-theme="dark"] .icon-moon { display: none; }
html[data-theme="light"] .icon-sun { display: none; }
html[data-theme="light"] .icon-moon { display: block; }

.burger { display: none; }
.nav-cta { display: inline-flex; }
@media (max-width: 1040px) { .nav-links, .nav-cta { display: none; } .burger { display: grid; } }

.mobile-menu {
  position: sticky; top: 70px; z-index: 99; display: none;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  padding: 8px var(--gutter) 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 600;
  border-bottom: 1px solid var(--rule); color: var(--ink);
}
.mobile-menu a[aria-current="page"] { color: var(--accent); }
/* Der Button ist auch ein <a> — sonst überschreiben die Regeln oben Farbe und Linie */
.mobile-menu a.btn { margin-top: 18px; border-bottom: 0; justify-content: center; }
.mobile-menu a.btn-primary,
.mobile-menu a.btn-primary[aria-current="page"] { color: var(--on-accent); }

/* Hintergrunddekoration abgeschaltet (Altlast) */
.bg-decor, .bg-grid, .orb { display: none !important; }

/* ---------- Auftakt: dunkles Band ---------- */
.hero {
  background: var(--band); color: var(--on-band);
  padding: clamp(52px, 6.5vw, 104px) 0 clamp(48px, 6vw, 88px);
}
.hero .lead, .hero-lead { color: var(--on-band-2); }
.hero .eyebrow { border-color: var(--band-rule); background: rgba(255,255,255,.06); color: var(--on-band); }
.hero-inner { min-width: 0; }
.hero-lead { margin-top: 22px; max-width: 54ch; font-size: clamp(1.03rem, 1.45vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; align-items: center; }
.hero-note {
  display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 26px;
  font-size: .87rem; color: var(--on-band-2);
}
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { display: inline-block; width: 15px; height: 15px; color: var(--accent); flex: 0 0 auto; }

.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0, min(34%, 440px)); gap: clamp(28px,4.5vw,72px); align-items: end; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-aside {
  border: 1px solid var(--band-rule); border-radius: var(--r);
  background: rgba(255,255,255,.04); padding: 22px 24px;
}
.hero-aside b {
  display: block; font-size: .78rem; font-weight: 650; letter-spacing: .02em;
  color: var(--accent); margin-bottom: 10px;
}
.hero-aside p { font-size: .93rem; color: var(--on-band-2); }

/* ---------- Kennzahlenband ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: clamp(38px, 4.5vw, 64px);
}
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }
.stat {
  border: 1px solid var(--band-rule); border-radius: var(--r);
  background: rgba(255,255,255,.04); padding: 20px 22px;
}
.stat b {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.1; letter-spacing: -.025em;
  margin-bottom: 8px; color: var(--on-band);
}
.stat .grad-text { color: var(--on-band); }
.stat span { display: block; font-size: .86rem; color: var(--on-band-2); line-height: 1.45; }

/* ---------- Verzeichnis-Liste ---------- */
.index-list { display: grid; gap: 14px; }
.index-row {
  display: grid; grid-template-columns: 54px minmax(0,1fr) 34px;
  gap: clamp(12px,2vw,28px); align-items: start;
  padding: clamp(20px,2.6vw,30px) clamp(20px,2.4vw,30px);
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--surface);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.index-row:hover { border-color: var(--accent-br); box-shadow: var(--shadow); transform: translateY(-2px); }
@media (max-width: 620px) { .index-row { grid-template-columns: 40px minmax(0,1fr); } .index-row .ir-go { display: none; } }
.ir-num {
  font-family: var(--display); font-size: .85rem; font-weight: 700;
  color: var(--accent); padding-top: 4px;
}
.ir-body h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.2rem,2vw,1.5rem); letter-spacing: -.025em; line-height: 1.2; }
.ir-body p { margin-top: 9px; font-size: .96rem; color: var(--ink-2); max-width: 62ch; }
.ir-body .ir-tags { margin-top: 14px; font-size: .82rem; font-weight: 600; color: var(--ink-3); }
.ir-go { justify-self: end; align-self: center; color: var(--ink-3); font-size: 1.2rem; line-height: 1; transition: transform .18s var(--ease), color .18s; }
.index-row:hover .ir-go { transform: translateX(3px); color: var(--accent); }

/* ---------- Aussagenband (zentriert, dunkel) ---------- */
.claim { max-width: 900px; margin: 0 auto; text-align: center; }
.claim blockquote {
  margin: 0; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.15; letter-spacing: -.03em;
  color: var(--on-band);
}
.claim blockquote em { color: var(--accent); font-style: normal; }
.claim .src { margin-top: 20px; font-size: .86rem; color: var(--on-band-3); }
/* Falls der Block auf hellem Grund steht */
.section:not(.section-band) .claim blockquote { color: var(--ink); }
.section:not(.section-band) .claim .src { color: var(--ink-3); }

/* ---------- Spalten ---------- */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 820px) { .cols { grid-template-columns: 1fr; } }
.col {
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--surface); padding: 24px 24px 22px;
}
.col h4 {
  font-family: var(--display); font-size: 1.02rem; font-weight: 700;
  letter-spacing: -.015em; color: var(--ink); margin-bottom: 14px;
}
.col li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .94rem; color: var(--ink-2); margin-bottom: 10px;
}
.col li::before {
  content: ""; flex: 0 0 auto; width: 6px; height: 6px; margin-top: .55em;
  border-radius: 50%; background: var(--accent);
}
.col svg { display: none; }
.section-band .col { border-color: var(--band-rule); background: rgba(255,255,255,.04); }
.section-band .col h4 { color: var(--on-band); }
.section-band .col li { color: var(--on-band-2); }

/* ---------- Karten ---------- */
.card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r);
  padding: clamp(22px, 2.6vw, 32px); position: relative;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.card:hover { border-color: var(--rule-2); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 10px; }
.card > p { color: var(--ink-2); font-size: .96rem; }
.card-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--rule); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }

.svc-num { display: block; font-size: .82rem; font-weight: 650; color: var(--accent); margin-bottom: 16px; }
.svc-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid var(--accent-br); background: var(--accent-bg);
  display: grid; place-items: center; margin-bottom: 18px;
}
.svc-icon svg { width: 19px; height: 19px; color: var(--accent); }

/* Merkmalslisten mit Häkchen */
.feat-list { margin-top: 18px; display: grid; gap: 11px; }
.feat-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--ink-2); }
.feat-list svg { display: inline-block; width: 16px; height: 16px; flex: 0 0 auto; margin-top: .28em; color: var(--accent); }
.feat-list b { color: var(--ink); font-weight: 650; }
.feat-list li.inherit { color: var(--ink-3); }
.feat-list li.inherit svg { color: var(--ink-3); }

.price-line { font-size: .93rem; color: var(--ink-2); }
.price-line b { color: var(--ink); font-size: 1.02rem; font-weight: 700; }

.callout {
  border: 1px solid var(--accent-br); background: var(--accent-bg);
  border-radius: var(--r); padding: 20px 22px;
}
.callout h4 { font-family: var(--display); font-size: 1.02rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 8px; }
.callout p { font-size: .94rem; color: var(--ink-2); }
.callout p + p { margin-top: 10px; }
.callout a { color: var(--accent); font-weight: 600; }

/* ---------- Teaser ---------- */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .teasers { grid-template-columns: 1fr; } }
.teaser {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--surface); padding: 24px;
  transition: border-color .18s, box-shadow .18s, transform .18s var(--ease);
}
.teaser:hover { border-color: var(--accent-br); box-shadow: var(--shadow); transform: translateY(-2px); }
.teaser .t-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  border: 1px solid var(--accent-br); background: var(--accent-bg);
  display: grid; place-items: center; margin-bottom: 16px;
}
.teaser .t-icon svg { width: 18px; height: 18px; color: var(--accent); }
.teaser h3 { font-family: var(--display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.025em; margin-bottom: 9px; }
.teaser p { font-size: .93rem; color: var(--ink-2); flex: 1 1 auto; }
.teaser .t-more { margin-top: 16px; font-size: .89rem; font-weight: 650; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.teaser:hover .t-more .btn-arrow { transform: translateX(3px); }

/* ---------- Story / Zeitleiste ---------- */
.story-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0, min(46%, 620px)); gap: clamp(28px,4.5vw,72px); align-items: start; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
.story-copy p { color: var(--ink-2); }
.story-copy p + p { margin-top: 16px; }
.story-copy strong { color: var(--ink); font-weight: 650; }
.story-sig { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; align-items: center; gap: 14px; }
.story-sig img { width: 38px; height: 38px; border-radius: var(--r-sm); }
.story-sig div b { display: block; font-size: .94rem; }
.story-sig div span { font-size: .83rem; color: var(--ink-3); }

.timeline { display: grid; gap: 12px; }
.timeline::before { display: none; }
.tl-item {
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--surface); padding: 18px 20px;
}
.tl-item::before { display: none; }
.tl-item h4 { font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 6px; }
.tl-item .tag { display: block; font-size: .78rem; font-weight: 650; color: var(--accent); margin-bottom: 6px; }
.tl-item p { font-size: .93rem; color: var(--ink-2); }

/* ---------- Tarife ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
@media (max-width: 940px) { .tiers { grid-template-columns: 1fr; max-width: 540px; } }
.tier {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule); border-radius: var(--r-lg);
  background: var(--surface); padding: 26px 24px;
  transition: border-color .18s, box-shadow .18s;
}
.tier:hover { border-color: var(--rule-2); box-shadow: var(--shadow); }
.tier.featured {
  border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.tier-badge {
  position: static; transform: none; display: inline-flex; align-items: center;
  background: var(--accent); color: var(--on-accent); border-radius: var(--pill);
  font-size: .74rem; font-weight: 700; letter-spacing: .01em; text-transform: none;
  padding: 5px 12px; margin-bottom: 14px; box-shadow: none; white-space: nowrap;
}
.tier-name { font-family: var(--display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.025em; }
.tier-for { font-size: .89rem; color: var(--ink-2); margin-top: 7px; }
@media (min-width: 941px) { .tier-for { min-height: 3.1em; } }
.tier-price { margin: 18px 0 0; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.tier-price b { display: block; font-family: var(--display); font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; }
.tier-price span { font-size: .83rem; color: var(--ink-3); }
.tier .feat-list { flex: 1 1 auto; margin-bottom: 22px; }

.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 14px; }
.addon {
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--surface); padding: 20px 22px;
  transition: border-color .18s, box-shadow .18s, transform .18s var(--ease);
}
.addon:hover { border-color: var(--accent-br); box-shadow: var(--shadow); transform: translateY(-2px); }
.addon b { display: block; font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 6px; }
.addon span { font-size: .89rem; color: var(--ink-2); }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 940px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--surface); padding: 22px;
}
.step::before { display: none; }
.step b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: var(--pill);
  background: var(--accent-bg); color: var(--accent);
  font-family: var(--display); font-size: .82rem; font-weight: 800; letter-spacing: 0;
  margin-bottom: 14px;
}
.step h4 { font-family: var(--display); font-weight: 700; font-size: 1.08rem; letter-spacing: -.02em; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--ink-2); }
.section-band .step { border-color: var(--band-rule); background: rgba(255,255,255,.04); }
.section-band .step h4 { color: var(--on-band); }
.section-band .step p { color: var(--on-band-2); }
.section-band .step b { background: rgba(255,255,255,.10); color: var(--on-band); }

.step-long {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  border: 1px solid var(--rule); border-radius: var(--r); background: var(--surface);
  padding: 24px; margin-bottom: 14px;
}
.step-long:first-child { border-top: 1px solid var(--rule); }
.step-long:last-child { margin-bottom: 0; }
@media (max-width: 620px) { .step-long { grid-template-columns: 1fr; gap: 12px; } }
.step-long .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--pill);
  background: var(--accent-bg); color: var(--accent);
  font-family: var(--display); font-size: .92rem; font-weight: 800;
  -webkit-text-fill-color: currentColor; padding: 0;
}
.step-long h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.15rem,1.9vw,1.4rem); letter-spacing: -.025em; margin-bottom: 9px; }
.step-long p { color: var(--ink-2); font-size: .96rem; }
.step-long p + p { margin-top: 10px; }
.step-long .meta { margin-top: 14px; font-size: .84rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 4px 20px; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; display: grid; gap: 10px; }
.faq.centered { margin: 0 auto; }
.qa {
  border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--surface); overflow: hidden;
  transition: border-color .18s;
}
.qa[open] { border-color: var(--accent-br); }
.qa-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 22px; text-align: left; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(1rem,1.5vw,1.1rem); font-weight: 700;
  letter-spacing: -.015em; transition: color .18s;
}
.qa-q::-webkit-details-marker { display: none; }
.qa-q:hover { color: var(--accent); }
.qa-icon {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: var(--pill);
  background: var(--accent-bg); color: var(--accent);
  position: relative; border: 0;
}
.qa-icon::before, .qa-icon::after { content: ""; position: absolute; background: currentColor; border-radius: 1px; }
.qa-icon::before { width: 10px; height: 1.5px; top: 11px; left: 7px; }
.qa-icon::after { width: 1.5px; height: 10px; left: 11px; top: 7px; transition: opacity .2s, transform .2s; }
.qa[open] .qa-icon::after { opacity: 0; transform: rotate(90deg); }
.qa-a { padding: 0 22px 20px; max-width: 68ch; }
.qa-a p { color: var(--ink-2); font-size: .95rem; }
.qa-a p + p { margin-top: 11px; }
.qa-a strong { color: var(--ink); }
.qa-a a { color: var(--accent); font-weight: 600; }

/* ---------- Muster ---------- */
.mgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .mgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 660px) { .mgrid { grid-template-columns: 1fr; } }
.mcard {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--rule); border-radius: var(--r); background: var(--surface);
  transition: border-color .18s, box-shadow .18s, transform .18s var(--ease);
}
.mcard:hover { border-color: var(--accent-br); box-shadow: var(--shadow); transform: translateY(-2px); }
.mprev { display: block; aspect-ratio: 16/11; border-bottom: 1px solid var(--rule); overflow: hidden; position: relative; background: var(--paper-2); }
.mprev::after { display: none; }
.mbody { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1 1 auto; }
.mnum { font-size: .8rem; font-weight: 650; color: var(--accent); margin-bottom: 8px; }
.mbody h3 { font-family: var(--display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.025em; margin-bottom: 9px; }
.mbody > p { color: var(--ink-2); font-size: .93rem; flex: 1 1 auto; }
.traits { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 18px; }
.traits span {
  font-size: .76rem; font-weight: 600; color: var(--ink-2);
  border: 1px solid var(--rule); background: var(--paper-2);
  border-radius: var(--pill); padding: 4px 10px;
}
.mfit { font-size: .89rem; color: var(--ink-2); border-top: 1px solid var(--rule); padding-top: 14px; margin-bottom: 16px; }
.mfit b { color: var(--ink); font-weight: 650; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0, min(42%, 540px)); gap: clamp(24px,3.5vw,56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--rule); border-radius: var(--r); background: var(--surface);
  padding: 18px 20px; margin-bottom: 12px;
}
.contact-row .ci {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: var(--r-sm);
  border: 1px solid var(--accent-br); background: var(--accent-bg);
}
.contact-row .ci svg { width: 18px; height: 18px; color: var(--accent); }
.contact-row h4 { font-size: .8rem; font-weight: 650; color: var(--ink-3); margin-bottom: 6px; }
.contact-row a, .contact-row p { font-size: 1.02rem; font-weight: 650; }
.contact-row a:hover { color: var(--accent); }
.contact-row .sub { font-size: .88rem; font-weight: 400; color: var(--ink-2); margin-top: 5px; }

/* ---------- Formular ---------- */
.form { display: grid; gap: 18px; margin-top: 22px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .86rem; font-weight: 650; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--rule-2); background: var(--paper); color: var(--ink);
  font-family: var(--sans);
  /* Mindestens 16px: iOS-Safari zoomt sonst beim Antippen hinein */
  font-size: 16px;
  transition: border-color .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field .hint { font-size: .82rem; color: var(--ink-3); }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: .89rem; color: var(--ink-2); }
.check input[type="checkbox"] { width: 17px; height: 17px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--accent); cursor: pointer; }
.check a { color: var(--accent); font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .83rem; color: var(--ink-3); }

.alert { border: 1px solid; border-radius: var(--r-sm); padding: 13px 16px; font-size: .93rem; color: var(--ink-2); }
.alert b { color: var(--ink); }
.alert-error { border-color: rgba(192,57,43,.4); background: rgba(192,57,43,.08); }
.alert-ok { border-color: rgba(30,125,79,.4); background: rgba(30,125,79,.08); }

/* ---------- Stellenanzeigen ---------- */
.jobs { display: grid; gap: 16px; }
.job {
  border: 1px solid var(--rule); border-radius: var(--r-lg);
  background: var(--surface); padding: clamp(24px,2.8vw,34px);
  transition: border-color .18s, box-shadow .18s;
}
.job:hover { border-color: var(--rule-2); box-shadow: var(--shadow); }
.job-head { display: block; }
.job-num { font-size: .82rem; font-weight: 650; color: var(--accent); margin-bottom: 9px; }
.job-head h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.25rem,2.2vw,1.7rem); letter-spacing: -.03em; line-height: 1.18; }
.job-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.job-tags span {
  font-size: .77rem; font-weight: 600; color: var(--ink-2);
  border: 1px solid var(--rule); background: var(--paper-2);
  border-radius: var(--pill); padding: 4px 11px; white-space: nowrap;
}
.job-intro { margin-top: 16px; color: var(--ink-2); font-size: .99rem; max-width: 66ch; }
.job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,2.6vw,40px); margin-top: 24px; }
@media (max-width: 760px) { .job-cols { grid-template-columns: 1fr; } }
.job-cols h5 { font-size: .8rem; font-weight: 650; color: var(--ink-3); margin: 0 0 12px; }
.job-cols li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--ink-2); margin-bottom: 10px; }
.job-cols li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; margin-top: .55em; border-radius: 50%; background: var(--accent); }
.job-cols li svg { display: none; }
.job-plus { margin-top: 14px; font-size: .89rem; color: var(--ink-3); }
.job-plus b { color: var(--ink-2); font-weight: 650; }
.job-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; justify-content: flex-start; align-items: center; gap: 18px; flex-wrap: wrap; }
.job-salary { font-size: .93rem; color: var(--ink-2); }
.job-salary b { color: var(--ink); font-weight: 650; }

/* ---------- Aufforderungsband ---------- */
.cta-box {
  position: relative; overflow: hidden; text-align: center;
  border: 0; border-radius: var(--r-lg);
  background: var(--band); color: var(--on-band);
  padding: clamp(36px,5vw,72px) clamp(22px,4vw,56px);
}
.cta-box::before { display: none; }
.cta-box .eyebrow { border-color: var(--band-rule); background: rgba(255,255,255,.06); color: var(--on-band); margin-left: auto; margin-right: auto; }
.cta-box .h2 { max-width: 24ch; margin: 0 auto 16px; color: inherit; }
.cta-box .lead { max-width: 56ch; margin: 0 auto; color: var(--on-band-2); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.cta-box .btn-primary { background: var(--accent); color: var(--on-accent); }
.cta-box .btn-primary:hover { background: var(--accent-ink); }
.cta-mail { margin-top: 20px; font-size: .89rem; color: var(--on-band-3); }
.cta-mail a { color: var(--on-band-2); font-weight: 600; }

/* ---------- Seitenkopf Unterseiten ---------- */
.page-hero {
  background: var(--band); color: var(--on-band);
  padding: clamp(40px,5vw,76px) 0 clamp(40px,5vw,72px);
}
.page-hero .inner { max-width: 800px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { color: var(--on-band-2); }
.page-hero .eyebrow { border-color: var(--band-rule); background: rgba(255,255,255,.06); color: var(--on-band); }
.crumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--on-band-3); margin-bottom: 20px; flex-wrap: wrap; }
.crumb a { color: var(--on-band-2); }
.crumb a:hover { color: var(--on-band); }

/* ---------- Rechtstexte ---------- */
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(24px,3vw,36px); }
.legal-nav a {
  padding: 8px 16px; border-radius: var(--pill);
  border: 1px solid var(--rule); background: var(--surface);
  font-size: .89rem; font-weight: 600; color: var(--ink-2);
  transition: all .18s;
}
.legal-nav a:hover { color: var(--ink); border-color: var(--rule-2); }
.legal-nav a[aria-current="page"] { color: var(--accent); background: var(--accent-bg); border-color: var(--accent-br); }

.prose { max-width: 74ch; }
.prose h4 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; letter-spacing: -.015em; margin: 30px 0 10px; }
.prose h4:first-child { margin-top: 0; }
.prose p, .prose li { font-size: .95rem; color: var(--ink-2); }
.prose p + p { margin-top: 11px; }
.prose ul { margin: 12px 0; padding-left: 0; list-style: none; }
.prose li { margin-bottom: 8px; position: relative; padding-left: 16px; }
.prose li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.prose strong { color: var(--ink); }
.prose em { color: var(--ink); font-style: normal; font-family: var(--mono); font-size: .92em; }
.prose a { color: var(--accent); font-weight: 600; }
.legal-note {
  border: 1px solid var(--accent-br); background: var(--accent-bg);
  border-radius: var(--r); padding: 16px 18px; margin-bottom: 26px;
}
.legal-note p { font-size: .9rem; }
.prose .clause { padding-left: 30px; text-indent: -30px; }
.prose .clause > b:first-child { color: var(--ink); font-weight: 700; }
.prose .clause .no { display: inline-block; width: 30px; text-indent: 0; color: var(--ink-3); font-weight: 650; }
.prose h4 .ph { font-weight: 400; }

/* ---------- Fußbereich ---------- */
.footer { background: var(--band); color: var(--on-band); padding: clamp(44px,5vw,72px) 0 28px; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 38px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer .logo-text .lg-a { color: var(--on-band); }
.footer-brand p { margin-top: 16px; font-size: .91rem; color: var(--on-band-2); max-width: 32ch; }
.footer h5 { margin: 0 0 14px; font-size: .8rem; font-weight: 650; color: var(--on-band); }
.footer-col a, .footer-col span { display: block; padding: 5px 0; font-size: .92rem; color: var(--on-band-2); transition: color .18s; }
.footer-col a:hover { color: var(--on-band); }
.footer-bottom {
  border-top: 1px solid var(--band-rule); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--on-band-3);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--on-band-3); }
.footer-legal a:hover { color: var(--on-band); }

/* ---------- Platzhalter ---------- */
.ph {
  background: var(--accent-bg); border-bottom: 1px dashed var(--accent);
  padding: 0 4px; border-radius: 3px; font-family: var(--mono);
  font-size: .88em; color: var(--accent);
}
.section-band .ph, .hero .ph, .page-hero .ph, .cta-box .ph, .footer .ph {
  background: rgba(255,255,255,.10); border-bottom-color: var(--on-band-2); color: var(--on-band);
}

/* ============================================================
   Akzent auf dunklen Flächen aufhellen — sonst 3,46:1 statt 4,5:1
   ============================================================ */
.hero .grad-text,
.page-hero .grad-text,
.section-band .grad-text,
.cta-box .grad-text,
.hero-aside b,
.hero-note svg,
.claim blockquote em,
.section-band .svc-num,
.section-band .tl-item .tag,
.section-band .ir-num,
.section-band .mnum,
.section-band .job-num,
.footer .logo-text .lg-b,
.hero .logo-text .lg-b { color: var(--accent-band); }

.section-band .col li::before,
.section-band .job-cols li::before { background: var(--accent-band); }
.section-band .feat-list svg { color: var(--accent-band); }

/* ============================================================
   Überschriften-Ebenen
   Für eine Gliederung ohne übersprungene Ebenen tragen manche
   Bausteine jetzt h2/h3 statt h4/h5. Screenreader springen von
   Überschrift zu Überschrift — eine Seite, die von h1 direkt auf
   h4 wechselt, ist damit nicht sinnvoll navigierbar.
   Die Gestaltung bleibt identisch.
   ============================================================ */
.card h2 { margin-bottom: 10px; }
/* Tarifname ist jetzt ein h2 innerhalb von .card — der Abstand
   kommt bereits von .tier-for, sonst entsteht eine doppelte Lücke. */
h2.tier-name { margin-bottom: 0; }
.col h3 {
  font-family: var(--display); font-size: 1.02rem; font-weight: 700;
  letter-spacing: -.015em; color: var(--ink); margin-bottom: 14px;
}
.section-band .col h3 { color: var(--on-band); }
.callout h3 { font-family: var(--display); font-size: 1.02rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 8px; }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.08rem; letter-spacing: -.02em; margin-bottom: 8px; }
.section-band .step h3 { color: var(--on-band); }
.step-long h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.15rem,1.9vw,1.4rem); letter-spacing: -.025em; margin-bottom: 9px; }
.tl-item h3 { font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 6px; }
.contact-row h3 { font-size: .8rem; font-weight: 650; color: var(--ink-3); margin-bottom: 6px; }
.mbody h2 { font-family: var(--display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.025em; margin-bottom: 9px; }
.prose h2, .prose h3 { font-family: var(--display); font-weight: 700; letter-spacing: -.015em; margin: 30px 0 10px; }
.prose h2 { font-size: 1.05rem; }
.prose h3 { font-size: 1rem; color: var(--ink); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose h2 .ph, .prose h3 .ph { font-weight: 400; }
.footer h2 { margin: 0 0 14px; font-size: .8rem; font-weight: 650; color: var(--on-band); }

/* ---------- Einblenden beim Scrollen ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
