/* =========================================================
   frutra Marketing-Site — globale Styles
   Tokens kommen aus styles/tokens.css (zuerst geladen).
   Hero-Block (.hero…) ist 1:1 aus _sources/hero-adenauer.html
   uebernommen — bitte Werte dort NICHT veraendern, ohne dass
   Wolfgang vorher gefragt wurde.
   ========================================================= */

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0c1620;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Layout-Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- TODO-Marker fuer Stub-Seiten ---------- */
.todo-marker {
  display: inline-block;
  padding: 12px 16px;
  background: #fdf6e4;             /* amber-50 */
  border: 1px dashed #d6900f;      /* amber-500 */
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #92590e;                  /* amber-700 */
}

/* =========================================================
   HEADER (auf allen Seiten gleich)
   ========================================================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ecedf1;
  /* Padding dynamisch: bei Bildschirmen breiter als 1280 px wandert die
     linke/rechte Kante mit, sodass Logo und Nav buendig mit den Content-
     Containern (max-width 1280 px) liegen. Bei <= 1280 px = 48 px Minimum. */
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: max(48px, calc((100% - 1280px) / 2 + 48px));
  padding-right: max(48px, calc((100% - 1280px) / 2 + 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 50;
}
.site-header .logo {
  /* 52px = Wordmark-Hoehe des Public-Shells der Plattform
     (frutra_bootstrap5/css/public-shell.css) — Owner-Vorgabe 29.08.2026:
     das Marketing-Logo soll so gross sein wie auf der Plattform. */
  height: 52px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav > .nav-item > a,
.site-nav > .nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2f3b48;
  text-decoration: none;
  /* 16px statt 14px: Menuezeile vergroessert (Owner-Vorgabe 29.08.2026);
     die Plattform-Navigation nutzt 15px auf dunklem Grund. */
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
  transition: color 120ms;
}
.site-nav > .nav-item > a:hover,
.site-nav > .nav-item > button:hover { color: #1a365d; }

/* Dropdown */
.nav-item {
  position: relative;
}
.nav-item.has-dropdown > button::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  vertical-align: middle;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #ecedf1;
  border-radius: 6px;
  box-shadow: 0 12px 28px -8px rgba(15,35,56,0.14), 0 4px 8px rgba(15,35,56,0.06);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 120ms, transform 120ms, visibility 120ms;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  color: #2f3b48;
  font-size: 14px;
  font-weight: 500;
  transition: background 120ms, color 120ms;
}
.nav-dropdown a:hover {
  background: #f4f7fb;
  color: #1a365d;
}

/* Sprach-Umschalter */
.lang-switch {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #6c7787;
  background: transparent;
  border: 1px solid #d1dbe7;
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.lang-switch:hover {
  color: #1a365d;
  border-color: #1a365d;
}

.btn-nav {
  padding: 8px 16px;
  background: #1a365d;
  color: #ffffff !important;
  border-radius: 6px;
  font-weight: 600 !important;
  text-decoration: none;
  transition: background 120ms;
}
.btn-nav:hover { background: #142b48; color: #ffffff !important; }

/* =========================================================
   HERO — 1:1 aus _sources/hero-adenauer.html
   NICHT veraendern. Werte abgestimmt mit Wolfgang.
   ========================================================= */
.hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 720px;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: stretch;
}
.hero__main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 580px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #1a365d;
}
.hero__title .nowrap { white-space: nowrap; }
.hero__lead {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #1a365d;
  margin: 0 0 18px;
  max-width: 56ch;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 56ch;
  color: #2f3b48;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}
.btn--primary { background: #1a365d; color: #ffffff; border-color: #1a365d; }
.btn--primary:hover { background: #142b48; transform: translateY(-1px); color: #ffffff; }
.btn--ghost { background: transparent; color: #1a365d; border-color: #d1dbe7; }
.btn--ghost:hover { background: #f4f7fb; border-color: #1a365d; transform: translateY(-1px); }

.hero__meta {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 39, 51, 0.12);
}
.hero__meta-item { font-size: 13px; line-height: 1.4; color: #4a5666; }
.hero__meta-item strong {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #1d6a3a;             /* Logo-Gruen als Akzent */
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  margin-right: -180px;
}
.hero__visual-inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  transform: translateY(-26%);
}
.hero__image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 32px rgba(56, 32, 12, 0.18)) saturate(1.05) contrast(1.02);
}

/* Der Stempel ist ein <button> mit innenliegendem PNG: Klick stempelt
   erneut (Sound nur auf Klick — Entscheid 21.07.2026). Der drop-shadow
   folgt der Alpha-Kontur des PNGs, nicht der Button-Box. */
.stamp {
  position: absolute;
  top: 63%;
  left: 46%;
  width: 96%;
  max-width: 1200px;
  height: auto;
  z-index: 5;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  animation: stamp-impact 200ms cubic-bezier(0.5, 0, 0.2, 1) 0ms backwards;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.30));
}
.stamp img {
  display: block;
  width: 100%;
  height: auto;
}
.stamp:focus-visible {
  outline: 3px solid #3da866;
  outline-offset: 6px;
}
/* Unterzeile im Stempel-Duktus („ist online"): sitzt unter der Plakette und
   stempelt beim Aufschlag mit (erbt die Animation des Buttons). Ersetzt den
   Countdown (Owner-Entscheid 29.08.2026). */
.stamp__subline {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  font-family: 'Roboto', sans-serif;
  font-size: clamp(12px, 1.3vw, 20px);
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f1efe2;
  background: #1d6a3a;
  border: 3px solid #f1efe2;
  padding: 0.35em 0.9em 0.35em 1.2em;   /* rechts weniger: letter-spacing haengt nach */
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
@keyframes stamp-impact {
  /* Frontal-Anflug aus der Tiefe: Stempel kommt direkt von vorne auf den
     Betrachter zu (scale 2.4 -> 1), KEIN seitlicher Offset wie frueher.
     Aufschlag-Knall schon bei 50 % (= 100 ms bei 200 ms-Dauer). */
  0% {
    transform: translate(-50%, -50%) scale(2.4) rotate(-9deg);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
  }
  25% {
    opacity: 1;
  }
  50% {
    /* AUFSCHLAG — harter Treffer, tief gestauchter Stempel, satter Schatten */
    transform: translate(-50%, calc(-50% + 4px)) scale(0.86) rotate(-7deg);
    filter: drop-shadow(0 36px 52px rgba(0, 0, 0, 0.55));
  }
  72% {
    transform: translate(-50%, -50%) scale(1.06) rotate(-10deg);
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.36));
  }
  88% {
    transform: translate(-50%, -50%) scale(0.99) rotate(-9deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(-9deg);
    opacity: 1;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.30));
  }
}

