/* ============================================
   Shared Stylesheet für alle Marken-Sites
   (schreiber-biz, ki-workshops-brandenburg, ki-praxis-brandenburg)
   Mobile-first, kein Framework
   ============================================ */

/* === Reset & Base === */
:root {
  /* Text colors: shared across all sites for readability consistency */
  --neutral-900: #1a202c;
  --neutral-700: #4a5568;
  --neutral-500: #718096;
  --neutral-300: #cbd5e0;
  --white: #ffffff;

  /* Per-site tokens are defined in css/tokens.css (loaded BEFORE this file):
     --primary, --primary-light, --neutral-50/100/200,
     --accent, --accent-hover, --accent-warm, --accent-rgb
     DO NOT define them here. */

  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1140px;
  --section-padding: 3rem 1.25rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--neutral-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

/* === Typography === */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.625rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--neutral-700);
}

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--neutral-50);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-dark p {
  opacity: 0.9;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: var(--font-family);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--neutral-100);
  color: var(--primary);
  transform: translateY(-1px);
}

/* === Header / Navigation === */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 420px) {
  .nav-logo {
    font-size: 1.05rem;
  }
}

.nav-logo:hover {
  color: var(--primary);
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo .nav-logo-tag {
  color: var(--neutral-700);
  font-weight: 400;
  font-size: 1em;
}

.nav-logo .nav-logo-tag::before {
  content: "\00b7";
  color: var(--accent);
  margin: 0 0.45em;
  font-weight: 700;
}

@media (max-width: 600px) {
  .nav-logo .nav-logo-tag {
    display: none;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  transition: all 0.3s;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  padding: 1rem;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-menu.active {
  display: block;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--neutral-700);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
}

.nav-menu a:hover {
  color: var(--primary);
  background: var(--neutral-50);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  text-align: center;
  border-radius: 6px !important;
  margin-top: 0.5rem;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 4rem 1.25rem;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 1.75rem;
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: var(--white);
}

.hero-usp {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.hero-claim {
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero-trust {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* === Pain Points === */
.pain-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pain-point {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pain-point p {
  font-style: italic;
  color: var(--neutral-700);
  margin: 0;
  font-size: 0.95rem;
}

/* === Angebote / Services === */
.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card .service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.service-card ul li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--neutral-700);
  font-size: 0.95rem;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-badge {
  display: inline-block;
  background: var(--neutral-100);
  color: var(--neutral-700);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-card-primary {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.08);
}

.service-promise {
  font-size: 0.9rem;
  color: var(--neutral-700);
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-200);
}

.service-promise strong {
  color: var(--accent);
}

.angebote-note {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.75rem;
  background: var(--neutral-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.7;
}

.angebote-note strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

/* === Praxiswissen / Artikel-Karten === */
.article-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 1.75rem 1.75rem 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.article-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--neutral-100);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-card__title {
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.article-card__title a {
  color: inherit;
  text-decoration: none;
}

/* Ganze Karte klickbar – Link der Überschrift spannt sich über die Karte */
.article-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.article-card { position: relative; }

.article-card:hover .article-card__title a {
  color: var(--accent);
}

.article-card__excerpt {
  color: var(--neutral-700);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.article-card__more {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}

/* === Warum / Arguments === */
.arguments-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.argument {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.argument-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--neutral-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.argument-icon svg {
  width: 24px;
  height: 24px;
}

.argument h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.argument p {
  font-size: 0.95rem;
  margin: 0;
}

/* === Prozess / Steps === */
.process-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

/* === Process-Flow (vertical, with connectors) === */
.process-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 720px;
  margin: 2rem auto 0;
  gap: 0;
}

.process-flow .process-step {
  background: var(--white, #fff);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  color: var(--primary);
  opacity: 0.55;
}

.process-connector svg {
  width: 28px;
  height: 28px;
  display: block;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-content h3 {
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.95rem;
  margin: 0;
}

.step-free {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

/* === Referenzen === */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.reference-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
}

.reference-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 1.5rem;
}

.reference-card h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.reference-card p {
  font-size: 0.9rem;
  margin: 0;
}

.reference-card a {
  font-size: 0.85rem;
  color: var(--primary-light);
}

/* Verlinkte Referenzen als Chip-/Pill-Liste */
.references-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.references-list li {
  margin: 0;
}

.references-list a {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.references-list a:hover,
.references-list a:focus {
  border-color: var(--primary);
  color: var(--accent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

/* === Förderung Banner === */
.foerderung-banner {
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.foerderung-banner h2 {
  color: var(--white);
}

.foerderung-banner p {
  color: var(--white);
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  padding: 4rem 1.25rem;
}

.cta-section h2 {
  margin-bottom: 0.75rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* === Kontakt === */
.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-info-item .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--neutral-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-item .icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item strong {
  display: block;
  color: var(--neutral-900);
  font-size: 0.9rem;
}

.contact-info-item span {
  color: var(--neutral-700);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--neutral-50);
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--neutral-900);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--neutral-500);
  margin-top: 0.75rem;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: flex-start;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.form-consent label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--neutral-700);
  line-height: 1.5;
  margin: 0;
}

.form-consent label a {
  color: var(--primary-light);
  text-decoration: underline;
}

.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-full {
  width: 100%;
  display: block;
}

/* === Footer === */
.site-footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 3rem 1.25rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col p {
  color: var(--neutral-300);
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: var(--neutral-300);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--neutral-500);
}

.footer-bottom a {
  color: var(--neutral-300);
}

/* === Utility === */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.section-intro {
  max-width: 700px;
  font-size: 1.05rem;
}

.section-intro.centered {
  margin: 0 auto 2rem;
  text-align: center;
}

/* === Legal Pages (Impressum/Datenschutz) === */
.legal-page {
  padding: 3rem 1.25rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-notice {
  background: #fffbea;
  border-left: 4px solid var(--accent-warm);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--neutral-700);
}

.legal-back {
  margin-top: 3rem;
  font-size: 0.9rem;
}

.nav-menu-static {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  position: static;
  box-shadow: none;
}

/* === Responsive: Tablet (640px+) === */
@media (min-width: 640px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero { padding: 5rem 1.5rem; }
  .hero h1 { font-size: 2.25rem; }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .pain-points {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* === Responsive: Desktop (960px+) === */
@media (min-width: 960px) {
  :root {
    --section-padding: 5rem 2rem;
  }

  h1 { font-size: 2.75rem; }

  .hero { padding: 6rem 2rem; }
  .hero h1 { font-size: 2.75rem; }
  .hero-subtitle { font-size: 1.2rem; }

  .nav-toggle { display: none; }

  .nav-menu {
    display: flex;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 0.25rem;
    align-items: center;
  }

  .nav-menu a {
    padding: 0.5rem 0.75rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .arguments-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* === Responsive: Large Desktop (1200px+) === */
@media (min-width: 1200px) {
  .hero h1 { font-size: 3rem; }
}

/* === Trainer-Block (ki-praxis-specific) === */
.trainer-block {
  max-width: 780px;
  margin: 1.5rem auto 0;
  padding: 2rem;
  background: var(--neutral-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.trainer-photo {
  flex: 0 0 200px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--neutral-100, #e8e8e8), var(--neutral-200, #cccccc));
  display: flex;
  align-items: center;
  justify-content: center;
}

.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trainer-photo-placeholder .placeholder-text {
  color: var(--neutral-500, #888);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trainer-text {
  flex: 1 1 280px;
  min-width: 0;
}

@media (max-width: 640px) {
  .trainer-block {
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .trainer-photo {
    flex: 0 0 auto;
    width: 160px;
    margin: 0 auto;
  }
}

.trainer-text h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.trainer-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.trainer-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.trainer-text .btn {
  margin-top: 0.5rem;
}

/* === Funnel-Selector (Einstieg) === */
.path-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.path-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.path-card-primary {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.08);
}

.path-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--neutral-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.path-icon svg {
  width: 22px;
  height: 22px;
}

.path-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.path-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.path-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.path-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  align-self: flex-start;
}

.path-link:hover {
  color: var(--accent-hover);
}

@media (min-width: 960px) {
  .path-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === Angebote-Gruppe (Section-Header innerhalb #angebote) === */
.angebote-group {
  margin: 2.5rem 0 1rem;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--neutral-200);
}

.angebote-group:first-of-type {
  margin-top: 2rem;
}

.services-grid.single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Analyse-Kachel: andere Akzentfarbe als "Haupt-Kachel" */
.service-card-analysis {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fafcff 0%, #ffffff 100%);
}

.service-card-analysis .service-number {
  background: var(--primary);
}

.service-card-analysis h3 {
  color: var(--primary);
}

/* === Team-Block (ki-praxis) === */

.team-block {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--neutral-200);
}

.team-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.team-intro {
  margin-bottom: 2rem;
  color: var(--neutral-700);
  max-width: 720px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--neutral-50);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.team-photo-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--neutral-200);
  border-radius: 8px;
  margin-bottom: 1rem;
  background-image: linear-gradient(
    135deg,
    var(--neutral-200) 0%,
    var(--neutral-200) 50%,
    var(--neutral-100) 50%,
    var(--neutral-100) 100%
  );
  background-size: 20px 20px;
}

.team-placeholder .team-name {
  color: var(--neutral-700);
  font-style: italic;
}

.team-name {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.team-role {
  color: var(--neutral-700);
  font-size: 0.9rem;
  margin: 0;
}

.team-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--neutral-700);
  font-style: italic;
}

/* === Cases (ki-praxis) === */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.case-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.case-placeholder {
  background: var(--neutral-50);
}

.case-type {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.case-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.case-metric {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* === Kind-LP Helfer === */

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.checklist li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-banner {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner p {
  color: var(--white);
  opacity: 0.9;
  margin: 1rem auto 2rem;
  max-width: 600px;
}

.back-to-main {
  text-align: center;
  padding: 2rem 0;
}

.back-to-main a {
  color: var(--neutral-700);
}

.back-to-main a:hover {
  color: var(--accent);
}

/* === Personal Hub (schreiber.biz) === */

.hero-personal {
  /* Subtilere Hero-Variante – erbt .hero, keine Override noetig */
}

.contact-simple {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}

.contact-simple .contact-info-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--neutral-50);
  border-radius: 6px;
}

.person-text p {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

/* === Personal Hub: Hero zweispaltig + Porträt === */
.hero-personal-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  text-align: left;
}
.hero-personal-text { flex: 1 1 360px; min-width: 0; }
.hero-personal-text .hero-usp,
.hero-personal-text .hero-subtitle { margin-left: 0; margin-right: 0; }
.hero-personal-text .hero-buttons { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
.hero-personal-photo { flex: 0 0 300px; }
.hero-personal-photo img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}
@media (max-width: 760px) {
  .hero-personal-grid { flex-direction: column; text-align: center; gap: 1.75rem; }
  .hero-personal-photo { flex: 0 0 auto; order: -1; }
  .hero-personal-photo img { width: 220px; }
  .hero-personal-text .hero-buttons { flex-direction: column; align-items: center; }
}

/* === Über mich: Text + Porträt === */
.person-grid {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.person-grid .person-text { flex: 1 1 auto; }
.person-photo { flex: 0 0 300px; }
.person-photo img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 28px rgba(26,54,93,0.18);
}
@media (max-width: 760px) {
  .person-grid { flex-direction: column; gap: 1.5rem; }
  .person-photo { flex: 0 0 auto; align-self: center; }
}

.placeholder-note {
  color: var(--neutral-700);
  font-style: italic;
  padding: 1.5rem;
  background: var(--neutral-50);
  border-radius: 6px;
}

/* TL;DR-Box: Citation-Friendly Snippet – strukturierte Frage/Antwort fuer LLMs + skim-readers */
.tldr-box {
  background: var(--neutral-100);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 2.5rem auto 2.5rem;
  max-width: 800px;
  font-size: 1.025rem;
  line-height: 1.6;
}

.tldr-box .tldr-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.tldr-box .tldr-question {
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.tldr-box p {
  margin: 0;
  color: var(--primary);
}

.tldr-box strong {
  color: var(--primary);
}

/* === FAQ: clickable summary === */
.faq-item summary {
  cursor: pointer;
  user-select: none;
}

.faq-item summary:hover {
  color: var(--primary);
}

/* === Container-Narrow (für Bio + Long-Form-Content) === */
.container-narrow {
  max-width: 760px;
}

/* === Longform-Artikel (Gedanken) === */
.longform h2 {
  margin-top: 2.5rem;
}
.longform p {
  line-height: 1.7;
}
.longform ul {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--neutral-700);
}
.longform li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* === Hero Bio (Olaf-Schreiber-Page) === */
.hero-bio .hero-bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.hero-bio-photo {
  flex: 0 0 240px;
}

.hero-bio-photo .trainer-photo {
  width: 240px;
  margin: 0;
}

.hero-bio-text {
  flex: 1 1 320px;
  min-width: 0;
}

.hero-bio-text .hero-claim {
  margin-bottom: 0.25rem;
}

.hero-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .hero-bio .hero-bio-grid {
    gap: 1.5rem;
    text-align: left;
  }
  .hero-bio-photo {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 auto;
  }
  .hero-bio-photo .trainer-photo {
    width: 180px;
  }
}

/* === Value-List (Wie ich arbeite) === */
.value-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.value-list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
  margin-bottom: 0.75rem;
  background: var(--neutral-50, #f7f7f7);
  border-radius: 0 8px 8px 0;
}

.value-list li strong {
  color: var(--primary);
}

/* === Inline-CTA-Block === */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 0.5rem 0;
}

.cta-meta {
  font-size: 0.9rem;
  color: var(--neutral-700, #555);
}

/* === Contact-Quick-Grid (Bio-Kontakt-Sektion) === */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.contact-quick-card {
  background: var(--white, #fff);
  border-radius: 12px;
  border: 1px solid var(--neutral-200, #e0e0e0);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.contact-quick-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--primary);
}

.contact-quick-card p {
  flex: 1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-quick-card .btn {
  align-self: flex-start;
}

.hub-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--neutral-700, #555);
  margin-top: 1.5rem;
}

/* === Submenu im Nav === */
.has-submenu {
  position: relative;
}

.has-submenu > a::after {
  content: " ▾";
  font-size: 0.7em;
  opacity: 0.65;
}

@media (min-width: 769px) {
  .has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white, #fff);
    border: 1px solid var(--neutral-200, #e0e0e0);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 100;
  }
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .has-submenu .submenu li {
    display: block;
  }
  .has-submenu .submenu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--neutral-900, #222);
    text-decoration: none;
    font-size: 0.95rem;
  }
  .has-submenu .submenu a:hover {
    background: var(--neutral-50, #f7f7f7);
    color: var(--primary);
  }
}

@media (max-width: 768px) {
  .has-submenu .submenu {
    list-style: none;
    padding: 0.25rem 0 0.5rem 1rem;
    margin: 0;
  }
  .has-submenu .submenu a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    opacity: 0.85;
  }
}

/* === Sticky Mobile-CTA-Bar === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 0.75rem 1rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  z-index: 90;
}

.sticky-cta-btn {
  display: block;
  text-align: center;
  background: var(--accent, #e53e3e);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
}

.sticky-cta-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 720px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
}

/* === Fotos: Section-Bild, Banner & Redner-Strip (2026-06) === */
.section-photo {
  margin: 2rem 0 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.section-photo img { width: 100%; height: auto; display: block; }
.section-photo figcaption {
  font-size: 0.85rem;
  color: var(--neutral-500, #777);
  padding: 0.6rem 0.2rem 0;
}

.photo-banner {
  border-radius: 10px;
  overflow: hidden;
  margin: 2.5rem 0;
}
.photo-banner img {
  width: 100%;
  height: clamp(200px, 28vw, 340px);
  object-fit: cover;
  display: block;
}

.speaker-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 0;
}
.speaker-strip figure { margin: 0; }
.speaker-strip img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.speaker-strip figcaption {
  font-size: 0.8rem;
  color: var(--neutral-500, #777);
  margin-top: 0.45rem;
  line-height: 1.4;
}
