/* ==========================================================================
   PRODOC DIGITAL – Shared Stylesheet
   Extracted and deduplicated from:
     - index.html        (lines 179–601)
     - workshops.html    (lines 100–644)
     - lokale-ki.html    (lines 102–956)
     - wissensmanagement.html (lines 89–903)
   ========================================================================== */


/* ==========================================================================
   SECTION 1: :root Custom Properties (ONCE)
   Identical across all four files.
   --r-xl and --cta-bg (alias of --bg-dark) added by pillar pages; included here.
   ========================================================================== */

:root {
  --bg:          #F3F5F8;
  --bg-white:    #FFFFFF;
  --bg-panel:    #ECF0F4;
  --bg-dark:     #151A27;
  --border:      #DDE3EC;
  --border-mid:  #C5CDD9;
  --text-1:      #0C1118;
  --text-2:      #48566A;
  --text-3:      #8496AC;
  --text-inv:    #EEF2F7;
  --accent:      #2E6FAD;
  --accent-lt:   #E8F2FB;
  --accent-mid:  rgba(46,111,173,0.10);
  --font-h:      'Raleway', sans-serif;
  --font-b:      'Inter', sans-serif;
  --nav-h:       62px;
  --max:         1140px;
  --px:          clamp(18px,5vw,68px);
  --r:           9px;
  --r-lg:        14px;
  /* --r-xl and --cta-bg used only by pillar pages (lokale-ki, wissensmanagement) */
  --r-xl:        22px;
  --cta-bg:      #151A27;
  --ease:        cubic-bezier(0.4,0,0.2,1);
}


/* ==========================================================================
   SECTION 2: Reset & Base (ONCE)
   index.html and workshops.html use identical compact rules.
   lokale-ki.html and wissensmanagement.html add: -webkit-text-size-adjust,
   color:var(--text-2) on body (not text-1), font-size:16px (not 15px),
   img reset, a:hover underline, ul list-style reset, and heading type scale.
   All rules are included here in their most complete form.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Note: index.html / workshops.html omit -webkit-text-size-adjust; pillar pages add it */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Note: index.html/workshops.html use color:var(--text-1), font-size:15px, line-height:1.65.
   lokale-ki/wissensmanagement use color:var(--text-2), font-size:16px, line-height:1.7.
   Both variants are preserved in the page-specific blocks below.
   The base rule here matches the pillar-page variant (most complete). */
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text-2);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Note: index.html/workshops.html use color:inherit; pillar pages use color:var(--accent) */
a { color: inherit; text-decoration: none; }

/* Added by lokale-ki/wissensmanagement */
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* index.html / workshops.html use .wrap; pillar pages use .container */
.wrap      { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }


/* ==========================================================================
   SECTION 3: Shared Components (ONCE each)
   ========================================================================== */

/* --------------------------------------------------------------------------
   3A: Typography (pillar pages only – lokale-ki & wissensmanagement identical)
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  color: var(--text-1);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   3B: Layout Utilities (pillar pages only – lokale-ki & wissensmanagement identical)
   -------------------------------------------------------------------------- */
.section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-intro { font-size: 1.1rem; color: var(--text-2); max-width: 700px; margin-bottom: 48px; }

/* Alternate-background section (workshops.html only) */
.sec-alt { background: var(--bg-white); }

/* --------------------------------------------------------------------------
   3C: Navigation – einheitliche Komponente für alle 7 Seiten
   Klassen: .nav, .nav-inner, .nav-logo (nur SVG), .nav-links, .nav-cta,
            .nav-hamburger, .nav-overlay, .nav-overlay-close
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(243,245,248,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 20px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--bg-panel); color: var(--text-1); text-decoration: none; }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--font-h);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #255d96; transform: translateY(-1px); text-decoration: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-1);
}
.nav-overlay-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-1);
}
@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   3D: Trust Strip
   index.html / workshops.html: .trust-strip, .trust-in, .t-item, .t-chk
   lokale-ki / wissensmanagement: .trust-strip, .trust-strip-inner, .trust-item,
     .trust-icon, .trust-label  — different class names & styles.
   Both sets preserved.
   -------------------------------------------------------------------------- */

/* Variant A: index.html & workshops.html */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-white); padding: 17px 0;
}
.trust-in {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
}
.t-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-3); white-space: nowrap;
}
.t-chk { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* Variant B: lokale-ki.html & wissensmanagement.html (trust-strip reused, inner differs) */
/* Note: .trust-strip already declared above; pillar pages use padding:20px 0 (not 17px)
   If applying this stylesheet to pillar pages, their .trust-strip padding is page-specific (see Section 4). */
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-right: 1px solid var(--border);
  flex: 1 1 auto;
  min-width: 180px;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.1rem; }
.trust-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-1);
}