/* Stempel-Loop entfernt (Entscheid 21.07.2026, ersetzt den Loop-Request
   vom 05.05.2026): der Stempel schlaegt einmal auf und BLEIBT liegen.
   Erneuter Aufschlag nur per Klick auf den Stempel. */

/* =========================================================
   SEKTIONEN — Idee / Vorteile / Kosten (Bild + Text alternierend)
   ========================================================= */
.section {
  padding: 96px 0;
}
.section + .section { padding-top: 0; }
.section--alt { background: #f6f7f9; }

.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section--mirror .section__inner {
  grid-template-areas: "text image";
}
.section--mirror .section__text { grid-area: text; }
.section--mirror .section__media { grid-area: image; }

.section__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 28px -8px rgba(15,35,56,0.14), 0 4px 8px rgba(15,35,56,0.06);
}
.section__eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d6a3a;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
}
.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #1d6a3a;
  margin-right: 10px;
  vertical-align: middle;
}
.section__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a365d;
  margin: 0 0 20px;
}
.section__text p {
  font-size: 17px;
  line-height: 1.65;
  color: #2f3b48;
  margin: 0 0 16px;
  max-width: 60ch;
}
.section__text p:last-of-type { margin-bottom: 24px; }
.section__cta { margin-top: 8px; }

/* =========================================================
   DREI-SPALTEN-BLOCK — Direkt / Transparent / Fair
   ========================================================= */
