/* =========================================================================
   Pössl Center Frankfurt — Designsystem
   Basis: Corporate Identity & Styleguide v1.0 (PREMIUM × ABENTEUER)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ----------------------------- Tokens ---------------------------------- */
:root {
  /* Primärfarben */
  --blau:        #073475;  /* Pössl-Blau – Signatur, CTA */
  --blau-700:    #0a2c5e;  /* dunkler für Verläufe/Hover */
  --blau-900:    #06214a;
  --anthrazit:   #1D1D1B;
  --weiss:       #FFFFFF;

  /* Sekundär & Akzent */
  --hellblau:    #5E83B3;
  --stahlblau:   #2E5A68;
  --tannengruen: #2C4A3E;
  --sandstein:   #CDB89A;
  --messing:     #C2A14D;  /* edler 10%-Akzent */
  --messing-dk:  #a8883a;

  /* Neutrale Töne */
  --nebelgrau:   #F2F0EC;
  --nebelgrau-2: #E9E6DF;
  --steingrau:   #6E6E68;
  --linie:       #e2ddd3;

  /* Typo */
  --font-display: 'Poppins', 'Montserrat', system-ui, sans-serif;
  --font-text:    'Open Sans', system-ui, sans-serif;

  /* Spacing (8px-Raster) */
  --container: 1200px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(7,33,74,.06), 0 4px 14px rgba(7,33,74,.05);
  --shadow-md: 0 6px 20px rgba(7,33,74,.08), 0 18px 50px rgba(7,33,74,.08);
  --shadow-lg: 0 20px 60px rgba(7,33,74,.16);
}

/* ----------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.65;
  color: var(--anthrazit);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blau); text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--anthrazit); margin: 0; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* ----------------------------- Layout ---------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--grau { background: var(--nebelgrau); }
.section--blau { background: var(--blau); color: #eaf0fa; }
.section--blau h1, .section--blau h2, .section--blau h3 { color: #fff; }

.stack > * + * { margin-top: 1rem; }

/* Eyebrow / Kicker */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blau);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--messing);
}
.section--blau .eyebrow { color: var(--sandstein); }

/* Überschriften-Skala */
.h-display { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 700; }
.h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
.h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: #33332f; line-height: 1.6; }
.muted { color: var(--steingrau); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* Messing-Trennlinie */
.rule { height: 1px; background: var(--linie); border: 0; margin: 0; }
.rule--messing { height: 2px; width: 56px; background: var(--messing); border: 0; }

/* ----------------------------- Buttons --------------------------------- */
.btn {
  --bg: var(--blau);
  --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  padding: 16px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: normal;
  max-width: 100%;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(7,52,117,.28); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--ghost {
  --bg: transparent; --fg: var(--blau);
  border-color: var(--blau);
}
.btn--ghost:hover { background: var(--blau); color: #fff; box-shadow: 0 10px 26px rgba(7,52,117,.18); }

/* Werkstatt-Akzent (Tannengrün) */
.btn--werkstatt { --bg: transparent; --fg: var(--tannengruen); border-color: var(--tannengruen); }
.btn--werkstatt:hover { background: var(--tannengruen); color: #fff; box-shadow: 0 10px 26px rgba(44,74,62,.22); }
.btn--gruen { --bg: var(--tannengruen); --fg: #fff; border-color: var(--tannengruen); }
.btn--gruen:hover { box-shadow: 0 10px 26px rgba(44,74,62,.34); }

.btn--light { --bg: #fff; --fg: var(--blau); }
.btn--light:hover { box-shadow: 0 10px 26px rgba(0,0,0,.22); }

.btn--ghost-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: #fff; color: var(--blau); border-color: #fff; }

.btn--messing { --bg: var(--messing); --fg: #211a07; }
.btn--messing:hover { box-shadow: 0 10px 26px rgba(194,161,77,.4); }

.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--blau);
}
.link-arrow .arrow { transition: transform .2s ease; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ----------------------------- Header ---------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--linie);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 76px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: auto; width: 168px; max-width: none; }
.nav__menu {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
  list-style: none; padding: 0; margin-block: 0;
}
.nav__menu a {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500; font-size: 15px;
  color: var(--anthrazit);
  padding: 9px 13px; border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.nav__menu a:hover { background: var(--nebelgrau); color: var(--blau); }
.nav__menu a.is-active { color: var(--blau); }
.nav__menu a.is-active::after {
  content: ""; display: block; height: 2px; border-radius: 2px;
  background: var(--messing); margin-top: 5px;
}
.nav__cta { margin-left: 8px; display: flex; gap: 10px; }
.nav__burger { display: none; }

/* Mobile-Menü */
.nav__burger {
  margin-left: auto;
  width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid var(--linie); background: #fff;
  align-items: center; justify-content: center; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--anthrazit); border-radius: 2px; transition: .25s; }
.nav__burger:focus { outline: none; }
.nav__burger:focus-visible { outline: 2px solid var(--blau); outline-offset: 2px; }

/* Ankündigungsbalken */
.topbar {
  background: var(--anthrazit); color: #efeee9;
  font-size: 13.5px; letter-spacing: .01em;
}
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 40px; padding-block: 8px; text-align: center; }
.topbar strong { color: var(--messing); font-family: var(--font-display); font-weight: 600; }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--messing); flex: none; }

/* ----------------------------- Hero ------------------------------------ */
.hero { position: relative; background: var(--nebelgrau); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 104px);
}
.hero__eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.hero__sub { max-width: 36ch; margin-bottom: 32px; }
.hero__buttons { gap: 12px; }
.hero__note { margin-top: 22px; font-size: 14px; color: var(--steingrau); display: flex; align-items: center; gap: 9px; }
.hero__note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--messing); }
.hero__media { position: relative; }
@media (min-width: 1041px) {
  .hero__media { align-self: stretch; height: 100%; }
  .hero__media .ph--hero { aspect-ratio: auto; height: 100%; min-height: 480px; }
}

