/* ============================================================
   Friedrich Kuhnt GmbH — Site Design System  ·  v3 „MODERN"
   Zeitgemäßer Tech-Look: Glow-Verläufe auf Navy, Hairline-
   Borders, weiche große Typo, Pill-Buttons, Gradient-Akzente.
   Basis: assets/brand-colors.css (Tokens) — vorher einbinden!
   ============================================================ */

:root {
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --ink: var(--color-text);
  --hairline: rgba(20, 34, 47, 0.1);
  --hairline-dark: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 1px 2px rgba(10,27,46,0.05), 0 10px 30px -10px rgba(10,27,46,0.12);
  --shadow-lift: 0 2px 4px rgba(10,27,46,0.06), 0 18px 44px -12px rgba(10,27,46,0.2);
  --shadow-cta: 0 8px 28px -6px rgba(0,105,180,0.5);
  --grad-text: linear-gradient(100deg, var(--color-primary) 10%, var(--color-signal) 90%);
  --glow-dark:
    radial-gradient(900px 480px at 85% -10%, rgba(0,105,180,0.5), transparent 70%),
    radial-gradient(700px 420px at 0% 110%, rgba(24,160,216,0.22), transparent 70%),
    linear-gradient(180deg, #0A1B2E 0%, #0C2138 100%);
  --dots: radial-gradient(rgba(0,105,180,0.13) 1.2px, transparent 1.2px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--color-primary); color: #fff; }
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }
h1, h2, h3, h4 { font-family: var(--font-headline); line-height: 1.06; margin: 0 0 0.5em; color: var(--ink); font-weight: 600; letter-spacing: -0.03em; text-wrap: balance; }
/* Lange deutsche Komposita ("Unternehmenskommunikation") sonst breiter als die
   Spalte: notfalls hart umbrechen; Silbentrennung NUR mobil — auf dem Desktop
   erzeugt sie zusammen mit text-wrap:balance unnötige Trennungen
   ("Le-bensretter"), obwohl Platz da wäre. */
h1, h2, h3, h4 { overflow-wrap: break-word; }
@media (max-width: 640px) {
  h1, h2, h3, h4 { hyphens: auto; -webkit-hyphens: auto; }
}
h1 { font-size: clamp(38px, 5.2vw, 66px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(19px, 2.2vw, 23px); line-height: 1.2; letter-spacing: -0.015em; }
h4 { font-size: 18px; }
@media (max-width: 520px) {
  h1 { font-size: clamp(28px, 7.8vw, 38px); }
  h2 { font-size: clamp(23px, 6.4vw, 28px); }
}
p { margin: 0 0 1em; text-wrap: pretty; overflow-wrap: break-word; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 2px solid var(--color-signal); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0); white-space: nowrap; border: 0 !important; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1340px; margin: 0 auto; padding: 0 24px; }

/* ---------- Icons ---------- */
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-headline); font-weight: 600; font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .16s, box-shadow .16s, background .16s, color .16s, border-color .16s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary) 0%, #0d7fce 100%); color: #fff; box-shadow: 0 1px 2px rgba(10,27,46,0.2), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-primary:hover { color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary.btn-glow { box-shadow: var(--shadow-cta); }
.btn-outline { border-color: var(--hairline); color: var(--ink); background: #fff; box-shadow: 0 1px 2px rgba(10,27,46,0.05); }
.btn-outline:hover { border-color: rgba(0,105,180,0.4); color: var(--color-primary); box-shadow: 0 6px 18px -6px rgba(0,105,180,0.25); }
.btn-light { background: #fff; color: var(--color-primary-dark); }
.btn-light:hover { color: var(--color-primary); box-shadow: 0 10px 30px -8px rgba(0,0,0,0.45); }
.btn-outline-light { border-color: var(--hairline-dark); color: #fff; background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); }
.btn-outline-light:hover { border-color: rgba(24,160,216,0.6); color: #fff; background: rgba(255,255,255,0.1); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16.5px; }

/* ---------- Top-Bar ---------- */
.topbar { background: #081625; color: var(--color-text-on-dark-muted); font-size: 13px; position: relative; z-index: 60; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar a { color: var(--color-text-on-dark-muted); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar span { white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 14px; height: 14px; }
/* Icon-only-Links (Suche) hätten sonst nur 14x14 Tippfläche */
.topbar a[data-kpal] { padding: 11px 8px; margin: -11px -8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-phone { color: #fff !important; font-weight: 600; }
.topbar-phone:hover { color: var(--color-signal) !important; }
.topbar-sep { width: 1px; height: 14px; background: var(--hairline-dark); }
@media (max-width: 1080px) {
  /* !important nötig: einige Spans tragen display als Inline-Style */
  .topbar-left span.loc-label, .topbar .hide-mobile { display: none !important; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--hairline); box-shadow: 0 8px 30px -12px rgba(10,27,46,0.12); }
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; color: var(--color-primary); flex: none; }
.brand svg { height: 30px; width: auto; display: block; }
.brand:hover { color: var(--color-primary-hover); }
/* Header: Original-Wortmarke (PNG, inkl. "Seit 1970") — größer dargestellt */
.site-header .brand-logo img { height: 46px; width: auto; display: block; }
@media (max-width: 600px) { .site-header .brand-logo img { height: 38px; } }

.main-nav { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-headline); font-weight: 500; font-size: 14px;
  color: rgba(20,34,47,0.75); padding: 7px 9px; border-radius: 999px;
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--ink); background: rgba(0,105,180,0.07); }
.nav-link.active { color: var(--color-primary); background: var(--color-primary-soft); }
.nav-link .icon { width: 12px; height: 12px; opacity: .6; transition: transform .18s; }
.nav-item:hover .nav-link .icon { transform: rotate(180deg); }

.main-nav .nav-item:last-child { margin-left: 5px; padding-left: 15px; border-left: 1px solid var(--hairline); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 284px;
  background: #fff; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); border-radius: 16px;
  box-shadow: 0 24px 60px -14px rgba(10,27,46,0.32);
  padding: 8px; display: none; z-index: 55;
}
/* Unsichtbare Hover-Brücke über die Lücke zwischen Nav-Link und Menü —
   damit die Maus beim Runterfahren in die Unterpunkte nicht "rausfällt". */
.dropdown::before {
  content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.nav-open .dropdown { display: block; }
.nav-item.nav-open > .nav-link { color: var(--ink); background: rgba(0,105,180,0.07); }
.nav-item.nav-open .nav-link .icon { transform: rotate(180deg); }
.dropdown a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: var(--ink); font-size: 14.5px; }
.dropdown a:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.dropdown a .icon { width: 16px; height: 16px; color: var(--color-primary); }
.dropdown hr { border: 0; border-top: 1px solid var(--hairline); margin: 8px 6px; }

.header-cta { flex: none; margin-left: 6px; }
.burger { display: none; background: none; border: 1px solid var(--hairline); border-radius: 12px; padding: 9px; cursor: pointer; color: var(--ink); margin-left: auto; }
.burger:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.burger .icon { width: 24px; height: 24px; display: block; }

@media (max-width: 1200px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: var(--glow-dark);
  color: var(--color-text-on-dark); overflow-y: auto; padding: 20px 24px 48px;
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-menu-head .brand { color: #fff; }
.mobile-menu-head .close-btn { background: rgba(255,255,255,0.06); border: 1px solid var(--hairline-dark); border-radius: 12px; color: #fff; cursor: pointer; padding: 8px; }
.mm-group { border-bottom: 1px solid var(--hairline-dark); }
.mm-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: 0; color: #fff; font-family: var(--font-headline);
  font-size: 19px; font-weight: 600; letter-spacing: -0.01em;
  padding: 16px 0; cursor: pointer; text-align: left;
}
.mm-toggle .icon { transition: transform .2s; color: var(--color-signal); }
.mm-group.open .mm-toggle .icon { transform: rotate(180deg); }
.mm-panel { display: none; padding: 0 0 14px; }
.mm-group.open .mm-panel { display: block; }
.mm-panel a { display: block; padding: 9px 0 9px 14px; color: var(--color-text-on-dark-muted); font-size: 16px; border-left: 2px solid var(--hairline-dark); }
.mm-panel a:hover { color: #fff; border-left-color: var(--color-signal); }
.mm-link { display: block; padding: 16px 0; color: #fff; font-family: var(--font-headline); font-size: 19px; font-weight: 600; }
.mobile-menu .btn { margin-top: 22px; width: 100%; justify-content: center; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { opacity: .45; }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { background: radial-gradient(800px 360px at 90% -20%, rgba(0,105,180,0.1), transparent 70%), var(--color-bg); border-bottom: 1px solid var(--hairline); padding: 60px 0 68px; position: relative; overflow: hidden; }
.page-hero.dark { background: var(--glow-dark); border-bottom: 0; color: var(--color-text-on-dark); }
.page-hero.dark h1, .page-hero.dark .breadcrumb .current { color: #fff; }
.page-hero.dark .breadcrumb a, .page-hero.dark .breadcrumb { color: var(--color-text-on-dark-muted); }
.page-hero .lead { font-size: 19px; color: var(--color-text-muted); max-width: 660px; }
.page-hero.dark .lead { color: #b8c9d9; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } }
.page-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); position: relative; }
.page-hero.dark .page-hero-img { box-shadow: 0 24px 70px -18px rgba(0,0,0,0.6), 0 0 0 1px var(--hairline-dark); }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.hero-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-headline); font-weight: 600; font-size: 17.5px; color: var(--ink); }
.page-hero.dark .hero-phone { color: #fff; }
.hero-phone .icon { color: var(--color-signal); }

/* Signal-Ornament im page-hero */
.hero-signal-bg { position: absolute; right: -40px; bottom: -4px; width: 560px; opacity: 0.3; color: var(--color-primary); pointer-events: none; }
.page-hero.dark .hero-signal-bg { color: var(--color-signal); opacity: 0.4; }
.hero-signal-bg svg path { stroke-width: 1.5; }
@media (max-width: 900px) { .hero-signal-bg { display: none; } }

/* ---------- Eyebrow / Section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-headline); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-primary); background: var(--color-primary-soft);
  border: 1px solid rgba(0,105,180,0.16); border-radius: 999px; padding: 7px 15px;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 22px; height: 9px; background: currentColor; clip-path: polygon(0 70%, 25% 70%, 25% 0, 50% 0, 50% 70%, 75% 70%, 75% 30%, 100% 30%, 100% 100%, 0 100%); }
.on-dark .eyebrow, .page-hero.dark .eyebrow, .story .eyebrow, .cta-band .eyebrow {
  color: var(--color-signal); background: rgba(24,160,216,0.1); border-color: rgba(24,160,216,0.3);
}
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
/* Mobil: gleichmäßigere Abstände zwischen Sektionen + mehr Luft an den Rändern */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { margin-bottom: 34px; }
  /* !important nötig: Hero-/CTA-Innenblöcke setzen padding als Kurzform
     (z.B. 96px 0 130px) und nullen sonst mobil die Seitenränder. */
  .container, .container-wide { padding-left: 26px !important; padding-right: 26px !important; }
  .topbar { font-size: 12.5px; }
  .topbar-inner { min-height: 34px; gap: 10px; }
  .topbar-left, .topbar-right { gap: 12px; }
}
.section-subtle { background: var(--color-bg-subtle); border-block: 1px solid var(--hairline); }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head .lead { font-size: 18.5px; color: var(--color-text-muted); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1000px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  /* Grid-Kinder dürfen schrumpfen; lange Buttons (tel-Nummern) umbrechen statt auszubrechen */
  .grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }
  .btn { white-space: normal; text-align: center; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-card);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(0,105,180,0.22); }
.card h3 a { color: inherit; }
.card .icon-chip { margin-bottom: 20px; }
.icon-chip {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary-soft), #d6ebf9);
  color: var(--color-primary); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,105,180,0.14);
}
.icon-chip .icon { width: 25px; height: 25px; }
.card-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-headline); font-weight: 600; font-size: 15px; margin-top: 8px; }
.card-link .icon { width: 15px; height: 15px; transition: transform .18s; }
.card-link:hover .icon { transform: translateX(4px); }

/* Hub-/Produkt-Kachel */
.tile {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card); color: inherit;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
a.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(0,105,180,0.25); color: inherit; }
a.tile:hover h3 { color: var(--color-primary); }
.tile-media { aspect-ratio: 16 / 9.5; background: var(--color-bg-muted); position: relative; overflow: hidden; }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
a.tile:hover .tile-media img { transform: scale(1.04); }
img[data-ph] { color: transparent; }
.tile-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tile-body h3 { margin: 0; font-size: 19px; transition: color .15s; }
.tile-body p { margin: 0; font-size: 15px; color: var(--color-text-muted); flex: 1; }
.tile-body .card-link { margin-top: 13px; }

/* ---------- Bild-Platzhalter ---------- */
.ph {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--dots) 0 0 / 22px 22px, linear-gradient(160deg, #F2F7FB, #E8F0F7);
  color: var(--color-text-muted); width: 100%; height: 100%; min-height: 150px;
  text-align: center; padding: 18px;
}
.ph .icon { width: 30px; height: 30px; color: var(--color-primary); opacity: .65; }
.ph span { font-size: 12px; font-family: var(--font-headline); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; max-width: 240px; line-height: 1.5; }

/* ---------- Trust-Strip ---------- */
.trust-strip { border-block: 1px solid var(--hairline); background: linear-gradient(180deg, #fff, var(--color-bg-subtle)); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 24px 26px; border-left: 1px solid var(--hairline); }
.trust-item:first-child { border-left: 0; }
.trust-item .icon { width: 30px; height: 30px; color: var(--color-primary); }
.trust-item b { display: block; font-family: var(--font-headline); font-size: 15.5px; line-height: 1.25; letter-spacing: -0.01em; }
.trust-item small { color: var(--color-text-muted); font-size: 13px; }
@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item { border-top: 1px solid var(--hairline); padding: 16px 20px; }
  .trust-item:nth-child(-n+2) { border-top: 0; }
}
/* Grid-Kinder dürfen schrumpfen; lange Begriffe ("NFON-Wachstumspartner")
   brechen um, statt die Spalte aufzublähen. */
.trust-item { min-width: 0; }
.trust-item > div { min-width: 0; }
.trust-item b, .trust-item small { overflow-wrap: anywhere; }
@media (max-width: 520px) {
  .trust-item b { font-size: 14px; }
  .trust-item small { font-size: 12px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(-n+2) { border-top: 1px solid var(--hairline); }
  .trust-item:first-child { border-top: 0; }
  .trust-item { padding: 14px 0; }
}

/* ---------- Ansprechpartner ---------- */
.person-card {
  display: flex; align-items: center; gap: 20px; background: #fff;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow-card);
}
.person-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: 50% 22%; flex: none; background: var(--color-bg-muted); box-shadow: 0 0 0 3px #fff, 0 0 0 4.5px rgba(0,105,180,0.3); image-rendering: -webkit-optimize-contrast; }
.person-photo.initials { display: flex; align-items: center; justify-content: center; font-family: var(--font-headline); font-weight: 600; font-size: 24px; color: var(--color-primary); background: linear-gradient(135deg, var(--color-primary-soft), #d6ebf9); }
.person-card b { font-family: var(--font-headline); font-size: 17.5px; display: block; letter-spacing: -0.01em; }
.person-card .role { color: var(--color-text-muted); font-size: 14px; display: block; margin-bottom: 8px; }
.person-card > div:last-child { min-width: 0; }
.person-contacts { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 14.5px; }
.person-contacts a { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; max-width: 100%; overflow-wrap: anywhere; }
.person-contacts .icon { width: 14px; height: 14px; }
.team-sub { font-family: var(--font-headline); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary); margin: 30px 0 15px; padding-bottom: 9px; border-bottom: 1px solid var(--color-border); }
.team-sub:first-of-type { margin-top: 4px; }
.ref-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.ref-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px 18px; font-family: var(--font-headline); font-weight: 600; font-size: 15px; text-align: center; display: flex; align-items: center; justify-content: center; min-height: 74px; color: var(--ink); box-shadow: var(--shadow-card); transition: transform .18s, box-shadow .18s; }
.ref-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.ref-item img { max-height: 56px; max-width: 88%; object-fit: contain; filter: grayscale(1); opacity: .82; transition: filter .18s, opacity .18s; }
.ref-item:hover img { filter: grayscale(0); opacity: 1; }
.anydesk-bar { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 22px 26px; box-shadow: var(--shadow-card); max-width: 820px; margin: 0 auto; }
.anydesk-logo { flex: none; width: 54px; height: 54px; border-radius: 14px; background: #EF443B; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -6px rgba(239,68,59,0.55); }
.anydesk-logo svg { width: 28px; height: 28px; color: #fff; }
.anydesk-txt { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.anydesk-txt b { font-family: var(--font-headline); font-size: 16.5px; }
.anydesk-txt span { font-size: 13.5px; }
.anydesk-btn { flex: none; background: #EF443B; color: #fff; box-shadow: 0 1px 2px rgba(10,27,46,0.2); }
.anydesk-btn:hover { background: #d93a31; color: #fff; box-shadow: 0 8px 22px -8px rgba(239,68,59,0.6); }
@media (max-width: 640px) { .anydesk-bar { flex-direction: column; text-align: center; } .anydesk-txt { align-items: center; } }

/* Kontaktblock-Sektion */
.contact-block {
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  background:
    radial-gradient(500px 240px at 95% -20%, rgba(24,160,216,0.16), transparent 70%),
    linear-gradient(135deg, #EAF3FA, #F4F9FD);
  border: 1px solid rgba(0,105,180,0.14); border-radius: var(--radius-lg); padding: 40px 44px;
}
@media (max-width: 800px) { .contact-block { grid-template-columns: 1fr; padding: 28px; } }
/* Breite Inhalte (z.B. Karte mit zwei Buttons) dürfen die linke Spalte nicht
   zerquetschen — Branchen-Seiten "Persönlich statt Hotline". */
.contact-block > div:first-child { min-width: 0; }
.contact-block > .card { max-width: 540px; min-width: 0; }

/* ---------- CTA-Band (Dark) ---------- */
.cta-band { background: var(--glow-dark); color: var(--color-text-on-dark); position: relative; overflow: hidden; }
.cta-band-inner { position: relative; padding: 92px 0; display: grid; grid-template-columns: 1.2fr auto; gap: 36px; align-items: center; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #b8c9d9; margin: 0; font-size: 18px; max-width: 560px; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .signal-deco { position: absolute; inset: auto -2% -28px -2%; width: 104%; color: var(--color-signal); opacity: 0.3; pointer-events: none; }
.cta-band .signal-deco svg path { stroke-width: 1.5; }
.cta-band .tel-big { font-family: var(--font-headline); font-weight: 700; font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 13px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band .tel-big .icon { color: var(--color-signal); width: 28px; height: 28px; }
@media (max-width: 860px) { .cta-band-inner { grid-template-columns: 1fr; padding: 64px 0; } }

/* ---------- Footer ---------- */
.partner-bar { background: var(--color-bg-subtle); border-top: 1px solid var(--hairline); padding: 32px 0; }
.partner-bar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 56px; }
.partner-bar img { height: 44px; width: auto; filter: grayscale(1); opacity: 0.6; transition: filter .2s, opacity .2s; }
.partner-bar img:hover { filter: none; opacity: 1; }
.partner-bar .partner-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted); font-family: var(--font-headline); font-weight: 600; width: 100%; text-align: center; margin-bottom: 6px; }

.site-footer { background: #081625; color: var(--color-text-on-dark-muted); font-size: 15px; }
.footer-main { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 44px; padding: 68px 0 48px; }
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; opacity: .9; }
.site-footer a { color: var(--color-text-on-dark-muted); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-brand > svg { height: 26px; width: auto; color: #fff; margin-bottom: 14px; }
/* Header-Logo im Footer, weiß eingefärbt (Original ist blau auf transparent) */
.footer-logo { height: 52px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-social a .icon { width: 20px; height: 20px; margin: 0; }
.footer-brand .claim { font-family: var(--font-headline); letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: var(--color-text-on-dark-muted); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact .icon { width: 16px; height: 16px; margin-top: 4px; color: var(--color-signal); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--hairline-dark); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: border-color .15s, background .15s; }
.footer-social a:hover { border-color: var(--color-signal); background: rgba(24,160,216,0.1); color: #fff; }
.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.pay-icons span { border: 1px solid var(--hairline-dark); border-radius: 8px; padding: 4px 9px; font-size: 11px; letter-spacing: 0.06em; font-family: var(--font-headline); font-weight: 600; color: var(--color-text-on-dark-muted); }
.footer-bottom { border-top: 1px solid var(--hairline-dark); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; font-size: 13.5px; }
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Tabs (Segmented Pills) ---------- */
.tab-list { display: inline-flex; flex-wrap: wrap; gap: 6px; background: var(--color-bg-muted); border: 1px solid var(--hairline); border-radius: 999px; padding: 6px; margin-bottom: 32px; max-width: 100%; }
/* Mobil brechen die Buttons um — Pille würde zur Ellipse, aus der die Ecken ausbrechen */
@media (max-width: 760px) { .tab-list { border-radius: 20px; } }
.tab-btn {
  background: transparent; border: 0; border-radius: 999px;
  font-family: var(--font-headline); font-weight: 600; font-size: 14.5px;
  color: var(--color-text-muted); padding: 10px 20px; cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--color-primary); background: #fff; box-shadow: 0 2px 8px rgba(10,27,46,0.1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Akkordeon ---------- */
.accordion { border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.acc-item + .acc-item { border-top: 1px solid var(--hairline); }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; padding: 20px 24px; cursor: pointer; text-align: left;
  font-family: var(--font-headline); font-weight: 600; font-size: 17px; color: var(--ink);
  transition: color .15s;
}
.acc-head:hover { color: var(--color-primary); }
.acc-item.open .acc-head { color: var(--color-primary); }
.acc-head .icon { transition: transform .2s; color: var(--color-primary); }
.acc-item.open .acc-head .icon { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 24px 22px; color: var(--color-text-muted); }
.acc-item.open .acc-body { display: block; }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; font-family: var(--font-headline); }
.field label small { color: var(--color-text-muted); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--hairline); border-radius: 12px;
  font: inherit; font-size: 15.5px; color: var(--ink); background: #fff;
  box-shadow: 0 1px 2px rgba(10,27,46,0.04);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(0,105,180,0.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--color-text-muted); }
.form-success { background: #E8F6EF; border: 1px solid #BFE5D3; color: #135C40; padding: 14px 18px; border-radius: 12px; font-size: 15px; display: none; }
.form-success.show { display: block; }
.upload-field {
  border: 1.5px dashed rgba(0,105,180,0.35); border-radius: 12px; padding: 18px;
  display: flex; align-items: center; gap: 14px; color: var(--color-text-muted); font-size: 14.5px;
  cursor: pointer; background: rgba(0,105,180,0.025);
  transition: border-color .15s, background .15s;
}
.upload-field:hover { border-color: var(--color-primary); background: var(--color-primary-soft); }
.upload-field .icon { color: var(--color-primary); }

/* ---------- Stat / Zahlen ---------- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* !important: einzelne Seiten setzen grid-template-columns als Inline-Style —
   ohne das gewinnt der Inline-Wert und die Kacheln brechen mobil aus. */
@media (max-width: 700px) { .stats-row { grid-template-columns: 1fr !important; } }
.stats-row > * { min-width: 0; }
.stat { text-align: center; padding: 32px 22px; background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.stat b { display: block; font-family: var(--font-headline); font-weight: 700; font-size: clamp(30px, 3.4vw, 52px); line-height: 1; letter-spacing: -0.04em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; overflow-wrap: normal; word-break: keep-all; }
.stat span { color: var(--color-text-muted); font-size: 14px; display: block; margin-top: 10px; }

/* ---------- Bewertungen ---------- */
.stars { display: inline-flex; gap: 3px; color: var(--color-warning); }
.stars .icon { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.review-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px; }
.review-card blockquote { margin: 0; font-size: 15.5px; color: var(--ink); flex: 1; }
.review-card cite { font-style: normal; color: var(--color-text-muted); font-size: 14px; }

/* ---------- Marken-Chips ---------- */
.brand-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chips span, .brand-chips img {
  border: 1px solid var(--hairline); border-radius: 999px; background: #fff;
  padding: 10px 22px; font-family: var(--font-headline); font-weight: 600; font-size: 14.5px;
  color: rgba(20,34,47,0.8); box-shadow: 0 1px 2px rgba(10,27,46,0.04);
  transition: border-color .15s, color .15s, transform .15s;
}
.brand-chips span:hover { border-color: rgba(0,105,180,0.4); color: var(--color-primary); transform: translateY(-2px); }
.brand-chips img { height: 48px; width: auto; padding: 8px 18px; object-fit: contain; border-radius: 14px; }

/* ---------- Logo-Strip (Marken, mono) ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 54px; }
.logo-strip img { height: 30px; width: auto; max-width: 156px; object-fit: contain; filter: grayscale(1); opacity: 0.55; transition: opacity .2s ease, transform .2s ease, filter .2s ease; }
.logo-strip img:hover { opacity: 1; filter: grayscale(0); transform: translateY(-2px); }
@media (max-width: 600px) { .logo-strip { gap: 22px 34px; } .logo-strip img { height: 24px; max-width: 116px; } }
/* Marquee-Variante: Logos laufen als Endlos-Band (site.js baut die Struktur) */
.logo-strip.logo-marquee { flex-wrap: nowrap; justify-content: flex-start; overflow: hidden; gap: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-marquee .logo-track { display: flex; width: max-content; animation: kuhntLogoScroll 36s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-marquee .logo-seg { display: flex; align-items: center; gap: 54px; padding-right: 54px; }
@keyframes kuhntLogoScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logo-marquee .logo-track { animation: none; }
}

/* ---------- Partner-Seals (Zertifizierungen, Farbe) ---------- */
.partner-seals { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 18px; }
.partner-seals figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.partner-seals img { height: 74px; width: auto; max-width: 220px; object-fit: contain; border: 1px solid var(--hairline); border-radius: 14px; background: #fff; padding: 12px 18px; box-shadow: 0 1px 2px rgba(10,27,46,0.04); }
.partner-seals figcaption { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); font-family: var(--font-headline); font-weight: 600; }
@media (max-width: 600px) { .partner-seals img { height: 60px; max-width: 160px; } }

/* ---------- Checkliste ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1em; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .icon { color: var(--color-success); margin-top: 3px; width: 18px; height: 18px; stroke-width: 2.4; }

/* ---------- Legal / Prosa ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 26px; margin-top: 1.8em; }
.prose h3 { font-size: 20px; margin-top: 1.4em; }
.prose p, .prose li { color: #34424F; font-size: 16px; }
.prose hr { border: 0; border-top: 1px solid var(--hairline); margin: 2em 0; }
.prose table { border-collapse: collapse; width: 100%; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--hairline); }
.prose th { font-family: var(--font-headline); }

/* ---------- Download-Liste ---------- */
.dl-list { display: flex; flex-direction: column; gap: 10px; }
.dl-item {
  display: flex; align-items: center; gap: 16px; padding: 15px 22px;
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px; color: var(--ink);
  box-shadow: 0 1px 2px rgba(10,27,46,0.04);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.dl-item:hover { border-color: rgba(0,105,180,0.35); transform: translateY(-2px); box-shadow: var(--shadow-card); color: var(--ink); }
.dl-item .icon { color: var(--color-primary); }
.dl-item b { font-family: var(--font-headline); font-size: 15.5px; display: block; font-weight: 600; }
.dl-item small { color: var(--color-text-muted); }
.dl-item .tag { margin-left: auto; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-headline); font-weight: 600; color: var(--color-primary); background: var(--color-primary-soft); padding: 5px 12px; border-radius: 999px; flex: none; }

/* ---------- Signal-Divider ---------- */
.signal-divider { display: flex; justify-content: center; padding: 0; color: var(--color-primary); opacity: 0.5; }
.signal-divider svg { width: 240px; height: 18px; }

/* ---------- Datenkabel mit Strompulsen ---------- */
.cables { position: absolute; inset: 0; pointer-events: none; color: var(--color-signal); }
.cables svg { width: 100%; height: 100%; display: block; }
.cable-base { stroke: currentColor; opacity: 0.15; stroke-width: 1.5; }
.cable-pulse {
  stroke: currentColor; stroke-width: 2.5; stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(24,160,216,0.9)) drop-shadow(0 0 14px rgba(24,160,216,0.5));
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  body:not(.no-motion) .cable-pulse {
    opacity: 1;
    animation: cablePulse var(--dur, 9s) linear infinite;
    animation-delay: var(--delay, 0s);
  }
}
@keyframes cablePulse { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -1000; } }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-primary-soft); color: var(--color-primary-dark);
  font-family: var(--font-headline); font-weight: 600; font-size: 13px;
  border: 1px solid rgba(0,105,180,0.16);
  border-radius: 999px; padding: 8px 16px;
}
.badge.dark { background: rgba(24,160,216,0.1); color: var(--color-signal); border: 1px solid rgba(24,160,216,0.32); backdrop-filter: blur(8px); }
.badge .icon { width: 15px; height: 15px; }

/* ---------- Reveal-Animationen (nur wenn Rendering bestätigt, s. site.js) ---------- */
@media (prefers-reduced-motion: no-preference) {
  body.js-anim [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
  body.js-anim [data-reveal].revealed { opacity: 1; transform: none; }
  body.js-anim [data-reveal-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  body.js-anim [data-reveal-stagger].revealed > * { opacity: 1; transform: none; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: .08s; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: .16s; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: .24s; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: .32s; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: .4s; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: .48s; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: .56s; }
  body.js-anim [data-reveal-stagger].revealed > *:nth-child(n+9) { transition-delay: .64s; }
}

/* ---------- Schnellsuche (⌘K-Palette) ---------- */
.kpal { position: fixed; inset: 0; z-index: 120; }
.kpal-backdrop { position: absolute; inset: 0; background: rgba(8,22,37,0.55); backdrop-filter: blur(4px); }
.kpal-box {
  position: relative; max-width: 560px; margin: 12vh auto 0; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); border: 1px solid var(--hairline); border-radius: 20px;
  box-shadow: 0 40px 100px -20px rgba(8,22,37,0.6); overflow: hidden;
}
.kpal-input-row { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--hairline); }
.kpal-input-row .icon { color: var(--color-primary); }
.kpal-input-row input { flex: 1; border: 0; outline: none; font: inherit; font-size: 16.5px; background: transparent; }
.kpal-input-row kbd { font-family: var(--font-headline); font-size: 11px; color: var(--color-text-muted); border: 1px solid var(--hairline); border-radius: 6px; padding: 3px 7px; }
.kpal-list { max-height: 380px; overflow-y: auto; padding: 8px; }
.kpal-item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; color: var(--ink); }
.kpal-item .icon { color: var(--color-text-muted); width: 17px; height: 17px; }
.kpal-item span { flex: 1; min-width: 0; }
.kpal-item b { display: block; font-family: var(--font-headline); font-weight: 600; font-size: 14.5px; }
.kpal-item small { color: var(--color-text-muted); font-size: 12px; }
.kpal-item .kpal-go { opacity: 0; width: 15px; height: 15px; }
.kpal-item.active, .kpal-item:hover { background: var(--color-primary-soft); color: var(--ink); }
.kpal-item.active .kpal-go, .kpal-item:hover .kpal-go { opacity: 1; color: var(--color-primary); }
.kpal-item.here b::after { content: " · Sie sind hier"; color: var(--color-signal); font-size: 11px; }
.kpal-empty { padding: 22px 16px; color: var(--color-text-muted); font-size: 14.5px; }

/* ---------- Vergleichstabellen ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-card); }
.cmp { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 14.5px; }
.cmp th, .cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.cmp thead th { font-family: var(--font-headline); font-size: 15px; background: var(--color-bg-subtle); }
.cmp thead th.hl { background: var(--color-primary-soft); color: var(--color-primary-dark); }
.cmp tbody th { font-family: var(--font-headline); font-weight: 600; font-size: 13.5px; color: var(--color-text-muted); white-space: nowrap; }
.cmp td.hl { background: rgba(0,105,180,0.04); }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.cmp .yes { color: var(--color-success); font-weight: 600; }
.cmp .no { color: var(--color-text-muted); }

/* ---------- ConfiguratorEngine (Tools) ---------- */
.cfg-shell { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 34px 36px 30px; box-shadow: var(--shadow-lift); max-width: 760px; }
.page-hero.dark .cfg-shell, .on-dark .cfg-shell { box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55); }
.cfg-kicker { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-headline); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary); background: var(--color-primary-soft); border-radius: 999px; padding: 6px 13px; margin-bottom: 12px; }
.cfg-title { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 4px; }
.cfg-intro { color: var(--color-text-muted); font-size: 15px; margin: 0 0 6px; }
.cfg-progress { height: 5px; background: var(--color-bg-muted); border-radius: 999px; overflow: hidden; margin-top: 16px; }
.cfg-progress-bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--color-primary), var(--color-signal)); transition: width .35s ease; }
.cfg-progress-label { font-size: 12px; font-family: var(--font-headline); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); margin: 8px 0 18px; }
.cfg-q { font-size: 19px; margin-bottom: 4px; }
.cfg-sub { color: var(--color-text-muted); font-size: 14.5px; margin: 0 0 16px; }
.cfg-hint { font-size: 12.5px; color: var(--color-text-muted); margin: 10px 0 0; }
.cfg-options { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.cfg-options-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.cfg-opt {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left;
  background: #fff; border: 1.5px solid var(--hairline); border-radius: 14px; padding: 14px 16px;
  font: inherit; cursor: pointer; transition: border-color .12s, background .12s, transform .12s;
  min-height: 56px; justify-content: center;
}
.cfg-opt:hover { border-color: rgba(0,105,180,0.45); transform: translateY(-1px); }
.cfg-opt.selected { border-color: var(--color-primary); background: var(--color-primary-soft); box-shadow: 0 0 0 3px rgba(0,105,180,0.12); }
.cfg-opt .icon { color: var(--color-primary); margin-bottom: 2px; }
.cfg-opt-label { font-family: var(--font-headline); font-weight: 600; font-size: 15.5px; }
.cfg-opt-sub { font-size: 13px; color: var(--color-text-muted); }
.cfg-slider-wrap { margin-top: 18px; }
.cfg-slider-val { display: block; font-family: var(--font-headline); font-weight: 700; font-size: 42px; letter-spacing: -0.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.cfg-slider { width: 100%; accent-color: var(--color-primary); height: 32px; }
.cfg-slider-scale { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--color-text-muted); }
.cfg-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
@media (max-width: 600px) { .cfg-fields { grid-template-columns: 1fr; } }
.cfg-field { display: flex; flex-direction: column; gap: 6px; }
.cfg-field.wide { grid-column: 1 / -1; }
.cfg-field > span:first-child { font-family: var(--font-headline); font-weight: 600; font-size: 13.5px; }
.cfg-field small { color: var(--color-text-muted); font-weight: 400; }
.cfg-input-wrap { position: relative; display: block; }
.cfg-input-wrap input { width: 100%; padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 12px; font: inherit; font-size: 15.5px; background: #fff; }
.cfg-input-wrap input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(0,105,180,0.12); }
.cfg-input-wrap em { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-style: normal; font-size: 13px; color: var(--color-text-muted); pointer-events: none; }
.cfg-slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 14px; }
@media (max-width: 700px) { .cfg-slots { grid-template-columns: repeat(2, 1fr); } }
.cfg-slot-day { display: flex; flex-direction: column; gap: 8px; }
.cfg-slot-day b { font-family: var(--font-headline); font-size: 13px; text-align: center; }
.cfg-slot { border: 1.5px solid var(--hairline); background: #fff; border-radius: 10px; padding: 8px 6px; font: inherit; font-size: 13.5px; cursor: pointer; transition: border-color .12s, background .12s; }
.cfg-slot:hover { border-color: rgba(0,105,180,0.45); }
.cfg-slot.selected { border-color: var(--color-primary); background: var(--color-primary-soft); font-weight: 600; color: var(--color-primary); }
.cfg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.cfg-back { background: none; border: 0; font: inherit; font-family: var(--font-headline); font-weight: 600; font-size: 14.5px; color: var(--color-text-muted); cursor: pointer; display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 10px; }
.cfg-back:hover { color: var(--color-primary); background: var(--color-primary-soft); }
.cfg-back-icon { transform: rotate(180deg); width: 15px; height: 15px; }
.cfg-error { color: #B4231F; font-size: 13.5px; margin: 12px 0 0; font-weight: 500; }
.cfg-result { margin-top: 4px; }
.cfg-result-compact { display: none; }
.cfg-result-panel { border-radius: 16px; padding: 22px 24px; margin-bottom: 18px; border: 1px solid; }
.cfg-result-panel.ok { background: #ECF8F2; border-color: #BFE5D3; }
.cfg-result-panel.warn { background: #FDF6E7; border-color: #F0DFB3; }
.cfg-result-panel.info { background: var(--color-primary-soft); border-color: rgba(0,105,180,0.2); }
.cfg-result-panel h5 { font-family: var(--font-headline); font-size: 17px; margin: 0 0 6px; display: flex; align-items: center; gap: 9px; }
.cfg-result-panel p { font-size: 14.5px; margin: 0; color: #34424F; }
.cfg-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 16px 0; }
.cfg-kpi { background: var(--color-bg-subtle); border: 1px solid var(--hairline); border-radius: 14px; padding: 14px 16px; }
.cfg-kpi b { display: block; font-family: var(--font-headline); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cfg-kpi span { font-size: 12.5px; color: var(--color-text-muted); }
.cfg-bars { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.cfg-bar-row { display: grid; grid-template-columns: 170px 1fr 90px; gap: 12px; align-items: center; font-size: 13.5px; }
.cfg-bar-row b { text-align: right; font-family: var(--font-headline); white-space: nowrap; }
.cfg-bar { height: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--color-primary), var(--color-signal)); min-width: 6px; }
.cfg-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 4px; }
.cfg-chips span { border: 1px solid rgba(0,105,180,0.25); color: var(--color-primary-dark); background: #fff; border-radius: 999px; padding: 6px 14px; font-family: var(--font-headline); font-weight: 600; font-size: 13.5px; }
.cfg-lead { border-top: 1px solid var(--hairline); margin-top: 20px; padding-top: 22px; }
.cfg-lead h4 { font-size: 18px; margin-bottom: 4px; }
.cfg-lead-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.cfg-restart { background: none; border: 0; font: inherit; font-size: 14px; color: var(--color-text-muted); cursor: pointer; text-decoration: underline; }
.cfg-restart:hover { color: var(--color-primary); }
.cfg-demo-note { font-size: 12px; color: var(--color-text-muted); margin: 14px 0 0; }
.cfg-success:focus { outline: none; } /* programmatischer Fokus (A11y) ohne sichtbaren Rahmen */
.cfg-success .cfg-success-check { width: 56px; height: 56px; border-radius: 50%; background: #ECF8F2; border: 1px solid #BFE5D3; color: var(--color-success); display: flex; align-items: center; justify-content: center; margin: 8px 0 14px; }
.cfg-success .person-card { box-shadow: none; }

/* ---------- Floating-Kontakt-Stack ---------- */
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fab {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-headline); font-weight: 600; font-size: 14.5px; border: 0;
  padding: 13px 18px; box-shadow: 0 10px 30px -8px rgba(10,27,46,0.4);
  transition: transform .14s, box-shadow .14s;
}
.fab:hover { transform: translateY(-2px); }
.fab .icon { width: 19px; height: 19px; }
.fab-call { background: var(--color-bg-dark); color: #fff; }
.fab-wa { background: #1FAF59; color: #fff; }
.fab-cb { background: linear-gradient(135deg, var(--color-primary), #0d7fce); color: #fff; box-shadow: var(--shadow-cta); }
.fab-label { white-space: nowrap; }
@media (max-width: 640px) { .fab-label { display: none; } .fab { padding: 13px; } }
.fab-pop {
  position: fixed; right: 18px; bottom: 86px; z-index: 95; width: min(340px, calc(100vw - 36px));
  background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 22px;
  box-shadow: 0 30px 70px -16px rgba(10,27,46,0.4);
}
.fab-pop h4 { font-size: 17px; margin-bottom: 2px; }
.fab-pop .cfg-sub { margin-bottom: 12px; }
.fab-pop .field { margin-bottom: 12px; }
.fab-pop-close { position: absolute; top: 12px; right: 12px; background: none; border: 0; color: var(--color-text-muted); cursor: pointer; padding: 6px; }
.fab-pop-close:hover { color: var(--ink); }
@media print { .fab-stack, .fab-pop { display: none; } }

/* ---------- B2B/B2C-Split-Band ---------- */
.split-band { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .split-band { grid-template-columns: 1fr; } }
.split-card { border-radius: var(--radius-lg); padding: 36px 36px 30px; position: relative; overflow: hidden; border: 1px solid var(--hairline); transition: transform .18s, box-shadow .18s; }
.split-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.split-card.b2b { background: var(--glow-dark); color: #fff; border-color: rgba(255,255,255,0.08); }
.split-card.b2b h3 { color: #fff; }
.split-card.b2c { background: linear-gradient(160deg, #F2F8FC, #E9F2F9); }
.split-card h3 { font-size: 24px; }
.split-card > p { font-size: 15px; }
.split-card.b2b > p { color: #b8c9d9; }
.split-links { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; }
.split-links a { display: flex; align-items: center; gap: 11px; padding: 11px 10px; border-radius: 12px; font-weight: 500; font-size: 15.5px; color: inherit; }
.split-card.b2b .split-links a { color: #dce8f2; }
.split-links a:hover { background: rgba(0,105,180,0.08); color: var(--color-primary); }
.split-card.b2b .split-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.split-links .icon { color: var(--color-primary); width: 18px; height: 18px; }
.split-card.b2b .split-links .icon { color: var(--color-signal); }
.split-links .arr { margin-left: auto; opacity: 0; transition: opacity .15s; width: 15px; height: 15px; }
.split-links a:hover .arr { opacity: 1; }

/* ---------- Dropdown-Gruppenlabel + ISDN-Banner ---------- */
.dropdown-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); padding: 10px 12px 4px; font-family: var(--font-headline); font-weight: 700; }
.mm-panel .mm-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); padding: 12px 0 2px 14px; font-family: var(--font-headline); font-weight: 700; }
.urgency-banner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(100deg, #0A1B2E, #14365a); color: #fff;
  border-radius: var(--radius); padding: 20px 26px; border: 1px solid rgba(24,160,216,0.3);
}
.urgency-banner .icon { color: var(--color-warning); width: 26px; height: 26px; }
.urgency-banner b { font-family: var(--font-headline); }
.urgency-banner p { margin: 0; color: #b8c9d9; font-size: 14.5px; flex: 1; min-width: 240px; }

.text-muted { color: var(--color-text-muted); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.flow > * + * { margin-top: 1em; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.split-40 { grid-template-columns: 1.3fr 1fr; }
@media (max-width: 900px) { .split, .split.split-40 { grid-template-columns: 1fr; gap: 32px; } }
.img-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.on-dark .img-card, .story .img-card { box-shadow: 0 24px 70px -18px rgba(0,0,0,0.55), 0 0 0 1px var(--hairline-dark); }