/* --------------------------------------------------------------------------
   3E: Sections (general) — index.html & workshops.html
   Note: pillar pages use .section/.section-label/.section-intro (see 3B above)
   -------------------------------------------------------------------------- */
.sec { padding: clamp(56px,9vw,104px) 0; }
.sec-lbl {
  font-size: 11.5px; font-weight: 600; letter-spacing: .10em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.sec h2 { margin-bottom: 40px; }
.sec-lbl::before {
  content: ''; display: inline-block; width: 18px; height: 1px;
  background: var(--border-mid);
}
/* Note: index.html has font-size:clamp(24px,3vw,38px); workshops.html has clamp(22px,2.8vw,36px).
   Most complete value (index.html) used here; workshops.html override in Section 4. */
.sec-h2 {
  font-family: var(--font-h); font-size: clamp(24px,3vw,38px);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.12;
  color: var(--text-1); margin-bottom: 14px;
}
.sec-sub {
  font-size: 15.5px; color: var(--text-2); line-height: 1.72;
  max-width: 52ch; margin-bottom: 40px;
}
/* workshops.html only */
.sec-text {
  font-size: 15px; color: var(--text-2); line-height: 1.75; max-width: 64ch;
}
.sec-text p { margin-bottom: 16px; }
.sec-text p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   3F: Buttons — pillar pages (lokale-ki & wissensmanagement identical)
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.btn-primary:hover { background: #255d96; transform: translateY(-1px); text-decoration: none; }
.btn-secondary {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--bg-white);
  color: var(--accent);
  padding: 13px 26px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-lt); text-decoration: none; }
.btn-primary-dark {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.btn-primary-dark:hover { background: #255d96; text-decoration: none; }
.btn-outline-dark {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: rgba(255,255,255,.85);
  padding: 14px 28px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-decoration: none;
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); text-decoration: none; }

/* --------------------------------------------------------------------------
   3G: FAQ
   index.html / workshops.html: outer wrapper is .faq-list (border+overflow),
     items use .faq-chevron (SVG), open class .faq-item.open.
   lokale-ki / wissensmanagement: outer .faq-list is a flex column,
     items have individual borders, use .faq-arrow (circle div), aria-expanded.
   Shared selectors (.faq-item, .faq-q, .faq-a, .faq-a-inner) have different values.
   Both sets included — overlap selector differences noted.
   -------------------------------------------------------------------------- */

/* Variant A: index.html & workshops.html */
.faq-list {
  max-width: 780px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: var(--bg-white); border: none; cursor: pointer;
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-h); font-size: 15px; font-weight: 600;
  color: var(--text-1); text-align: left; line-height: 1.4;
  transition: background .15s;
}
.faq-q:hover { background: var(--accent-lt); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--text-3);
  transition: transform .25s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner {
  padding: 0 24px 18px 24px;
  font-size: 14px; color: var(--text-2); line-height: 1.7;
}

/* Variant B: lokale-ki.html & wissensmanagement.html
   Note: .faq-list, .faq-item, .faq-q, .faq-a, .faq-a-inner redeclared with different values.
   Place these after Variant A so pillar pages can override via selector specificity or source order. */
.faq-list-pillar {
  display: flex; flex-direction: column; gap: 8px; margin-top: 40px;
}
/* For pillar pages, use .faq-list-pillar as the outer wrapper class, OR override below: */
.faq-item-pillar {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-arrow {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: var(--bg-panel);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: transform .25s;
  color: var(--accent);
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); background: var(--accent-lt); }

/* --------------------------------------------------------------------------
   3H: CTA Section
   index.html / workshops.html: .cta-sec with grid overlay + .cta-h2, .cta-sub, .cta-btn
   lokale-ki / wissensmanagement: .cta-section (no grid overlay), .cta-inner, .cta-buttons
   Both sets preserved.
   -------------------------------------------------------------------------- */

