/* Seiten-CSS fuer /ki-beratung/. Bewusst klein gehalten: Grundlayout, Typo und
   Kopfzeile kommen aus colors_and_type.css, legal.css und icbar.css. Hier steht
   nur, was diese Seite zusaetzlich braucht. Die .faq-Regeln sind aus
   ki-produkte/ki-produkte.css uebernommen, damit der generierte FAQ-Block
   identisch aussieht wie auf den Produktseiten. */

/* Spezifitaet: legal.css ".doc p" (Element + Klasse) sticht die Klasse allein.
   Dieselbe Falle ist in ki-produkte.css dokumentiert. */
.doc p.kb-lead { font-size: 18px; line-height: 1.6; color: var(--navy-600); margin: 0 0 28px;
  text-wrap: pretty; }

.kb-sec { margin-top: 40px; }
.kb-sec > h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px;
  color: var(--navy-700); margin: 0 0 14px; letter-spacing: -.01em; }
.kb-sec > h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px;
  color: var(--navy-700); margin: 22px 0 8px; }

.kb-schritte { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: kb; }
.kb-schritte li { background: var(--cream-card); border: 1px solid var(--border-1);
  border-radius: var(--radius-md); padding: 16px 18px; counter-increment: kb; }
.kb-schritte li::before { content: counter(kb, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: var(--fg-brand); display: block; margin-bottom: 6px; }
.kb-schritte strong { font-family: var(--font-display); font-weight: 600; color: var(--navy-700); }

.kb-orte { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 0; padding: 0; list-style: none; }
.kb-orte li { font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; color: var(--navy-600); background: var(--cream-card);
  border: 1px solid var(--border-1); border-radius: var(--radius-pill); padding: 6px 12px; }

.kb-cta { margin-top: 40px; padding: 22px 24px; background: var(--cream-card);
  border: 1px solid var(--border-1); border-radius: var(--radius-md); }
.kb-cta p { margin: 0 0 14px; }
.kb-cta .btn { display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 15px; text-decoration: none; padding: 11px 20px; border-radius: var(--radius-pill);
  background: var(--ochre-700); color: #fff; transition: background .2s; }
.kb-cta .btn:hover { background: var(--ochre-600); }

/* FAQ: uebernommen aus ki-produkte/ki-produkte.css, damit der Generator-Block
   auf allen Seiten gleich aussieht. */
.faq { margin-top: 40px; }
.faq > h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--navy-700);
  margin: 0 0 16px; letter-spacing: -.01em; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--cream-card); border: 1px solid var(--border-1);
  border-radius: var(--radius-md); padding: 18px 18px; }
.faq-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--navy-700); margin: 0 0 8px; text-wrap: pretty; }
.faq-item p { font-size: 15px; line-height: 1.6; color: var(--navy-500); margin: 0; text-wrap: pretty; }
