/* ==========================================================================
   WSS Mediationszentrum Südwest
   Corporate Design WSS – Hausfarben & Typografie 2026
   ========================================================================== */

/* Webfonts – Klavika Basic (Headlines) und Yantramanav (Fließtext)
   Lokale Schriftdateien aus dem WSS Corporate Design */
@font-face {
  font-family: 'Klavika';
  src: url('../fonts/KlavikaBasic-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Klavika';
  src: url('../fonts/KlavikaBasic-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Yantramanav';
  src: url('../fonts/Yantramanav-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Yantramanav';
  src: url('../fonts/Yantramanav-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Primärfarben – WSS Corporate Design */
  --color-navy: #21426E;          /* WSS Dunkelblau – Hauptfarbe (PANTONE 295C) */
  --color-navy-dark: #142A48;     /* dunklerer Ton für Topbar, Footer */
  --color-navy-light: #366092;    /* WSS Mittelblau */
  --color-aqua: #009FE3;          /* WSS Hellblau – Akzent (PANTONE Process CYAN C) */
  --color-aqua-dark: #007FB8;     /* dunklerer Hellblau-Ton (Hover) */
  --color-yellow: #FAB81E;        /* WSS Gold – Highlight (sparsam!) */

  /* Sekundärfarben – aus dem WSS Design-System */
  --color-gray: #BABABA;          /* Hellgrau */
  --color-bg-soft: #EEEFF6;       /* Sehr helles Blau-Grau (RGB 238/239/246) */
  --color-blue-light: #B8CCE4;    /* Hellblau – Tabellen */
  --color-blue-very-light: #DBE5F1; /* Sehr helles Blau – Tabellen alt */

  /* Funktionale Tokens */
  --color-text: #21426E;          /* Fließtext: leicht ins Dunkelblaue gezogen */
  --color-text-body: #2D3748;     /* Fließtext-Schwarz für lange Lesetexte */
  --color-text-muted: #6B7280;
  --color-bg-light: var(--color-bg-soft);
  --color-border: #DBE5F1;        /* Sehr helles Blau als Border */
  --color-white: #FFFFFF;

  /* Typografie */
  --font-display: 'Klavika', 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'Yantramanav', 'Helvetica Neue', Arial, sans-serif;

  --radius: 0;     /* WSS Corporate Design: spitze Ecken */
  --shadow-sm: 0 2px 6px rgba(33, 66, 110, 0.08);
  --shadow-md: 0 6px 20px rgba(33, 66, 110, 0.12);
  --shadow-lg: 0 16px 40px rgba(33, 66, 110, 0.18);

  --container: 1200px;
  --container-wide: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-body);
  background: var(--color-white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-aqua-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--color-navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin: 0 0 0.6em 0;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.45rem); letter-spacing: 0.02em; }
h4 { font-size: 1rem; letter-spacing: 0.04em; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Top-Bar
   ========================================================================== */
.topbar {
  background: var(--color-navy-dark);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.topbar .container-wide {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a {
  color: var(--color-white);
  opacity: 0.85;
  text-transform: uppercase;
}
.topbar a:hover { opacity: 1; color: var(--color-aqua); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}
.site-header .logo svg,
.site-header .logo img {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 1280px) {
  .site-header .logo img { height: 48px; }
}
@media (max-width: 1100px) {
  .site-header .logo img { height: 42px; }
}
@media (max-width: 700px) {
  .site-header .logo img { height: 36px; }
}

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-navy);
  font-weight: 500;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 10px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .main-nav a { font-size: 12.5px; padding: 10px 7px; letter-spacing: 0.02em; }
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-navy);
  border-bottom-color: var(--color-yellow);
}
.main-nav .btn-primary {
  margin-left: 10px;
  border-bottom: none;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.main-nav a.btn-primary,
.main-nav a.btn-primary:hover,
.main-nav a.btn-primary:active {
  color: var(--color-white);
}
@media (max-width: 1180px) {
  .main-nav .btn-primary { padding: 9px 12px; font-size: 12px; }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--color-navy);
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav a:hover, .main-nav a.active {
    background: var(--color-bg-light);
    border-bottom-color: var(--color-border);
  }
  .main-nav .btn-primary { margin: 12px 24px; text-align: center; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  padding: 14px 30px;
  border-radius: 0;          /* spitze Ecken (WSS Corporate Design) */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn-primary:hover {
  background: var(--color-aqua);
  border-color: var(--color-aqua);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-light {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}
.btn-light:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
/* Accent-Button: Gold mit Hover auf Türkis (für Buttons auf Navy-Hintergrund) */
.btn-accent {
  background: var(--color-yellow);
  color: var(--color-navy);
  border-color: var(--color-yellow);
}
.btn-accent:hover {
  background: var(--color-aqua);
  color: var(--color-white);
  border-color: var(--color-aqua);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
  padding: 140px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-besprechung.jpg") center/cover no-repeat;
  transform: scaleX(-1);
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,37,56,0.92) 0%, rgba(18,37,56,0.65) 50%, rgba(18,37,56,0.35) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 18ch;
  margin-bottom: 0.4em;
}
.hero .kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 16px;
  padding-left: 0;
}
.hero .kicker::before { display: none; }
.hero p.lead {
  font-size: 1.2rem;
  max-width: 38em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page Hero (kompakter) */
.page-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-hero-image, url("../img/szene-team.jpg")) center/cover no-repeat;
  opacity: 0.35;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,37,56,0.45) 0%, rgba(18,37,56,0.85) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.3em;
}
.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 60ch;
  margin: 0;
}
.breadcrumb {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb a { color: var(--color-aqua); }

/* ==========================================================================
   Section
   ========================================================================== */
section { padding: 72px 0; }
section.section-tight { padding: 48px 0; }
@media (max-width: 700px) { section { padding: 52px 0; } }
section.section-light { background: var(--color-bg-light); }
section.section-dark {
  background: var(--color-navy);
  color: var(--color-white);
}
section.section-dark h1,
section.section-dark h2,
section.section-dark h3 { color: var(--color-white); }
section.section-dark .kicker,
section.section-dark .section-head .kicker { color: var(--color-white); }
section.section-dark .kicker::before { background: var(--color-yellow); }
section.section-dark a { color: var(--color-aqua); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head--left { text-align: left; max-width: none; margin: 0 0 56px; }
.section-head .kicker,
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-navy);
  font-weight: 500;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-yellow);
  transform: translateY(-50%);
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--color-text-muted); }

