/* =====================================================================
   CAYADA.Legal — Stylesheet der Website
   Fassung 2026-09-06 · Neugestaltung nach Design-Briefing Fassung 2
   Ordnung über weiße und zart grüne Flächen, Grün als einziger Akzent,
   Ockerton ausschließlich für Zustände (Ausblick), nicht für Dekoration.
   ===================================================================== */
:root {
  --bg:        #ffffff;
  --bg-soft:   #f5faf8;
  --bg-card:   #ffffff;
  --text:      #0c1f1a;
  --muted:     #3a4a44;
  --faint:     #6b8079;
  --line:      #d8e6e0;
  --line-soft: #e6f1ec;
  --accent:    #0b6b52;        /* Akzent, dunkel */
  --accent-2:  #0d8f6d;        /* Akzent, Signal */
  --accent-lite:#dff0e9;
  --state:     #7a5410;        /* Zustandsfarbe: Ausblick, Planung */
  --state-lite:#f6efe1;
  --state-line:#e3d5b8;
  --ink:       #0c1f1a;
  --ink-soft:  #1a2a25;
  --max:       1280px;
  --r-sm:      8px;
  --r-md:      12px;
  --r-lg:      16px;
  --shadow-sm: 0 1px 2px rgba(12,31,26,0.04), 0 4px 14px rgba(12,31,26,0.05);
  --shadow-md: 0 10px 34px rgba(12,31,26,0.09);
  --fs-text: 1rem;
  --fs-sub: 1.25rem;
  --fs-page: 1.9rem;
  --fs-label: 0.7rem;
  --font: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Archivo', 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { height: 40px; width: 40px; flex-shrink: 0; border-radius: 10px; background: var(--accent); display: grid; place-items: center; color: #fff; }
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: row; align-items: center; gap: 13px; }
.brand-eyebrow { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.brand-name { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); padding-left: 13px; border-left: 1px solid var(--line); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 8px; font-size: 1.02rem; color: var(--muted); margin-left: auto; }
.nav-links a { padding: 10px 16px; border-radius: 10px; font-weight: 500; transition: all 0.15s; white-space: nowrap; }
.nav-links a:not(.nav-cta):hover { background: var(--bg-soft); color: var(--text); }
.nav-links a.nav-cta:hover { background: var(--accent-2); color: #fff; }
.nav-active { color: var(--accent) !important; background: color-mix(in srgb, var(--accent) 7%, transparent) !important; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-actions:empty { display: none; }
.nav-ghost {
  padding: 8px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: 0.84rem; font-weight: 600; color: var(--text); transition: all 0.15s; white-space: nowrap;
}
.nav-ghost:hover { border-color: var(--accent-2); background: var(--bg-soft); }
.nav-cta {
  padding: 11px 22px; background: var(--accent); color: #fff;
  border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  transition: opacity 0.15s; white-space: nowrap; margin-left: 8px;
}
.nav-cta:hover { opacity: 0.86; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px;
  background: var(--accent-2); color: #fff; font-weight: 600; font-size: 0.94rem;
  border: none; cursor: pointer; font-family: inherit;
  border-radius: var(--r-sm); box-shadow: 0 6px 20px rgba(13,143,109,0.26);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(13,143,109,0.34); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px;
  border: 1.5px solid var(--line); color: var(--text); font-weight: 600; font-size: 0.94rem;
  border-radius: var(--r-sm); background: var(--bg);
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: var(--accent-2); background: var(--bg-soft); }

/* ─── HERO (generisch) ─── */
.hero { padding: 84px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; }
.hero-grid.top { align-items: start; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 13px; margin-bottom: 24px;
  background: var(--accent-lite); border-radius: 999px;
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
h1, h2, h3, .brand-eyebrow, .f-brand-name { font-family: var(--font-display); word-spacing: 0.06em; }
h1 {
  font-size: var(--fs-page);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.015em; color: var(--text); margin-bottom: 20px;
}
h1 span { color: var(--accent-2); }
.hero-sub { color: var(--muted); font-size: var(--fs-text); line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* striped placeholder figure */
.ph-figure {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.ph-figure svg, .ph-figure img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* hero notes (Home) */
.hero-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line); margin-top: 48px; }
.note { padding: 20px 22px 4px 0; position: relative; }
.note + .note { padding-left: 22px; }
.note + .note::before { content: ''; position: absolute; left: 0; top: 20px; bottom: 8px; width: 1px; background: var(--line); }
.note strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.02em; }
.note span { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; }

/* hero right card */
.hero-right { display: flex; flex-direction: column; gap: 18px; }
.hero-right-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.hrc-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.hrc-title { font-size: 1.18rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.02em; line-height: 1.22; }
.hrc-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.hrc-items { display: flex; flex-direction: column; gap: 2px; }
.hrc-item { padding: 11px 0; border-top: 1px solid var(--line-soft); }
.hrc-item strong { display: block; font-size: 0.86rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.hrc-item span { font-size: 0.82rem; color: var(--faint); }

/* ─── SECTION BASE ─── */
section { padding: 92px 0; }
.kicker { font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
h2 { font-size: var(--fs-sub); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
h3 { font-size: var(--fs-sub); font-weight: 700; letter-spacing: 0; color: var(--text); line-height: 1.35; }
.section-head { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; margin-bottom: 56px; }
.section-copy { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; }

/* ─── APPROACH STRIP ─── */
.approach-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach-block { display: flex; align-items: flex-start; gap: 16px; }
.approach-icon { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--accent-lite); display: grid; place-items: center; flex-shrink: 0; }
.approach-icon svg { width: 21px; height: 21px; color: var(--accent-2); }
.approach-label { font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 5px; }
.approach-desc { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; }

/* ─── PROFIL highlight + stats (Home) ─── */
.profil-bg { background: var(--bg-soft); }
.highlight { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.highlight-quote { font-size: var(--fs-sub); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; color: var(--text); margin-bottom: 20px; }
.highlight-quote em { color: var(--accent-2); font-style: normal; }
.highlight-copy { font-size: 1.02rem; color: var(--muted); line-height: 1.75; max-width: 46ch; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { padding: 24px; background: var(--bg-card); }
.stat strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.stat span { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* ─── Cards (generic 3-up) ─── */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cards.cards-2 { grid-template-columns: repeat(2,1fr); }
.cards.cards-4 { grid-template-columns: repeat(4,1fr); }
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 25%, var(--line)); }
.card-icon { width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--accent-lite); display: grid; place-items: center; margin-bottom: 22px; }
.card-icon svg { width: 25px; height: 25px; color: var(--accent-2); }
.card > p { font-size: var(--fs-text); color: var(--muted); margin: 12px 0 22px; line-height: 1.7; }
.card ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.card ul li { font-size: var(--fs-text); color: var(--muted); padding: 10px 0 10px 18px; position: relative; border-top: 1px solid var(--line-soft); line-height: 1.45; }
.card ul li::before { content: ''; position: absolute; left: 0; top: calc(10px + 0.725em - 3px); width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }

/* ─── Why (große Ziffern) ─── */
.why-bg { background: var(--bg-soft); }
.why-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.why-card { padding: 0 28px; position: relative; }
.why-card + .why-card::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--line); }
.why-card:first-child { padding-left: 0; }
.why-big { font-size: 2.4rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: color-mix(in srgb, var(--accent) 22%, transparent); margin-bottom: 16px; }
.why-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 14px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { font-size: 0.96rem; color: var(--muted); line-height: 1.6; }

/* ─── CTA BAND ─── */
.cta-band {
  padding: 56px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, var(--bg)) 0%, var(--bg) 70%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h3 { font-size: var(--fs-sub); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.cta-band p { font-size: 1rem; color: var(--muted); max-width: 48ch; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── 3-EBENEN ARCHITEKTUR (CAYADA-spezifisch) ─── */
.layers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.layer { background: var(--bg-card); padding: 32px 30px; position: relative; }
.layer-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.layer-num::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--accent-2); vertical-align: middle; margin-right: 10px; }
.layer h3 { font-size: 1.18rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.layer p { font-size: 0.94rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.layer-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.layer-tag { font-size: 0.7rem; font-weight: 600; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }

/* ─── DOKUMENTE-GRID ─── */
.docs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.doc-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; transition: border-color 0.2s; }
.doc-card:hover { border-color: var(--accent-2); }
.doc-icon-box { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--accent-lite); display: grid; place-items: center; margin-bottom: 12px; }
.doc-icon-box svg { width: 18px; height: 18px; color: var(--accent-2); }
.doc-name { font-size: 0.96rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.doc-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.doc-tag { display: inline-block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-lite); padding: 3px 9px; border-radius: 999px; }

/* ─── STANDALONE SERVICES (dunkel) ─── */
.standalone-strip { background: var(--bg-soft); padding: 88px 0; }
.standalone-strip .kicker { color: var(--accent); }
.standalone-strip h2 { color: var(--text); margin-bottom: 14px; }
.standalone-strip .section-copy { color: var(--muted); max-width: 60ch; }
.sa-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.sa-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; transition: box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.sa-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent-2); }
.sa-icon { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--accent-lite); display: grid; place-items: center; margin-bottom: 18px; }
.sa-icon svg { width: 22px; height: 22px; color: var(--accent-2); }
.sa-name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.sa-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.62; margin-bottom: 18px; flex: 1; }
.sa-link { font-size: 0.84rem; font-weight: 600; color: var(--accent-2); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.sa-card:hover .sa-link { gap: 10px; }

/* ─── PRICING SHORT (Index) ─── */
.pricing-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.price-mini { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; display: flex; flex-direction: column; gap: 6px; transition: border-color 0.2s, transform 0.2s; }
.price-mini:hover { border-color: var(--accent-2); transform: translateY(-2px); }
.price-mini.featured { border-color: var(--accent-2); box-shadow: 0 8px 32px rgba(13,143,109,0.14); }
.price-mini .tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.price-mini .amt { font-size: 2rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-top: 4px; }
.price-mini .amt sup { font-size: 1rem; vertical-align: top; margin-top: 4px; font-weight: 600; }
.price-mini .period { font-size: 0.78rem; color: var(--muted); }
.price-mini .lead { font-size: 0.86rem; color: var(--muted); line-height: 1.55; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.price-mini .link { font-size: 0.84rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; }
.price-mini:hover .link { gap: 9px; }

/* ─── EDITORIAL (Variant C) ─── */
.editorial-hero { padding: 120px 0 96px; }
.ed-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; }
.ed-h1 { font-size: var(--fs-page); font-weight: 700; line-height: 0.98; letter-spacing: -0.04em; max-width: 14ch; margin-bottom: 32px; }
.ed-h1 em { font-style: italic; font-weight: 500; color: var(--accent-2); }
.ed-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--line); margin-top: 56px; }
.ed-meta > div { padding: 20px 24px 4px 0; position: relative; }
.ed-meta > div + div { padding-left: 24px; }
.ed-meta > div + div::before { content: ''; position: absolute; left: 0; top: 20px; bottom: 8px; width: 1px; background: var(--line); }
.ed-meta strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.ed-meta p { font-size: 0.98rem; color: var(--muted); line-height: 1.6; }