/* Variant A: index.html & workshops.html */
.cta-sec {
  background: var(--bg-dark); position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,111,173,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,111,173,.05) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center; position: relative;
}
/* Note: index.html uses clamp(26px,3.2vw,42px); workshops.html uses clamp(24px,3vw,40px) */
.cta-h2 {
  font-family: var(--font-h); font-size: clamp(26px,3.2vw,42px);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.1;
  color: var(--text-inv); margin-bottom: 14px;
}
.cta-sub {
  font-size: 15px; color: rgba(238,242,247,.85); font-weight: 400; line-height: 1.7;
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; padding: 13px 26px;
  border-radius: 7px; font-size: 14.5px; font-weight: 500;
  transition: background .2s, transform .15s;
}
.cta-btn:hover { background: #235488; transform: translateY(-1px); }
.cta-contact {
  margin-top: 24px; font-size: 13px; color: rgba(238,242,247,.6); line-height: 1.7;
}
.cta-contact a {
  color: rgba(238,242,247,.85); border-bottom: 1px solid rgba(238,242,247,.3);
}
.cta-contact a:hover { color: var(--text-inv); }

/* Variant B: lokale-ki.html & wissensmanagement.html */
.cta-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
/* .cta-inner already declared above; pillar pages use max-width:700px (not 680px) */
.cta-inner-pillar {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   3I: Footer – einheitliche Komponente für alle 7 Seiten
   Klassen: .footer, .foot-grid (4 Spalten: Kontakt | leer | Netzwerk | Rechtliches),
            .foot-col, .foot-copy, .foot-linkedin
   -------------------------------------------------------------------------- */

.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 56px 0 32px; color: var(--text-2);
}
.foot-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 36px;
}
.foot-col h4 {
  font-family: var(--font-h); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-1); margin-bottom: 14px;
}
.foot-col p, .foot-col a {
  font-size: 13px; color: var(--text-2); line-height: 1.8; display: block;
}
.foot-col a:hover { color: var(--text-1); }
.foot-linkedin {
  display: inline-flex; align-items: center; gap: 7px;
}
.foot-linkedin svg { flex-shrink: 0; }
.foot-copy {
  max-width: var(--max); margin: 32px auto 0; padding: 24px var(--px) 0;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-3);
}
@media(max-width:700px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:440px) { .foot-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   3J: Scroll-Reveal Animations – einheitlich alle Seiten, .in trigger
   -------------------------------------------------------------------------- */
.rv {
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.stg > * {
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.stg.in > *:nth-child(1) { transition-delay: 0s;   opacity: 1; transform: none; }
.stg.in > *:nth-child(2) { transition-delay: .07s; opacity: 1; transform: none; }
.stg.in > *:nth-child(3) { transition-delay: .14s; opacity: 1; transform: none; }
.stg.in > *:nth-child(4) { transition-delay: .21s; opacity: 1; transform: none; }
.stg.in > *:nth-child(5) { transition-delay: .28s; opacity: 1; transform: none; }
.stg.in > *:nth-child(6) { transition-delay: .35s; opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   3K: Pillar-page shared components
   Comparison tables, Feature Blocks, Timeline, Scenario Cards, Cross-links —
   appear in both workshops.html and (differently styled) in lokale-ki &
   wissensmanagement.html. Shared structure; differences noted inline.
   -------------------------------------------------------------------------- */

/* -- Comparison Tables -- */
/* Variant A: workshops.html */
.comp-table-wrap {
  overflow-x: auto; margin: 32px 0;
  border: 1px solid var(--border); border-radius: var(--r-lg);
}
.comp-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-white); font-size: 13.5px;
}
.comp-table th {
  font-family: var(--font-h); font-size: 13px; font-weight: 600;
  letter-spacing: .02em; color: var(--text-1);
  background: var(--bg-panel); padding: 14px 18px;
  text-align: left; border-bottom: 1px solid var(--border);
}
.comp-table td {
  padding: 12px 18px; color: var(--text-2); line-height: 1.6;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--accent-lt); }
.comp-table td:first-child { font-weight: 500; color: var(--text-1); white-space: nowrap; }
.comp-table td strong { color: var(--text-1); font-weight: 500; }
.comp-table .note {
  font-size: 13px; color: var(--text-3); font-style: italic;
  padding: 12px 18px; border-top: 1px solid var(--border);
  background: var(--bg-panel);
}
@media(max-width:600px) {
  .comp-table { font-size: 12.5px; }
  .comp-table th, .comp-table td { padding: 10px 12px; }
}

/* -- Feature Blocks (alternating) -- */
/* Variant A: workshops.html (1fr 1fr, alternates via nth-child) */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: clamp(48px,7vw,80px);
}
.feature-block:nth-child(even) .feature-img-wrap { order: 2; }
.feature-block:nth-child(even) .feature-text { order: 1; }
.feature-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 8px 28px rgba(12,17,24,.07);
}
.feature-img-placeholder {
  width: 100%; aspect-ratio: 16/10;
  background: var(--bg-panel); border: 1px dashed var(--border-mid);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 12px; text-align: center; padding: 20px; line-height: 1.4;
}
.feature-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-panel);
  border-radius: var(--r-lg);
}
/* Note: lokale-ki uses .feature-img-wrap with aspect-ratio:4/3 (no overflow:hidden in workshops) */
.img-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 10px;
  font-size: 0.7rem;
  color: var(--text-3);
  background: rgba(238,241,246,.9);
  font-family: monospace;
  text-align: center;
  pointer-events: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.feature-text h3 {
  font-family: var(--font-h); font-size: clamp(17px,2vw,22px);
  font-weight: 600; color: var(--text-1); margin-bottom: 12px;
  letter-spacing: -.01em; line-height: 1.25;
}
.feature-text .feature-tag {
  display: inline-block; font-size: 11.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-lt);
  padding: 3px 10px; border-radius: 4px; margin-bottom: 12px;
}
.feature-text p {
  font-size: 14.5px; color: var(--text-2); line-height: 1.72; margin-bottom: 12px;
}
.feature-text p:last-child { margin-bottom: 0; }
.feature-meta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.feature-meta-item { font-size: 12.5px; color: var(--text-3); }
.feature-meta-item strong { color: var(--text-2); font-weight: 500; }
.feature-list { margin: 12px 0 12px 0; padding-left: 0; list-style: none; }
.feature-list li {
  font-size: 13.5px; color: var(--text-2); line-height: 1.65;
  padding: 3px 0 3px 18px; position: relative;
}
.feature-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 12px;
}
@media(max-width:820px) {
  .feature-block { grid-template-columns: 1fr; gap: 24px; }
  .feature-block:nth-child(even) .feature-img-wrap { order: -1; }
  .feature-block:nth-child(even) .feature-text { order: 2; }
}