/* ==========================================================================
   Grids
   ========================================================================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-navy);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 700;
}
.card:hover .icon { background: var(--color-aqua); }

/* Audience-Cards (Für wen?-Bereich): goldene Kreise, weiße Symbole */
.card.audience .icon {
  background: var(--color-yellow);
  color: var(--color-white);
}
.card.audience:hover .icon {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Format-Kacheln (Wo? Block – Vor Ort / Online / Hybrid / Telefon) */
.format-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 20px 22px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.format-tile:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--color-yellow);
  transform: translateY(-2px);
}
.format-tile .format-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.format-tile .format-icon svg { display: block; }
.format-tile h3 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.format-tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Vorteile-Icons (vertraulich, schneller, selbstbestimmt, kosteneffizient): SVG weiß */
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card:hover .benefit-icon { background: var(--color-aqua); }
.card h3 { margin-bottom: 12px; }
.card a.more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.card a.more::after { content: " →"; }

/* Card mit Bild oben */
.card-image {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-image:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-image .image-wrap {
  height: 200px;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2.6rem;
  position: relative;
  overflow: hidden;
}
.card-image .image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-yellow);
}
.card-image .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-image h3 { margin-top: 0; }
.card-image .meta {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ==========================================================================
   Two-Col Layout
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.two-col.reverse { grid-template-columns: 1fr 1fr; }
.two-col.reverse > :first-child { order: 2; }
.two-col > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.two-col .visual {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  height: 480px;        /* einheitliche Höhe */
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.two-col .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.two-col .visual.fallback {
  background: linear-gradient(135deg, var(--color-navy), var(--color-aqua));
}
.two-col .visual.fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-bridge.svg") center/cover no-repeat;
  opacity: 0.45;
}
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > :first-child { order: 0; }
  .two-col .visual { min-height: 280px; }
}

/* ==========================================================================
   Quote
   ========================================================================== */
.quote-block {
  position: relative;
  padding: 36px 32px 32px 80px;
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-navy);
  border-radius: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-body);
  font-style: italic;
}
.quote-block::before {
  content: "\201E";
  position: absolute;
  left: 18px;
  top: -10px;
  font-size: 6rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--color-yellow);
  line-height: 1;
}
.quote-block .author {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-navy);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Phasen-Steps
   ========================================================================== */
.phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
@media (max-width: 1100px) { .phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .phases { grid-template-columns: 1fr; } }
.phase {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-navy);
  border-radius: 0;
  padding: 28px 22px;
  position: relative;
}
.phase .num {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}
.phase h4 { margin-top: 18px; color: var(--color-navy); font-size: 0.95rem; }