.triad {
  padding: 96px 0;
  background: #f3faf6;        /* zarter Gruen-Tint statt Grau */
}
.triad__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.triad__intro {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.triad__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a365d;
  margin: 0 0 12px;
}
.triad__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.triad__card {
  background: #ffffff;
  border: 1px solid #ecedf1;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.triad__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
/* =========================================================
   GEBUEHRENTAFEL in der Kosten-Sektion (statt Stockfoto)
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}
.section__media--board {
  background:
    radial-gradient(700px 380px at 78% 10%, rgba(61,168,102,0.16) 0%, rgba(61,168,102,0) 60%),
    linear-gradient(150deg, #0f2338 0%, #142b48 60%, #24456b 100%);
  background-color: #12263e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}
.fee-board {
  width: 100%;
  max-width: 520px;
  color: #ffffff;
}
.fee-board__kicker {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6cc28a;
  margin: 0 0 20px;
}
.fee-board__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.4;
}
.fee-board__table th,
.fee-board__table td {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  text-align: right;
  vertical-align: baseline;
}
.fee-board__table thead th {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3b8d0;
  border-bottom-color: rgba(255,255,255,0.3);
  padding-bottom: 10px;
}
.fee-board__table tbody th {
  text-align: left;
  font-weight: 400;
  color: #c8d4e2;
  padding-left: 0;
}
.fee-board__table tbody td {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #ffffff;
  white-space: nowrap;
  min-width: 92px;
}
.fee-board__note {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #a3b8d0;
}
@media (max-width: 900px) {
  .section__media--board { padding: 40px 24px; min-height: 0; }
  .fee-board__table tbody td { font-size: 19px; min-width: 76px; }
}

/* Zeichen statt Stockfoto (Wolfgang 22.07.2026: die Fotos hatten mit den
   Aussagen nichts zu tun). Linear, Markenfarben, in Kartenbreite lesbar. */
.triad__icon {
  background: #f3faf6;
  border-bottom: 1px solid #e2ece6;
  padding: 26px 24px;
  display: flex;
  justify-content: center;
}
.triad__icon svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  fill: none;
  stroke: #1a365d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.triad__icon .ln { stroke: #c3d0de; fill: #ffffff; }
.triad__icon .ln--hit { stroke: #1d6a3a; fill: #eaf4ee; stroke-width: 2.5; }
.triad__icon line { stroke: #c3d0de; stroke-width: 5; }
.triad__icon line.hit { stroke: #1d6a3a; }
.triad__icon .node { fill: #ffffff; stroke: #1a365d; stroke-width: 2.5; }
.triad__icon .arrow { stroke: #1d6a3a; stroke-width: 2.5; }
.triad__icon .frame { stroke: #c3d0de; stroke-width: 2.5; }
.triad__icon .doc { fill: #ffffff; stroke: #1a365d; stroke-width: 2.5; }
.triad__icon .seal { fill: #eaf4ee; stroke: #1d6a3a; stroke-width: 2.5; }
.triad__icon .check { stroke: #1d6a3a; stroke-width: 4; fill: none; }
.triad__card-body {
  padding: 24px 24px 28px;
}
.triad__card h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a365d;
  margin: 0 0 12px;
}
.triad__card p {
  font-size: 15px;
  line-height: 1.6;
  color: #2f3b48;
  margin: 0;
}

/* =========================================================
   STUB-PAGE: Hero-Lite (kleinere Headline ohne Mercedes)
   ========================================================= */
.page-hero {
  /* Vollbreiten-Trennlinie entfernt (Wolfgang 21.07.2026) — der
     Navy-Verlauf aus premium.css trennt den Kopf jetzt selbst. */
  background: #ffffff;
  padding: 80px 0 64px;
}
.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a365d;
  margin: 0 0 16px;
  max-width: 30ch;
}
.page-hero__sub {
  font-size: 20px;
  line-height: 1.5;
  color: #4a5666;
  margin: 0;
  max-width: 60ch;
}

/* Page-Hero-Modifier: zentriert (z. B. fuer mitglieder.html) */
.page-hero--centered .page-hero__inner { text-align: center; }
.page-hero--centered .page-hero__title,
.page-hero--centered .page-hero__sub {
  margin-left: auto;
  margin-right: auto;
}

/* Inhalts-Bereich auf Stub-/Sub-Seiten */
.page-content {
  padding: 64px 0 96px;
}
/* clip NUR auf der Team-Seite: dort bricht das Foto per 100vw aus. Global
   gesetzt nahm es breiten Tabellen (Auftragsverarbeiter in der Datenschutz-
   erklaerung) den seitlichen Fluchtweg — Pflichtangaben waren mobil nicht
   mehr erreichbar (Abnahmelauf 22.07.). */
.page-content:has(.page-content--bios) {
  overflow-x: clip;
}
.page-content__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-content h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #1a365d;
  margin: 48px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #1a365d;
  margin: 32px 0 12px;
}
.page-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #2f3b48;
  margin: 0 0 16px;
}
.page-content ul {
  font-size: 16px;
  line-height: 1.7;
  color: #2f3b48;
  margin: 0 0 16px;
  padding-left: 22px;
}
.page-content li { margin-bottom: 6px; }
.page-content a {
  color: #1a365d;
  text-decoration: underline;
  text-decoration-color: #a3b8d0;
  text-underline-offset: 3px;
  transition: text-decoration-color 180ms;
}
.page-content a:hover { text-decoration-color: #1a365d; }

/* Rechtstexte aus der Drupal-Plattform (AGB, DSE, Gebuehrenordnung):
   ol-Listen, Tabellen und Inhaltsverzeichnis (.legal-toc) */
.page-content ol {
  font-size: 16px;
  line-height: 1.7;
  color: #2f3b48;
  margin: 0 0 16px;
  padding-left: 26px;
}
.page-content table {
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #2f3b48;
  /* Breite Tabellen (z. B. Auftragsverarbeiter) bekommen eine eigene
     Scrollflaeche, damit auf schmalen Geraeten keine Spalte unerreichbar wird. */
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}
.page-content th,
.page-content td {
  border: 1px solid #d5dce4;
  padding: 8px 14px;
  text-align: left;
  vertical-align: top;
}
.page-content th {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #1a365d;
  background: #f6f7f9;
}
.legal-toc {
  background: #f6f7f9;
  border-left: 4px solid #1d6a3a;
  padding: 20px 24px;
  margin: 0 0 32px;
}
.legal-toc__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a365d;
  margin: 0 0 10px;
}
.legal-toc ul,
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
}
.legal-toc li { margin-bottom: 4px; }

/* =========================================================
   SCHRITTE MIT BILDSCHIRMFOTOS (hilfe.html, 22.07.2026)
   Text und Screenshot alternierend, Bild als „Fenster“ mit
   Rahmen und Schatten — die Aufnahmen tragen die Seite.
   ========================================================= */
.steps {
  padding: 72px 0 32px;
}
.steps__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 48px;
}
.step {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
  padding: 40px 0 56px;
}
.step + .step {
  border-top: 1px solid #ecedf1;
}
/* Jeder zweite Schritt gespiegelt: Bild links, Text rechts */
.step:nth-child(even) .step__text { order: 2; }
.step:nth-child(even) .step__shot { order: 1; }

.step__num {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1d6a3a;
  margin: 0 0 10px;
}
.step__text h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #1a365d;
  margin: 0 0 16px;
  padding-top: 0;
}
.step__text h2::before { display: none; }   /* kein Gruen-Strich, die Nummer traegt */
.step__text p {
  font-size: 16px;
  line-height: 1.7;
  color: #2f3b48;
  margin: 0 0 14px;
}
.step__text em {
  font-style: normal;
  background: #eaf4ee;
  padding: 1px 6px;
  color: #14552e;
}
.step__shot {
  margin: 0;
}
.step__shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  box-shadow: 0 22px 50px -20px rgba(15, 35, 56, 0.35),
              0 4px 10px rgba(15, 35, 56, 0.06);
}
.steps__hinweis {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6c7787;
}

/* =========================================================
   HANDELSABLAUF (hilfe.html)
   Angebot und Gesuch sind zwei gleichwertige Einstiege. Die
   Screenshots belegen die jeweilige Handelsstation, sie tragen
   nicht den Text der Seite.
   ========================================================= */
.trade-story {
  padding: 0 0 112px;
}
.trade-story__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
/* Der Einstiegsabsatz sitzt auf der Mittelachse der Seite und schliesst damit
   an den zentrierten Seitenkopf an; die Stationen darunter sind linksbuendig. */
.trade-story__intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 0 76px;
}
.trade-story__intro p {
  margin: 0;
  color: #1a365d;
  font-size: 28px;
  line-height: 1.38;
  font-weight: 400;
}
.trade-stage {
  border-top: 1px solid #dfe4ea;
  padding: 64px 0 80px;
}
.trade-story h2,
.trade-story h3 {
  font-family: 'Roboto', sans-serif;
  color: #1a365d;
}
.trade-story h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.trade-story h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}
.trade-story p {
  color: #2f3b48;
  font-size: 17px;
  line-height: 1.65;
}
/* Kopf einer Station: Marke, Ueberschrift, ein Absatz. Die Textspalte bleibt
   schmaler als das Bildschirmfoto darunter — der Beleg traegt die Breite, der
   Text die Lesbarkeit. */