/* einfache Hero-Variante (Unterseiten) */
.pagehero { background: var(--blau); color: #e9f0fb; position: relative; overflow: hidden; }
.pagehero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(94,131,179,.45), transparent 55%),
    radial-gradient(90% 90% at 0% 120%, rgba(44,74,62,.5), transparent 60%);
  pointer-events: none;
}
.pagehero__inner { position: relative; z-index: 1; padding-block: clamp(56px, 7vw, 96px); max-width: 760px; }
.pagehero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.3rem); font-weight: 700; margin: 18px 0 0; }
.pagehero p { margin-top: 20px; color: #d4e0f2; font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 60ch; }
.pagehero .btn-row { margin-top: 32px; }
.pagehero .eyebrow { color: var(--sandstein); }
.pagehero .eyebrow::before { background: var(--messing); }

/* Zweispaltiger Seiten-Hero: Text links, Visual rechts */
.pagehero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.pagehero__grid .pagehero__inner { max-width: 760px; }
.pagehero__media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.30); aspect-ratio: 4 / 3; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Marken-Logowand im Hero */
.pagehero__brands { border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.05); padding: clamp(22px, 2.4vw, 32px); }
.pagehero__logos { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); overflow: hidden; }
.pagehero__logos div, .pagehero__logos a { background: var(--blau); display: grid; place-items: center; padding: 30px 20px; min-height: 104px; }
.pagehero__logos a { text-decoration: none; transition: background .18s ease; }
.pagehero__logos a:hover { background: color-mix(in srgb, var(--blau) 82%, #fff); }
.pagehero__logos a img { transition: transform .18s ease, opacity .18s ease; }
.pagehero__logos a:hover img { transform: scale(1.06); opacity: 1; }
.pagehero__logos img { max-height: 30px; max-width: 128px; width: auto; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .95; }
.pagehero--gruen .pagehero__logos div, .pagehero--gruen .pagehero__logos a { background: var(--tannengruen); }
.pagehero--gruen .pagehero__logos a:hover { background: color-mix(in srgb, var(--tannengruen) 82%, #fff); }
@media (max-width: 940px) {
  .pagehero__grid { grid-template-columns: 1fr; gap: 32px; }
  .pagehero__grid .pagehero__inner { max-width: none; }
  .pagehero__media { aspect-ratio: 16 / 9; }
}

/* Grüne Hero-Variante (Werkstatt) */
.pagehero--gruen { background: var(--tannengruen); }
.pagehero--gruen::after {
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(94,131,179,.30), transparent 55%),
    radial-gradient(90% 90% at 0% 120%, rgba(20,40,33,.6), transparent 60%);
}
.pagehero--gruen p { color: #d6e4dc; }

/* Breadcrumb */
.crumbs { font-size: 13.5px; color: var(--steingrau); display: flex; gap: 8px; align-items: center; }
.crumbs a { color: var(--steingrau); }
.crumbs a:hover { color: var(--blau); }
.crumbs .sep { opacity: .5; }

/* ----------------------------- Media-Platzhalter ----------------------- */
.ph {
  position: relative;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(7,52,117,.05) 0 14px, rgba(7,52,117,.02) 14px 28px),
    linear-gradient(150deg, #dfe6f0, #eef0f0 60%, #e7ded0);
  overflow: hidden;
  isolation: isolate;
  min-height: 220px;
  display: flex; align-items: flex-end;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 70% at 70% 20%, rgba(255,255,255,.5), transparent 60%);
}
.ph__tag {
  position: relative; z-index: 1;
  margin: 16px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px; letter-spacing: .02em;
  color: #3a4a63;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(7,52,117,.12);
  padding: 7px 11px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(2px);
}
.ph__tag::before { content: "▣"; color: var(--blau); }
.ph--blau {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,.02) 14px 28px),
    linear-gradient(150deg, var(--blau-700), var(--blau) 55%, var(--stahlblau));
}
.ph--blau .ph__tag { color: #dce6f5; background: rgba(7,33,74,.5); border-color: rgba(255,255,255,.2); }
.ph--blau .ph__tag::before { color: var(--sandstein); }
.ph--gruen {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,.02) 14px 28px),
    linear-gradient(150deg, var(--tannengruen), #3a5d4f 60%, var(--stahlblau));
}
.ph--gruen .ph__tag { color: #dce9e2; background: rgba(20,40,33,.5); border-color: rgba(255,255,255,.2); }
.ph--sand {
  background:
    repeating-linear-gradient(135deg, rgba(120,90,40,.06) 0 14px, rgba(120,90,40,.02) 14px 28px),
    linear-gradient(150deg, #e7dcc6, var(--sandstein) 70%, #c4ad8b);
}
.ph--grau {
  background: #F1F0EC;
  align-items: center; justify-content: center;
}
.ph--grau::before { display: none; }
.ph--grau .ph__tag {
  margin: 0; padding: 0;
  background: none; border: none; backdrop-filter: none;
  color: var(--steingrau);
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; letter-spacing: .12em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ph--grau .ph__tag::before {
  content: "";
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(110,110,104,.14);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='11' r='2'/%3E%3Cpath d='M21 17l-5-5-4 4-2-2-4 4'/%3E%3C/svg%3E") center / 26px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='11' r='2'/%3E%3Cpath d='M21 17l-5-5-4 4-2-2-4 4'/%3E%3C/svg%3E") center / 26px no-repeat;
  color: transparent;
}
.ph--ratio-43 { aspect-ratio: 4 / 3; min-height: 0; }
.ph--ratio-32 { aspect-ratio: 3 / 2; min-height: 0; }
.ph--ratio-169 { aspect-ratio: 16 / 9; min-height: 0; }
.ph--ratio-11 { aspect-ratio: 1 / 1; min-height: 0; }
.ph--hero { aspect-ratio: 5 / 4; min-height: 0; box-shadow: var(--shadow-lg); }

/* Echtes Bild im Platzhalter-Slot */
.ph > img.ph__img,
.media-fill {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; z-index: 0;
}
.ph--has-img { background: var(--nebelgrau); }
.ph--has-img::before { display: none; }
.media-frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}

/* ----------------------------- Cards ----------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d6cfc0; }
.card__body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__body .h3 { margin: 0; }
.card__foot { margin-top: auto; padding-top: 6px; }

/* USP-Kacheln */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.usp {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.usp:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(7,52,117,.07); color: var(--blau);
  margin-bottom: 4px;
}
.usp__icon svg { width: 26px; height: 26px; }
.usp h3 { font-size: 1.12rem; }
.usp p { font-size: 15.5px; color: #44443f; line-height: 1.55; }

/* Werkstatt-Abgrenzung (Aufbau vs. Basisfahrzeug) */
.scope-note { display: flex; align-items: flex-start; gap: 16px; margin: 24px 0 32px; padding: 20px 24px; background: var(--nebelgrau); border: 1px solid var(--linie); border-radius: var(--radius); }
.scope-note__icon { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--blau); color: #fff; }
.scope-note__icon svg { width: 22px; height: 22px; }
.scope-note p { margin: 0; font-size: 15.5px; line-height: 1.6; color: #3a3a35; max-width: 90ch; }
.scope-note strong { color: var(--blau); }

/* Einbau-/Nachrüst-Tags */
.install-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.install-tags li { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px 10px 13px; background: #fff; border: 1px solid var(--linie); border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--anthrazit); line-height: 1.3; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.install-tags li::before { content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--tannengruen); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 6'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.install-tags li:hover { border-color: color-mix(in srgb, var(--tannengruen) 45%, transparent); box-shadow: var(--shadow-sm); transform: translateY(-1px); }

/* Prozess / Steps */
.steps { display: grid; gap: 18px; counter-reset: step; }
.steps--row { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative; background: #fff; border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 26px 24px 24px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--messing); opacity: .8;
  position: absolute; top: 26px; right: 24px; letter-spacing: .04em;
}
.step__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(7,52,117,.07); color: var(--blau);
  display: grid; place-items: center; margin-bottom: 16px;
}
.step__icon svg { width: 24px; height: 24px; }
.steps--gruen .step__icon { background: rgba(44,74,62,.10); color: var(--tannengruen); }
.steps--gruen .step::before { color: var(--tannengruen); }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 15px; color: #44443f; }

/* Feature-Liste mit Häkchen */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 34px; line-height: 1.5; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(7,52,117,.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23073475' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.checks.checks--cols { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 32px; }

/* Fragen-Raster (Beratungsfragen) */
.qgrid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.qgrid li { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--linie, rgba(7,52,117,.14)); border-radius: var(--radius-sm); line-height: 1.4; font-weight: 600; color: var(--blau); transition: border-color .18s ease, box-shadow .18s ease; }
.qgrid li:hover { border-color: color-mix(in srgb, var(--blau) 45%, transparent); box-shadow: var(--shadow-sm, 0 4px 14px rgba(7,52,117,.08)); }
.qgrid__q { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--blau); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.05rem; line-height: 1; }
@media (max-width: 760px) { .qgrid { grid-template-columns: 1fr; } }

/* ----------------------------- Marken ---------------------------------- */
.brand-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.brand {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand__media { position: relative; }
.brand__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--anthrazit); }
.brand__desc { font-size: 15px; color: #44443f; }
.brand--hero { grid-row: span 2; }
.brand--hero .brand__name { font-size: clamp(1.6rem, 2.4vw, 2.2rem); color: var(--blau); }
.brand--hero .brand__body { padding: 30px; gap: 12px; }
.brand--hero .brand__desc { font-size: 17px; }
.brand__badge {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-family: var(--font-display); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blau); background: rgba(7,52,117,.08);
  padding: 5px 11px; border-radius: 999px;
}
.brand__badge--gold { color: var(--messing-dk); background: rgba(194,161,77,.14); }

/* Marken-Logos in den Karten */
.brand__logo { display: flex; align-items: center; height: 30px; }
.brand__logo img { height: 100%; width: auto; max-width: 200px; object-fit: contain; object-position: left center; }
.brand--hero .brand__logo { height: 48px; }
.brand--hero .brand__logo img { max-width: 260px; }

/* Feature-Layout: Pössl als breite Hero-Karte oben, 3 gleiche Karten darunter */
.brand-grid--feature { grid-template-columns: repeat(3, 1fr); }
.brand-grid--feature .brand--hero { grid-row: auto; grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.brand-grid--feature .brand--hero .brand__media { flex: 1 1 54%; min-height: 300px; }
.brand-grid--feature .brand--hero .brand__body { flex: 1 1 46%; justify-content: center; }

/* Sub-Marken-Streifen (Pössl-Familie) */
.brand-lines { margin-top: 4px; }
.brand-lines__label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--steingrau); margin-bottom: 14px; }
.brand-lines__row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; }
.brand-lines__row img { height: 22px; width: auto; opacity: .82; }