/* ==========================================================================
   Mediator-Karten
   ========================================================================== */
.mediator {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mediator:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mediator .photo {
  aspect-ratio: 4 / 5;
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}
.mediator .photo img,
.mediator .photo svg { width: 100%; height: 100%; object-fit: cover; }
.mediator .body { padding: 0; flex: 1; font-size: 15px; line-height: 1.55; display: flex; flex-direction: column; }
.mediator p { font-size: 14.5px; line-height: 1.5; margin-bottom: 0.8em; }
.mediator h4 { font-size: 0.78rem; letter-spacing: 0.08em; margin-bottom: 6px !important; margin-top: 12px !important; }
.mediator ul { font-size: 14px; line-height: 1.5; }
.mediator ul li { margin-bottom: 2px; }

/* Name + Rolle: dunkelblauer Block am Kopf der Karte */
.mediator .mediator-head {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 22px 24px 18px;
  margin: 0;
  border-bottom: 0;
  /* gleiche Höhe in allen drei Karten – egal ob die Rolle auf 1 oder 2 Zeilen umbricht */
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mediator .mediator-head h3 {
  color: var(--color-white);
  font-size: 1.45rem;
  margin: 0 0 6px;
  line-height: 1.15;
}
.mediator .mediator-head .role {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.mediator > .body > :not(.mediator-head) {
  margin-left: 24px;
  margin-right: 24px;
}
.mediator > .body > p:first-of-type {
  margin-top: 20px;
}
.mediator > .body > ul:last-child {
  margin-bottom: 24px;
}
.mediator ul { padding-left: 1.2em; margin: 0 0 14px; color: var(--color-text-muted); }
.mediator ul li { margin-bottom: 4px; }
.mediator .badge-todo {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
}

/* ==========================================================================
   Lists
   ========================================================================== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.checklist li {
  position: relative;
  padding: 8px 0 8px 36px;
  border-bottom: 1px solid var(--color-border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  background: var(--color-yellow);
  border-radius: 50%;
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 19px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* Comparison table – Mediation vs. Gericht */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  margin: 32px 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.compare > div {
  padding: 14px 22px;
}
/* Alternierende Zeilen – WSS-Tabellenstil: sehr helles Blau / Weiß */
.compare > div:nth-child(6n+1),
.compare > div:nth-child(6n+2),
.compare > div:nth-child(6n+3) {
  background: var(--color-blue-very-light);
}
.compare > div:nth-child(6n+4),
.compare > div:nth-child(6n+5),
.compare > div:nth-child(6n+6) {
  background: var(--color-white);
}
.compare .vs {
  background: var(--color-navy) !important;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare .left {
  text-align: right;
  color: var(--color-navy);
  font-weight: 500;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.compare .right {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */
.faq { border-top: 1px solid var(--color-border); }
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-navy);
  list-style: none;
  position: relative;
  padding-right: 36px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-navy);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) { margin-top: 14px; color: var(--color-text-muted); }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
/* Helle Variante – wenn die Section davor schon dunkelblau ist */
.cta-banner.alt {
  background: var(--color-bg-soft);
  color: var(--color-navy);
}
.cta-banner.alt h2 { color: var(--color-navy); }
.cta-banner.alt p { color: var(--color-text); opacity: 1; }
.cta-banner.alt .btn-primary { background: var(--color-navy); border-color: var(--color-navy); color: var(--color-white); }
.cta-banner.alt .btn-primary:hover { background: var(--color-aqua); border-color: var(--color-aqua); }
.cta-banner .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-banner p { margin: 0; opacity: 0.9; max-width: 50ch; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(33,66,110,0.18);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--color-text-muted); }
.checkbox-row input { width: auto; margin-top: 4px; }

/* ==========================================================================
   Contact-Info
   ========================================================================== */
.contact-info {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info h3 { margin-top: 0; }
.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 16px;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 4px 0 0; color: var(--color-navy); font-weight: 600; font-size: 1.05rem; }

/* ==========================================================================
   Footer (kompakt)
   ========================================================================== */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.78);
  padding: 36px 0 16px;
  font-size: 14px;
  line-height: 1.55;
}
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px 0;
  font-weight: 500;
}
.site-footer p { margin: 0 0 4px; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--color-aqua); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.footer-grid .brand-block { color: rgba(255,255,255,0.85); }
.footer-grid .brand-block img {
  margin-bottom: 10px;
  max-width: 320px !important;
  padding: 0 !important;
  background: transparent !important;
  /* Footer nutzt logo-white.png – Schriftzug ist weiß für dunklen Hintergrund */
}
.footer-grid .brand-block p { font-size: 13.5px; line-height: 1.5; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 4px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 18px; } }
.footer-bottom {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--color-aqua); }