.trade-stage__head {
  max-width: 780px;
  margin: 0 0 40px;
}
.trade-stage__head h2 { margin: 0 0 18px; }
.trade-stage__head p:last-child { margin: 0; }
.trade-cockpit p:last-child { margin: 0; }
.trade-stage__label {
  margin: 0 0 10px;
  color: #1d6a3a !important;
  font-family: 'Roboto', sans-serif;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.trade-screen {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #f5f7f9;
  box-shadow: 0 22px 50px -20px rgba(15, 35, 56, .35), 0 4px 10px rgba(15, 35, 56, .06);
}
.trade-screen img {
  display: block;
  width: 100%;
  height: auto;
}
.trade-story__note {
  margin: 0;
  font-size: 13px !important;
  color: #6c7787 !important;
}

@media (max-width: 900px) {
  .trade-story { padding-bottom: 64px; }
  .trade-story__inner { padding: 0 24px; }
  .trade-story__intro { padding: 48px 0 56px; }
  .trade-story__intro p { font-size: 20px; }
  .trade-stage { padding: 44px 0 56px; }
  .trade-stage__head { margin-bottom: 28px; }
  .trade-stage__head h2 { margin-bottom: 14px; }
  .trade-story h2 { font-size: 27px; }
  /* Bildschirmfotos bleiben auch auf schmalen Geraeten vollstaendig; ein
     seitlich scrollender Ausschnitt wuerde die Arbeitsflaeche anschneiden.
     Die fachlichen Angaben stehen im Absatz darueber. */
  .trade-story__note { margin-top: 8px; }
}

@media (max-width: 900px) {
  .steps { padding: 40px 0 16px; }
  .steps__inner { padding: 0 24px; }
  .step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 36px;
  }
  /* mobil immer Text zuerst, dann Bild */
  .step:nth-child(even) .step__text { order: 0; }
  .step:nth-child(even) .step__shot { order: 0; }
  .step__text h2 { font-size: 24px; }
}