/* -- Timeline -- */
/* Variant A: workshops.html (vertical line left, dot-circle, padding-left) */
.timeline {
  max-width: 720px; margin: 0 auto;
  position: relative; padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 1.5px; background: var(--border);
}
.timeline-step {
  position: relative; margin-bottom: 40px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -40px; top: 3px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--accent);
  z-index: 1;
}
.timeline-step h3 {
  font-family: var(--font-h); font-size: 16.5px; font-weight: 600;
  color: var(--text-1); margin-bottom: 8px; line-height: 1.35;
}
.timeline-step p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.timeline-meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-3); margin-top: 8px;
  padding: 4px 10px; background: var(--bg); border-radius: 4px;
}

/* -- Scenario Cards -- */
/* Variant A: workshops.html */
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.scenario-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 20px;
}
.scenario-card h4 {
  font-family: var(--font-h); font-size: 14px; font-weight: 600;
  color: var(--text-1); margin-bottom: 8px; line-height: 1.35;
}
.scenario-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }
@media(max-width:600px) { .scenario-grid { grid-template-columns: 1fr; } }

/* -- Cross-Link Cards -- */
/* Variant A: workshops.html */
.crosslink-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.crosslink-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: background .2s, border-color .2s; display: block;
}
.crosslink-card:hover { background: var(--accent-lt); border-color: var(--accent); }
.crosslink-card h3 {
  font-family: var(--font-h); font-size: 16px; font-weight: 600;
  color: var(--text-1); margin-bottom: 10px; line-height: 1.3;
}
.crosslink-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }
.crosslink-link { font-size: 13.5px; font-weight: 500; color: var(--accent); }
@media(max-width:600px) { .crosslink-grid { grid-template-columns: 1fr; } }

/* -- Fit-Check-Box (workshops.html only) -- */
.fit-box {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 40px; max-width: 680px; margin: 0 auto;
}
.fit-box h3 {
  font-family: var(--font-h); font-size: 18px; font-weight: 600;
  color: var(--text-1); margin-bottom: 20px; line-height: 1.35;
}
.fit-list { list-style: none; margin-bottom: 20px; }
.fit-list li {
  font-size: 14.5px; color: var(--text-2); line-height: 1.65;
  padding: 8px 0 8px 28px; position: relative;
  border-bottom: 1px solid var(--border);
}
.fit-list li:last-child { border-bottom: none; }
.fit-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }
.fit-note { font-size: 13px; color: var(--text-3); font-style: italic; line-height: 1.65; }
@media(max-width:600px) { .fit-box { padding: 24px; } }

/* -- Note Box (workshops.html only) -- */
.note-box {
  background: var(--bg); border-left: 3px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 20px; margin: 16px 0;
  font-size: 13.5px; color: var(--text-2); line-height: 1.65;
  font-style: italic;
}


/* ==========================================================================
   SECTION 4: Page-specific blocks
   ========================================================================== */

/* ===== index.html ===== */

/* body override for index.html: text-1 colour, 15px, 1.65 line-height */
/* (Apply via page-specific <style> or a body class .page-index) */

