/* XAKT Onepager — Grundlage
   ---------------------------------------------------------------
   Enthält die Marken-Variablen aus site.json und die gemeinsamen
   Bausteine, die im Export als @siteui-Pakete vorlagen (title, text,
   button, eyebrow, card, screw-head).

   Die Variablennamen sind bewusst unverändert (--color-kit-*,
   --font-kit-*): Die zwölf Abschnitts-Stylesheets aus dem Export
   verweisen darauf und laufen dadurch ohne eine einzige Änderung. */

/* --------------------------------------------------------- Schriften */
/* Lokal eingebunden, nicht über Google. Ein CDN-Aufruf würde die
   Adresse jedes Besuchers an einen Dritten übertragen. */

@font-face {
  font-family: 'Barlow';
  src: url('schriften/barlow-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('schriften/barlow-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('schriften/barlow-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('schriften/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('schriften/barlow-condensed-700-italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* --------------------------------------------------------- Variablen */
/* Werte unverändert aus site.json, Abschnitt brand.colors. */

:root {
  --color-kit-key1: #F46A00;
  --color-kit-secondary: #111111;
  --color-kit-white: #FFFFFF;
  --color-kit-black: #111111;
  --color-kit-light: #F5F5F3;
  --color-kit-dark: #555555;

  --font-kit-header-font: 'Barlow Condensed';
  --font-kit-text-font: 'Barlow';

  --kopf-hoehe: 76px;
}

/* ------------------------------------------------------------- Reset */

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

html {
  scroll-behavior: smooth;
  /* Sprungziele nicht unter die feste Kopfzeile rutschen lassen. */
  scroll-padding-top: var(--kopf-hoehe);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-kit-white);
  color: var(--color-kit-black);
  font-family: var(--font-kit-text-font), 'Barlow', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------- Baustein: Titel */
/* entspricht siteui/title */

.ui-title {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-kit-black);
  text-wrap: balance;
}
.ui-title-xs { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.15; }
.ui-title-sm { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.1; }
.ui-title-md { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.ui-title-lg { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.ui-title-xl { font-size: clamp(2.8rem, 6vw, 4.6rem); }
.ui-title-xxl { font-size: clamp(3.4rem, 8vw, 6rem); }

/* ---------------------------------------------------- Baustein: Text */
/* entspricht siteui/text */

.ui-text {
  font-family: var(--font-kit-text-font), 'Barlow', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: var(--color-kit-dark);
}
.ui-text-xs { font-size: 0.78rem; line-height: 1.5; }
.ui-text-sm { font-size: 0.9rem; }
.ui-text-md { font-size: 1.02rem; }
.ui-text-lg { font-size: clamp(1.1rem, 1.6vw, 1.25rem); }
.ui-text-xl { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.ui-versal { text-transform: uppercase; letter-spacing: 0.14em; }

/* -------------------------------------------- Baustein: Schaltfläche */
/* entspricht siteui/button */

.ui-btn {
  --_bg: var(--color-kit-key1);
  --_fg: var(--color-kit-white);
  --_bd: var(--color-kit-key1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-kit-text-font), 'Barlow', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 2px solid var(--_bd);
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  border-radius: 2px;
  transition: transform .18s ease, background .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
  line-height: 1;
  white-space: nowrap;
}
.ui-btn:hover { transform: translateY(-2px); }
.ui-btn:active { transform: translateY(0); }
.ui-btn:focus-visible { outline: 3px solid var(--color-kit-black); outline-offset: 3px; }
.ui-btn-pfeil { transition: transform .2s ease; flex: none; }
.ui-btn:hover .ui-btn-pfeil { transform: translateX(4px); }

.ui-btn-sm { padding: 0.6em 1.1em; font-size: 0.8rem; }
.ui-btn-md { padding: 0.85em 1.5em; font-size: 0.9rem; }
.ui-btn-lg { padding: 1.05em 1.9em; font-size: 1rem; }

.ui-btn-primary {
  --_bg: var(--color-kit-key1);
  --_fg: var(--color-kit-black);
  --_bd: var(--color-kit-key1);
  font-weight: 700;
}
.ui-btn-primary:hover { box-shadow: 0 10px 24px -8px #F46A0088; }

.ui-btn-secondary {
  --_bg: transparent;
  --_fg: var(--color-kit-black);
  --_bd: var(--color-kit-black);
}
.ui-btn-secondary:hover { --_bg: var(--color-kit-black); --_fg: var(--color-kit-white); }

.ui-btn-light {
  --_bg: transparent;
  --_fg: var(--color-kit-white);
  --_bd: #ffffff66;
}
.ui-btn-light:hover {
  --_bg: var(--color-kit-white);
  --_fg: var(--color-kit-black);
  --_bd: var(--color-kit-white);
}

@media (prefers-reduced-motion: reduce) {
  .ui-btn, .ui-btn-pfeil { transition: none; }
  .ui-btn:hover { transform: none; }
}

/* ----------------------------------------------- Baustein: Augenbraue */
/* entspricht siteui/eyebrow — kurzer Strich plus Kleintext */

.ui-augenbraue { display: inline-flex; align-items: center; gap: 0.7rem; }
.ui-augenbraue-strich {
  width: 34px;
  height: 3px;
  display: block;
  flex: none;
  background: var(--color-kit-key1);
}
.ui-augenbraue-text {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.2;
}

/* --------------------------------------------------- Baustein: Karte */
/* entspricht siteui/card */

.ui-card {
  position: relative;
  border-radius: 4px;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease, background 0.4s ease;
}
.ui-card-light { background: var(--color-kit-white); border: 1px solid #1111110f; }
.ui-card-outline { background: transparent; border: 1px solid #11111122; }
.ui-card-dark { background: #151515; border: 1px solid #ffffff14; }
.ui-card-hover { cursor: pointer; }
.ui-card-hover:hover { transform: translateY(-4px); }
.ui-card-light.ui-card-hover:hover { border-color: var(--color-kit-key1); }
.ui-card-outline.ui-card-hover:hover { border-color: var(--color-kit-key1); }

@media (prefers-reduced-motion: reduce) {
  .ui-card { transition: none; }
  .ui-card-hover:hover { transform: none; }
}

/* --------------------------------------------- Baustein: Schraubenkopf */
/* entspricht siteui/screw-head */

.ui-schraube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.ui-schraube svg { display: block; }


/* ===== 01-hero ===== */
.a01-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-kit-black);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(6rem, 12vh, 9rem) 0 0;
}
.a01-full {
  min-height: var(--con-kit-section-min-height, 100vh);
}

.a01-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: -3;
  transform: scale(1.04);
}
.a01-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, #0B0B0B 0%, #0B0B0Bd9 34%, #0B0B0B55 66%, #0B0B0B22 100%),
    linear-gradient(0deg, #0B0B0B 0%, transparent 42%);
}
.a01-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(#ffffff10 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.a01-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.a01-inner {
  max-width: 900px;
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
}

.a01-eyebrowRow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.a01-tick {
  width: 34px;
  height: 3px;
  background: var(--color-kit-key1);
  display: block;
}
.a01-eyebrow {
  letter-spacing: 0.18em;
  opacity: 0.92;
}

.a01-title {
  max-width: 16ch;
  margin-bottom: 1.6rem;
}

.a01-subline {
  max-width: 62ch;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.a01-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.a01-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}
.a01-trustItem {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #DDDDD8;
  font-family: var(--font-kit-text-font), 'Barlow', Arial, sans-serif;
  font-size: 0.94rem;
}
.a01-trustItem svg { flex: none; }

.a01-closing {
  border-top: 1px solid #ffffff1f;
  padding: 1.1rem 0;
  background: #0B0B0B4d;
  backdrop-filter: blur(2px);
}
.a01-closingLine {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: var(--color-kit-white);
}
.a01-closingLine::first-letter { color: var(--color-kit-key1); }

@media (max-width: 640px) {
  .a01-hero { padding-top: 5rem; }
  .a01-ctas { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  .a01-bg { transform: none; }
}



/* ===== 02-b2c-b2b-toggle ===== */
.a02-section {
  background: var(--color-kit-light);
  padding: clamp(3.5rem, 8vh, 6rem) 0;
}
.a02-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a02-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a02-head { margin-bottom: clamp(2rem, 4vh, 3rem); }
.a02-heading { max-width: 20ch; margin: 1rem 0 1.8rem; }

.a02-switch {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-kit-white);
  border: 1px solid #11111118;
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.a02-thumb {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--color-kit-black);
  border-radius: 999px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.a02-switchBtn {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-kit-dark);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.a02-switchOn { color: var(--color-kit-white); }

.a02-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); align-items: stretch; }
.a02-tile { display: flex; flex-direction: column; height: 100%; }
.a02-tileActive { border-color: var(--color-kit-key1); box-shadow: 0 18px 40px -28px #F46A0066; }
.a02-tileTitle { margin-bottom: 0.8rem; }
.a02-tileText { margin-bottom: 1.3rem; line-height: 1.6; }
.a02-tags { list-style: none; margin: 0 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.a02-tags li { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.95rem; color: var(--color-kit-black); }
.a02-tags svg { flex: none; }

@media (max-width: 760px) {
  .a02-grid { grid-template-columns: 1fr; }
  .a02-gridReverse { display: flex; flex-direction: column; }
  .a02-gridReverse > *:first-child { order: 2; }
  .a02-switch { display: grid; width: 100%; }
}



/* ===== 03-trust-bar ===== */
.a03-section { background: var(--color-kit-white); padding: clamp(3rem, 6vh, 4.5rem) 0; border-bottom: 1px solid #11111110; }
.a03-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a03-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a03-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.a03-item { display: flex; flex-direction: column; align-items: flex-start; padding-right: 0.5rem; }
.a03-item:not(:last-child) { border-right: 1px solid #11111112; }
.a03-iconWrap { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1px solid #11111118; border-radius: 4px; margin-bottom: 1rem; }
.a03-title { margin-bottom: 0.4rem; }
.a03-text { line-height: 1.5; }
@media (max-width: 860px) {
  .a03-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .a03-item { border-right: 0 !important; }
  .a03-item:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 460px) { .a03-grid { grid-template-columns: 1fr; } .a03-item:nth-child(5){ grid-column: auto; } }



/* ===== 04-problem-sektion ===== */
.a04-section { position: relative; background: var(--color-kit-black); padding: clamp(4rem, 9vh, 7rem) 0; overflow: hidden; isolation: isolate; }
.a04-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a04-grain { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4; background-image: radial-gradient(#ffffff10 1px, transparent 1px); background-size: 3px 3px; }
.a04-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a04-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end; margin-bottom: clamp(2.5rem, 5vh, 3.5rem); }
.a04-heading { margin-top: 1rem; max-width: 18ch; }
.a04-intro { line-height: 1.7; }
.a04-grid { list-style: none; margin: 0 0 clamp(2.5rem, 5vh, 3.5rem); padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.a04-card { position: relative; background: #151515; border: 1px solid #ffffff14; border-radius: 4px; padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.a04-num { font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; font-size: 0.9rem; letter-spacing: 0.16em; color: #ffffff40; }
.a04-cardText { line-height: 1.45; font-weight: 600; }
.a04-solution { display: flex; gap: 1.2rem; align-items: flex-start; border-top: 1px solid #ffffff1f; padding-top: clamp(2rem, 4vh, 2.6rem); max-width: 76ch; }
.a04-solTick { flex: none; width: 34px; height: 3px; background: var(--color-kit-key1); margin-top: 0.7rem; }
.a04-solText { line-height: 1.7; }
@media (max-width: 860px) {
  .a04-top { grid-template-columns: 1fr; align-items: start; }
  .a04-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .a04-grid { grid-template-columns: 1fr; } }



/* ===== 05-leistungswelten ===== */
.a05-section { background: var(--color-kit-white); padding: clamp(4rem, 9vh, 7rem) 0; }
.a05-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a05-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a05-head { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); align-items: center; margin-bottom: clamp(2rem, 4vh, 3rem); }
.a05-headText { grid-column: 1 / 2; }
.a05-heading { margin-top: 1rem; }
.a05-headImage { grid-column: 2 / 4; overflow: hidden; }
.a05-teamImg { display: block; width: 100%; object-fit: cover; aspect-ratio: 16/9; }
@media (max-width: 860px) { .a05-head { grid-template-columns: 1fr; } .a05-headText { grid-column: 1; } .a05-headImage { grid-column: 1; } }
.a05-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.a05-cardWrap { display: flex; }
.a05-card { display: flex; flex-direction: column; width: 100%; color: var(--color-kit-black); }
.a05-cardTop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.a05-iconWrap { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border: 1px solid #11111116; border-radius: 4px; }
.a05-idx { font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 700; color: #11111116; }
.a05-cardTitle { margin-bottom: 1.1rem; }
.a05-items { list-style: none; margin: 0 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.a05-items li { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.98rem; color: var(--color-kit-dark); }
.a05-dot { flex: none; width: 6px; height: 6px; border-radius: 999px; background: var(--color-kit-key1); }
.a05-more { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; font-size: 0.85rem; color: var(--color-kit-black); transition: gap 0.3s ease; }
.a05-card:hover .a05-more { gap: 0.85rem; color: var(--color-kit-key1); }
@media (max-width: 860px) { .a05-grid { grid-template-columns: 1fr; } }



/* ===== 06-pv-cluster-teaser ===== */
.a06-section { background: var(--color-kit-light); padding: clamp(4rem, 9vh, 7rem) 0; }
.a06-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a06-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a06-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.a06-heading { margin: 1rem 0 1.2rem; max-width: 16ch; }
.a06-text { margin-bottom: 2rem; line-height: 1.7; max-width: 46ch; }
.a06-cluster { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.75rem, 1.5vw, 1rem); }
.a06-chip { display: flex; align-items: center; gap: 1rem; background: var(--color-kit-white); border: 1px solid #11111112; border-radius: 4px; padding: 1.1rem 1.2rem; text-decoration: none; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease; }
.a06-chip:hover { transform: translateY(-3px); border-color: var(--color-kit-key1); }
.a06-chip:first-child { grid-column: 1 / -1; }
.a06-chipIcon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 4px; background: #F46A0012; flex: none; }
.a06-chipLabel { font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; font-size: 1.02rem; color: var(--color-kit-black); }
@media (prefers-reduced-motion: reduce) { .a06-chip:hover { transform: none; } }
@media (max-width: 860px) { .a06-split { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .a06-cluster { grid-template-columns: 1fr; } .a06-chip:first-child { grid-column: auto; } }



/* ===== 07-forderplan-teaser ===== */
.a07-section { position: relative; background: var(--color-kit-black); padding: clamp(4rem, 9vh, 7rem) 0; overflow: hidden; isolation: isolate; }
.a07-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a07-grain { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4; background-image: radial-gradient(#ffffff10 1px, transparent 1px); background-size: 3px 3px; }
.a07-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a07-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.a07-heading { margin: 1rem 0 1.6rem; max-width: 18ch; }
.a07-points { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.a07-points li { display: flex; align-items: center; gap: 0.8rem; color: #EDEDEA; font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 1.02rem; }
.a07-points svg { flex: none; }
.a07-figureCard { border: 1px solid #ffffff1f; border-left: 3px solid var(--color-kit-key1); border-radius: 4px; padding: clamp(2rem, 4vw, 3rem); background: #131313; }
.a07-prefix { display: block; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.9rem; color: #ffffff80; margin-bottom: 0.4rem; }
.a07-figure { display: block; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 0.9; font-size: clamp(4.5rem, 11vw, 8rem); color: var(--color-kit-key1); margin-bottom: 1.2rem; }
.a07-caption { line-height: 1.6; margin-bottom: 1.4rem; }
.a07-disclaimer { margin: 0; padding-top: 1.2rem; border-top: 1px solid #ffffff14; font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.82rem; line-height: 1.55; color: #8f8f8a; }
@media (max-width: 860px) { .a07-split { grid-template-columns: 1fr; } }



/* ===== 08-besondere-losungen ===== */
.a08-section { position: relative; background: var(--color-kit-black); padding: clamp(4rem, 9vh, 7rem) 0; overflow: hidden; isolation: isolate; }
.a08-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a08-grain { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4; background-image: radial-gradient(#ffffff10 1px, transparent 1px); background-size: 3px 3px; }
.a08-container { position: relative; z-index: 1; width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a08-head { margin-bottom: clamp(2.2rem, 4.5vh, 3.2rem); max-width: 30ch; }
.a08-heading { margin: 1rem 0 1.2rem; }
.a08-hint { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.85rem; color: #9a9a95; }
.a08-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.a08-tile { position: relative; background: #141414; border: 1px solid #ffffff14; border-radius: 4px; padding: clamp(1.6rem, 2.4vw, 2.1rem); cursor: pointer; display: flex; flex-direction: column; overflow: hidden; transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.35s ease; }
.a08-tile:hover { border-color: #ffffff2e; transform: translateY(-4px); background: #181818; }
.a08-screwBtn { position: absolute; top: clamp(1.2rem, 2vw, 1.7rem); right: clamp(1.2rem, 2vw, 1.7rem); background: none; border: 0; padding: 0; cursor: pointer; line-height: 0; z-index: 2; }
.a08-tileNum { font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 0.16em; color: var(--color-kit-key1); margin-bottom: 1.6rem; }
.a08-tileTitle { max-width: 15ch; margin-bottom: 0.9rem; }
.a08-tileTeaser { line-height: 1.6; margin-bottom: 1.4rem; flex: 1; }
.a08-tileMore { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; font-size: 0.82rem; color: #ffffffcc; transition: gap 0.3s ease, color 0.3s ease; }
.a08-tile:hover .a08-tileMore { gap: 0.85rem; color: var(--color-kit-key1); }

.a08-overlay { position: fixed; inset: 0; z-index: 9999; background: #000000; background: #00000099; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.a08-modal { position: relative; width: 100%; max-width: 620px; max-height: 88vh; overflow-y: auto; background: var(--color-kit-white); border-radius: 6px; border-top: 4px solid var(--color-kit-key1); padding: clamp(1.8rem, 4vw, 2.8rem); }
.a08-close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 4px; border: 1px solid #11111116; background: var(--color-kit-white); color: var(--color-kit-black); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.25s ease, color 0.25s ease; }
.a08-close:hover { background: var(--color-kit-black); color: var(--color-kit-white); }
.a08-modalHead { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.3rem; padding-right: 2.5rem; }
.a08-modalHead > span { flex: none; margin-top: 0.2rem; }
.a08-modalTitle { line-height: 1.15; }
.a08-modalText { line-height: 1.7; margin-bottom: 1.6rem; }
.a08-linkRow { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; padding: 1.2rem 0; border-top: 1px solid #11111114; border-bottom: 1px solid #11111114; margin-bottom: 1.6rem; }
.a08-link { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.92rem; color: var(--color-kit-black); text-decoration: none; }
.a08-link:hover { color: var(--color-kit-key1); }
.a08-modalCta { display: flex; }

@media (max-width: 860px) { .a08-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .a08-grid { grid-template-columns: 1fr; }
  .a08-overlay { align-items: flex-end; padding: 0; }
  .a08-modal { max-width: 100%; max-height: 75vh; border-radius: 16px 16px 0 0; border-top: 0; }
}
@media (prefers-reduced-motion: reduce) { .a08-tile:hover { transform: none; } }


/* ===== 09-so-funktioniert-xakt ===== */
.a09-section { background: var(--color-kit-light); padding: clamp(4rem, 9vh, 7rem) 0; }
.a09-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a09-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a09-head { margin-bottom: clamp(2rem, 4vh, 3rem); }
.a09-heading { margin-top: 1rem; }
.a09-timeline { list-style: none; margin: 0; padding: 0; max-width: 860px; }
.a09-step { display: grid; grid-template-columns: 72px 1fr; gap: clamp(1.2rem, 2.5vw, 2rem); }
.a09-marker { display: flex; flex-direction: column; align-items: center; }
.a09-num { flex: none; width: 56px; height: 56px; border-radius: 4px; background: var(--color-kit-black); color: var(--color-kit-white); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.7rem; }
.a09-line { flex: 1; width: 2px; background: linear-gradient(var(--color-kit-key1), #11111114); margin: 0.5rem 0; min-height: 24px; }
.a09-body { padding-bottom: clamp(2rem, 4vw, 3rem); }
.a09-stepTitle { margin-bottom: 0.5rem; }
.a09-stepText { line-height: 1.65; max-width: 60ch; margin-bottom: 0.7rem; }
.a09-tagline { display: inline-block; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 700; letter-spacing: 0.02em; color: var(--color-kit-key1); font-size: 1.05rem; }
.a09-ctaWrap { margin-top: 1rem; padding-left: calc(72px + clamp(1.2rem, 2.5vw, 2rem)); }
@media (max-width: 560px) {
  .a09-step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .a09-num { width: 44px; height: 44px; font-size: 1.3rem; }
  .a09-ctaWrap { padding-left: 0; }
}



/* ===== 10-partner-und-systemkompetenz ===== */
.a10-section { background: var(--color-kit-white); padding: clamp(4rem, 9vh, 7rem) 0; }
.a10-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a10-container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a10-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vh, 3rem); }
.a10-heading { margin: 1rem 0 1rem; }
.a10-text { line-height: 1.7; }
.a10-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.9rem, 1.6vw, 1.2rem); }
.a10-card { border: 1px solid #11111114; border-radius: 4px; padding: 1.4rem; display: flex; flex-direction: column; gap: 0.8rem; transition: border-color 0.35s ease; }
.a10-card:hover { border-color: var(--color-kit-key1); }
.a10-badge { font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; font-size: 1.25rem; color: var(--color-kit-black); line-height: 1.1; }
.a10-cardText { line-height: 1.55; }
@media (max-width: 900px) { .a10-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .a10-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .a10-grid { grid-template-columns: 1fr; } }



/* ===== 11-faq ===== */
.a11-section { background: var(--color-kit-white); padding: clamp(4rem, 9vh, 7rem) 0; }
.a11-full { min-height: var(--con-kit-section-min-height, 100vh); display: flex; flex-direction: column; justify-content: center; }
.a11-container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a11-head { margin-bottom: clamp(1.8rem, 3.5vh, 2.6rem); }
.a11-heading { margin-top: 1rem; max-width: 22ch; }
.a11-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #11111116; }
.a11-item { border-bottom: 1px solid #11111116; }
.a11-q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0; text-align: left; }
.a11-qText { font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--color-kit-black); line-height: 1.25; }
.a11-chev { flex: none; color: var(--color-kit-dark); transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), color 0.32s ease; }
.a11-chevOpen { transform: rotate(180deg); color: var(--color-kit-key1); }
.a11-itemOpen .a11-qText { color: var(--color-kit-key1); }
.a11-aWrap { overflow: hidden; }
.a11-a { line-height: 1.7; padding: 0 3rem 1.5rem 0; margin: 0; }
@media (prefers-reduced-motion: reduce) { .a11-chev { transition: none; } }



/* ===== 12-abschluss-cta-und-footer ===== */
.a12-section { position: relative; background: var(--color-kit-black); padding: clamp(4.5rem, 10vh, 7.5rem) 0 clamp(2rem, 4vh, 3rem); overflow: hidden; isolation: isolate; }
.a12-full { min-height: var(--con-kit-section-min-height, 100vh); }
.a12-grain { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4; background-image: radial-gradient(#ffffff10 1px, transparent 1px); background-size: 3px 3px; }
.a12-container { position: relative; z-index: 1; width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.a12-cta { max-width: 720px; padding-bottom: clamp(3rem, 7vh, 5rem); border-bottom: 1px solid #ffffff1a; }
.a12-heading { margin: 1rem 0 1.3rem; line-height: 1.08; }
.a12-text { max-width: 58ch; line-height: 1.65; margin-bottom: 2rem; }
.a12-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.8rem; }
.a12-closing { display: block; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(0.85rem, 1.4vw, 1.02rem); color: var(--color-kit-white); }
.a12-closing::first-letter { color: var(--color-kit-key1); }

.a12-footer { display: grid; grid-template-columns: 1.2fr 2.4fr; gap: clamp(2rem, 5vw, 4rem); padding: clamp(2.5rem, 5vh, 3.5rem) 0; }
.a12-brand { display: flex; flex-direction: column; gap: 1.2rem; }
.a12-logo { width: 190px; max-width: 60%; height: auto; display: block; }
.a12-address { line-height: 1.6; }
.a12-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.a12-colTitle { display: block; font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; font-size: 0.9rem; color: var(--color-kit-white); margin-bottom: 1rem; }
.a12-colLinks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.a12-link { font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.92rem; color: #A9A9A4; text-decoration: none; transition: color 0.25s ease; }
.a12-link:hover { color: var(--color-kit-key1); }

.a12-legalRow { display: flex; flex-direction: column; gap: 0.5rem; padding-top: clamp(1.5rem, 3vh, 2rem); border-top: 1px solid #ffffff1a; }
.a12-legal { font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.82rem; color: #85857f; line-height: 1.55; }
.a12-funding { font-family: var(--font-kit-text-font), Arial, sans-serif; font-size: 0.78rem; color: #6f6f69; line-height: 1.5; }

@media (max-width: 860px) {
  .a12-footer { grid-template-columns: 1fr; }
  .a12-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 560px) {
  .a12-cta { max-width: 100%; }
  .a12-ctas { flex-direction: column; align-items: stretch; }
}



/* ===== Ergaenzungen fuer den Onepager ===== */

/* XAKT Onepager — Ergänzungen
   ---------------------------------------------------------------
   Alles, was es im Export nicht gab oder was durch den Wechsel von
   React auf reines HTML anders funktioniert:

   - feste Kopfzeile mit Sprungmarken-Navigation (gab es nicht)
   - Kontaktabschnitt samt Formular (gab es nicht)
   - Umschalter Privat/Gewerbe ohne JavaScript
   - Aufklapper und Detailfenster über <details> statt React-Zustand
   - Einblendung beim Scrollen als Ersatz für Framer Motion

   Grundsatz bei allen Bedienelementen: Der Inhalt ist ohne JavaScript
   erreichbar und sichtbar. Nichts versteckt sich hinter einem Skript,
   das ausfallen kann. */

/* ------------------------------------------------------- Sprung-Link */
/* Für Tastaturbedienung: erster Fokus überspringt die Navigation. */

.sprung-zum-inhalt {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 0.9rem 1.4rem;
  background: var(--color-kit-key1);
  color: var(--color-kit-black);
  font-family: var(--font-kit-header-font), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.sprung-zum-inhalt:focus { left: 1rem; top: 1rem; }

/* ---------------------------------------------------------- Kopfzeile */
/* Bleibt durchgehend dunkel: Die Wortmarke im Logo ist weiß, für hellen
   Grund gibt es keine Fassung. */

.kopf {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--kopf-hoehe);
  background: #0B0B0Bef;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ffffff14;
}
.kopf-innen {
  height: 100%;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.kopf-marke { display: flex; align-items: center; flex: none; }
.kopf-marke img { width: 118px; height: auto; display: block; }

.kopf-nav { margin-left: auto; }
.kopf-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}
.kopf-nav a {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.88rem;
  color: #D5D5D0;
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.kopf-nav a:hover { color: var(--color-kit-white); border-bottom-color: var(--color-kit-key1); }
.kopf-nav a:focus-visible { outline: 2px solid var(--color-kit-key1); outline-offset: 3px; }
.kopf-nav a.aktiv { color: var(--color-kit-white); border-bottom-color: var(--color-kit-key1); }

/* Telefonnummer in der Kopfzeile — auf Wunsch des Kunden auf jeder Seite. */
.kopf-tel {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-kit-white);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.kopf-tel:hover { color: var(--color-kit-key1); }
.kopf-tel svg { flex: none; }

.kopf-cta {
  flex: none;
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.15rem;
  background: var(--color-kit-key1);
  color: var(--color-kit-black);
  text-decoration: none;
  border-radius: 2px;
  transition: transform .18s ease;
  white-space: nowrap;
}
.kopf-cta:hover { transform: translateY(-2px); }

/* Menüknopf — nur auf schmalen Bildschirmen sichtbar. Der Schalter ist
   eine Checkbox, damit das Menü ohne JavaScript auf- und zugeht. */
.menue-schalter { display: none; }
.menue-knopf {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.menue-knopf span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-kit-white);
  transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 980px) {
  .menue-knopf { display: flex; }
  .kopf-nav {
    position: fixed;
    top: var(--kopf-hoehe);
    left: 0;
    right: 0;
    margin: 0;
    background: #0B0B0Bfa;
    border-bottom: 1px solid #ffffff14;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .kopf-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .kopf-nav li { border-top: 1px solid #ffffff10; }
  .kopf-nav a {
    display: block;
    padding: 1rem clamp(1.25rem, 4vw, 3rem);
    border-bottom: 0;
    font-size: 1rem;
  }
  .menue-schalter:checked ~ .kopf-nav { max-height: 70vh; overflow-y: auto; }
  .menue-schalter:checked ~ .menue-knopf span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menue-schalter:checked ~ .menue-knopf span:nth-child(2) { opacity: 0; }
  .menue-schalter:checked ~ .menue-knopf span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 980px) {
  /* Der Menüknopf schiebt sich nach rechts; Nummer und Knopf davor. */
  .menue-knopf { margin-left: 0; order: 3; }
  .kopf-tel { margin-left: auto; }
  .kopf-cta { order: 2; }
}
@media (max-width: 700px) {
  .kopf-cta { display: none; }
}
@media (max-width: 420px) {
  /* Ganz schmal bleibt nur das Hörersymbol — der Anruf ist wichtiger
     als die ausgeschriebene Nummer. */
  .kopf-tel span { display: none; }
}

/* ------------------------------------------------- Deckblatt-Anpassung */
/* Im Export lag das Hintergrundbild als CSS-Hintergrund. Hier ist es ein
   echtes <img>, damit der Browser es früh lädt und in zwei Größen wählen
   kann — das Deckblatt ist das erste, was jemand sieht. */

.a01-bg-bild {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
}
.a01-bg-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .a01-bg-bild img { transform: none; }
}
.a01-hero { padding-top: calc(var(--kopf-hoehe) + clamp(3rem, 8vh, 6rem)); }

/* --------------------------------------- Umschalter Privat / Gewerbe */
/* Im Export ein React-Zustand. Hier zwei Radioschalter: Der Schieber und
   die Hervorhebung der Kachel folgen daraus per CSS. Beide Texte stehen
   im Quelltext — auch für Suchmaschinen. */

.a02-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.a02-switchBtn { user-select: none; }

/* Schieber nach rechts, wenn „Gewerbe" gewählt ist. */
#einstieg-gewerbe:checked ~ .a02-thumb { transform: translateX(100%); }

/* Beschriftung der aktiven Seite hell auf dunklem Schieber. */
#einstieg-privat:checked ~ .a02-switchBtn[for="einstieg-privat"],
#einstieg-gewerbe:checked ~ .a02-switchBtn[for="einstieg-gewerbe"] {
  color: var(--color-kit-white);
}
.a02-switchBtn:focus-within { outline: 2px solid var(--color-kit-key1); outline-offset: 3px; }
.a02-radio:focus-visible ~ .a02-switchBtn { outline: 2px solid var(--color-kit-key1); outline-offset: 3px; }

/* Die gewählte Kachel wird hervorgehoben, die andere bleibt ruhig.
   Beide bleiben sichtbar — im Onepager ist das die bessere Fassung als
   ein Wechsel, weil beide Zielgruppen sofort sehen, dass es sie gibt. */
.a02-head:has(#einstieg-privat:checked) ~ .a02-grid .a02-tile1,
.a02-head:has(#einstieg-gewerbe:checked) ~ .a02-grid .a02-tile2 {
  border-color: var(--color-kit-key1);
  box-shadow: 0 18px 40px -28px #F46A0066;
}
.a02-head:has(#einstieg-privat:checked) ~ .a02-grid .a02-tile2 .ui-btn,
.a02-head:has(#einstieg-gewerbe:checked) ~ .a02-grid .a02-tile1 .ui-btn {
  --_bg: transparent;
  --_fg: var(--color-kit-black);
  --_bd: var(--color-kit-black);
  font-weight: 600;
  box-shadow: none;
}

.a02-tile { display: flex; flex-direction: column; height: 100%; }
.a02-tileCta { align-self: flex-start; }

/* Auf schmalen Bildschirmen passen die beiden Beschriftungen nicht mehr
   nebeneinander. Ohne Umbruch wird der Umschalter breiter als der
   Bildschirm und schiebt die ganze Seite zur Seite. */
@media (max-width: 760px) {
  .a02-switch { width: 100%; max-width: 100%; }
  .a02-switchBtn {
    white-space: normal;
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
    text-align: center;
    hyphens: auto;
  }
}

/* -------------------------------- Besondere Lösungen: Detailfenster */
/* <details> steuert auf/zu, CSS macht daraus die Überlagerung. Damit
   funktioniert das Fenster ohne JavaScript, und der Text steht auch
   im geschlossenen Zustand im Quelltext. */

.a08-details { height: 100%; }
.a08-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.a08-summary::-webkit-details-marker { display: none; }
.a08-summary::marker { content: ''; }
.a08-summary:focus-visible { outline: 2px solid var(--color-kit-key1); outline-offset: 4px; }

.a08-screw {
  position: absolute;
  top: clamp(1.2rem, 2vw, 1.7rem);
  right: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 0;
  z-index: 2;
}
.a08-tile:hover .a08-screw svg { animation: schraube-drehen 0.7s linear infinite; }
@keyframes schraube-drehen { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .a08-tile:hover .a08-screw svg { animation: none; }
}

.a08-tileNum { display: block; }
.a08-tileTitle { display: block; }
.a08-tileTeaser { display: block; }

/* Das Fenster selbst. */
.a08-details[open] .a08-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #00000099;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: default;
}
.a08-overlay { display: none; }
.a08-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--color-kit-white);
  border-radius: 6px;
  border-top: 4px solid var(--color-kit-key1);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  cursor: auto;
}
/* Schließen: Klick auf die Zusammenfassung, die im offenen Zustand die
   ganze Fläche hinter dem Fenster einnimmt. Zusätzlich schließt Escape —
   das kann <details> von sich aus nicht, dafür sorgt seite.js. */
.a08-details[open] .a08-summary {
  position: fixed;
  inset: 0;
  z-index: 9998;
  cursor: zoom-out;
}
.a08-details[open] .a08-summary > * { display: none; }

/* Der Schließen-Knopf braucht das Skript. Ohne Skript wird er nicht
   angezeigt — dort schließt ein Klick neben das Fenster. Ein Knopf,
   der nichts tut, wäre schlimmer als keiner. */
.a08-schliessen { display: none; }
.js .a08-schliessen {
  display: inline-flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #11111116;
  background: var(--color-kit-white);
  color: var(--color-kit-black);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
}
.a08-schliessen:hover { background: var(--color-kit-black); color: var(--color-kit-white); }

.a08-modalHead {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding-right: 2.5rem;
}
/* Die Überschrift steht neben dem Schraubenkopf in einem Flex-Kasten.
   Ohne min-width:0 schrumpft ein Flex-Kind nicht unter seine Wortbreite
   und schiebt sich aus dem Fenster. Zusätzlich eine Stufe kleiner: Die
   Größe „lg" stammt aus dem Seitenlayout und ist für ein 620 px breites
   Fenster zu groß. */
.a08-modalTitle {
  display: block;
  line-height: 1.15;
  min-width: 0;
  flex: 1;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 560px) {
  .a08-details[open] .a08-overlay { align-items: flex-end; padding: 0; }
  .a08-modal { max-width: 100%; max-height: 78vh; border-radius: 16px 16px 0 0; border-top: 0; }
}

/* ----------------------------------------------- Häufige Fragen */
/* Aufklapper über <details>. Der Antworttext ist damit auch ohne
   JavaScript zu öffnen und steht immer im Quelltext. */

.a11-q {
  list-style: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  text-align: left;
}
.a11-q::-webkit-details-marker { display: none; }
.a11-q::marker { content: ''; }
.a11-q:focus-visible { outline: 2px solid var(--color-kit-key1); outline-offset: 4px; }
.a11-details[open] .a11-chev { transform: rotate(180deg); color: var(--color-kit-key1); }
.a11-details[open] .a11-qText { color: var(--color-kit-key1); }
.a11-chev { display: inline-flex; }

/* ------------------------------------------------------- Kontakt */

.kontakt-section {
  position: relative;
  background: var(--color-kit-black);
  padding: clamp(4rem, 9vh, 7rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.kontakt-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(#ffffff10 1px, transparent 1px);
  background-size: 3px 3px;
}
.kontakt-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.kontakt-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.kontakt-heading { color: var(--color-kit-white); margin: 1rem 0 1.2rem; max-width: 14ch; }
.kontakt-text { color: #C9C9C4; line-height: 1.7; margin-bottom: 2rem; max-width: 48ch; }
.kontakt-daten { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.kontakt-daten li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #EDEDEA;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.kontakt-daten svg { flex: none; margin-top: 0.2rem; }
.kontakt-hinweis {
  margin: 0;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #8f8f8a;
  max-width: 44ch;
}

.kontakt-form {
  background: #151515;
  border: 1px solid #ffffff14;
  border-top: 3px solid var(--color-kit-key1);
  border-radius: 4px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.kontakt-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.kontakt-feld { display: flex; flex-direction: column; gap: 0.45rem; }
.kontakt-feld label {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.82rem;
  color: #D5D5D0;
}
.kontakt-feld input,
.kontakt-feld select,
.kontakt-feld textarea {
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-kit-white);
  background: #0E0E0E;
  border: 1px solid #ffffff22;
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color .2s ease;
}
.kontakt-feld textarea { resize: vertical; min-height: 120px; }
.kontakt-feld input:focus,
.kontakt-feld select:focus,
.kontakt-feld textarea:focus {
  outline: none;
  border-color: var(--color-kit-key1);
}
.kontakt-feld select { appearance: none; cursor: pointer; }

.kontakt-zustimmung { display: flex; align-items: flex-start; gap: 0.7rem; }
.kontakt-zustimmung input { margin-top: 0.25rem; width: 18px; height: 18px; flex: none; accent-color: var(--color-kit-key1); }
.kontakt-zustimmung label {
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #A9A9A4;
}
.kontakt-zustimmung a { color: var(--color-kit-key1); }

/* Köderfeld: für Menschen unsichtbar, für selbsttätige Eintragungen nicht.
   Bewusst nicht display:none — manche Skripte erkennen das. */
.kontakt-koeder {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.kontakt-senden { align-self: flex-start; border: 2px solid var(--color-kit-key1); }
.kontakt-pflicht {
  margin: 0;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 0.78rem;
  color: #6f6f69;
}

.kontakt-meldung {
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}
.kontakt-meldung-gut { background: #1d2a1d; border: 1px solid #3f6b3f; color: #d6f0d6; }
.kontakt-meldung-schlecht { background: #2a1d1d; border: 1px solid #6b3f3f; color: #f0d6d6; }

@media (max-width: 860px) {
  .kontakt-split { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .kontakt-reihe { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------- Einblendung */
/* Ersetzt Framer Motion.

   Entscheidend: Ohne JavaScript ist alles sichtbar. Erst wenn seite.js
   läuft, setzt es die Klasse „js" auf <html>, und erst dann wird
   überhaupt etwas ausgeblendet. Fällt das Skript aus, steht die ganze
   Seite trotzdem da. */

.js .einblenden {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(0.22,1,0.36,1) var(--verzug, 0ms),
              transform .6s cubic-bezier(0.22,1,0.36,1) var(--verzug, 0ms);
}
.js .einblenden.sichtbar { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .einblenden { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------- Schriftfarben auf dunklem Grund */
/* Im Export standen diese Farben als Eigenschaften am React-Baustein
   (color="var(--color-kit-white)"), nicht im Stylesheet. Ohne sie erbt
   jede Überschrift das Schwarz aus .ui-title und verschwindet auf dem
   dunklen Untergrund. Werte unverändert aus den Vorlagen übernommen. */

.a01-title { color: var(--color-kit-white); }
.a01-subline { color: #EDEDEA; }
.a01-eyebrow { color: var(--color-kit-white); }

.a04-heading { color: var(--color-kit-white); }
.a04-intro { color: #C9C9C4; }
.a04-cardText { color: var(--color-kit-white); }
.a04-solText { color: #EDEDEA; }

.a07-heading { color: var(--color-kit-white); }
.a07-caption { color: #C9C9C4; }
/* Neu in V2 — muss auf dem dunklen Grund lesbar sein, das geerbte Grau
   aus .ui-text ist dort zu dunkel. */
.a07-langtext {
  color: #C9C9C4;
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.a08-heading { color: var(--color-kit-white); }
.a08-tileTitle { color: var(--color-kit-white); }
.a08-tileTeaser { color: #B9B9B4; }
/* Das Detailfenster steht auf Weiß — dort gilt wieder die dunkle Schrift. */
.a08-modalTitle { color: var(--color-kit-black); }
.a08-modalText { color: var(--color-kit-dark); }

.a12-heading { color: var(--color-kit-white); }
.a12-text { color: #C9C9C4; }
.a12-address { color: #9A9A95; }

/* ============================================================
   FASSUNG V2 — Finalisierung nach dem Briefing vom 17.08.2026
   ============================================================ */

/* ------------------------------------------ Deckblatt: Claimzeile */
/* Die Hauptzeile nennt jetzt Leistung und Ort. Der Markenclaim steht
   als eigene Zeile darunter — er bleibt erhalten, ohne die Hauptaussage
   zu verwässern. */

.a01-claim {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.95rem, 1.7vw, 1.3rem);
  color: var(--color-kit-key1);
  margin: -0.6rem 0 1.5rem;
}
.a01-title { max-width: 20ch; }

/* --------------------------------------------- Einstiege: Unterzeile */

.a02-tileUnter {
  display: block;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--color-kit-key1);
  font-weight: 600;
  margin: -0.4rem 0 0.9rem;
}

/* ------------------------------------------------------ Team */
/* Neu in V2: das echte Teamfoto groß und weit oben. Es ist das einzige
   Bild echter Menschen auf der Seite. */

.team-section {
  background: var(--color-kit-white);
  padding: clamp(4rem, 9vh, 7rem) 0;
}
.team-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.team-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.team-bildrahmen { position: relative; overflow: hidden; border-radius: 4px; }
.team-bild { display: block; width: 100%; height: auto; }
/* Ein schmaler oranger Steg unten — greift die Marke auf, ohne das Foto
   einzufärben. */
.team-bildrahmen::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--color-kit-key1);
}
.team-heading { margin: 1rem 0 1.2rem; max-width: 18ch; }
.team-absatz { line-height: 1.7; margin-bottom: 1.8rem; max-width: 48ch; }
.team-punkte { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.team-punkte li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-kit-black);
}
.team-punkte svg { flex: none; margin-top: 0.15rem; }

@media (max-width: 860px) {
  .team-split { grid-template-columns: 1fr; }
}

/* ------------------------------------- Photovoltaik: Anwendungsfälle */
/* Statt einer Liste von Produktnamen drei Fälle, in denen sich der
   Besucher wiedererkennt. */

.pv-kopf { max-width: 62ch; margin-bottom: clamp(2rem, 4vh, 3rem); }
.pv-heading { margin: 1rem 0 1rem; }
.pv-subline { line-height: 1.7; }

.pv-faelle {
  list-style: none;
  margin: 0 0 clamp(2rem, 4vh, 3rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.pv-fall {
  background: var(--color-kit-white);
  border: 1px solid #11111114;
  border-top: 3px solid var(--color-kit-key1);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(0.22,1,0.36,1), border-color .35s ease;
}
.pv-fall:hover { transform: translateY(-4px); }
.pv-fallIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background: #F46A0012;
  margin-bottom: 1.1rem;
}
.pv-fallTitel { margin-bottom: 0.7rem; }
.pv-fallText { line-height: 1.6; }
.pv-fuss { display: flex; }

@media (prefers-reduced-motion: reduce) { .pv-fall:hover { transform: none; } }
@media (max-width: 860px) { .pv-faelle { grid-template-columns: 1fr; } }

/* ------------------------------------------------- Referenzen */

.ref-section {
  background: var(--color-kit-white);
  padding: clamp(4rem, 9vh, 7rem) 0;
  border-top: 1px solid #11111110;
}
.ref-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.ref-kopf { max-width: 60ch; margin-bottom: clamp(2rem, 4vh, 3rem); }
.ref-heading { margin: 1rem 0 1rem; }
.ref-einleitung { line-height: 1.7; }

/* Der Musterhinweis ist bewusst auffällig: Niemand soll die Beispiele
   für echte Referenzen halten. Verschwindet, sobald echte Projekte da sind. */
.ref-musterhinweis {
  margin: 1.5rem 0 0;
  padding: 0.9rem 1.2rem;
  background: #FFF6EF;
  border-left: 4px solid var(--color-kit-key1);
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-kit-black);
}

.ref-raster {
  list-style: none;
  margin: 0 0 clamp(2rem, 4vh, 3rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.ref-karte {
  border: 1px solid #11111114;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .35s ease, transform .35s cubic-bezier(0.22,1,0.36,1);
}
.ref-karte:hover { border-color: var(--color-kit-key1); transform: translateY(-4px); }
.ref-bildrahmen { position: relative; aspect-ratio: 4/3; background: var(--color-kit-light); }
.ref-bild { width: 100%; height: 100%; object-fit: cover; display: block; }
.ref-bild-leer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg, #F5F5F3, #F5F5F3 12px, #EFEFEC 12px, #EFEFEC 24px);
  height: 100%;
}
.ref-bild-leer span {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: #9a9a95;
}
.ref-nummer {
  position: absolute;
  top: 0; left: 0;
  background: var(--color-kit-key1);
  color: var(--color-kit-black);
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
}
.ref-koerper { padding: clamp(1.3rem, 2vw, 1.7rem); display: flex; flex-direction: column; gap: 0.9rem; }
.ref-titel { line-height: 1.2; }
.ref-ort {
  display: block;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-kit-key1);
  margin-top: 0.25rem;
  letter-spacing: 0;
}
.ref-leistungen { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ref-leistungen li {
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--color-kit-dark);
  background: var(--color-kit-light);
  border-radius: 2px;
  padding: 0.3rem 0.6rem;
}
.ref-fuss { display: flex; }

@media (prefers-reduced-motion: reduce) { .ref-karte:hover { transform: none; } }
@media (max-width: 900px) { .ref-raster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ref-raster { grid-template-columns: 1fr; } }

/* ------------------------------------------- Leiste am unteren Rand */
/* Nur am Handy. Der Weg zum Erstgespräch soll immer erreichbar sein,
   ohne zurückscrollen zu müssen. */

.sticky-leiste { display: none; }

@media (max-width: 760px) {
  .sticky-leiste {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    background: #0B0B0Bf5;
    backdrop-filter: blur(8px);
    border-top: 1px solid #ffffff1f;
    padding: 0.6rem 0.8rem;
    padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
  }
  .sticky-tel,
  .sticky-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.85rem 1.1rem;
    border-radius: 2px;
  }
  .sticky-tel { color: var(--color-kit-white); border: 1px solid #ffffff33; margin-right: 0.6rem; }
  .sticky-cta { background: var(--color-kit-key1); color: var(--color-kit-black); }

  /* Damit die Leiste nichts verdeckt. */
  body { padding-bottom: 74px; }
  /* Im Kontaktbereich wäre sie doppelt gemoppelt. */
  .kontakt-section { scroll-margin-bottom: 80px; }
}

/* ---------------------------------------------- Fassungsumschalter */
/* Nur für die Abnahme. Ohne ihn ist beim Aufrufen nicht erkennbar, welche
   Fassung man gerade sieht. Verschwindet, sobald VORSCHAU auf False steht. */

/* Sitzt oben mittig und ist nicht zu übersehen. Die erste Fassung wurde
   unten in der Ecke schlicht übersehen — und dann die falsche Fassung
   beurteilt. Deshalb jetzt im Blickfeld. */
.fassung {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0B0B0Bf5;
  border: 2px solid var(--color-kit-key1);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 7px 12px;
  box-shadow: 0 6px 20px -8px #000000cc;
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
}
.fassung-text {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a9a95;
  margin-right: 4px;
}
.fassung-knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #D5D5D0;
  border: 1px solid #ffffff33;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.fassung-knopf:hover { background: #ffffff1a; border-color: var(--color-kit-key1); color: var(--color-kit-white); }
.fassung-aktiv {
  background: var(--color-kit-key1);
  border-color: var(--color-kit-key1);
  color: var(--color-kit-black);
}

/* Die Kopfzeile rückt darunter, damit sich beide nicht überlagern. */
:root { --fassung-hoehe: 44px; }
.kopf { top: var(--fassung-hoehe); }
html { scroll-padding-top: calc(var(--kopf-hoehe) + var(--fassung-hoehe)); }
.a01-hero { padding-top: calc(var(--kopf-hoehe) + var(--fassung-hoehe) + clamp(2.5rem, 7vh, 5rem)); }
.recht { padding-top: calc(var(--kopf-hoehe) + var(--fassung-hoehe) + clamp(2rem, 5vh, 3.5rem)); }

@media (max-width: 980px) {
  .kopf-nav { top: calc(var(--kopf-hoehe) + var(--fassung-hoehe)); }
}
@media (max-width: 560px) {
  .fassung { padding: 5px 9px; }
  .fassung-text { display: none; }
  .fassung-knopf { min-width: 38px; padding: 4px 10px; font-size: 0.88rem; }
  :root { --fassung-hoehe: 38px; }
}

/* ------------------------------------------------- Rechtsseiten */
/* Impressum, Datenschutz und die Fehlerseite. Bewusst schlicht:
   Diese Seiten werden gelesen, nicht bestaunt. */

.recht {
  padding: calc(var(--kopf-hoehe) + clamp(2.5rem, 6vh, 4.5rem)) 0 clamp(3rem, 8vh, 6rem);
  background: var(--color-kit-white);
  min-height: 100vh;
}
.recht-innen {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.recht h1 { margin-bottom: 2rem; }
.recht h2 {
  margin: 2.5rem 0 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid #11111114;
}
.recht p { margin-bottom: 1rem; line-height: 1.7; }
.recht a { color: var(--color-kit-key1); }

/* Offene Stellen sichtbar machen — niemand soll sie überlesen. */
.recht-luecke {
  background: #F46A0022;
  border-bottom: 2px solid var(--color-kit-key1);
  padding: 0.1em 0.35em;
  font-weight: 600;
  color: var(--color-kit-black);
}
.recht-lueckenhinweis {
  background: #FFF6EF;
  border-left: 4px solid var(--color-kit-key1);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-kit-text-font), Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-kit-black);
}
.recht-stand { color: var(--color-kit-dark); }
.recht-zurueck { margin-top: 3rem; }

/* Fehlerseite */
.fehler {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-kit-black);
  position: relative;
  isolation: isolate;
}
.fehler-innen {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.fehler-zahl {
  font-family: var(--font-kit-header-font), 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.9;
  color: var(--color-kit-key1);
  display: block;
  margin-bottom: 1rem;
}
.fehler h1 { color: var(--color-kit-white); margin-bottom: 1.2rem; }
.fehler p { color: #C9C9C4; line-height: 1.7; margin-bottom: 2rem; max-width: 48ch; }

/* ------------------------------------------------ Lange Wörter */
/* Deutsch bildet Wörter wie „Nano-Fassadendämmung" und
   „Mehrfamilienhäuser". In schmalen Kacheln ragen die sonst über den
   Rand hinaus. Die Seite ist auf lang="de" gesetzt, deshalb kann der
   Browser sauber trennen. */

/* Automatisch getrennt wird nur dort, wo es wirklich eng wird — in den
   schmalen Kacheln. Sonst entstehen Fehlleser wie „Fördermit-tel".

   Die großen Überschriften brechen gar nicht innerhalb von Wörtern:
   Ein harter Umbruch ohne Trennstrich („Besonder / e") sieht aus wie ein
   Fehler. Sie bekommen stattdessen genug Breite. */
.ui-title,
.a10-badge,
.a06-chipLabel {
  overflow-wrap: break-word;
  hyphens: manual;
}
.ui-title-xl,
.ui-title-xxl {
  overflow-wrap: normal;
  word-break: normal;
}
/* Genug Raum, damit die langen Wörter auch hineinpassen.

   ⚠ Die Breite gehört an die ÜBERSCHRIFT, nicht an den Kasten darum.
   „ch" rechnet mit der Schriftgröße des jeweiligen Elements: Am Kasten
   (16 px) ergaben 40ch nur 362 px — in einer 73-px-Überschrift sind das
   vier Buchstaben je Zeile. An der Überschrift selbst stimmt das Maß.
   Das galt schon für die 30ch aus dem Export. */
.a08-head { max-width: none; }
.a08-heading { max-width: 17ch; }
.a08-hint { max-width: 40ch; }

/* Leistungswelten: In V2 ist das Teamfoto aus diesem Abschnitt heraus.
   Ohne Bild darf die Überschrift nicht im Drittel-Raster kleben — sie
   stand sonst auf 369 px und brach in vier Zeilen um. */
.a05-head-breit { display: block; }
.a05-head-breit .a05-headText { grid-column: 1 / -1; }
.a05-head-breit .a05-heading { max-width: 22ch; }
.a08-tileTitle,
.a05-cardTitle,
.a02-tileTitle,
.pv-fallTitel,
.ref-titel {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Bei den großen Überschriften wirkt eine Trennung mitten im Wort wie ein
   Fehler — „möch-ten" liest sich wie ein Satzfehler. Dort lieber mehr
   Platz geben als trennen. Getrennt wird erst ab den Kartentiteln. */
.ui-title-xxl,
.ui-title-xl { hyphens: manual; }
.a12-cta { max-width: 900px; }
.a02-heading { max-width: 24ch; }

/* --------------------------------------------------- Kleinigkeiten */

/* Der Fußbereich enthält im Export einen festen Jahresstand. Die Zeile
   steht so im Quelltext und wird hier nicht verändert — geändert wird
   sie im Inhalt, nicht per CSS. */

.a12-logo { width: 190px; max-width: 60%; height: auto; display: block; }

/* Abschnitte, die im Export „volle Höhe" hatten, dürfen im Onepager
   kürzer sein — sonst wird die Seite unnötig lang. */
.a02-full, .a03-full, .a04-full, .a05-full, .a06-full,
.a07-full, .a08-full, .a09-full, .a10-full, .a11-full { min-height: 0; }