/* FAQ-Akkordeon (CSS-only via <details>) */
.faq-item {
  border-bottom: 1px solid #ecedf1;
  padding: 16px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a365d;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #6c7787;
  flex: 0 0 auto;
  transition: transform 180ms;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #2f3b48;
}

/* Team-Bild auf "Über uns" */
.team-photo {
  margin: 0 0 48px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 28px -8px rgba(15,35,56,0.14), 0 4px 8px rgba(15,35,56,0.06);
}
.team-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.team-photo figcaption {
  padding: 12px 0 0;
  font-size: 13px;
  color: #4a5666;
  background: transparent;
  border-top: 2px solid #1a365d;
}

/* =========================================================
   TRUST-BLOCK — "Was FRUTRA bewusst nicht ist"
   Vertrauensbildender Abschnitt nach dem Drei-Spalten-Block.
   ========================================================= */
.trust {
  padding: 96px 0;
  background: #ffffff;
}
.trust__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.trust__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a365d;
  margin: 0 0 48px;
  text-align: center;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trust__card {
  padding: 28px 28px 28px 32px;
  background: #f6f7f9;
  border-left: 4px solid #1d6a3a;
  border-radius: 0 6px 6px 0;
}
.trust__card h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a365d;
  margin: 0 0 10px;
}
.trust__card p {
  font-size: 15px;
  line-height: 1.6;
  color: #2f3b48;
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0f2338;
  color: #d1dbe7;
  padding: 64px 0 32px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 3px solid #1d6a3a;   /* Gruen-Akzent als Abschluss */
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.site-footer h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b8ab2;
  margin: 0 0 16px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: #d1dbe7;
  text-decoration: none;
  transition: color 120ms;
}
.site-footer a:hover { color: #ffffff; }
.site-footer .footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.site-footer__bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #6b8ab2;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .hero__inner { grid-template-columns: minmax(440px, 1fr) minmax(0, 1.3fr); }
  .hero__visual { margin-right: -80px; }
  .hero__image { max-width: 900px; }
  .stamp { max-width: 1000px; width: 110%; }
  .hero__title { font-size: 56px; }
}

@media (max-width: 900px) {
  .container,
  .section__inner,
  .triad__inner,
  .page-hero__inner,
  .page-content__inner,
  .site-footer__inner,
  .site-footer__bottom { padding-left: 24px; padding-right: 24px; }

  .site-header { padding: 12px 24px; flex-wrap: wrap; gap: 12px; }
  .site-header .logo { height: 40px; } /* wie der mobile Public-Shell der Plattform */
  .site-nav { gap: 12px; flex-wrap: wrap; }
  .site-nav > .nav-item > a,
  .site-nav > .nav-item > button { font-size: 14px; padding: 4px 2px; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 12px; min-width: 0; }
  /* :focus-within ergaenzt, sonst sind die Untermenues per Tastatur unerreichbar */
  .nav-item.has-dropdown:not(:hover):not(:focus-within) .nav-dropdown { display: none; }

  .hero { min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 24px;
    gap: 32px;
  }
  .hero__main { max-width: 100%; padding: 0; }
  .hero__visual { margin-right: 0; min-height: 360px; }
  .hero__visual-inner { transform: translateY(0); }
  .hero__image { max-width: 100%; }
  .hero__title { font-size: 44px; }
  .stamp { max-width: 90%; width: 90%; }
  .hero__meta { gap: 24px; flex-wrap: wrap; }

  .section { padding: 64px 0; }
  .section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section--mirror .section__inner {
    grid-template-areas: "image" "text";
  }
  .section__title { font-size: 32px; }

  .triad { padding: 64px 0; }
  .triad__grid { grid-template-columns: 1fr; gap: 24px; }
  .triad__title { font-size: 28px; }

  .trust { padding: 64px 0; }
  .trust__grid { grid-template-columns: 1fr; gap: 16px; }
  .trust__title { font-size: 28px; margin-bottom: 32px; }
  .trust__card { padding: 24px; }

  .page-hero { padding: 56px 0 40px; }
  .page-hero__title { font-size: 40px; }
  .page-hero__sub { font-size: 18px; }
  .page-content { padding: 48px 0 64px; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 36px; }
  .hero__lead { font-size: 18px; }
  .section__title { font-size: 26px; }
  .page-hero__title { font-size: 32px; }
  .trust__title { font-size: 24px; }
}

/* Sound-Banner entfernt (21.07.2026): es gibt keinen Auto-Sound mehr,
   der Stempel-Sound spielt nur noch auf Klick — siehe .stamp. */