/* ===== Hero (alle Seiten) ===== */
.hero {
  padding-top: calc(var(--nav-h) + clamp(44px,7vw,88px));
  padding-bottom: clamp(44px,7vw,88px);
}
.hero .hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; min-height: 500px;
}
.hero-eye {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .10em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.eye-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-h1 {
  font-family: var(--font-h); font-size: clamp(32px,4.2vw,54px);
  font-weight: 600; line-height: 1.08; letter-spacing: -.02em;
  color: var(--text-1); margin-bottom: 22px;
}
.hero-h1 .hl { color: var(--accent); }
.hero-h1 .lt { font-weight: 300; }
.hero-sub {
  font-size: 15.5px; color: var(--text-2); line-height: 1.72;
  max-width: 48ch; margin-bottom: 32px;
}
.ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-p {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--text-1); color: #fff; padding: 11px 22px;
  border-radius: 7px; font-size: 14px; font-weight: 500;
  transition: background .2s, transform .15s;
}
.btn-p:hover { background: var(--accent); transform: translateY(-1px); }
.btn-t {
  font-size: 14px; color: var(--text-3);
  border-bottom: 1px solid var(--border); padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.btn-t:hover { color: var(--text-1); border-color: var(--text-1); }
.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg); display: block;
  box-shadow: 0 20px 56px rgba(12,17,24,.10), 0 4px 14px rgba(12,17,24,.06);
}
.img-placeholder {
  background: var(--bg-panel); border: 1px dashed var(--border-mid);
  border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 12px; text-align: center; padding: 16px;
  aspect-ratio: 4/5;
}
@media(max-width:820px) {
  .hero .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero .hero-img-wrap { order: -1; }
}

/* Service Cards – index.html */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 24px;
}
.service-card {
  background: var(--bg-white); padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.service-card:hover { background: var(--accent-lt); }
.service-img-wrap {
  position: relative;
  width: 100%; aspect-ratio: 16/10;
  margin-bottom: 18px;
  border-radius: var(--r);
  overflow: hidden;
}
.service-img-wrap .service-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); margin-bottom: 0; }
.service-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--r); margin-bottom: 18px;
}
.service-img-placeholder {
  width: 100%; aspect-ratio: 16/10;
  background: var(--bg-panel); border: 1px dashed var(--border-mid);
  border-radius: var(--r); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 12px; text-align: center;
}
.service-card h3 {
  font-family: var(--font-h); font-size: 16.5px; font-weight: 600;
  letter-spacing: -.01em; color: var(--text-1); margin-bottom: 12px; line-height: 1.32;
}
.service-card p {
  font-size: 13.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 8px;
}
.service-card p strong { color: var(--text-1); font-weight: 500; }
.service-link {
  font-size: 13.5px; font-weight: 500; color: var(--accent);
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
  transition: color .2s; display: inline-block;
}
.service-link:hover { color: var(--text-1); }

/* Reference card (4th tile) – index.html */
.service-ref {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 24px;
  display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center;
  transition: background .2s;
}
.service-ref:hover { background: var(--accent-lt); }
.service-ref-img { width: 120px; height: 120px; object-fit: cover; border-radius: var(--r); }
.service-ref-img-wrap {
  position: relative;
  width: 120px; height: 120px;
  flex-shrink: 0;
  border-radius: var(--r);
  overflow: hidden;
}
.service-ref-img-wrap .service-ref-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); }
.service-ref-img-placeholder {
  width: 120px; height: 120px; border-radius: var(--r);
  background: var(--bg-panel); border: 1px dashed var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 11px; text-align: center; padding: 8px;
  flex-shrink: 0;
}
.service-ref h3 {
  font-family: var(--font-h); font-size: 15px; font-weight: 600;
  color: var(--text-1); margin-bottom: 6px; line-height: 1.32;
}
.service-ref p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 8px; }
@media(max-width:820px) { .services-grid { grid-template-columns: 1fr; } }
@media(max-width:600px) {
  .service-ref { grid-template-columns: 1fr; }
  .service-ref-img-placeholder { width: 100%; height: auto; aspect-ratio: 16/9; }
}

/* About – index.html */
.about-grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 68px; align-items: start;
}
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 8px 28px rgba(12,17,24,.07);
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: var(--bg-panel); border: 1px dashed var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 13px; text-align: center; padding: 16px;
}
.about-bio {
  font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 28px; max-width: 48ch;
}
.trust-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
}
.trust-card-icon { font-size: 20px; margin-bottom: 8px; }
.trust-card h4 {
  font-family: var(--font-h); font-size: 13.5px; font-weight: 600;
  color: var(--text-1); margin-bottom: 5px; line-height: 1.3;
}
.trust-card p { font-size: 12.5px; color: var(--text-2); line-height: 1.6; }
@media(max-width:820px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-cards { grid-template-columns: 1fr; }
}