.manifesto { padding: 88px 0; border-top: 1px solid var(--line); }
.manifesto-quote { font-size: var(--fs-sub); font-weight: 600; line-height: 1.18; letter-spacing: -0.025em; color: var(--text); max-width: 22ch; margin-bottom: 36px; }
.manifesto-quote em { color: var(--accent-2); font-style: normal; }
.manifesto-body { columns: 2; column-gap: 56px; font-size: 1.02rem; color: var(--muted); line-height: 1.75; max-width: 880px; }
.manifesto-body p + p { margin-top: 14px; }

.bigtype-strip { padding: 0 0 88px; }
.bt-list { display: flex; flex-direction: column; }
.bt-row { display: grid; grid-template-columns: 80px 1fr 200px; gap: 32px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); }
.bt-row:last-child { border-bottom: 1px solid var(--line); }
.bt-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; color: var(--accent); }
.bt-title { font-size: var(--fs-sub); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.bt-meta { font-size: 0.86rem; color: var(--muted); line-height: 1.55; text-align: right; }
.bt-row:hover .bt-title { color: var(--accent-2); }

/* ─── FOOTER (rich, 4-col) ─── */
footer.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 56px 0 28px; margin-top: 0; }
.f-top { display: grid; grid-template-columns: 240px 1fr; gap: 56px; margin-bottom: 40px; }
.f-brand { display: flex; align-items: center; gap: 13px; color: var(--text); margin-bottom: 14px; }
.f-brand .brand-mark { background: var(--accent); }
.f-brand .brand-mark svg { color: #fff; }
.f-brand-name { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.f-tagline { font-size: 0.82rem; color: var(--faint); line-height: 1.5; }
.f-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.f-col { display: flex; flex-direction: column; gap: 9px; }
.f-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.f-col a { font-size: 0.86rem; color: var(--muted); transition: color 0.15s; }
.f-col a:hover { color: var(--accent); }
.f-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--faint); flex-wrap: wrap; gap: 12px; }
.f-bottom-left { display: flex; align-items: center; gap: 14px; }

/* ─── ANIMATION (sanft, nie unsichtbar) ─── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes slideUp { from { transform: translateY(14px); } to { transform: none; } }
  .reveal { animation: slideUp 0.55s ease both; }
  .reveal:nth-child(2) { animation-delay: 0.06s; }
  .reveal:nth-child(3) { animation-delay: 0.12s; }
  .reveal:nth-child(4) { animation-delay: 0.18s; }
  .reveal:nth-child(5) { animation-delay: 0.24s; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .hero-grid, .section-head, .highlight, .cards, .cards.cards-4, .cards.cards-2,
  .why-cards, .approach-inner, .layers, .docs-grid, .sa-grid, .pricing-strip,
  .f-top, .f-cols, .ed-meta { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-notes { grid-template-columns: 1fr; border-top: none; }
  .note { border-top: 1px solid var(--line); padding: 16px 0 4px; }
  .note + .note { padding-left: 0; }
  .note + .note::before { display: none; }
  .why-cards { gap: 28px; }
  .why-card { padding: 0; }
  .why-card + .why-card::before { display: none; }
  .ed-meta { gap: 28px; }
  .ed-meta > div { padding: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .ed-meta > div + div::before { display: none; }
  .manifesto-body { columns: 1; }
  .bt-row { grid-template-columns: 60px 1fr; }
  .bt-meta { grid-column: 2; text-align: left; }
  .hero-right { display: none; }
  .nav-ghost { display: none; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0 44px; }
  .stats, .pricing-strip { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .cta-band { padding: 28px; }
}


/* ════════════════════════════════════════════════
   SUBSEITEN-KOMPONENTEN
   ════════════════════════════════════════════════ */