/* =========================================================
   EDIT-MODE — nur sichtbar wenn ?edit=1 (siehe js/edit.js)
   ========================================================= */
.edit-toolbar {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #1a365d;
  color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 12px 28px -8px rgba(15,35,56,0.55), 0 4px 8px rgba(15,35,56,0.30);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  user-select: none;
}
.edit-toolbar__label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #6cc28a;
  text-transform: uppercase;
}
.edit-toolbar__file {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: #a3b8d0;
  padding: 2px 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}
.edit-toolbar button,
.edit-toolbar a {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  background: #ffffff;
  color: #1a365d;
  border: 0;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 120ms;
}
.edit-toolbar button:hover,
.edit-toolbar a:hover { background: #f4f7fb; }
.edit-toolbar__exit {
  background: transparent !important;
  color: #a3b8d0 !important;
  font-weight: 500 !important;
}
.edit-toolbar__exit:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
}
.edit-toolbar__status {
  font-size: 12px;
  font-weight: 500;
  min-width: 120px;
  color: #a3b8d0;
}
.edit-toolbar__status[data-kind="dirty"]  { color: #f0c878; }
.edit-toolbar__status[data-kind="saving"] { color: #d6900f; }
.edit-toolbar__status[data-kind="saved"]  { color: #6cc28a; }
.edit-toolbar__status[data-kind="error"]  { color: #f8d8e1; background: #8a1d3f; padding: 2px 8px; border-radius: 3px; }

/* Editierbare Elemente: dezente Hover- und Focus-Indikation */
.is-editable {
  outline: 1px dashed transparent;
  outline-offset: 2px;
  border-radius: 3px;
  transition: outline-color 120ms, background-color 120ms;
}
.is-editable:hover {
  outline-color: rgba(214,144,15,0.45);
  background-color: rgba(253,246,228,0.4);
  cursor: text;
}
.is-editable:focus {
  outline: 2px solid #d6900f;
  background-color: rgba(253,246,228,0.85);
}
/* Container-Elemente, deren Children editierbar sind, bekommen kein eigenes Hover */
.is-editable--container:hover {
  outline-color: transparent;
  background-color: transparent;
}

@media (max-width: 900px) {
  .edit-toolbar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 10px;
    font-size: 12px;
    max-width: calc(100% - 24px);
  }
  .edit-toolbar__status { min-width: 0; }
}

/* ---------- Image-Edit (Frames um editierbare Bilder + Hover-Overlay) ---------- */
.image-edit-frame {
  position: relative;
  isolation: isolate;
}
.is-image-editable {
  cursor: pointer;
  transition: filter 120ms, outline-color 120ms;
  outline: 2px dashed transparent;
  outline-offset: 4px;
}
.image-edit-frame:hover .is-image-editable {
  filter: brightness(0.85);
  outline-color: rgba(214,144,15,0.55);
}

.image-edit-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 120ms, transform 120ms;
  z-index: 5;
}
.image-edit-frame:hover .image-edit-overlay,
.image-edit-frame.is-drag-target .image-edit-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.image-edit-overlay button {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: #1a365d;
  color: #ffffff;
  border: 0;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px -2px rgba(15,35,56,0.4);
  transition: background 120ms;
}
.image-edit-overlay button:hover { background: #244a7a; }
.image-edit-overlay__hint {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: #ffffff;
  background: rgba(15,35,56,0.85);
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* Drag-Active: ganzer Frame leuchtet amber */
.image-edit-frame.is-drag-target {
  outline: 3px solid #d6900f;
  outline-offset: 0;
  box-shadow: 0 0 0 6px rgba(214,144,15,0.20);
}
.image-edit-frame.is-drag-target .is-image-editable {
  filter: brightness(0.7) saturate(1.1);
}
.image-edit-frame.is-drag-target::after {
  content: '📥 Bild hier loslassen';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,144,15,0.35);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  pointer-events: none;
  border-radius: 6px;
  z-index: 6;
}

/* =========================================================
   MITGLIEDER-SEITE: Map + Logo-Galerie
   ========================================================= */

.members-map {
  padding: 48px 0 16px;
}
/* Full-width-Karte (Wolfgang-Request 21.07.2026): der Kartencanvas laeuft
   ueber die volle Viewport-Breite, nur der Titel bleibt im Content-Raster. */
.members-map__inner {
  max-width: none;
  margin: 0;
  padding: 0;
}
.members-map__title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  color: #1a365d;
  text-align: center;
  margin: 0 auto 8px;
  max-width: 1280px;
  padding: 0 48px;
}
.members-map__sub {
  text-align: center;
  font-size: 15px;
  color: #6c7787;
  margin: 0 auto 24px;
  max-width: 1280px;
  padding: 0 48px;
}
.members-map__canvas {
  width: 100%;
  height: 620px;
  border: 0;
  border-top: 1px solid #ecedf1;
  border-bottom: 1px solid #ecedf1;
  border-radius: 0;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c7787;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
}

.members-gallery {
  padding: 48px 0 96px;
}
.members-gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.members-gallery__heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  color: #1a365d;
  text-align: center;
  margin: 0 0 8px;
}
.members-gallery__sub {
  text-align: center;
  font-size: 15px;
  color: #6c7787;
  margin: 0 0 32px;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.member-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #ecedf1;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 180ms, transform 180ms, box-shadow 180ms;
}
.member-card:hover {
  border-color: #1d6a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(15,35,56,0.08);
}
.member-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 180ms;
}
.member-card:hover img {
  filter: grayscale(0%);
}