/* Process – index.html */
.proc-cols {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.proc-col { background: var(--bg-white); padding: 32px 22px; }
.proc-n {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 7px;
}
.proc-n::before {
  content: attr(data-n); width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700; flex-shrink: 0;
}
.proc-tit {
  font-family: var(--font-h); font-size: 16px; font-weight: 600;
  color: var(--text-1); margin-bottom: 9px; line-height: 1.35;
}
.proc-bod { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
@media(max-width:820px) { .proc-cols { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .proc-cols { grid-template-columns: 1fr; } }

/* Honest Approach – index.html */
.honest-sec {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.honest-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.honest-inner .sec-h2 { margin-bottom: 22px; }
.honest-inner p { font-size: 15.5px; color: var(--text-2); line-height: 1.75; }


/* ===== workshops.html ===== */


/* sec-h2 override for workshops.html (smaller than index.html) */
.workshops-page .sec-h2 {
  font-size: clamp(22px,2.8vw,36px);
}

/* About / Trainer section – workshops.html
   Differences vs index.html: col width 300px (not 360px), aspect-ratio 3/4 (not 4/5),
   .about-img-wrap added, .about-bio has no max-width */
.workshops-page .about-grid {
  display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start;
}
.about-img-wrap {
  position: relative;
}
.workshops-page .about-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 8px 28px rgba(12,17,24,.07);
}
.workshops-page .about-bio {
  font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 28px;
}
@media(max-width:820px) {
  .workshops-page .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* CTA h2 override for workshops.html */
.workshops-page .cta-h2 {
  font-size: clamp(24px,3vw,40px);
}


/* ===== lokale-ki.html ===== */

/* hero-eyebrow – used on pillar pages */
.hero-eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust strip padding override for pillar pages */
.lokale-ki-page .trust-strip,
.wissensmanagement-page .trust-strip { padding: 20px 0; }

/* Hero image aspect-ratio override for pillar pages (landscape, not portrait) */
.lokale-ki-page .hero-img,
.wissensmanagement-page .hero-img { aspect-ratio: 4/3; }
.lokale-ki-page .img-placeholder,
.wissensmanagement-page .img-placeholder { aspect-ratio: 4/3; }

/* What-is grid – lokale-ki.html */
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.what-is-text h2 { margin-bottom: 24px; }
.what-is-cards { display: flex; flex-direction: column; gap: 16px; }
.what-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  border-left: 4px solid var(--accent);
}
.what-card h3 { font-size: 1rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.what-card p { font-size: 0.95rem; }
@media (max-width: 820px) { .what-is-grid { grid-template-columns: 1fr; } }

/* Comp table variant B – lokale-ki / wissensmanagement
   Different from workshops.html: background set on wrap, font-size 0.92rem,
   th uses text-transform:uppercase, tr:hover uses var(--bg-panel) not var(--accent-lt) */
.comp-table-wrap-pillar {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-white);
  margin-top: 32px;
}
.comp-table-pillar {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comp-table-pillar th {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  background: var(--bg-panel);
  color: var(--text-2);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comp-table-pillar td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: top;
}
.comp-table-pillar tr:last-child td { border-bottom: none; }
.comp-table-pillar tr:hover td { background: var(--bg-panel); }
.comp-table-pillar td:first-child { font-weight: 600; color: var(--text-1); }
.comp-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-2);
  background: var(--bg-panel);
  border-radius: var(--r);
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
}

/* Feature blocks – lokale-ki (420px col, .flip modifier) */
.feature-blocks { display: flex; flex-direction: column; gap: 64px; margin-top: 40px; }
.feature-block-pillar {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
}
.feature-block-pillar.flip { grid-template-columns: 1fr 420px; }
.feature-block-pillar.flip .feature-img-wrap { order: 2; }
.feature-block-pillar.flip .feature-text { order: 1; }
.feature-block-pillar .feature-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-panel);
  aspect-ratio: 4/3;
}
.feature-block-pillar .feature-img { width: 100%; height: 100%; object-fit: cover; }
.feature-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.feature-block-pillar .feature-text h3 { margin-bottom: 12px; }
.feature-block-pillar .feature-text p { font-size: 0.97rem; }
.feature-scenarios {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-3);
  font-style: italic;
}
.feature-scenarios strong { color: var(--text-2); font-style: normal; }
@media (max-width: 820px) {
  .feature-block-pillar,
  .feature-block-pillar.flip { grid-template-columns: 1fr; }
  .feature-block-pillar.flip .feature-img-wrap,
  .feature-block-pillar.flip .feature-text { order: unset; }
}