/* ==========================================================================
   Card-Info (Sidebar-Boxen auf Kontakt / Termin)
   ========================================================================== */
.card-info {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 24px 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.card-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 16px;
  font-weight: 500;
}
.card-info p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0 0 12px;
}
.card-info p:last-child { margin-bottom: 0; }
/* Wichtig: nur reine Textlinks bekommen den Navy-Look, Buttons NICHT überschreiben */
.card-info a:not(.btn) { color: var(--color-navy); }
.card-info a:not(.btn):hover { color: var(--color-aqua); }
.card-info ul { padding-left: 18px; margin: 0; }
.card-info ul li { padding: 4px 0; font-size: 14.5px; color: var(--color-text); }
.card-info .btn { margin-top: 6px; }

/* Hervorgehobene Variante: soft Hintergrund + Gold-Akzent als linke Linie */
.card-info--highlight {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-yellow);
  box-shadow: var(--shadow-sm);
}
.card-info--highlight h4 {
  color: var(--color-navy);
}
.card-info--highlight ul {
  list-style: none;
  padding: 0;
}
.card-info--highlight ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 500;
}
.card-info--highlight ul li:last-child { border-bottom: none; }

/* ==========================================================================
   Cookie-Consent
   ========================================================================== */
body.consent-locked { overflow: hidden; }

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 50, 0.78);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  padding: 0 16px 16px;
  animation: consent-fade 0.25s ease-out;
}
@keyframes consent-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (min-width: 720px) {
  .consent-overlay { align-items: center; padding: 24px; }
}

.consent-box {
  background: var(--color-white);
  max-width: 760px;
  width: 100%;
  padding: 28px 28px 22px;
  border-top: 4px solid var(--color-yellow);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text);
}
@media (min-width: 720px) {
  .consent-box { padding: 34px 36px 28px; }
}
.consent-box h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: 0;
}
.consent-box p { margin: 0 0 16px; }
.consent-box a { color: var(--color-navy); text-decoration: underline; }
.consent-box a:hover { color: var(--color-aqua); }

.consent-categories {
  margin: 18px 0 22px;
  padding: 16px 18px;
  background: var(--color-bg-light, #f6f7f9);
  border: 1px solid var(--color-border, #e3e6ec);
}
.consent-cat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
}
.consent-cat + .consent-cat {
  border-top: 1px solid var(--color-border, #e3e6ec);
  margin-top: 8px;
  padding-top: 14px;
}
.consent-cat input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-navy);
  flex-shrink: 0;
}
.consent-cat input[disabled] { opacity: 0.6; cursor: not-allowed; }
.consent-cat strong { color: var(--color-navy); }

.consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.consent-buttons .btn {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 12px 16px;
  font-size: 13px;
  text-align: center;
}
@media (max-width: 520px) {
  .consent-buttons { flex-direction: column; }
  .consent-buttons .btn { width: 100%; }
}

.consent-note {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--color-text-muted, #6a7280);
}

/* Map-Placeholder bei fehlender Maps-Einwilligung */
.map-consent-wrapper { background: var(--color-white); }
.map-placeholder {
  padding: 48px 28px;
  text-align: center;
  border: 1px dashed var(--color-border);
  background: var(--color-bg-light);
  color: var(--color-text-body);
}
.map-placeholder strong { font-family: var(--font-display); color: var(--color-navy); font-size: 1.1rem; }
.map-placeholder p { max-width: 560px; margin: 0 auto 10px; }
.map-placeholder a { color: var(--color-navy); text-decoration: underline; }
.map-placeholder a:hover { color: var(--color-aqua); }

/* P&P Logo-Link auf der Startseite (Kooperationssektion) */
.pnp-logo-link {
  display: block !important;
  align-self: flex-start !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 48px 0 !important;
  width: 360px !important;
  max-width: 100% !important;
  text-decoration: none !important;
  transition: transform 0.2s ease;
  box-sizing: border-box !important;
}
.pnp-logo-link img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}
.pnp-logo-link:hover {
  transform: translateY(-2px);
}
block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}
.pnp-logo-link:hover {
  transform: translateY(-2px);
}