@media (max-width: 1200px) {
  .members-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px) {
  .members-map { padding: 32px 0 8px; }
  .members-gallery__inner { padding: 0 24px; }
  /* Karte bleibt auch mobil full width; nur Titel/Unterzeile behalten Rand */
  .members-map__title,
  .members-map__sub { padding: 0 24px; }
  .members-map__canvas { height: 420px; }
  .members-gallery { padding: 32px 0 64px; }
  .members-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .member-card { padding: 12px; }
}
@media (max-width: 600px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   TEXT-AUSRICHTUNG (Editor-Modifier)
   Werden vom Edit-Modus per Toolbar gesetzt und beim Save in der
   HTML persistiert. Funktionieren auf jedem Block-Element.
   ========================================================= */
.is-aligned-left   { text-align: left; }
.is-aligned-center { text-align: center; }
.is-aligned-right  { text-align: right; }

/* Bei max-width-Elementen wird auch der Block selbst horizontal
   bewegt — sonst klebt der Text-Inhalt zentriert, aber der Block
   selbst links. */
.is-aligned-center {
  margin-left: auto;
  margin-right: auto;
}
.is-aligned-right {
  margin-left: auto;
  margin-right: 0;
}

/* =========================================================
   ALIGN-TOOLBAR (nur im Edit-Modus sichtbar)
   ========================================================= */
.align-toolbar {
  position: absolute;
  z-index: 1100;
  display: flex;
  gap: 2px;
  padding: 4px;
  background: #1a365d;
  border-radius: 4px;
  box-shadow: 0 6px 16px -3px rgba(15,35,56,0.45);
  user-select: none;
  pointer-events: auto;
}
.align-toolbar button {
  width: 30px;
  height: 30px;
  background: transparent;
  color: #d1dbe7;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 120ms, color 120ms;
}
.align-toolbar button:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}
.align-toolbar button.is-active {
  background: #1d6a3a;
  color: #ffffff;
}
.align-toolbar svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* =========================================================
   SUB-SEITEN-POLISH (Page-Hero, Page-Content, FAQ, Listen)
   Aktiviert sich automatisch auf allen Seiten mit .page-hero + .page-content.
   ========================================================= */

/* Page-Hero: klarer weisser Hintergrund, dicker Logo-Gruen-Balken vor dem Titel */
.page-hero {
  background: #ffffff;
  border-bottom: 1px solid #1a365d;     /* satter Navy-Trennstrich, kein Pastell */
}
.page-hero__title {
  position: relative;
  padding-top: 18px;
}
.page-hero__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 6px;                          /* dick, satt, kantig */
  background: #1d6a3a;
  border-radius: 0;
}
.page-hero--centered .page-hero__title::before,
.page-hero__title.is-aligned-center::before {
  left: 50%;
  transform: translateX(-50%);
}

/* Page-Content: H2 mit dickem Logo-Gruen-Strich */
.page-content h2 {
  position: relative;
  padding-top: 14px;
  margin-top: 56px;
}
.page-content h2:first-of-type { margin-top: 0; }
.page-content h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: #1d6a3a;
  border-radius: 0;
}

/* H3: schlicht und satt, kein linker Streifen mehr */
.page-content h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: #1a365d;
}

/* Listen: kantige Logo-Navy-Quadrate */
.page-content ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.page-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #1a365d;                  /* Navy statt Pastell */
  border-radius: 0;
}

/* Page-Content-Links: satter Navy + Logo-Gruen-Underline */
.page-content a {
  color: #1a365d;
  text-decoration-color: #1d6a3a;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 180ms, text-decoration-color 180ms;
}
.page-content a:hover {
  color: #1d6a3a;
}

/* =========================================================
   FAQ-AKKORDEON: kantige Cards mit vollem Navy-Border
   ========================================================= */