/* Assessment section – lokale-ki.html */
.assessment-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.assessment-img {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.assessment-img img { width: 100%; height: auto; display: block; }
.assessment-steps { display: flex; flex-direction: column; gap: 20px; }
.assessment-step { display: flex; gap: 16px; align-items: flex-start; }
.assessment-num {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 0.85rem; font-weight: 700;
  margin-top: 2px;
}
.assessment-step-content h4 { font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.assessment-step-content p { font-size: 0.92rem; margin-bottom: 0; }
.assessment-meta {
  margin-top: 24px; padding: 16px 20px;
  background: var(--bg-panel); border-radius: var(--r);
  border-left: 3px solid var(--accent); font-size: 0.92rem;
}
.assessment-meta strong { color: var(--text-1); }
@media (max-width: 820px) {
  .assessment-grid { grid-template-columns: 1fr; }
  .assessment-img { order: -1; max-width: 480px; }
}

/* Hardware note – lokale-ki.html */
.hardware-note {
  margin-top: 20px; font-size: 0.9rem;
  color: var(--text-3); font-style: italic;
  background: var(--bg-panel); padding: 14px 18px; border-radius: var(--r);
}

/* Approach / Quote – lokale-ki.html */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.approach-quote {
  background: var(--bg-dark); border-radius: var(--r-lg);
  padding: 36px; color: rgba(255,255,255,.9);
}
.approach-quote p { font-size: 1.05rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.approach-quote cite { font-style: normal; font-size: 0.88rem; color: rgba(255,255,255,.6); }
.approach-img {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-panel); aspect-ratio: 3/4;
}
.approach-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-img { order: -1; max-width: 320px; }
}

/* Timeline – lokale-ki / wissensmanagement (shared, vertical flex column) */
.timeline-pillar {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.timeline-pillar::before {
  content: '';
  position: absolute;
  left: 19px; top: 24px; bottom: 24px;
  width: 2px;
  background: var(--border);
}
.timeline-pillar .timeline-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 36px 0;
  position: relative;
}
.timeline-pillar .timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 0.9rem; font-weight: 800;
  z-index: 1;
}
.timeline-content { padding-top: 8px; }
.timeline-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.timeline-content p { font-size: 0.93rem; color: var(--text-2); }

/* Case cards – lokale-ki.html */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.case-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
}
.case-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-3); background: var(--bg-panel);
  padding: 3px 10px; border-radius: 99px; margin-bottom: 12px;
}
.case-card h3 { font-size: 1rem; margin-bottom: 16px; }
.case-row { margin-bottom: 10px; font-size: 0.88rem; }
.case-row strong {
  color: var(--text-1); display: block;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px;
}
.case-note {
  margin-top: 12px; font-size: 0.82rem; color: var(--text-3);
  font-style: italic; padding-top: 12px; border-top: 1px solid var(--border);
}
@media (max-width: 820px) { .case-grid { grid-template-columns: 1fr; } }

/* USP section – lokale-ki.html */
.usp-section { background: var(--bg-white); }
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.usp-highlights { display: flex; flex-direction: column; gap: 20px; }
.usp-item { display: flex; gap: 14px; align-items: flex-start; }
.usp-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: var(--r); background: var(--accent-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-top: 2px;
}
.usp-item-text h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 4px; }
.usp-item-text p { font-size: 0.88rem; color: var(--text-2); }
@media (max-width: 820px) { .usp-grid { grid-template-columns: 1fr; } }

/* Crosslink section – lokale-ki / wissensmanagement */
.crosslink-section { background: var(--bg-panel); }
.crosslink-grid-pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.crosslink-card-pillar {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.crosslink-card-pillar h3 { font-size: 1.1rem; }
.crosslink-card-pillar p { font-size: 0.93rem; color: var(--text-2); }
.crosslink-link-pillar {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.9rem; color: var(--accent); margin-top: auto;
}
.crosslink-link-pillar:hover { text-decoration: underline; }
@media (max-width: 820px) { .crosslink-grid-pillar { grid-template-columns: 1fr; } }

/* Responsive for pillar pages */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .trust-item { min-width: 140px; padding: 8px 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}


/* ===== wissensmanagement.html ===== */

/* Stat Box */
.stat-box {
  background: var(--bg-dark); border-radius: var(--r-lg);
  padding: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,.65); line-height: 1.5; }
@media (max-width: 820px) { .stat-box { grid-template-columns: 1fr; } }

/* Two-column text */
.two-col-text {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; margin-top: 40px;
}
.two-col-text img.side-img {
  border-radius: var(--r-lg); width: 100%;
  aspect-ratio: 4/3; object-fit: cover; background: var(--bg-panel);
}
@media (max-width: 820px) { .two-col-text { grid-template-columns: 1fr; } }

/* Timeline sub-items (wissensmanagement-specific) */
.timeline-sub { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.timeline-sub-item {
  padding: 12px 16px; background: var(--bg-panel);
  border-radius: var(--r); font-size: 0.88rem;
}
.timeline-sub-item strong { color: var(--text-1); display: block; margin-bottom: 2px; font-size: 0.85rem; }

/* Scenario cards – wissensmanagement (different from workshops.html variant) */
.scenario-grid-wm {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.scenario-card-wm {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  border-left: 4px solid var(--accent);
}
.scenario-quote {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-1); font-style: italic; margin-bottom: 12px;
  font-family: 'Raleway', sans-serif;
}
.scenario-desc { font-size: 0.92rem; color: var(--text-2); }
@media (max-width: 820px) { .scenario-grid-wm { grid-template-columns: 1fr; } }

/* Datenschutz cards – wissensmanagement */
.ds-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.ds-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
}
.ds-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.ds-card p { font-size: 0.92rem; }
.ds-note {
  grid-column: 1 / -1;
  background: var(--bg-panel); border-radius: var(--r);
  padding: 16px 20px; font-size: 0.92rem;
  border-left: 3px solid var(--accent);
}
@media (max-width: 820px) {
  .ds-grid { grid-template-columns: 1fr; }
  .ds-note { grid-column: 1; }
}