/* Marken-Logowall (Verkauf-Karten / Bestand) */
.brand-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(32px, 5vw, 68px); padding: 6px 0; }
.brand-strip img { height: clamp(38px, 4vw, 48px); width: auto; max-width: 200px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .2s ease, opacity .2s ease, transform .2s ease; }
.brand-strip a:hover img { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }

/* Logowand als umrahmtes Panel mit Trennlinien */
.brand-strip--panel { border: 1px solid var(--linie); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); padding: clamp(24px, 3vw, 40px) clamp(16px, 3vw, 40px); gap: 0; }
.brand-strip--panel a { flex: 1 1 0; display: grid; place-items: center; padding: 8px clamp(16px, 3vw, 40px); position: relative; }
.brand-strip--panel a + a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 46px; background: var(--linie); }
@media (max-width: 620px) {
  .brand-strip--panel { flex-wrap: wrap; }
  .brand-strip--panel a { flex: 0 0 50%; padding: 18px 8px; }
  .brand-strip--panel a + a::before { display: none; }
}

/* kleine Karten (4er-Grid Verkauf) */
.brandcard__logo { display: flex; align-items: center; height: 34px; margin-bottom: 14px; }
.brandcard__logo img { height: 100%; width: auto; max-width: 190px; object-fit: contain; object-position: left center; }