/* ─── PAGE HERO (interne Seiten, kompakter) ─── */
.page-hero { padding: 80px 0 48px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .hero-sub { margin-bottom: 32px; }

/* ─── PORTAL · Einstiegswege ─── */
.entry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.entry-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s; }
.entry-card:hover { border-color: var(--accent-2); box-shadow: var(--shadow-md); }
.entry-card .card-icon { width: 42px; height: 42px; margin-bottom: 16px; }
.entry-card .card-icon svg { width: 21px; height: 21px; }
.entry-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.entry-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ─── PORTAL · Layer-Header (3 Ebenen) ─── */
.layer-hdr { display: grid; grid-template-columns: 80px 1fr 320px; gap: 28px; align-items: start; margin-bottom: 32px; }
.layer-num-box { width: 64px; height: 64px; border-radius: var(--r-md); display: grid; place-items: center; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.04em; color: #fff; }
.layer-num-box.ln-1 { background: var(--accent); }
.layer-num-box.ln-2 { background: #1a5fa8; }
.layer-num-box.ln-3 { background: #a06010; }
.layer-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; }
.layer-label.ll-1 { color: var(--accent); }
.layer-label.ll-2 { color: #1a5fa8; }
.layer-label.ll-3 { color: #a06010; }
.layer-heading { font-size: var(--fs-sub); font-weight: 700; letter-spacing: -0.02em; }
.layer-side { font-size: 0.94rem; color: var(--muted); line-height: 1.6; }
.layer-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 8px; }
.lc { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.lc h4 { font-size: 1.02rem; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.lc p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.lc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lc-tag { font-size: 0.7rem; font-weight: 600; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }

/* ─── PORTAL · Monitoring ─── */
.mon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 32px; }
.mon-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.mon-num { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 12px; }
.mon-title { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.mon-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.mon-result { font-size: 0.82rem; color: var(--accent); font-weight: 600; padding-top: 14px; border-top: 1px solid var(--line); }

/* ─── PORTAL · Roles ─── */
.roles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 14px; }
.role-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; display: flex; align-items: center; gap: 14px; }
.role-card .card-icon { width: 38px; height: 38px; margin: 0; flex-shrink: 0; }
.role-card .card-icon svg { width: 18px; height: 18px; }
.role-name { font-size: 0.94rem; font-weight: 700; margin-bottom: 3px; }
.role-access { font-size: 0.78rem; color: var(--muted); line-height: 1.45; }

/* ─── PORTAL · Output strip (dunkel) ─── */
.output-strip { background: var(--bg-soft); padding: 88px 0; }
.output-strip .kicker { color: var(--accent); }
.output-strip h2 { color: var(--text); margin-bottom: 36px; }
.output-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.output-cat { background: var(--bg-card); padding: 28px; }
.output-cat-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.output-doc { font-size: 0.88rem; color: var(--muted); padding: 9px 0 9px 18px; position: relative; border-top: 1px solid var(--line-soft); }
.output-doc:first-of-type { border-top: none; }
.output-doc::before { content: ''; position: absolute; left: 0; top: 1.1em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); }

/* ─── PREISE · Hauptgrid ─── */
.price-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.pc { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.pc.featured { border-color: var(--accent-2); box-shadow: 0 12px 36px rgba(13,143,109,0.16); }
.pc-badge { position: absolute; top: -12px; left: 22px; background: var(--accent-2); color: #fff; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.pc-badge.pc-badge-free { background: var(--accent-lite); color: var(--accent); }
.pc-tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.pc-name { font-size: var(--fs-sub); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 6px; }
.pc-tagline { font-size: 0.86rem; color: var(--muted); line-height: 1.55; margin-bottom: 20px; min-height: 2.5em; }
.pc-price { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pc-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 5px; font-weight: 700; }
.pc-period { font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; }
.pc-hr { border: none; border-top: 1px solid var(--line); margin-bottom: 16px; }
.pc-feats { list-style: none; display: flex; flex-direction: column; gap: 0; flex: 1; margin-bottom: 22px; }
.pc-feats li { font-size: 0.86rem; color: var(--text); padding: 9px 0 9px 22px; position: relative; border-top: 1px solid var(--line-soft); line-height: 1.5; }
.pc-feats li:first-child { border-top: none; }
.pc-feats li::before { content: '✓'; position: absolute; left: 0; top: 0.7em; color: var(--accent-2); font-weight: 700; font-size: 0.78rem; }
.pc-feats li.no { color: #c0d0c9; }
.pc-feats li.no::before { content: '–'; color: #d0e0d8; }
.btn-pc { display: inline-flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 12px; border-radius: var(--r-sm); font-family: inherit; font-weight: 700; font-size: 0.88rem; transition: all 0.15s; cursor: pointer; text-decoration: none; border: none; }
.btn-pc-o { background: var(--bg); color: var(--text); border: 1.5px solid var(--line); }
.btn-pc-o:hover { border-color: var(--accent-2); background: var(--bg-soft); }
.btn-pc-f { background: var(--accent-2); color: #fff; box-shadow: 0 4px 14px rgba(13,143,109,0.22); }
.btn-pc-f:hover { background: var(--accent); }
.btn-pc-free { background: var(--accent-lite); color: var(--accent); }
.btn-pc-free:hover { background: color-mix(in srgb, var(--accent-lite) 80%, var(--accent) 20%); }
.pc-detail-link { display: inline-flex; align-items: center; justify-content: center; gap: 5px; margin-top: 10px; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.pc-detail-link:hover { color: var(--accent); }

/* ─── PREISE · Vergleichstabelle (Detail-Seiten) ─── */
.price-intro { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 60ch; margin-bottom: 24px; }
.detail-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; margin-top: 32px; }
.detail-feats { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.detail-feats h3 { font-size: 1rem; margin-bottom: 18px; }
.detail-feats h3 + h3 { margin-top: 24px; }
.detail-feats ul { list-style: none; display: flex; flex-direction: column; }
.detail-feats li { font-size: 0.94rem; color: var(--text); padding: 11px 0 11px 22px; position: relative; border-top: 1px solid var(--line-soft); line-height: 1.5; }
.detail-feats li:first-child { border-top: none; }
.detail-feats li::before { content: '✓'; position: absolute; left: 0; top: 0.7em; color: var(--accent-2); font-weight: 700; }
.detail-feats li.no { color: #b8c8c2; }
.detail-feats li.no::before { content: '–'; color: #d0e0d8; }
.detail-aside { background: var(--bg-card); border: 1.5px solid var(--accent-2); border-radius: var(--r-lg); padding: 32px; position: sticky; top: 96px; box-shadow: 0 8px 28px rgba(13,143,109,0.12); }
.detail-aside .pc-tier { margin-bottom: 12px; }
.detail-aside .pc-price { margin-bottom: 6px; }
.detail-aside .pc-period { margin-bottom: 24px; }
.detail-aside .btn-pc { padding: 14px; font-size: 0.92rem; }
.detail-aside-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; line-height: 1.55; }

/* ─── SERVICE · Kategorien ─── */
.cat-section { padding: 56px 0; border-top: 1px solid var(--line); }
.cat-section:first-of-type { border-top: none; padding-top: 24px; }
.cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.cat-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--accent-lite); display: grid; place-items: center; flex-shrink: 0; }
.cat-icon svg { width: 22px; height: 22px; color: var(--accent-2); }
.cat-label { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.cat-hr { border: none; border-top: 1px solid var(--line); margin-bottom: 20px; }
.cat-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 75ch; }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cat-item { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: border-color 0.2s; }
.cat-item:hover { border-color: var(--accent-2); }
.cat-item-name { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.cat-item-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
.cat-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; font-size: 0.88rem; font-weight: 600; color: var(--accent); }
.cat-cta:hover { gap: 11px; }

/* ─── AKTUELLES ─── */
.ak-layout { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.ak-controls { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 8px; font-size: 0.86rem; color: var(--muted); }
.per-page-wrap { display: flex; align-items: center; gap: 10px; }
.per-page-select { padding: 6px 10px; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; font-size: 0.84rem; background: #fff; color: var(--text); cursor: pointer; }
.ak-count { font-weight: 600; color: var(--text); }
.ak-list { display: flex; flex-direction: column; }
.ak-card { display: block; padding: 32px 0; border-bottom: 1px solid var(--line); transition: padding-left 0.2s; }
.ak-card:hover { padding-left: 8px; }
.ak-card.featured { padding: 32px 28px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: 16px; }
.ak-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ak-date { font-size: 0.82rem; color: var(--faint); font-weight: 500; }
.ak-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.ak-badge.ab-dsgvo { color: var(--accent); background: var(--accent-lite); }
.ak-badge.ab-ki { color: #6a3eb8; background: #ece5fa; }
.ak-badge.ab-nis { color: #a06010; background: #fef0d8; }
.ak-badge.ab-it { color: #1a5fa8; background: #dceaff; }
.ak-card h3 { font-size: var(--fs-sub); margin-bottom: 12px; line-height: 1.3; }
.ak-card > p { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; margin-bottom: 14px; max-width: 70ch; }
.ak-read { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; font-weight: 600; color: var(--accent); }
.ak-card:hover .ak-read { gap: 11px; }
.ak-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 96px; }
.ak-side-box { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.ak-side-box h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.ak-side-box p { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.ak-side-box input[type=email] { width: 100%; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-family: inherit; font-size: 0.9rem; background: var(--bg); margin-bottom: 10px; }
.ak-side-box input[type=email]:focus { outline: none; border-color: var(--accent-2); }
.ak-side-box button { width: 100%; padding: 10px; background: var(--accent-2); color: #fff; border: none; border-radius: var(--r-sm); font-family: inherit; font-weight: 600; font-size: 0.86rem; cursor: pointer; }

/* ─── ARTIKEL-DETAIL ─── */
.article-hero { padding: 64px 0 32px; }
.article-hero .ak-meta { margin-bottom: 18px; }
.article-hero h1 { font-size: var(--fs-page); margin-bottom: 18px; max-width: 40ch; }
.article-lead { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; max-width: 65ch; }
.article-body { padding: 0 0 80px; max-width: 760px; }
.article-body h2 { font-size: var(--fs-sub); margin: 40px 0 14px; }
.article-body h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.article-body p { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 14px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.article-body ul li, .article-body ol li { margin-bottom: 6px; }
.article-body blockquote { border-left: 3px solid var(--accent-2); padding: 4px 22px; margin: 24px 0; background: var(--bg-soft); border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 1.02rem; color: var(--text); line-height: 1.6; }
.article-body a { color: var(--accent); }
.article-back { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; color: var(--accent); font-weight: 600; margin-bottom: 24px; }
.article-back:hover { gap: 11px; }

/* ─── KONTAKT · Form + Info ─── */
.k-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: start; }
.k-form-card, .k-info-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.k-form-card h2 { font-size: var(--fs-sub); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 0.94rem; color: var(--text); background: var(--bg);
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-2); }
.form-group textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--accent-2); color: #fff; border: none; border-radius: var(--r-sm); font-family: inherit; font-weight: 700; font-size: 0.94rem; cursor: pointer; transition: background 0.15s, transform 0.15s; box-shadow: 0 6px 20px rgba(13,143,109,0.22); }
.btn-submit:hover { transform: translateY(-1px); background: var(--accent); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; line-height: 1.55; }
.form-note a { color: var(--accent); }
.k-info-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.ki-block { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.ki-block:first-of-type { border-top: none; }
.ki-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--accent-lite); display: grid; place-items: center; flex-shrink: 0; }
.ki-icon svg { width: 18px; height: 18px; }
.ki-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
.ki-val { font-size: 0.96rem; font-weight: 600; color: var(--text); }
.ki-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ─── DEMO ─── */
.demo-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: start; }
.demo-form-box { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.demo-info { display: flex; flex-direction: column; gap: 14px; }
.demo-step { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-2); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.92rem; flex-shrink: 0; }
.step-title { font-size: 0.96rem; font-weight: 700; margin-bottom: 4px; }
.step-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* ─── LOGIN ─── */
.login-wrap { min-height: calc(100vh - 100px); display: grid; place-items: center; padding: 40px 20px; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(13,143,109,.06) 0%, transparent 70%), var(--bg); }
.login-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-md); width: 100%; max-width: 420px; }
.login-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 28px; }
.login-logo .brand-mark { background: var(--accent); }
.login-brand { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.login-brand span { color: var(--accent-2); font-weight: 500; }
.login-title { font-size: var(--fs-sub); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 6px; }
.login-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 24px; }
.login-btn { width: 100%; padding: 14px; background: var(--accent-2); color: #fff; border: none; border-radius: var(--r-sm); font-family: inherit; font-weight: 700; font-size: 0.94rem; cursor: pointer; box-shadow: 0 6px 20px rgba(13,143,109,0.22); }
.login-btn:hover { background: var(--accent); }
.login-extra { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 0.84rem; }
.login-extra a { color: var(--accent); font-weight: 600; }
.login-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0 18px; color: var(--muted); font-size: 0.8rem; }
.login-divider::before, .login-divider::after { content: ''; flex: 1; border-top: 1px solid var(--line); }
.btn-sso { width: 100%; padding: 12px; background: #fff; color: var(--text); border: 1.5px solid var(--line); border-radius: var(--r-sm); font-family: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: border-color 0.15s; }
.btn-sso:hover { border-color: var(--accent-2); }
.login-footer { margin-top: 28px; text-align: center; font-size: 0.84rem; color: var(--muted); line-height: 1.7; }
.login-footer a { color: var(--accent); font-weight: 600; }

/* ─── LEGAL (Impressum / Datenschutz / AGB) ─── */
.legal-hero { padding: 72px 0 32px; }
.legal-hero h1 { font-size: var(--fs-page); margin-top: 10px; margin-bottom: 0; }
.legal-body { max-width: none; padding: 16px 0 80px; }
.legal-body h2 { font-size: var(--fs-sub); margin: 40px 0 14px; }
.legal-body h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal-body p, .legal-body address, .legal-body li { font-size: 0.96rem; color: var(--muted); line-height: 1.7; font-style: normal; margin-bottom: 10px; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 14px; }
.legal-body a { color: var(--accent); }
.legal-divider { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

/* ─── UEBER UNS · Team ─── */
.team-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 40px 0 16px; }
.team-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.team-2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }  /* same column width as team-3 — last slot stays empty for symmetry */
.person { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.person-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-lite); display: grid; place-items: center; font-size: 0.82rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.person-top strong { display: block; font-size: 1.02rem; font-weight: 700; }
.person-role { font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-top: 3px; }
.person p, .person-lead p { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.person-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.person-tag { font-size: 0.7rem; font-weight: 600; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: 3px 9px; border-radius: 999px; }

/* ─── Mehr responsive für neue Komponenten ─── */
@media (max-width: 980px) {
  .entry-grid, .layer-cards, .mon-grid, .roles-grid, .output-grid,
  .price-grid-4, .cat-grid, .ak-layout, .k-grid, .demo-grid,
  .team-3, .team-2, .detail-grid { grid-template-columns: 1fr; }
  .ak-side, .detail-aside { position: static; }
  .layer-hdr { grid-template-columns: 64px 1fr; gap: 18px; }
  .layer-side { grid-column: 1 / -1; padding-top: 8px; }
  .form-row { grid-template-columns: 1fr; }
}


/* ─── ARTIKEL-Inhalte (callouts, tables) ─── */
.article-callout {
  background: var(--bg-soft); border-left: 3px solid var(--accent-2);
  padding: 16px 22px; margin: 22px 0; border-radius: 0 var(--r-md) var(--r-md) 0;
}
.article-callout p { font-size: 0.96rem; color: var(--text); line-height: 1.6; margin-bottom: 0; }
.article-callout strong { color: var(--accent); }
.article-table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  font-size: 0.92rem;
}
.article-table th {
  background: var(--bg-soft); padding: 12px 16px;
  text-align: left; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  border-bottom: 1px solid var(--line);
}
.article-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--line-soft);
  color: var(--muted); line-height: 1.5;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table strong { color: var(--text); }


/* ════════════════════════════════════════════════
   DARK MODE
   ════════════════════════════════════════════════ */
:root { color-scheme: light; }
[data-theme="dark"] {
  color-scheme: dark;
  --bg:        #121413;
  --bg-soft:   #1a1d1c;
  --bg-card:   #1e2221;
  --text:      #eaeceb;
  --muted:     #a6aeab;
  --faint:     #858d8a;
  --line:      #2c3130;
  --line-soft: #242827;
  --accent:    #45c49f;
  --accent-2:  #57d4b0;
  --accent-lite: rgba(69,196,159,0.14);
  --state:     #d9b877;
  --state-lite: rgba(217,184,119,0.12);
  --state-line: rgba(217,184,119,0.3);
  --ink:       #0d0f0e;
  --ink-soft:  #1a1d1c;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.25), 0 4px 14px rgba(0,0,0,0.18);
  --shadow-md: 0 10px 34px rgba(0,0,0,0.32);
}
[data-theme="dark"] .nav { background: color-mix(in srgb, var(--bg) 86%, transparent); }
[data-theme="dark"] .ph-figure svg rect { fill: #1a2722 !important; }
[data-theme="dark"] .ph-figure svg line { stroke: #243531 !important; }
[data-theme="dark"] .ph-figure svg text { fill: #5a6f68 !important; }


[data-theme="dark"] .nav-cta { background: var(--accent); color: #fff; }
[data-theme="dark"] .btn-pc-o, [data-theme="dark"] .btn-ghost { background: var(--bg-card); }
[data-theme="dark"] .login-card { background: var(--bg-card); }
[data-theme="dark"] .pc.featured, [data-theme="dark"] .price-mini.featured { box-shadow: 0 12px 36px rgba(46,180,141,0.16); }
[data-theme="dark"] .cta-band { background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, var(--bg-card)) 0%, var(--bg-card) 70%); }
[data-theme="dark"] .hero { background: radial-gradient(ellipse 60% 50% at 80% 0%, rgba(46,180,141,.06) 0%, transparent 70%), var(--bg); }

/* ─── THEME TOGGLE BUTTON ─── */
.theme-toggle {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line); background: var(--bg);
  border-radius: var(--r-sm); cursor: pointer;
  color: var(--text); transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent-2); background: var(--bg-soft); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

/* Body smooth transitions when toggling */
body, .nav, footer.site-footer, .card, .pc, .price-mini, .entry-card, .lc, .mon-card, .role-card, .person, .k-form-card, .k-info-card, .demo-form-box, .login-card, .ak-card, .ak-side-box, .detail-feats, .detail-aside, .cta-band, .quote-wrap, .article-callout, .article-table {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}


/* ─── PC card as <a> (klickbare Paketkarte) ─── */
a.pc { text-decoration: none; color: inherit; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
a.pc:hover { transform: translateY(-4px); border-color: var(--accent-2); box-shadow: 0 14px 38px rgba(13,143,109,0.16); }
[data-theme="dark"] a.pc:hover { box-shadow: 0 14px 38px rgba(46,180,141,0.16); }
a.pc.featured:hover { box-shadow: 0 16px 42px rgba(13,143,109,0.22); }

.pc-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: auto; padding-top: 18px;
  font-size: 0.92rem; font-weight: 700; color: var(--accent);
  border-top: 1px solid var(--line-soft);
  transition: gap 0.15s;
}
a.pc:hover .pc-cta { gap: 12px; }
.pc-cta.cta-featured { color: var(--accent-2); }


/* ─── HAMBURGER & MOBILE NAV ─── */
.nav-inner { position: relative; }
.nav-burger { display: none; width: 40px; height: 40px; border: 1.5px solid var(--line); background: var(--bg); border-radius: var(--r-sm); cursor: pointer; color: var(--text); place-items: center; flex-shrink: 0; }
.nav-burger svg { width: 18px; height: 18px; }
/* Nav hat einen EIGENEN Breakpoint (1100px): die vergrößerte Navigationsschrift
   braucht mehr Platz als das übrige Layout, das bei 980px umbricht. */
@media (max-width: 1100px) {
  .nav-burger { display: grid; }
  .nav-links { display: none; }
  .nav .nav-links a:not(.nav-cta) { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 10px; box-shadow: var(--shadow-md); z-index: 60;
  }
  .nav.open .nav-links a { padding: 13px 16px; min-height: 44px; display: flex; align-items: center; }
  .nav.open .nav-links a.nav-cta { margin-left: 0; margin-top: 6px; justify-content: center; }
  .nav-ghost { display: none; }
}

/* ─── CONSENT BANNER ─── */
.consent-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100;
  display: flex; justify-content: center;
}
.consent-inner {
  max-width: 720px; width: 100%;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.consent-inner p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; flex: 1 1 320px; margin: 0; }
.consent-inner a { color: var(--accent); font-weight: 600; }
.consent-actions { display: flex; gap: 8px; }
.consent-ok {
  padding: 11px 20px; min-height: 44px; background: var(--accent-2); color: #fff;
  border: none; border-radius: var(--r-sm); font-family: inherit; font-weight: 700; font-size: 0.88rem; cursor: pointer;
}
.consent-ok:hover { background: var(--accent); }

/* ─── AUSBLICK-BADGE (Interim) ─── */
.soon-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--state-lite); color: var(--state);
  border: 1px solid var(--state-line);
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
}
.soon-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--state); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes soonPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
}
.tier-teaser { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tt { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.tt .tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.tt .tt-name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.tt p { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; }
@media (max-width: 980px) { .tier-teaser { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tier-teaser { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════
   BROSCHÜREN-ANGLEICH (Stand 28.08.2026)
   ════════════════════════════════════════════════ */

/* ─── Abgrenzungshinweis (verbindlich, nie kleingedruckt) ─── */
.disclaimer-strip { border-top: 1px solid var(--line); background: var(--bg); padding: 30px 0; }
.disclaimer-strip p { font-size: 0.9rem; font-weight: 400; color: var(--text); line-height: 1.65; max-width: 104ch; margin: 0 auto; text-align: center; white-space: normal; overflow: visible; text-wrap: pretty; }
.disclaimer-strip p.with-i { display: grid; grid-template-columns: 20px 1fr; column-gap: 11px; align-items: start; text-align: left; }
.disclaimer-strip p.with-i .info-i-lg { margin: 0; transform: translateY(0.15em); }
.disclaimer-strip strong { font-weight: 400; }
.disclaimer-inline {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 22px; margin-top: 28px;
}
.disclaimer-inline svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.disclaimer-inline p { font-size: var(--fs-text); color: var(--text); line-height: 1.7; }

/* ─── Sprachumschalter ─── */
.lang-switch { display: flex; align-items: center; gap: 2px; margin-left: 10px; font-size: 0.76rem; }
.lang-switch a { padding: 5px 8px; border-radius: 6px; font-weight: 600; letter-spacing: 0.04em; color: var(--faint); }
.lang-switch a:hover { background: var(--bg-soft); color: var(--text); }
.lang-switch a.lang-active { color: var(--accent); background: var(--accent-lite); }


/* ─── Zweiteilung „Heute verfügbar“ / „In Entwicklung“ ─── */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.split-col { background: var(--bg-card); padding: 32px; }
.split-col.is-future { background: var(--bg-soft); }
.split-tag { display: flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.split-col h3 { margin-bottom: 12px; }
.split-col p { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; }
.split-list { list-style: none; display: flex; flex-direction: column; margin-top: 6px; }
.split-list li { font-size: var(--fs-text); color: var(--text); padding: 10px 0 10px 20px; position: relative; border-top: 1px solid var(--line-soft); line-height: 1.5; }
.split-list li:first-child { border-top: none; }
.split-list li::before { content: ''; position: absolute; left: 0; top: calc(10px + 0.75em - 3px); width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }

/* ─── Leistungsmodule (typografisch, wenig Icons) ─── */
.modules { display: flex; flex-direction: column; }
.module { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 32px 0; border-top: 1px solid var(--line); }
.module:last-child { border-bottom: 1px solid var(--line); }
.module-title { font-size: var(--fs-sub); font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
.module-body p { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; max-width: 78ch; }
.module-body ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; margin-top: 4px; }
.module-body ul li { font-size: var(--fs-text); color: var(--text); padding: 9px 0 9px 20px; position: relative; border-top: 1px solid var(--line-soft); line-height: 1.5; }
.module-body ul li::before { content: ''; position: absolute; left: 0; top: calc(9px + 0.75em - 3px); width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.module-note { margin-top: 16px; font-size: 0.94rem; color: var(--text); }
.module-note strong { color: var(--accent); }

/* ─── Arbeitsweise: 4 Schritte ─── */
.steps-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.step-card { background: var(--bg-card); padding: 30px 26px; }
.step-idx { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.step-idx::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--accent-2); vertical-align: middle; margin-right: 10px; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; }
.result-panel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; margin-top: 92px; }
.result-panel h3 { margin-bottom: 18px; }
.result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 32px; list-style: none; }
.result-grid li { font-size: var(--fs-text); color: var(--text); padding: 10px 0 10px 20px; position: relative; border-top: 1px solid var(--line); line-height: 1.5; }
.result-grid li::before { content: ''; position: absolute; left: 0; top: calc(10px + 0.75em - 3px); width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }

/* ─── Team (2 Ebenen) ─── */
.team-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.person-lead { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.role-line { font-size: 0.86rem; font-weight: 700; color: var(--accent); margin-top: 4px; letter-spacing: 0.01em; }
.bg-line { font-size: 0.82rem; font-weight: 500; color: var(--faint); margin-top: 4px; letter-spacing: -0.005em; }
.person ul { list-style: none; display: flex; flex-direction: column; margin-top: 4px; }
.person ul li { font-size: 0.94rem; color: var(--muted); padding: 8px 0 8px 16px; hyphens: auto; position: relative; border-top: 1px solid var(--line-soft); line-height: 1.45; }
.person ul li:first-child { border-top: none; }
.person ul li::before { content: ''; position: absolute; left: 0; top: calc(8px + 0.725em - 2.5px); width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); }

/* ─── Portal-Ebenen als zusammenhängende Architektur ─── */
.arch { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.arch-row { background: var(--bg-card); padding: 28px 30px; display: grid; grid-template-columns: 56px 1fr 1.1fr; gap: 28px; align-items: start; }
.arch-num { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--accent-lite); color: var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; }
.arch-row h3 { margin-bottom: 6px; }
.arch-row > div > p { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; }
.arch-side { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; }
.arch-side ul { list-style: none; display: flex; flex-direction: column; }
.arch-side ul li { padding: 7px 0 7px 18px; position: relative; border-top: 1px solid var(--line-soft); }
.arch-side ul li:first-child { border-top: none; }
.arch-side ul li::before { content: ''; position: absolute; left: 0; top: calc(7px + 0.8em - 2.5px); width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); }

/* ─── Kontakt-Panel ─── */
.contact-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-bottom: 16px; }
.talk-list { list-style: none; display: flex; flex-direction: column; margin: 0 0 24px; }
.talk-list li { font-size: var(--fs-text); color: var(--text); padding: 12px 0 12px 22px; position: relative; border-top: 1px solid var(--line-soft); line-height: 1.6; }
.talk-list li:first-child { border-top: none; }
.talk-list li::before { content: ''; position: absolute; left: 0; top: calc(12px + 0.8em - 3px); width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }

@media (max-width: 980px) {
  .split-2, .steps-4, .result-grid, .team-lead, .module-body ul { grid-template-columns: 1fr; }
  .module { grid-template-columns: 1fr; gap: 14px; }
  .arch-row { grid-template-columns: 44px 1fr; }
  .arch-side { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .result-grid { grid-template-columns: 1fr; } }

@media (max-width: 1100px) { .lang-switch { margin-left: 0; } }


/* ════════════════════════════════════════════════
   BEITRAGSSEITEN (Redaktionssystem)
   ════════════════════════════════════════════════ */

/* Grundraster: eine Spalte. Nur wenn {{BILD}} gefüllt ist, entsteht eine Seitenspalte. */
.beitrag-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: start; }
.beitrag-grid:has(.beitrag-media:not(:empty)) { grid-template-columns: minmax(0, 1fr) 300px; }
.beitrag-media:empty { display: none; }
.beitrag-media { position: sticky; top: 96px; }
.beitrag-media img { width: 100%; height: auto; display: block; border-radius: var(--r-lg); border: 1px solid var(--line); }
.beitrag-media figcaption { margin-top: 10px; font-size: 0.82rem; color: var(--faint); line-height: 1.5; }

/* Beitragsinhalt darf nie horizontal überlaufen */
.article-body { max-width: 760px; min-width: 0; }
.article-body img, .article-body video, .article-body iframe { max-width: 100%; height: auto; }
.article-body pre { overflow-x: auto; }
.article-body table.article-table { display: block; overflow-x: auto; max-width: 100%; }
.article-hero h1 { overflow-wrap: break-word; }

@media (max-width: 980px) {
  .beitrag-grid, .beitrag-grid:has(.beitrag-media:not(:empty)) { grid-template-columns: minmax(0, 1fr); }
  .beitrag-media { position: static; max-width: 480px; }
}

/* Themenlegende (kein Filter — bewusst nicht interaktiv) */
.topic-legend { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

@media (max-width: 640px) { .brand-name { display: none; } }


/* ─── Statusmeldung Kontaktformular ─── */
.form-status { display: flex; gap: 13px; align-items: flex-start; padding: 16px 20px; border-radius: var(--r-md); margin-bottom: 22px; border: 1px solid var(--line); background: var(--bg-soft); }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.form-status p { font-size: 0.92rem; line-height: 1.6; color: var(--text); margin: 0; }
.form-status strong { display: block; font-weight: 700; margin-bottom: 2px; }
.form-status.is-ok { border-color: var(--accent-2); background: var(--accent-lite); }
.form-status.is-ok svg { color: var(--accent); }
.form-status.is-error { border-color: #d4a03c; background: #fdf4e3; }
.form-status.is-error svg { color: #a06010; }
[data-theme="dark"] .form-status.is-error { border-color: #8a6a2a; background: rgba(160,96,16,0.16); }
[data-theme="dark"] .form-status.is-error svg { color: #e0b060; }


.legal-intro { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; max-width: 62ch; margin-top: 20px; }

.info-i { display: inline-grid; place-items: center; width: 13px; height: 13px; border: 1px solid var(--accent-2); border-radius: 50%; font-size: 0.54rem; font-weight: 700; font-style: normal; line-height: 1; color: var(--accent); vertical-align: 0.12em; margin-left: 2px; cursor: help; flex-shrink: 0; }
.info-i:hover, .info-i:focus-visible { background: var(--accent-lite); outline: none; }

.info-i-lg { width: 20px; height: 20px; font-size: 0.76rem; margin-left: 0; cursor: default; margin-right: 9px; vertical-align: -0.22em; }
.info-i-lg:hover { background: transparent; }


/* ════════════════════════════════════════════════════════════════════
   SÄULENSYSTEM — Neugestaltung 2026-09-06
   Vier Säulen auf drei rechtlichen Grundlagen. Jede Säule ist gleich
   gebaut, damit die Unterschiede in der Sache auffallen und nicht im
   Layout untergehen.
   ════════════════════════════════════════════════════════════════════ */

/* ─── Säulenfläche ─── */
.pillars { display: flex; flex-direction: column; }
.pillar {
  display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 56px; padding: 56px 0; border-top: 1px solid var(--line);
}
.pillar:first-child { border-top: none; padding-top: 8px; }
.pillar-aside { position: sticky; top: 96px; align-self: start; }
.pillar-num {
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.pillar-num::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.pillar h2 { font-size: var(--fs-sub); line-height: 1.25; margin-bottom: 14px; }
.pillar-promise { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; }
.pillar-body > p { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; max-width: 76ch; }
.pillar-body > p + p { margin-top: 14px; }
.pillar-figure { margin-bottom: 22px; }

/* ─── Leistungsrahmen: eigenes Bauteil, gleiche Position, Fließtextstärke ─── */
.scope {
  margin-top: 28px; padding: 20px 22px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.scope-label {
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 9px;
}
.scope p { font-size: var(--fs-text); font-weight: 400; color: var(--text); line-height: 1.7; max-width: 82ch; }
.scope p + p { margin-top: 10px; }
.scope-strip { background: var(--bg-soft); }
.scope-strip .scope { background: var(--bg-card); }

/* ─── Rollenhinweis: eigenständiges Bauteil, keine Fußzeile ─── */
.role-note {
  display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); gap: 40px;
  padding: 36px 40px; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.role-note-label {
  font-family: var(--font-display); font-size: var(--fs-sub); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.3; color: var(--text);
}
.role-note p { font-size: var(--fs-text); color: var(--text); line-height: 1.75; max-width: 84ch; }

/* ─── Leistungspunkte als Datenzeilen ─── */
.spec { display: flex; flex-direction: column; margin-top: 20px; }
.spec-row {
  display: grid; grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
  gap: 28px; padding: 16px 0; border-top: 1px solid var(--line-soft);
}
.spec-row:first-child { border-top: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 1px solid var(--line-soft); }
.spec-key { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--text); letter-spacing: 0.01em; line-height: 1.5; }
.spec-val { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }
.spec-val strong { color: var(--text); font-weight: 600; }

/* ─── Aufzählung im Säulenkörper ─── */
.plainlist { list-style: none; display: flex; flex-direction: column; margin-top: 16px; }
.plainlist li {
  font-size: 0.96rem; color: var(--text); line-height: 1.65;
  padding: 10px 0 10px 20px; position: relative; border-top: 1px solid var(--line-soft);
}
.plainlist li:first-child { border-top: 1px solid var(--line); }
.plainlist li:last-child { border-bottom: 1px solid var(--line-soft); }
.plainlist li::before {
  content: ''; position: absolute; left: 0; top: calc(10px + 0.82em - 3px);
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2);
}
.plainlist.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }

/* ─── Unterleistung innerhalb einer Säule ─── */
.sub { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.sub-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.sub h3 { font-size: 1.06rem; line-height: 1.35; }
.sub-tag {
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
}
.sub > p { font-size: 0.96rem; color: var(--muted); line-height: 1.75; max-width: 80ch; }
.sub > p + p { margin-top: 12px; }

/* ─── KI-Verordnung als Querschnittsfaden ─── */
.ai-thread {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line);
}
.ai-mark {
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  padding: 4px 9px; border: 1px solid var(--accent-lite); border-radius: 4px;
  background: var(--accent-lite); white-space: nowrap; flex-shrink: 0;
}
.ai-thread p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; max-width: 78ch; }

/* KI-Kompetenz: der eine Ort, an dem der Faden sichtbar getragen wird */
.ai-block {
  margin-top: 26px; padding: 30px 32px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.ai-block .ai-mark { margin-bottom: 14px; display: inline-block; }
.ai-block h3 { font-size: var(--fs-sub); margin-bottom: 12px; line-height: 1.3; }
.ai-block p { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; max-width: 80ch; }
.ai-block p + p { margin-top: 12px; }

/* ─── Ausblick-Auszeichnung ─── */
.outlook-frame {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-card); padding: 26px 30px; box-shadow: var(--shadow-sm);
}
.outlook-frame p { font-size: var(--fs-text); color: var(--text); line-height: 1.75; max-width: 84ch; }
.outlook-frame .soon-badge { margin-bottom: 14px; }

/* ─── Modulliste des Portals ─── */
.modlist { display: flex; flex-direction: column; margin-top: 8px; }
.mod {
  display: grid; grid-template-columns: 48px minmax(0, 260px) minmax(0, 1fr);
  gap: 28px; padding: 26px 0; border-top: 1px solid var(--line);
}
.mod:last-child { border-bottom: 1px solid var(--line); }
.mod-num { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--accent); padding-top: 2px; }
.mod h3 { font-size: 1.06rem; line-height: 1.35; }
.mod-lead { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }
.mod-lead + .mod-lead { margin-top: 10px; }
.mod-items { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.mod-items li {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 400; color: var(--muted);
  background: var(--bg-soft); border: 1px solid var(--line); padding: 4px 9px; border-radius: 4px;
}
.mod-xref {
  margin-top: 12px; font-size: 0.9rem; color: var(--muted); line-height: 1.65;
  padding-left: 14px; border-left: 2px solid var(--line);
}
.mod-xref a { color: var(--accent); font-weight: 600; }

/* ─── Paketübersicht, ohne Preise, für Preise vorbereitet ─── */
.pkgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 8px; }
.pkg { background: var(--bg-card); padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; }
.pkg-name { font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pkg h3 { font-size: 1.02rem; line-height: 1.35; }
.pkg p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.pkg-price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: 0.8rem; color: var(--faint); }

/* ─── Zwei Einstiege ─── */
.entries { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.entry { background: var(--bg-card); padding: 34px 36px; display: flex; flex-direction: column; }
.entry-label { font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.entry h3 { font-size: var(--fs-sub); margin-bottom: 10px; line-height: 1.3; }
.entry p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; margin-bottom: 22px; flex: 1; }
.remind { display: flex; gap: 8px; flex-wrap: wrap; }
.remind input[type=email] {
  flex: 1 1 200px; min-width: 0; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 0.94rem; color: var(--text); background: var(--bg);
}
.remind input[type=email]:focus { outline: none; border-color: var(--accent-2); }
.remind button {
  padding: 12px 20px; min-height: 44px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--r-sm); font-family: inherit;
  font-weight: 600; font-size: 0.92rem; cursor: pointer; white-space: nowrap;
}
.remind button:hover { background: var(--accent-2); }
.remind-note { font-size: 0.8rem; color: var(--faint); line-height: 1.55; margin-top: 10px; }
.remind-note a { color: var(--accent); }

/* ─── Team als Liste ─── */
.people { display: flex; flex-direction: column; margin-top: 8px; }
.person-row {
  display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  column-gap: 72px; row-gap: 0; padding: 28px 0; border-top: 1px solid var(--line);
}
.person-row:last-child { border-bottom: 1px solid var(--line); }
.person-name { font-family: var(--font-display); font-size: 1.14rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.person-role { font-size: 0.94rem; color: var(--accent); font-weight: 600; margin-top: 5px; line-height: 1.55; }
.person-bg { font-family: var(--font-mono); font-size: 0.78rem; color: var(--faint); margin-top: 7px; letter-spacing: 0.01em; }
.quals { list-style: none; display: flex; flex-direction: column; }
.quals li {
  font-size: 0.94rem; color: var(--text); line-height: 1.6;
  padding: 9px 0; border-top: 1px solid var(--line-soft);
}
.quals li:first-child { border-top: none; }


/* ─── Prozessschritte ─── */
.steps {
  display: grid; grid-template-columns: max-content minmax(0, 300px) minmax(0, 1fr);
  column-gap: 32px; row-gap: 0; margin-top: 8px;
}
.step {
  display: grid; grid-template-columns: subgrid; grid-column: 1 / -1;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-no { font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); padding-top: 3px; white-space: nowrap; }
.step h3 { font-size: 1.06rem; line-height: 1.35; }
.step p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

/* ─── Säulenübersicht auf der Startseite ─── */
.overview {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: 1px; row-gap: 0;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.ov {
  background: var(--bg-card); padding: 32px 30px;
  display: grid; grid-template-rows: subgrid; grid-row: 1 / -1;
  text-decoration: none; color: inherit; transition: background 0.18s;
}
.ov:hover { background: var(--bg-soft); }
.ov-num { font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.ov h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.ov-promise { font-size: 0.94rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.ov-items { list-style: none; display: flex; flex-direction: column; margin-top: 0; align-self: start; }
.ov-items li { font-size: 0.88rem; color: var(--text); padding: 8px 0; border-top: 1px solid var(--line-soft); line-height: 1.5; }
.ov-more { font-size: 0.88rem; font-weight: 600; color: var(--accent); margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.ov:hover .ov-more { gap: 10px; }

/* ─── Nachgeordneter Block, ruhiger als die Säulenübersicht ─── */
.quiet {
  display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 40px;
  padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.quiet-label { font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.quiet h3 { font-size: 1.06rem; margin-top: 10px; line-height: 1.35; }
.quiet p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; max-width: 78ch; }
.quiet p + p { margin-top: 10px; }

/* ─── Responsiv ─── */
@media (max-width: 1240px) {
  .overview { grid-template-columns: 1fr 1fr; grid-template-rows: none; row-gap: 1px; }
  .ov { display: flex; flex-direction: column; grid-template-rows: none; grid-row: auto; }
  .ov-items { margin-top: auto; align-self: auto; }
}
@media (max-width: 1100px) {
  .pillar, .role-note, .spec-row, .mod, .person-row, .quiet { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; row-gap: 0; }
  .step { grid-template-columns: 1fr; grid-column: auto; }
  .pillar { gap: 28px; }
  .pillar-aside { position: static; }
  .role-note { gap: 18px; padding: 28px 26px; }
  .spec-row, .mod, .person-row, .quiet { gap: 12px; }
  .step { gap: 12px; }
  .pkgs, .entries { grid-template-columns: 1fr; }
  .plainlist.cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .overview { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .entry { padding: 26px 24px; }
  .scope { padding: 18px; }
  .ai-block { padding: 24px 22px; }
}


/* ─── Rückmeldung nach dem Absenden ─── */
.form-feedback {
  margin-bottom: 28px; padding: 20px 24px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--bg-card);
  border-left: 3px solid var(--accent);
}
.form-feedback strong { display: block; font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-feedback p { font-size: var(--fs-text); color: var(--muted); line-height: 1.7; max-width: 80ch; }
.form-feedback.is-error { border-left-color: var(--state); background: var(--state-lite); }
.form-feedback.is-error p { color: var(--text); }
.form-feedback:focus { outline: 2px solid var(--accent-2); outline-offset: 3px; }


/* ─── Verweis auf eine Säule, die auf einer eigenen Seite liegt ─── */
a.pillar-ref {
  display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 56px;
  padding: 34px 0; border-top: 1px solid var(--line);
  text-decoration: none; color: inherit;
}
a.pillar-ref:hover { background: var(--bg-soft); }
.pillar-ref .pillar-num { margin-bottom: 12px; }
.pillar-ref h2 { font-size: var(--fs-sub); line-height: 1.25; margin-bottom: 0; }
.pillar-ref-body { display: flex; flex-direction: column; gap: 12px; }
.pillar-ref-body p { font-size: var(--fs-text); color: var(--muted); line-height: 1.75; max-width: 76ch; }
.pillar-ref-go { font-size: 0.92rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; transition: gap 0.15s; }
a.pillar-ref:hover .pillar-ref-go { gap: 11px; }

/* ─── Bildmotive auch auf schmalen Viewports ─── */
@media (max-width: 980px) {
  .hero-right { display: block; }
  .hero-right .ph-figure { aspect-ratio: 16 / 9; }
}
@media (max-width: 1100px) {
  a.pillar-ref { grid-template-columns: 1fr; gap: 14px; }
}


/* Letzte Unterleistung einer Säule: gleicher Bodenabstand wie bei Säulen mit Leistungsrahmen */
.pillar-body > .sub:last-child { padding-bottom: 4px; }
.pillar-body > .sub:last-child > .plainlist:last-child li:last-child { border-bottom: 1px solid var(--line-soft); }


/* ─── Bildmotive im Dark Mode ───
   Umkehr mit Farbtondrehung: erhält Grün und Ockerton und trifft die dunkle
   Grundfläche. Faktor .92 statt 1, damit die Motivfläche nicht schwärzer wird
   als der Seitengrund. Ersetzbar durch zehn dunkle Dateivarianten. */
[data-theme="dark"] .ph-figure img {
  filter: invert(.92) hue-rotate(180deg) saturate(1.15) contrast(.95);
}

/* ─── F3 · Kopfzeilen-Pille: nur an den Mittelpunkten umbrechen ─── */
.eyebrow .nb { white-space: nowrap; }


/* ─── A1 · Wortabstand für Überschriften mit eigener negativer Laufweite ─── */
.note strong, .hrc-title, .approach-label, .highlight-quote, .cta-band h3,
.layer h3, .pillar-promise, .role-note-label, .person-name, .ov h3,
.pkg h3, .entry h3, .mod h3, .step h3, .sub h3 { word-spacing: 0.06em; }

/* ─── A2 · Kopfzeilen-Pille darf umbrechen ─── */
.eyebrow { flex-wrap: wrap; row-gap: 2px; }


/* ─── Pflichtfeldkennzeichnung ─── */
.req { color: var(--accent); font-weight: 700; }
.req-legend { font-size: 0.82rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