/* Maturity Widget (Reifegradmodell) – wissensmanagement */
.maturity-widget {
  margin-top: 40px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.maturity-tabs {
  display: flex; border-bottom: 1px solid var(--border); overflow-x: auto;
}
.maturity-tab {
  flex: 1; min-width: 80px;
  padding: 14px 12px; text-align: center;
  font-family: 'Raleway', sans-serif; font-size: 0.82rem; font-weight: 700;
  color: var(--text-3); background: none; border: none; cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
}
.maturity-tab:hover { color: var(--accent); background: var(--accent-lt); }
.maturity-tab.active { color: var(--accent); border-bottom-color: var(--accent); background: var(--accent-lt); }
.maturity-tab .tab-num { display: block; font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }
.maturity-panels { padding: 32px; }
.maturity-panel { display: none; }
.maturity-panel.active { display: block; }
.maturity-panel-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.maturity-badge {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); background: var(--accent-lt);
  padding: 4px 12px; border-radius: 99px;
}
.maturity-panel h3 { font-size: 1.15rem; margin-bottom: 10px; }
.maturity-panel p { font-size: 0.93rem; }
.maturity-cta-hint {
  margin-top: 20px; padding: 16px 20px;
  background: var(--bg-panel); border-radius: var(--r);
  font-size: 0.9rem; border-left: 3px solid var(--accent);
}
.maturity-cta-hint a { color: var(--accent); font-weight: 600; }

/* Team Grid – wissensmanagement */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.team-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-1); }
.team-role { font-size: 0.8rem; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.team-card p { font-size: 0.88rem; color: var(--text-2); }
.team-card.highlight { border-color: var(--accent); border-width: 2px; background: var(--accent-lt); }
.team-card.aiteza { grid-column: 1 / -1; display: flex; gap: 20px; align-items: flex-start; }
.team-card.aiteza .aiteza-label {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: var(--accent);
  min-width: 80px; margin-top: 4px;
}
@media (max-width: 820px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card.aiteza { grid-column: 1 / -1; }
}
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }



/* ==========================================================================
   SECTION 5: Legal Pages (impressum.html, agb.html, datenschutzerklaerung.html)
   Shared legal layout, typography, and component styles.
   ========================================================================== */

.legal-page {
  padding-top: calc(var(--nav-h) + clamp(44px,7vw,72px));
  padding-bottom: clamp(56px,9vw,104px);
}
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 0 var(--px) }

.legal-page h1 {
  font-family: var(--font-h); font-size: clamp(28px,4vw,42px);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.1;
  color: var(--text-1); margin-bottom: 2rem; text-align: center;
}
.legal-page h2 {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
  color: var(--text-1); margin-top: 2.5rem; margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent); padding-bottom: .5rem; line-height: 1.3;
}
.legal-page h3 {
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  color: var(--text-1); margin-top: 1.5rem; margin-bottom: .75rem;
}
.legal-page p { font-size: 14.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 1rem; }
.legal-page ul, .legal-page ol { margin-bottom: 1.25rem; padding-left: 1.75rem; }
.legal-page li { font-size: 14.5px; color: var(--text-2); line-height: 1.75; margin-bottom: .4rem; }
.legal-page strong { color: var(--text-1); font-weight: 500 }
.legal-page a { color: var(--accent) }
.legal-page a:hover { text-decoration: underline }
.legal-page code {
  font-family: monospace; font-size: 13px; background: var(--bg-panel);
  padding: 1px 5px; border-radius: 4px;
}

/* Info box (accent blue left border) – used in impressum, agb, datenschutz */
.info-box {
  background: var(--accent-lt); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: 0 var(--r) var(--r) 0;
  padding: 1.5rem 1.75rem; margin: 1.5rem 0;
}
.info-box p:last-child { margin-bottom: 0 }

/* Highlight box (grey left border) – used in impressum, datenschutz */
.highlight-box {
  background: var(--bg-white); border: 1px solid var(--border);
  border-left: 3px solid var(--border-mid); border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.5rem; margin: 1.5rem 0;
}
.highlight-box p:last-child { margin-bottom: 0 }

/* Date box – used in agb only */
.date-box {
  background: var(--bg-white); border: 1px solid var(--border);
  border-left: 3px solid var(--border-mid); border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.5rem; margin: 1.5rem 0;
}
.date-box p { margin-bottom: 0 }

/* ===== Utility-Klassen (alle Seiten) ===== */
.bg-white   { background: var(--bg-white); }
.text-center { text-align: center; }
.mt-0  { margin-top: 0 !important; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.max-w-640 { max-width: 640px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