/* Modell-Logos (dezente Zeile in der Vanline-Karte) */
.model-logos { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--linie); }
.model-logos__label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--steingrau); margin-bottom: 14px; }
.model-logos__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; align-items: center; justify-items: start; }
.model-logos__row img { max-height: 15px; max-width: 118px; width: auto; opacity: .68; transition: opacity .2s ease; }
.card--hover:hover .model-logos__row img { opacity: .9; }

/* ----------------------------- Split-Bänder ---------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--form { align-items: start; }
@media (max-width: 920px) { .split--form { grid-template-columns: 1fr; } }
.split--rev .split__text { order: 2; }
.split__text .h2 { margin-bottom: 16px; }
.split__text p + p { margin-top: 14px; }
.split__media { position: relative; }

/* ----------------------------- Standort -------------------------------- */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.info-list li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.info-list .ico { color: var(--blau); margin-top: 2px; }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list .k { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--anthrazit); display: block; }
.info-list .v { font-size: 15.5px; color: #44443f; }
.tbd { color: var(--steingrau); font-style: italic; }

/* Map / Klick-zum-Laden */
.consent {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 340px; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(0deg, rgba(7,52,117,.05) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(7,52,117,.05) 0 1px, transparent 1px 38px),
    linear-gradient(160deg, #e7ecf3, #eef1f1);
  border: 1px solid var(--linie);
}
.consent__card {
  background: rgba(255,255,255,.9); backdrop-filter: blur(3px);
  border: 1px solid var(--linie); border-radius: 12px;
  padding: 26px 28px; max-width: 360px; box-shadow: var(--shadow-sm);
}
.consent__card .h3 { font-size: 1.1rem; margin-bottom: 8px; }
.consent__card p { font-size: 14.5px; color: var(--steingrau); margin-bottom: 16px; }
.consent__pin {
  width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(7,52,117,.1); color: var(--blau); display: grid; place-items: center;
}

/* iframe-Platzhalter (Konfigurator / Syscara) */
.syscara { min-height: 200px; }
.syscara > * { max-width: 100%; }
.embed {
  border-radius: var(--radius); border: 1px solid var(--linie); background: #fff;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.embed__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--linie); background: var(--nebelgrau); }
.embed__bar .d { width: 10px; height: 10px; border-radius: 50%; background: #cfc9bd; }
.embed__bar .label { margin-left: 8px; font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--steingrau); }
.embed__body {
  min-height: 520px; display: grid; place-items: center; text-align: center; padding: 40px;
  background:
    repeating-linear-gradient(135deg, rgba(7,52,117,.035) 0 16px, transparent 16px 32px);
}
.embed__icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(7,52,117,.08); color: var(--blau); display: grid; place-items: center; margin: 0 auto 18px; }
.embed__body .h3 { font-size: 1.25rem; margin-bottom: 10px; }
.embed__body p { color: var(--steingrau); max-width: 46ch; margin: 0 auto; }
.embed__tag { margin-top: 18px; font-family: ui-monospace, Menlo, monospace; font-size: 12px; color: var(--hellblau); background: rgba(7,52,117,.06); padding: 6px 12px; border-radius: 8px; display: inline-block; }

/* Filter-Chips (Fahrzeugbestand) */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-chip {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--linie);
  background: #fff; color: #44443f; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.filter-chip:hover { border-color: var(--blau); color: var(--blau); }
.filter-chip.is-active { background: var(--blau); border-color: var(--blau); color: #fff; }
.filter-chip .count { font-size: 12.5px; opacity: .7; font-weight: 500; }

/* Beitrags-Toolbar (Kategorie-Filter + Suche) */
.posts-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.posts-filter { display: flex; flex-wrap: wrap; gap: 10px; }
.posts-search { position: relative; display: flex; align-items: center; min-width: 260px; flex: 1 1 240px; max-width: 340px; }
.posts-search > svg { position: absolute; left: 15px; color: var(--steingrau); pointer-events: none; }
.posts-search input {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--anthrazit);
  padding: 11px 38px 11px 42px; border: 1px solid var(--linie); border-radius: 999px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.posts-search input::placeholder { color: var(--steingrau); }
.posts-search input:focus { outline: none; border-color: var(--blau); box-shadow: 0 0 0 3px rgba(7,52,117,.1); }
.posts-search input::-webkit-search-cancel-button { display: none; }
.posts-search__clear {
  position: absolute; right: 12px; width: 22px; height: 22px; border: none; background: var(--nebelgrau-2);
  color: var(--steingrau); border-radius: 50%; font-size: 16px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .15s ease, color .15s ease;
}
.posts-search__clear:hover { background: var(--blau); color: #fff; }
.posts-empty { grid-column: 1 / -1; text-align: center; color: var(--steingrau); font-size: 15.5px; padding: 40px 0; }

@media (max-width: 640px) {
  .posts-toolbar { flex-direction: column; align-items: stretch; }
  .posts-search { max-width: none; }
}

/* ----------------------------- Termin-Boxen ---------------------------- */
.termin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.termin {
  border-radius: var(--radius); padding: 30px; border: 1px solid var(--linie);
  background: #fff; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.termin--primary { background: var(--blau); border-color: var(--blau); color: #e9f0fb; }
.termin--primary .h3 { color: #fff; }
.termin--primary p { color: #cdddf3; }
.termin__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(7,52,117,.08); color: var(--blau); }
.termin--primary .termin__icon { background: rgba(255,255,255,.14); color: #fff; }
.termin .h3 { font-size: 1.25rem; }
.termin p { font-size: 15.5px; }
.termin .btn { margin-top: auto; }

/* ----------------------------- Formulare ------------------------------- */
.form { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr); }
.form__row { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field select { max-width: 100%; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.field label .req { color: var(--messing-dk); }
.field input, .field select, .field textarea {
  font-family: var(--font-text); font-size: 16px; color: var(--anthrazit);
  padding: 13px 15px; border: 1px solid #d6d0c4; border-radius: 10px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blau); box-shadow: 0 0 0 3px rgba(7,52,117,.12);
}
.file-drop {
  border: 1.5px dashed #c9c2b3; border-radius: 10px; padding: 22px; text-align: center;
  color: var(--steingrau); font-size: 14.5px; background: #fbfaf7; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.file-drop:hover { border-color: var(--blau); background: #fff; }
.consent-check { display: block; font-size: 14px; color: #44443f; line-height: 1.5; }
.consent-check input { float: left; margin: 3px 12px 0 0; width: 18px; height: 18px; accent-color: var(--blau); }
.form-note { font-size: 13px; color: var(--steingrau); }

/* ----------------------------- Jobs ------------------------------------ */
.jobs { display: grid; gap: 14px; }
.job {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.job:hover { box-shadow: var(--shadow-md); border-color: #d6cfc0; }
.job[open] { border-color: #d6cfc0; box-shadow: var(--shadow-md); }
.job__head {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 22px 26px; cursor: pointer; list-style: none;
}
.job__head::-webkit-details-marker { display: none; }
.job__head:focus-visible { outline: 2px solid var(--blau); outline-offset: -2px; }
.job__main { flex: 1 1 320px; }
.job__title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.job__meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 6px; font-size: 14px; color: var(--steingrau); }
.job__meta span { display: inline-flex; align-items: center; gap: 6px; }
.job__chev { margin-left: auto; color: var(--steingrau); display: inline-flex; flex: none; transition: transform .25s ease; }
.job[open] .job__chev { transform: rotate(180deg); color: var(--blau); }
.job__body {
  padding: 4px 26px 24px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.job__desc { max-width: 70ch; color: #44443f; line-height: 1.65; }
.tag {
  display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 600;
  font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--stahlblau); background: rgba(46,90,104,.1); padding: 5px 11px; border-radius: 999px;
}
.tag--gold { color: var(--messing-dk); background: rgba(194,161,77,.16); }

/* Angebote / Aktionen */
.offer .card__body { display: flex; flex-direction: column; gap: 10px; }
.offer .h3 { margin-top: 2px; }
.offer__foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--linie);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
}
.offer__price { display: flex; flex-direction: column; gap: 2px; }
.offer__from { font-size: 12.5px; color: var(--steingrau); }
.offer__price strong { font-family: var(--font-display); color: var(--blau); font-size: 1.15rem; }
.offer__until { font-size: 13px; align-self: flex-end; }
.ph-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--messing); flex: none; }

/* Zahlungsarten */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pay {
  position: relative; background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .18s ease;
}
.pay:hover { box-shadow: var(--shadow-md); border-color: #d6cfc0; transform: translateY(-2px); }
.pay--feature { border-color: rgba(7,52,117,.18); }
.pay__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(7,52,117,.07); color: var(--blau); display: grid; place-items: center; }
.pay__icon svg { width: 27px; height: 27px; }
.pay h3 { font-size: 1.22rem; }
.pay p { color: #44443f; line-height: 1.6; font-size: 15px; }
.pay__badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .04em;
  color: var(--messing-dk); background: rgba(194,161,77,.15); padding: 5px 11px; border-radius: 999px;
}
.pay__list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pay__list li { position: relative; padding-left: 26px; font-size: 14.5px; color: #44443f; }
.pay__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
  background: var(--blau); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section-head p.center, p.muted.center { text-align: center; }

/* ----------------------------- Team ------------------------------------ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member { background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member__body { padding: 22px 24px 26px; }
.member__name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.member__role { color: var(--blau); font-weight: 600; font-size: 14px; font-family: var(--font-display); margin-top: 2px; }
.member__contact { margin-top: 14px; display: grid; gap: 6px; font-size: 14.5px; }
.member__contact a { color: #44443f; display: inline-flex; align-items: center; gap: 9px; }
.member__contact a:hover { color: var(--blau); }
.member__contact svg { width: 16px; height: 16px; color: var(--blau); flex: none; }
.member--soon { border-style: dashed; background: #fbfaf7; box-shadow: none; display: grid; place-items: center; text-align: center; min-height: 280px; }
.member--soon .member__body { color: var(--steingrau); }
.member__flag {
  position: absolute; z-index: 2; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .02em;
  color: #fff; background: rgba(7,33,74,.72);
  border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(2px);
}
.member__flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sandstein); }

/* ----------------------------- Aktuelles ------------------------------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post__media { position: relative; }
.post__play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.post__play span { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--blau); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.post__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post__meta { font-size: 13px; color: var(--steingrau); display: flex; gap: 12px; align-items: center; }
.post__title { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; line-height: 1.25; }
.post__excerpt { font-size: 15px; color: #44443f; }
.post__foot { margin-top: auto; padding-top: 6px; }

/* Pagination */
.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 40px; }
.pager__btn {
  min-width: 42px; height: 42px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--anthrazit); background: #fff; border: 1px solid var(--linie);
  border-radius: 10px; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.pager__btn:hover:not(:disabled):not(.is-active) { border-color: var(--blau); color: var(--blau); }
.pager__btn.is-active { background: var(--blau); color: #fff; border-color: var(--blau); cursor: default; }
.pager__btn:disabled { opacity: .4; cursor: not-allowed; }
.pager__nav { font-size: 18px; }

/* ----------------------------- Footer ---------------------------------- */
.footer { background: var(--anthrazit); color: #bdbcb7; font-size: 15px; }
.footer__top { padding-block: clamp(48px, 6vw, 76px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__logo img { height: auto; width: 176px; max-width: none; margin-bottom: 18px; }
.footer__about { max-width: 34ch; line-height: 1.6; color: #a9a8a3; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { color: #bdbcb7; }
.footer__col a:hover { color: #fff; }
.footer__contact { display: grid; gap: 10px; }
.footer__contact a, .footer__contact span { color: #bdbcb7; display: flex; gap: 10px; align-items: start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--messing); flex: none; margin-top: 3px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar .container { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: space-between; padding-block: 22px; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a { color: #97968f; font-size: 14px; }
.footer__legal a:hover { color: #fff; }
.footer__copy { font-size: 14px; color: #87867f; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #cdccc7; }
.footer__social a:hover { background: var(--blau); border-color: var(--blau); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }

/* Social-Follow (Aktuelles-Sektion) */
.social-follow { margin-top: clamp(32px,4vw,48px); padding-top: clamp(28px,3vw,36px); border-top: 1px solid var(--linie, rgba(7,52,117,.14)); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 28px; }
.social-follow__label { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem,1.6vw,1.2rem); color: var(--anthrazit); max-width: 30ch; }
.social-follow__links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-follow__links a { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px 11px 14px; background: #fff; border: 1px solid var(--linie, rgba(7,52,117,.14)); border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--anthrazit); transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease; }
.social-follow__links a svg { width: 19px; height: 19px; color: var(--blau); transition: color .18s ease; }
.social-follow__links a:hover { background: var(--blau); border-color: var(--blau); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm, 0 4px 14px rgba(7,52,117,.08)); }
.social-follow__links a:hover svg { color: #fff; }
.social-follow--stack { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 32px; padding-top: 28px; }
@media (max-width: 620px) { .social-follow__links { width: 100%; } .social-follow__links a { flex: 1 1 auto; justify-content: center; } }

/* ----------------------------- CTA-Band -------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--blau-900), var(--blau) 60%, var(--stahlblau)); color: #fff; border-radius: var(--radius); padding: clamp(36px, 5vw, 60px); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% 0%, rgba(194,161,77,.22), transparent 55%); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.cta-band p { color: rgba(255,255,255,.92); margin-top: 10px; max-width: 48ch; }

/* ----------------------------- Utilities ------------------------------- */
.tcenter { text-align: center; }
.maxw-720 { max-width: 720px; }
.maxw-820 { max-width: 820px; }
.mx-auto { margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.prose p + p { margin-top: 16px; }
.prose { overflow-wrap: anywhere; word-break: break-word; }
.prose a { overflow-wrap: anywhere; word-break: break-word; }
.prose .lead + p { margin-top: 18px; }

/* ----------------------------- Artikel --------------------------------- */
.article-hero { position: relative; color: #fff; overflow: hidden; }
.article-hero__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.article-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,33,74,.55), rgba(6,33,74,.82)); }
.article-hero__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: clamp(48px,7vw,92px) 0 clamp(36px,4vw,52px); }
.article-hero .eyebrow { color: var(--messing); }
.article-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; line-height: 1.12; margin: 16px 0 0; max-width: 18ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 20px; font-size: 14.5px; color: #c7d4ea; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }

.article { max-width: 760px; margin: 0 auto; }
.article p, .article li { color: #36352f; line-height: 1.72; font-size: 1.06rem; }
.article > p:first-child, .article .lead { font-size: 1.2rem; line-height: 1.6; color: #2a2a26; }
.article p + p { margin-top: 18px; }
.article h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem,2.2vw,1.7rem); color: var(--blau); margin: 44px 0 14px; }
.article h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: 30px 0 10px; }
.article h2 + p, .article h3 + p { margin-top: 0; }
.article__list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.article__list li { position: relative; padding-left: 30px; }
.article__list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--messing);
}
.article h2 + .article__list, .article h3 + .article__list { margin-top: 14px; }
.article__share { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--linie); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.article__back { font-size: 14.5px; }
.article .cta-band p { color: rgba(255,255,255,.92); }
.article .cta-band h2 { color: #fff; }
.article__tablewrap { margin: 28px 0 8px; overflow-x: auto; border: 1px solid var(--linie); border-radius: var(--radius-sm); }
.article__table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 460px; }
.article__table th, .article__table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--linie); vertical-align: top; }
.article__table thead th { background: var(--blau); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.article__table tbody tr:nth-child(even) { background: var(--nebelgrau); }
.article__table tbody td:first-child { font-weight: 600; color: var(--anthrazit); }
.article__table tbody tr:last-child td { border-bottom: none; }

/* Artikel-Bilder */
.article__fig { margin: 32px 0 10px; }
.article__fig img { display: block; width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--linie); }
.article__figs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0 10px; }
.article__figs img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; border-radius: var(--radius); border: 1px solid var(--linie); }
.article__figs figcaption { grid-column: 1 / -1; }
.article figure figcaption { margin-top: 11px; font-size: 14px; color: var(--steingrau); line-height: 1.5; }
@media (max-width: 620px) { .article__figs { grid-template-columns: 1fr; } .article__figs img { aspect-ratio: 3 / 2; } }

/* FAQ-Akkordeon */
.faq { border: 1px solid var(--linie); border-radius: var(--radius-sm); background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq + .faq { margin-top: 10px; }
.faq[open] { border-color: #d6cfc0; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--anthrazit); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--blau); outline-offset: -2px; }
.faq__chev { margin-left: auto; color: var(--steingrau); flex: none; display: inline-flex; transition: transform .25s ease; }
.faq[open] .faq__chev { transform: rotate(180deg); color: var(--blau); }
.faq__a { padding: 0 22px 20px; }
.faq__a p { margin: 0; }
.faq__a p + p { margin-top: 14px; }

/* Reveal-Animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ----------------------------- Responsive ------------------------------ */
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .steps--row { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand--hero { grid-row: auto; grid-column: span 2; }
  .brand-grid--feature { grid-template-columns: 1fr 1fr; }
  .brand-grid--feature .brand--hero { grid-column: 1 / -1; }
  .team-grid, .posts { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1080px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  /* Mobile-Menü offen */
  .nav__menu.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--linie);
    padding: 14px var(--gutter); box-shadow: var(--shadow-md);
  }
  .nav__menu.open a { padding: 12px 14px; font-size: 16px; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .split, .grid-2, .grid-3, .termin-grid, .form__row, .checks.checks--cols { grid-template-columns: 1fr; }
  .split--rev .split__text { order: 0; }
  .usp-grid, .steps--row, .brand-grid, .team-grid, .posts { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .brand--hero { grid-column: auto; }
  .brand-grid--feature { grid-template-columns: 1fr; }
  .brand-grid--feature .brand--hero { flex-direction: column; }
  .brand-grid--feature .brand--hero .brand__media { min-height: 220px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .nav { height: 64px; }
  .nav__logo img { width: 140px; }

  /* Mobile-Menü offen (klein) */
  .nav__menu.open a { padding: 12px 14px; font-size: 16px; }
}