.faq-item {
  background: #ffffff;
  border: 1.5px solid #1a365d;          /* satt, klar */
  border-radius: 0;                      /* kantig */
  margin-bottom: 10px;
  padding: 18px 24px;
  transition: background 180ms;
}
.faq-item:hover { background: #f4f7fb; }
.faq-item[open] {
  background: #ffffff;
  border-color: #1d6a3a;                /* Logo-Gruen — Akzent verstaerkt */
  border-width: 1.5px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #1a365d;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1a365d;
  color: #ffffff;
  border-radius: 0;                     /* kantiger Quadrat-Indikator */
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
  background: #1d6a3a;
}
.faq-item p:not(:empty) {
  margin-top: 14px;
  color: #2f3b48;
  line-height: 1.65;
}

/* =========================================================
   KONTAKT-CARDS (support.html — kein blasser Hintergrund, dafuer
   dicker Navy-Border-Top als Akzent)
   ========================================================= */
.page-content--contact-cards h2 + p,
.page-content--contact-cards h2 + p + p {
  background: transparent;
  border-top: 2px solid #1a365d;
  padding: 14px 0 4px;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
}

/* =========================================================
   BIOS NEBENEINANDER (ueberuns.html bei Desktop)
   ========================================================= */
/* Ueber-uns bekommt mehr Buehne als die 880px-Lesespalte:
   Foto zentriert, Bios grosszuegig zweispaltig (Wolfgang 21.07.2026). */
.page-content__inner.page-content--bios {
  max-width: 1280px;
}
/* Gruenderfoto ueber die volle Viewport-Breite (Wolfgang 22.07.2026).
   Bricht aus dem Textcontainer aus; Bildunterschrift bleibt im Raster.
   object-position nach oben gewichtet, damit die Gesichter im Ausschnitt
   bleiben — das Foto ist 4:3, full width erzwingt Beschnitt. */
.page-content--bios .team-photo {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
/* Kein Beschnitt mehr (Wolfgang 22.07.: jede Bandhoehe schnitt den Laptop
   weg). Ab Tablet laeuft ein 4:1-Panorama, dessen Mitte das unveraenderte
   Foto ist; die Hoehe ergibt sich aus dem Seitenverhaeltnis. */
.page-content--bios .team-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.page-content--bios .team-photo figcaption {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 48px 0;
  border-top: 0;
}
@media (max-width: 900px) {
  /* Auf dem Telefon greift das Original im Hochformat (siehe <picture>) —
     es laeuft in voller Breite, ohne Beschnitt. */
  .page-content--bios .team-photo figcaption { padding: 12px 24px 0; }
}
.page-content--bios .bios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.page-content--bios .bio-card {
  background: #ffffff;
  border: 1.5px solid #1a365d;         /* satt Navy, kantig */
  border-radius: 0;
  padding: 28px 28px 24px;
}
.page-content--bios .bio-card h2 {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 14px;
  font-size: 22px;
  color: #1a365d;
}
.page-content--bios .bio-card h2::before {
  display: none;
}

@media (max-width: 720px) {
  .page-content--bios .bios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================================
   GEBUEHREN-PUNKTE als nummerierte Cards (kantig, satt)
   ========================================================= */
.page-content--fee-cards .fee-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.page-content--fee-cards .fee-card {
  background: #ffffff;
  border: 1.5px solid #1a365d;         /* satt Navy, kantig */
  border-radius: 0;
  padding: 24px 24px 22px 72px;
  position: relative;
}
.page-content--fee-cards .fee-card__number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 0;                    /* kantiges Quadrat */
  background: #1d6a3a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.page-content--fee-cards .fee-card h2 {
  margin: 0 0 8px;
  padding-top: 0;
  font-size: 18px;
  color: #1a365d;
}
.page-content--fee-cards .fee-card h2::before {
  display: none;
}
.page-content--fee-cards .fee-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .page-content--fee-cards .fee-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HILFE-SCHRITTE: H2 als nummerierte Pille
   Aktivierung pro Seite via .page-content--steps
   Voraussetzung: H2 hat Format "1. Titel"; das Zaehl-Pattern setze ich
   per CSS-Counter, sodass die Zahl als Pille links erscheint.
   ========================================================= */
.page-content--steps {
  counter-reset: step-counter;
}
.page-content--steps h2 {
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 0;        /* Eyebrow-Strich entfaellt — Pille uebernimmt */
}
.page-content--steps h2::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #1d6a3a;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: static;       /* override des absoluten Page-Content-H2 */
}

/* Countdown auf der Registrierungs-Zwischenseite (bis 01.09.2026).
   Nach dem Stichtag blendet das Inline-Skript .launch-open ein. */
.launch-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 8px 0 32px;
  flex-wrap: wrap;
}
.launch-countdown__cell {
  min-width: 110px;
  padding: 18px 12px;
  text-align: center;
  background: #1a365d;
  color: #f1efe2;
  border-radius: 8px;
}
.launch-countdown__cell strong {
  display: block;
  font-size: 40px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.launch-countdown__cell span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.launch-open {
  text-align: center;
  margin: 8px 0 32px;
  font-size: 18px;
}
