/* ==========================================================================
   ARGUS Sicherheit GmbH – Stylesheet
   ========================================================================== */

/* --- Schrift (lokal gehostet, DSGVO-konform, kein Google-CDN) ------------ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Design-Tokens ------------------------------------------------------- */
:root {
  --navy-950: #030D1F;
  --navy-900: #04122A;
  --navy-800: #071D3B;   /* Markenfarbe aus dem Logo */
  --navy-700: #0D2A55;
  --navy-600: #133B76;

  --accent:      #2F6FED;
  --accent-soft: #4C8BFF;
  --accent-glow: rgba(47, 111, 237, .35);

  --ink:      #0B1220;
  --ink-soft: #43506A;
  --ink-mute: #6B7893;

  --line:       #E2E7F0;
  --line-dark:  rgba(255, 255, 255, .12);
  --surface:    #FFFFFF;
  --surface-2:  #F5F7FB;
  --surface-3:  #EDF1F8;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(7, 29, 59, .06), 0 2px 8px rgba(7, 29, 59, .05);
  --shadow:    0 4px 12px rgba(7, 29, 59, .07), 0 14px 34px rgba(7, 29, 59, .09);
  --shadow-lg: 0 10px 24px rgba(7, 29, 59, .10), 0 30px 70px rgba(7, 29, 59, .16);

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 84px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* hidden muss jedes display überstimmen – sonst bleiben Elemente sichtbar,
   die per JavaScript ausgeblendet werden sollen. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}
body.nav-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
/* Logos behalten ihr Seitenverhältnis, auch wenn nur die Höhe gesetzt ist */
.brand img, .footer-brand img, .sihk-kasten img { width: auto; flex: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

/* --- Typografie ---------------------------------------------------------- */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.35rem + 4.2vw, 4.4rem); font-weight: 900; letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.5vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.55rem); letter-spacing: -.02em; }
h4 { font-size: 1.08rem; letter-spacing: -.015em; }
p  { text-wrap: pretty; }
p + p { margin-top: 1.1em; }

a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy-600); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

strong, b { color: var(--ink); font-weight: 700; }

.lead {
  font-size: clamp(1.06rem, 1rem + .35vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

/* --- Layout -------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 880px; }

.section { padding-block: clamp(64px, 8vw, 120px); }
.section-tight { padding-block: clamp(48px, 6vw, 84px); }
.section-alt { background: var(--surface-2); }

.section-dark {
  background: var(--navy-800);
  color: rgba(255, 255, 255, .72);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark strong { color: #fff; }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 999;
  background: var(--navy-800); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }

/* --- Kicker & Section-Header --------------------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.kicker::before {
  content: ''; width: 26px; height: 2px;
  background: currentColor; border-radius: 2px; flex: none;
}
.section-dark .kicker { color: var(--accent-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker::before { display: none; }
.section-head p { margin-top: 20px; font-size: 1.08rem; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: .97rem; font-weight: 650; letter-spacing: -.01em;
  text-align: center; white-space: nowrap;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  box-shadow: 0 2px 6px rgba(7, 29, 59, .12);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--accent-glow);
}
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease-out); }
.btn:hover .icon { transform: translateX(3px); }

.btn-dark  { --btn-bg: var(--navy-800); }
.btn-dark:hover { box-shadow: 0 8px 22px rgba(7, 29, 59, .3); }

.btn-light { --btn-bg: #fff; --btn-fg: var(--navy-800); }
.btn-light:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, .25); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .32);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .6); box-shadow: none; }

.btn-outline {
  --btn-bg: transparent; --btn-fg: var(--navy-800);
  border-color: var(--line); box-shadow: none;
}
.btn-outline:hover { border-color: var(--navy-800); background: var(--surface-2); box-shadow: none; }

.btn-lg { padding: 18px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

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

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(3, 13, 31, .82), rgba(3, 13, 31, 0));
  opacity: 1; transition: opacity .3s var(--ease);
  pointer-events: none;
}
.site-header.scrolled {
  height: 70px;
  background: rgba(7, 29, 59, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: rgba(255, 255, 255, .09);
  box-shadow: 0 6px 30px rgba(3, 13, 31, .3);
}
.site-header.scrolled::before { opacity: 0; }

/* Innenseiten ohne dunkles Hero-Bild bekommen sofort den festen Header */
body.header-solid .site-header {
  background: rgba(7, 29, 59, .96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: rgba(255, 255, 255, .09);
}
body.header-solid .site-header::before { opacity: 0; }

.header-inner {
  display: flex; align-items: center; gap: 24px;
  width: 100%;
  /* Bewusst breiter als der Textinhalt (1240 px): Mit sieben Menüpunkten,
     Telefonnummer und Knopf wird es sonst zu eng. */
  max-width: 1400px;
}
.brand { display: flex; align-items: center; flex: none; margin-right: auto; }
.brand img { height: 40px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand img { height: 34px; }

/* --- Navigation ---------------------------------------------------------- */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 11px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .82);
  font-size: .94rem; font-weight: 550; letter-spacing: -.005em;
  border-radius: var(--radius-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .09); }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 11px; right: 11px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--accent-soft);
}

.nav-item { position: relative; }
.nav-toggle-sub {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0;
  padding: 10px 11px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .82);
  font-size: .94rem; font-weight: 550;
  border-radius: var(--radius-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-toggle-sub:hover, .nav-item:hover .nav-toggle-sub { color: #fff; background: rgba(255, 255, 255, .09); }
.nav-toggle-sub svg { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.nav-item:hover .nav-toggle-sub svg { transform: rotate(180deg); }

.subnav {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(560px, 88vw);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease-out), visibility .22s;
}
.nav-item:hover .subnav,
.nav-item:focus-within .subnav {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.subnav a {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px;
  color: var(--ink); font-size: .9rem; font-weight: 550;
  border-radius: var(--radius-sm);
}
.subnav a::after { display: none; }
.subnav a:hover { background: var(--surface-2); color: var(--accent); }
.subnav .icon { width: 18px; height: 18px; color: var(--accent); flex: none; }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  color: #fff; font-weight: 700; font-size: .95rem;
  padding: 9px 14px; border-radius: var(--radius-sm);
  transition: background .2s var(--ease);
}
.header-phone:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.header-phone .icon { width: 17px; height: 17px; color: var(--accent-soft); }

/* --- Burger -------------------------------------------------------------- */
.burger {
  display: none;
  width: 46px; height: 46px; flex: none;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-sm);
}
.burger span {
  display: block; position: relative;
  width: 20px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .3s var(--ease), background .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0;
  width: 20px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .3s var(--ease-out), top .2s var(--ease), bottom .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { bottom: -6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { bottom: 0; transform: rotate(-45deg); }

/* --- Mobile-Menü --------------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 16px) var(--gutter) 40px;
  background: var(--navy-900);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s var(--ease), transform .28s var(--ease-out), visibility .28s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
/* Gilt bewusst nur für die Menüpunkte, NICHT für die Knöpfe im Fuß.
   Ohne das :not(.btn) würden dort Symbol und Text auseinandergezogen. */
.mobile-nav a:not(.btn) {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0;
  color: #fff; font-size: 1.18rem; font-weight: 650;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav a:not(.btn) .icon { width: 18px; height: 18px; color: var(--accent-soft); }
.mobile-nav .sub-label {
  margin-top: 30px; margin-bottom: 4px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}
.mobile-nav .sub-link { font-size: .98rem; font-weight: 500; color: rgba(255, 255, 255, .76); padding: 12px 0; }

/* Knöpfe im Fuß des mobilen Menüs: Inhalt mittig, wie überall sonst auch */
.mobile-nav-footer { margin-top: 34px; display: grid; gap: 12px; padding-bottom: 8px; }
.mobile-nav-footer .btn {
  justify-content: center;
  border-bottom: 0;
  font-size: 1rem;
  padding-block: 17px;
}
.mobile-nav-footer .btn .icon { width: 19px; height: 19px; color: currentColor; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex; align-items: flex-end;
  min-height: clamp(600px, 92vh, 940px);
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 0;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 52%; }
@media (max-width: 700px) { .hero-media img { object-position: center 30%; } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  /* Links kräftig abgedunkelt, damit die weiße Schrift sicher lesbar bleibt.
     Nach rechts läuft es deutlich heller aus – sonst verschwindet ein
     Nachtmotiv wie das aktuelle Startbild komplett im Dunkeln. */
  background:
    linear-gradient(to right, rgba(3, 13, 31, .93) 0%, rgba(3, 13, 31, .8) 38%, rgba(3, 13, 31, .38) 62%, rgba(3, 13, 31, .18) 82%, rgba(3, 13, 31, .22) 100%),
    linear-gradient(to top, rgba(3, 13, 31, .78) 0%, rgba(3, 13, 31, .08) 42%, rgba(3, 13, 31, .3) 100%);
}
.hero-inner { position: relative; width: 100%; padding-bottom: clamp(48px, 7vw, 96px); }
.hero-content { max-width: 780px; }
.hero .kicker { color: var(--accent-soft); }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 .hl {
  background: linear-gradient(105deg, var(--accent-soft), #86B6FF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero p {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1.05rem, 1rem + .45vw, 1.28rem);
  max-width: 620px; margin-bottom: 36px;
}
.hero .btn-group { margin-bottom: clamp(40px, 6vw, 68px); }

/* Markierung im Hero – dezent, mit ruhigem Pulspunkt */
.hero-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 18px 9px 15px; margin-bottom: 28px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .92);
  font-size: .84rem; font-weight: 600; letter-spacing: .04em;
}
.hero-badge .pulse {
  position: relative; width: 8px; height: 8px; flex: none;
  background: #4ADE80; border-radius: 50%;
}
.hero-badge .pulse::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid #4ADE80; border-radius: 50%;
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0%        { opacity: .8; transform: scale(.6); }
  70%, 100% { opacity: 0;  transform: scale(1.5); }
}
@media (prefers-reduced-motion: reduce) { .hero-badge .pulse::after { animation: none; opacity: .35; } }

/* Zweitaktion im Hero – bewusst nur ein Textlink, das hält den Hero ruhig */
.hero-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 6px;
  color: rgba(255, 255, 255, .88);
  font-size: .97rem; font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .25s var(--ease-out);
}
.hero-link:hover { color: #fff; border-color: #fff; gap: 14px; }
.hero-link .icon { width: 17px; height: 17px; }

/* Schmale Vertrauensleiste – jetzt unterhalb des Heros statt darin */
.trust-strip {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.trust-strip ul {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0; padding: 0;
}
.trust-strip li {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 20px 16px;
  color: rgba(255, 255, 255, .62);
  font-size: .89rem; line-height: 1.35; text-align: left;
}
.trust-strip li + li { box-shadow: inset 1px 0 0 rgba(255, 255, 255, .09); }
.trust-strip strong { color: #fff; font-weight: 700; }
.trust-strip .icon { width: 19px; height: 19px; color: var(--accent-soft); flex: none; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; z-index: 2;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .3); border-radius: 14px;
}
.scroll-cue::after {
  content: ''; position: absolute; left: 50%; top: 8px;
  width: 3px; height: 7px; border-radius: 2px;
  background: rgba(255, 255, 255, .75);
  transform: translateX(-50%);
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0; transform: translate(-50%, 0); }
  35%      { opacity: 1; }
  70%      { opacity: 0; transform: translate(-50%, 14px); }
}

/* --- Seiten-Hero (Unterseiten) ------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(52px, 7vw, 96px));
  padding-bottom: clamp(52px, 7vw, 96px);
  background: var(--navy-800);
  overflow: hidden; isolation: isolate;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 420px at 88% 8%, rgba(47, 111, 237, .3), transparent 62%),
    radial-gradient(700px 400px at 6% 100%, rgba(19, 59, 118, .55), transparent 60%);
}
.page-hero.has-image .page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero.has-image .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-image::before {
  background:
    linear-gradient(to right, rgba(4, 18, 42, .95) 0%, rgba(4, 18, 42, .82) 48%, rgba(4, 18, 42, .48) 100%),
    linear-gradient(to top, rgba(4, 18, 42, .8), rgba(4, 18, 42, .25));
}

/* Motive, die links bereits eine ruhige freie Fläche mitbringen, brauchen
   deutlich weniger Abdunklung – sonst verschwindet das Bild komplett.
   Links bleibt es dunkel genug für weiße Schrift, rechts wird das Motiv sichtbar. */
.page-hero.motiv-frei::before {
  background:
    linear-gradient(to right, rgba(4, 18, 42, .93) 0%, rgba(4, 18, 42, .8) 36%, rgba(4, 18, 42, .34) 66%, rgba(4, 18, 42, .14) 100%),
    linear-gradient(to top, rgba(4, 18, 42, .55), rgba(4, 18, 42, .1) 55%, rgba(4, 18, 42, .35));
}
.page-hero.motiv-frei .page-hero-media img { object-position: center 45%; }
@media (max-width: 900px) {
  /* Auf schmalen Geräten liegt der Text über dem Motiv – wieder abdunkeln */
  .page-hero.motiv-frei::before {
    background:
      linear-gradient(to right, rgba(4, 18, 42, .93) 0%, rgba(4, 18, 42, .86) 60%, rgba(4, 18, 42, .7) 100%),
      linear-gradient(to top, rgba(4, 18, 42, .8), rgba(4, 18, 42, .35));
  }
}
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero p { color: rgba(255, 255, 255, .78); max-width: 62ch; margin-top: 22px; font-size: 1.1rem; }
.page-hero .kicker { color: var(--accent-soft); }

/* --- Breadcrumb ---------------------------------------------------------- */
.breadcrumb { margin-bottom: 22px; font-size: .85rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .5); }
.breadcrumb li + li::before { content: '/'; color: rgba(255, 255, 255, .3); }
.breadcrumb a { color: rgba(255, 255, 255, .7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: rgba(255, 255, 255, .95); font-weight: 550; }

/* --- USP-Karten ---------------------------------------------------------- */
.usp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.usp {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.usp:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.usp-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 13px; color: #fff;
  box-shadow: 0 6px 16px rgba(7, 29, 59, .22);
}
.usp-icon .icon { width: 25px; height: 25px; }
.usp h3 { margin-bottom: 10px; font-size: 1.13rem; }
.usp p { font-size: .96rem; }

/* --- Zahlenband ---------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-dark);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-dark);
}
.stat { padding: clamp(28px, 4vw, 44px) 24px; text-align: center; background: var(--navy-800); }
.stat-value {
  display: block;
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.3rem);
  font-weight: 900; letter-spacing: -.045em; line-height: 1;
  color: #fff; margin-bottom: 12px;
}
.stat-label { font-size: .84rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: rgba(255, 255, 255, .58); }

/* --- Leistungs-Kacheln --------------------------------------------------- */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}
.service-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.service-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out), filter .4s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 18, 42, .72), rgba(4, 18, 42, .06) 55%);
}
.service-card-icon {
  position: absolute; left: 22px; bottom: 22px; z-index: 1;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px; color: #fff;
}
.service-card-icon .icon { width: 22px; height: 22px; }
.service-card-body { display: flex; flex-direction: column; flex: 1; padding: 26px 28px 28px; }
.service-card h3 { margin-bottom: 11px; transition: color .2s var(--ease); }
.service-card:hover h3 { color: var(--accent); }
.service-card p { font-size: .95rem; flex: 1; }
.service-card-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-size: .9rem; font-weight: 650; color: var(--accent);
}
.service-card-more .icon { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.service-card:hover .service-card-more .icon { transform: translateX(4px); }
.stretch::after { content: ''; position: absolute; inset: 0; z-index: 2; }

/* --- Split (Text + Bild) ------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.split.reverse .split-media { order: -1; }
.split-media { position: relative; }
.split-media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split-media.framed::before {
  content: ''; position: absolute; inset: -18px -18px auto auto;
  width: 62%; height: 62%; z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), transparent 65%);
  opacity: .16;
}
.split-badge {
  position: absolute; left: -22px; bottom: -22px;
  padding: 22px 26px;
  background: var(--navy-800); color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 230px;
}
.split-badge .v { display: block; font-size: 1.9rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.split-badge .l { font-size: .82rem; color: rgba(255, 255, 255, .65); line-height: 1.4; }

/* --- Checklisten --------------------------------------------------------- */
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; }
.check-list .icon {
  width: 21px; height: 21px; flex: none; margin-top: 3px;
  padding: 3px; border-radius: 50%;
  background: rgba(47, 111, 237, .12); color: var(--accent);
  stroke-width: 2.6;
}
.section-dark .check-list li { color: rgba(255, 255, 255, .8); }
.section-dark .check-list .icon { background: rgba(255, 255, 255, .12); color: var(--accent-soft); }

.check-list.two-col { grid-template-columns: 1fr 1fr; gap: 14px 32px; }

/* --- Prozess-Schritte ---------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 34px); counter-reset: step; }
.step { position: relative; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block; margin-bottom: 20px;
  font-size: 2.6rem; font-weight: 900; letter-spacing: -.05em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, .32);
}
.step::after {
  content: ''; position: absolute; top: 18px; left: calc(2.9rem); right: calc(-1 * clamp(20px, 2.5vw, 34px));
  height: 1px; background: linear-gradient(to right, rgba(255, 255, 255, .26), rgba(255, 255, 255, 0));
}
.process .step:last-child::after { display: none; }
.step h3 { margin-bottom: 10px; font-size: 1.14rem; }
.step p { font-size: .95rem; }

/* --- CTA-Band ------------------------------------------------------------ */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(64px, 8vw, 110px);
  background: var(--navy-900);
}
.cta-band-media { position: absolute; inset: 0; z-index: -2; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(4, 18, 42, .96) 0%, rgba(4, 18, 42, .82) 55%, rgba(4, 18, 42, .5) 100%);
}
.cta-band-inner {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .78); margin-top: 18px; font-size: 1.08rem; }
.cta-actions { display: grid; gap: 14px; }
.cta-phone {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease-out);
}
.cta-phone:hover { color: #fff; background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .35); transform: translateY(-2px); }
.cta-phone .icon { width: 26px; height: 26px; color: var(--accent-soft); flex: none; }
.cta-phone .l { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-bottom: 3px; }
.cta-phone .v { display: block; font-size: 1.24rem; font-weight: 800; letter-spacing: -.02em; }

/* --- Leistungsdetail ----------------------------------------------------- */
.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(36px, 4.5vw, 68px); align-items: start; }
.prose h2 { margin-top: 48px; margin-bottom: 18px; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 34px; margin-bottom: 14px; }
.prose p { margin-bottom: 1.1em; }
.prose > *:last-child { margin-bottom: 0; }
.prose ul { padding-left: 1.3em; margin-bottom: 1.2em; display: grid; gap: 9px; }
.prose li::marker { color: var(--accent); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin-block: 2em; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: .95rem; }
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { color: var(--ink); font-weight: 650; width: 34%; }

.callout {
  padding: 26px 28px; margin-block: 32px;
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout h4 { margin-bottom: 8px; }
.callout p { font-size: .97rem; margin-bottom: 0; }

.sidecard {
  position: sticky; top: calc(var(--header-h) + 24px);
  /* Beim Mitscrollen schiebt sich die Karte über die Liste darunter.
     Ohne eigene Stapelebene schimmerten die Symbole der Liste durch –
     z-index und isolation erzwingen eine wirklich deckende Fläche. */
  z-index: 2;
  isolation: isolate;
  padding: 30px 28px;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow-lg);
}
.sidecard h3 { color: #fff; margin-bottom: 12px; font-size: 1.24rem; }
.sidecard p { font-size: .94rem; margin-bottom: 22px; }
.sidecard .btn { width: 100%; }
.sidecard-divider { height: 1px; background: var(--line-dark); margin-block: 24px; }
.sidecard-contact { display: grid; gap: 14px; }
.sidecard-contact a, .sidecard-contact div { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .84); font-size: .94rem; }
.sidecard-contact a:hover { color: #fff; }
.sidecard-contact .icon { width: 18px; height: 18px; color: var(--accent-soft); flex: none; }

.service-nav-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 3px; position: relative; z-index: 0; }
.service-nav-list a {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  color: var(--ink-soft); font-size: .93rem; font-weight: 550;
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.service-nav-list a:hover { background: var(--surface-2); color: var(--accent); }
.service-nav-list a[aria-current="page"] { background: var(--navy-800); color: #fff; }
.service-nav-list .icon { width: 18px; height: 18px; flex: none; opacity: .75; }

/* --- Kontakt ------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }

.contact-card {
  display: grid; gap: 4px;
  padding: 30px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-row { display: flex; gap: 16px; padding-block: 15px; }
.contact-row + .contact-row { border-top: 1px solid var(--line); }
.contact-row .icon-wrap {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px;
  background: var(--surface-2); border-radius: 11px; color: var(--accent);
}
.contact-row .icon-wrap .icon { width: 20px; height: 20px; }
.contact-row .l { font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.contact-row .v { color: var(--ink); font-weight: 600; font-size: 1.02rem; line-height: 1.5; }
.contact-row a.v:hover { color: var(--accent); }
.contact-row .note { font-size: .88rem; color: var(--ink-mute); margin-top: 3px; font-weight: 400; }

/* --- Formular ------------------------------------------------------------ */
.form-wrap {
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .87rem; font-weight: 650; color: var(--ink); }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .97rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: #C7D0E0; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 111, 237, .13);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7893' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 17px; padding-right: 42px; }
.field .hint { font-size: .83rem; color: var(--ink-mute); }

.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; line-height: 1.55; }
.checkbox input { width: 19px; height: 19px; flex: none; margin-top: 2px; accent-color: var(--accent); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { display: flex; gap: 13px; padding: 17px 20px; border-radius: var(--radius-sm); font-size: .95rem; margin-bottom: 26px; }
.alert .icon { width: 21px; height: 21px; flex: none; margin-top: 2px; }
.alert-success { background: #E9F7EF; color: #1B6B42; border: 1px solid #BFE5CE; }
.alert-error   { background: #FDECEC; color: #97231F; border: 1px solid #F5C6C3; }
.alert strong { color: inherit; }

/* --- Karte --------------------------------------------------------------- */
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center; gap: 16px;
  padding: 32px; text-align: center;
  background: var(--surface-2);
}
.map-consent p { max-width: 46ch; font-size: .93rem; }
.map-consent .icon { width: 32px; height: 32px; color: var(--accent); }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .58); font-size: .88rem; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: clamp(26px, 3vw, 44px);
  padding-block: clamp(42px, 4.5vw, 64px);
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 32ch; font-size: .85rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: rgba(255, 255, 255, .58); }
.footer-col a:hover { color: #fff; }
.footer-contact { display: grid; gap: 9px; }
.footer-contact div, .footer-contact a {
  display: flex; gap: 10px; align-items: center;
  color: rgba(255, 255, 255, .58); white-space: nowrap;
}
.footer-contact a:hover { color: #fff; }
.footer-contact .icon { width: 16px; height: 16px; color: var(--accent-soft); flex: none; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center; justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: .82rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal a { color: rgba(255, 255, 255, .62); }
.footer-legal a:hover { color: #fff; }

/* --- Mobiler Anruf-Balken ------------------------------------------------ */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255, 255, 255, .14);
  border-top: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 -6px 24px rgba(3, 13, 31, .3);
}
.call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 12px;
  background: var(--navy-800); color: #fff;
  font-size: .95rem; font-weight: 650;
}
.call-bar a.primary { background: var(--accent); }
.call-bar .icon { width: 18px; height: 18px; }

/* --- Scroll-Animation ----------------------------------------------------
   Wichtig: Inhalte sind grundsätzlich sichtbar. Nur wenn JavaScript läuft
   (Klasse .js am <html>), werden sie zum Einblenden vorbereitet. So bleibt
   die Seite auch ohne JavaScript vollständig lesbar. */
.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: .08s; }
.js .reveal-d2 { transition-delay: .16s; }
.js .reveal-d3 { transition-delay: .24s; }
.js .reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --- Rechtstexte --------------------------------------------------------- */
.legal-page { padding-block: clamp(48px, 6vw, 84px); }
.legal-page .prose { max-width: 760px; }
.legal-page .prose h2 { font-size: 1.42rem; margin-top: 44px; }
.legal-page .prose h3 { font-size: 1.1rem; }
.placeholder-note {
  display: inline-block;
  padding: 2px 9px; border-radius: 5px;
  background: #FFF3CD; color: #7A5B00;
  font-size: .87rem; font-weight: 650;
  border: 1px dashed #E0B93B;
}

/* --- 404 ----------------------------------------------------------------- */
.error-page { display: grid; place-items: center; text-align: center; min-height: 74vh; padding-top: var(--header-h); }
.error-code { font-size: clamp(5rem, 3rem + 12vw, 11rem); font-weight: 900; letter-spacing: -.06em; line-height: 1; color: var(--surface-3); margin-bottom: -.1em; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main .footer-col:nth-child(4),
  .footer-main .footer-col:nth-child(5) { grid-column: auto; }
}

@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-layout { grid-template-columns: 1fr; }
  .sidecard { position: static; }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process .step:nth-child(2)::after { display: none; }
}

/* Stufenweise ausdünnen, damit die Leiste nie umbricht:
   1. Telefonnummer nur noch als Symbol  2. Telefon ganz weg  3. Burger-Menü */
@media (max-width: 1340px) {
  .header-phone span { display: none; }
  .header-phone { padding: 9px 10px; }
}
@media (max-width: 1240px) {
  .header-phone { display: none; }
  .nav a, .nav-toggle-sub { padding-inline: 9px; font-size: .91rem; }
  .nav a[aria-current="page"]::after { left: 9px; right: 9px; }
}

@media (max-width: 1140px) {
  :root { --header-h: 72px; }
  .nav, .header-phone { display: none; }
  .burger { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-badge { position: static; margin-top: 20px; max-width: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 58px; }
  .call-bar { display: grid; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-inner { padding-bottom: 36px; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust div { padding: 15px 18px; }
  .scroll-cue { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-group { flex-direction: column; }
  .header-cta .btn { display: none; }
  .process { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .stats { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .subnav { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 26px; }
  .footer-contact div, .footer-contact a { white-space: normal; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-card { padding: 22px; }
}

/* --- Druck --------------------------------------------------------------- */
@media print {
  .site-header, .call-bar, .mobile-nav, .cta-band, .scroll-cue, .btn { display: none !important; }
  body { color: #000; font-size: 11pt; padding: 0; }
  .reveal { opacity: 1; transform: none; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 9pt; color: #555; }
}


/* ==========================================================================
   Lesefortschritt
   ========================================================================== */
.scroll-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 101;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-soft));
  transition: width .1s linear;
  pointer-events: none;
}

/* ==========================================================================
   Leistungsfinder
   ========================================================================== */
.finder {
  max-width: 880px; margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}
.finder-q {
  font-size: .82rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 18px;
}
.finder-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.finder-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  font-size: .92rem; font-weight: 600;
  transition: border-color .2s var(--ease), background .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease-out), box-shadow .2s var(--ease);
}
.finder-chip .icon { width: 17px; height: 17px; color: var(--accent); transition: color .2s var(--ease); }
.finder-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.finder-chip[aria-pressed="true"] {
  background: var(--navy-800); border-color: var(--navy-800); color: #fff;
  box-shadow: 0 6px 18px rgba(7, 29, 59, .26);
}
.finder-chip[aria-pressed="true"] .icon { color: var(--accent-soft); }
.finder-reset { background: transparent; border-style: dashed; }
.finder-result {
  min-height: 1.5em; margin-top: 16px;
  font-size: .9rem; color: var(--ink-mute);
}

/* Kacheln, die nicht zur Auswahl passen, treten zurück statt zu verschwinden */
.service-card { transition: transform .35s var(--ease-out), box-shadow .35s var(--ease),
                            border-color .3s var(--ease), opacity .35s var(--ease),
                            filter .35s var(--ease); }
.service-card.dimmed { opacity: .3; filter: saturate(.25); }
.service-card.dimmed:hover { transform: none; box-shadow: none; }
.service-card.matched { box-shadow: 0 0 0 2px var(--accent), var(--shadow); border-color: transparent; }

/* ==========================================================================
   Häufige Fragen
   ========================================================================== */
.faq-layout {
  display: grid; grid-template-columns: 380px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px); align-items: start;
}
.faq-intro { position: sticky; top: calc(var(--header-h) + 28px); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-size: inherit; font-weight: inherit; letter-spacing: normal; }

.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
  width: 100%; padding: 22px 4px;
  background: none; border: 0; text-align: left;
  color: var(--ink); font-size: 1.06rem; font-weight: 650; letter-spacing: -.015em;
  line-height: 1.45;
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  position: relative; width: 22px; height: 22px; flex: none; margin-top: 2px;
  border: 1px solid var(--line); border-radius: 50%;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .3s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: currentColor; border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .25s var(--ease), transform .3s var(--ease-out);
}
.faq-icon::before { width: 10px; height: 1.6px; }
.faq-icon::after  { width: 1.6px; height: 10px; }
.faq-q:hover .faq-icon { border-color: var(--accent); }
.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(180deg);
}
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-a { overflow: hidden; }
.faq-a p { padding: 0 60px 24px 4px; font-size: .98rem; color: var(--ink-soft); }
/* Ausnahme von der Regel oben: Die Antwort bleibt im Fluss, damit sie
   sich auf- und zuklappen lässt. Ohne JavaScript ist sie schlicht zu. */
.faq-a[hidden] { display: block !important; height: 0; }
.js .faq-a { transition: height .35s var(--ease-out); }

/* ==========================================================================
   Cookie-Hinweis – klein, unaufdringlich, unten links
   ========================================================================== */
.cookie-note {
  position: fixed; left: 20px; bottom: 20px; z-index: 95;
  display: flex; align-items: flex-start; gap: 13px;
  width: min(400px, calc(100vw - 40px));
  padding: 17px 19px;
  background: rgba(7, 29, 59, .97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(3, 13, 31, .42);
  color: rgba(255, 255, 255, .78);
  font-size: .87rem; line-height: 1.55;
  animation: cookie-in .45s var(--ease-out) both;
}
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.cookie-note.leaving { animation: cookie-out .3s var(--ease) both; }
@keyframes cookie-out {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(12px); }
}
.cookie-note > .icon { width: 20px; height: 20px; color: var(--accent-soft); flex: none; margin-top: 1px; }
.cookie-note p { margin: 0; flex: 1; }
.cookie-note a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 2px; }
.cookie-note a:hover { color: #fff; }
.cookie-note button {
  flex: none; align-self: center;
  padding: 9px 17px;
  background: #fff; color: var(--navy-800);
  border: 0; border-radius: 7px;
  font-size: .85rem; font-weight: 700;
  transition: background .18s var(--ease), transform .18s var(--ease-out);
}
.cookie-note button:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

.footer-editor { opacity: .5; }
.footer-editor:hover { opacity: 1; }

/* ==========================================================================
   Ergänzungen Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .trust-strip ul { grid-template-columns: 1fr 1fr; }
  .trust-strip li:nth-child(3) { box-shadow: none; }
  .trust-strip li:nth-child(n+3) { box-shadow: inset 0 1px 0 rgba(255,255,255,.09); }
  .trust-strip li:nth-child(4) { box-shadow: inset 1px 0 0 rgba(255,255,255,.09), inset 0 1px 0 rgba(255,255,255,.09); }
}

@media (max-width: 640px) {
  /* Chip soll einzeilig bleiben, sonst wirkt er wie ein Kasten */
  .hero-badge { font-size: .74rem; padding: 8px 15px 8px 12px; gap: 9px; letter-spacing: .02em; }
  .hero-badge .pulse { width: 7px; height: 7px; }
  .hero p { font-size: 1.02rem; }
  .trust-strip ul { grid-template-columns: 1fr; }
  .trust-strip li { justify-content: flex-start; padding: 14px 4px; }
  .trust-strip li + li { box-shadow: inset 0 1px 0 rgba(255,255,255,.09); }
  .hero-link { align-self: flex-start; }
  .finder-chip { font-size: .87rem; padding: 10px 16px; }
  .faq-q { font-size: 1rem; gap: 16px; padding: 19px 0; }
  .faq-a p { padding-right: 38px; }
  .cookie-note {
    left: 12px; right: 12px; bottom: 70px;
    width: auto; flex-wrap: wrap; gap: 11px;
  }
  .cookie-note button { width: 100%; }
}

/* ==========================================================================
   Städte / Einsatzgebiet
   ========================================================================== */

/* Kompakte Stadtliste auf der Startseite */
.city-cloud {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 940px; margin-inline: auto;
}
.city-cloud a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink); font-size: .93rem; font-weight: 600;
  transition: border-color .2s var(--ease), color .2s var(--ease),
              transform .2s var(--ease-out), box-shadow .2s var(--ease);
}
.city-cloud a:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.city-cloud .icon { width: 15px; height: 15px; color: var(--accent); }

/* Nach Landkreis gruppierte Kacheln auf der Übersichtsseite */
.city-group + .city-group { margin-top: clamp(38px, 4.5vw, 58px); }
.city-group h2 {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
  font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem);
  color: var(--ink-mute); font-weight: 700;
  letter-spacing: .01em;
}
.city-group h2::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 14px; }
.city-card {
  display: flex; align-items: center; gap: 15px;
  padding: 19px 21px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .22s var(--ease), transform .25s var(--ease-out), box-shadow .25s var(--ease);
}
.city-card:hover {
  border-color: transparent; color: var(--ink);
  transform: translateY(-3px); box-shadow: var(--shadow);
}
.city-card-icon {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px;
  background: var(--surface-2); border-radius: 10px; color: var(--accent);
  transition: background .22s var(--ease), color .22s var(--ease);
}
.city-card:hover .city-card-icon { background: var(--navy-800); color: #fff; }
.city-card-icon .icon { width: 19px; height: 19px; }
.city-card-body { flex: 1; display: grid; gap: 2px; }
.city-card-body strong { font-size: 1.02rem; font-weight: 650; letter-spacing: -.015em; }
.city-card-meta { font-size: .84rem; color: var(--ink-mute); font-weight: 400; }
.city-card > .icon { width: 17px; height: 17px; color: var(--ink-mute); transition: transform .25s var(--ease-out), color .2s var(--ease); }
.city-card:hover > .icon { transform: translateX(4px); color: var(--accent); }

/* Stadtteile und Ortslisten im Fließtext */
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-block: 1.4em 2em; }
.city-tags span, .city-tags a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft); font-size: .86rem; font-weight: 550;
  text-decoration: none;
}
.city-tags a { transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.city-tags a:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

@media (max-width: 640px) {
  .city-grid { grid-template-columns: 1fr; }
  .city-cloud { gap: 8px; }
  .city-cloud a { font-size: .87rem; padding: 9px 15px; }
}

/* ==========================================================================
   Stellenangebote
   ========================================================================== */
.job-list { display: grid; gap: clamp(18px, 2.2vw, 26px); }

.job {
  padding: clamp(26px, 3vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease-out);
}
.job:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-2px); }

.job-dark {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .74);
}
.job-dark:hover { border-color: rgba(255, 255, 255, .28); box-shadow: none; }

.job-head {
  display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.job-dark .job-head { border-bottom-color: rgba(255, 255, 255, .13); }

.job-icon {
  display: grid; place-items: center; flex: none;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 13px; color: #fff;
  box-shadow: 0 5px 14px rgba(7, 29, 59, .2);
}
.job-dark .job-icon { background: rgba(255, 255, 255, .12); box-shadow: none; }
.job-icon .icon { width: 24px; height: 24px; }

.job-title { flex: 1; min-width: 240px; }
.job-title h3 { margin-bottom: 4px; font-size: clamp(1.12rem, 1rem + .5vw, 1.38rem); }
.job-sub { font-size: .93rem; color: var(--ink-mute); }
.job-dark .job-sub { color: rgba(255, 255, 255, .58); }

.job-tag {
  flex: none; align-self: center;
  padding: 8px 16px;
  background: rgba(47, 111, 237, .1);
  border: 1px solid rgba(47, 111, 237, .25);
  border-radius: 100px;
  color: var(--accent); font-size: .82rem; font-weight: 700;
  white-space: nowrap;
}
.job-tag-alt {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.job-lead { font-size: 1.02rem; margin-bottom: 24px; }
.job-dark .job-lead { color: rgba(255, 255, 255, .82); }

.job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 44px); }
.job-cols h4 {
  margin-bottom: 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.job-dark .job-cols h4 { color: rgba(255, 255, 255, .55); }
.job-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.job-cols li { position: relative; padding-left: 20px; font-size: .95rem; }
.job-cols li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.job-dark .job-cols li::before { background: var(--accent-soft); }
.job-cols p { font-size: .95rem; }

.job-note {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 24px; padding: 15px 18px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-size: .93rem;
}
.job-dark .job-note { background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .8); }
.job-note .icon { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--accent); stroke-width: 2.6; }
.job-dark .job-note .icon { color: var(--accent-soft); }

.job-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* --- Ausbildungs-Siegel --------------------------------------------------- */
.ausbildung-siegel { display: grid; place-items: center; }
.siegel { width: min(320px, 76%); height: auto; color: #fff; opacity: .92; }
.siegel text { fill: currentColor; font-family: 'Inter', sans-serif; }
.siegel-bogen { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; }
.siegel-mitte { font-size: 17px; font-weight: 800; letter-spacing: .08em; }
.siegel-fuss  { font-size: 9px; font-weight: 600; letter-spacing: .16em; opacity: .6; }

/* --- Ausbildungs-Hinweis in der Fußzeile ---------------------------------- */
.footer-ausbildung {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}
.sihk-kasten {
  display: inline-flex; align-items: center; flex: none;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}
.sihk-kasten img { width: auto; height: 36px; display: block; }
.ausbildung-mark {
  display: grid; place-items: center; flex: none;
  width: 58px; height: 58px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 13px; color: var(--accent-soft);
}
.ausbildung-mark .icon { width: 27px; height: 27px; }
.footer-ausbildung strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 3px; }
.footer-ausbildung p { font-size: .82rem; color: rgba(255, 255, 255, .52); max-width: 80ch; line-height: 1.55; }
.footer-ausbildung em { font-style: normal; color: rgba(255, 255, 255, .78); }
.footer-ausbildung a { color: var(--accent-soft); }
.footer-ausbildung a:hover { color: #fff; }

@media (max-width: 760px) {
  .job-cols { grid-template-columns: 1fr; }
  .job-tag { align-self: flex-start; }
  .job-actions .btn { width: 100%; }
  .footer-ausbildung { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ==========================================================================
   Aktuelles: Beitragskacheln
   ========================================================================== */
.news-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(30px, 4vw, 44px); }
.news-filter .finder-chip { text-decoration: none; }
.news-filter .finder-chip.current {
  background: var(--navy-800); border-color: var(--navy-800); color: #fff;
}
.chip-zahl {
  display: inline-grid; place-items: center;
  min-width: 20px; height: 20px; padding: 0 6px; margin-left: 3px;
  background: rgba(47, 111, 237, .12);
  border-radius: 20px;
  font-size: .74rem; font-weight: 700; color: var(--accent);
}
.finder-chip.current .chip-zahl { background: rgba(255, 255, 255, .18); color: #fff; }

.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.news-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease), border-color .3s var(--ease);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

.news-card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface-3); }
.news-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease-out);
}
.news-card:hover .news-card-media img { transform: scale(1.05); }

.news-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.news-card h2, .news-card h3 {
  margin-bottom: 11px;
  font-size: 1.2rem; line-height: 1.3;
  transition: color .2s var(--ease);
}
.news-card h2 a, .news-card h3 a { color: inherit; }
.news-card:hover h2, .news-card:hover h3 { color: var(--accent); }
.news-card p { font-size: .95rem; flex: 1; }
.news-card .service-card-more { margin-top: 18px; }

.news-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: .81rem; color: var(--ink-mute);
}
.news-kat {
  padding: 4px 11px;
  background: rgba(47, 111, 237, .1);
  border-radius: 20px;
  color: var(--accent); font-weight: 700; letter-spacing: .02em;
}

/* Fuß eines Beitrags */
.beitrag-fuss {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--ink-mute);
}
.beitrag-fuss a { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; }
.beitrag-fuss .icon { width: 16px; height: 16px; transform: rotate(180deg); }

/* Weitere Beiträge in der Randspalte */
.news-side { list-style: none; padding: 0; margin: 0; display: grid; gap: 3px; position: relative; z-index: 0; }
.news-side a {
  display: grid; gap: 3px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease);
}
.news-side a:hover { background: var(--surface-2); }
.news-side time { font-size: .79rem; color: var(--ink-mute); }
.news-side span { color: var(--ink); font-size: .93rem; font-weight: 600; line-height: 1.4; }
.news-side a:hover span { color: var(--accent); }

@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Über uns
   ========================================================================== */

/* Herkunft des Namens – hervorgehobener Einstieg statt Textwand */
.namens-block {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 46px); align-items: center;
  max-width: 940px; margin-inline: auto;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.namens-symbol { display: grid; place-items: center; flex: none; }
.namens-symbol img { width: clamp(56px, 7vw, 84px); height: auto; opacity: .9; }
.namens-block .lead { margin-top: 4px; }

/* Grundsätze – nummeriert, ohne Inline-Behelfsstile */
.grundsatz-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.grundsatz {
  position: relative;
  padding: 30px 28px 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease), background .3s var(--ease);
}
.grundsatz:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}
.grundsatz-nr {
  position: absolute; top: 20px; right: 22px;
  font-size: 1.6rem; font-weight: 900; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1.2px rgba(255, 255, 255, .28);
}
.grundsatz-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; margin-bottom: 20px;
  background: rgba(255, 255, 255, .12);
  border-radius: 12px; color: var(--accent-soft);
}
.grundsatz-icon .icon { width: 23px; height: 23px; }
.grundsatz h3 { margin-bottom: 10px; font-size: 1.12rem; }
.grundsatz p { font-size: .95rem; color: rgba(255, 255, 255, .72); }

/* Einsatzgebiet als kompakter Verweis statt langer Ortsliste */
.gebiet-teaser {
  display: grid; grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(30px, 4vw, 64px); align-items: center;
}
.gebiet-zahl {
  display: grid; justify-items: center; gap: 6px;
  padding: clamp(28px, 3vw, 40px) clamp(30px, 3.5vw, 48px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  text-align: center;
}
.gebiet-zahl .v {
  font-size: clamp(3rem, 2rem + 3.5vw, 4.6rem); font-weight: 900;
  letter-spacing: -.05em; line-height: 1; color: var(--navy-800);
}
.gebiet-zahl .l { font-size: .9rem; color: var(--ink-mute); line-height: 1.5; margin-bottom: 12px; }

@media (max-width: 820px) {
  .namens-block { grid-template-columns: 1fr; text-align: left; }
  .namens-symbol { justify-items: start; }
  .gebiet-teaser { grid-template-columns: 1fr; }
  .gebiet-zahl { justify-self: stretch; }
}

/* --- Trenner zwischen Kern- und erweitertem Einsatzgebiet ----------------- */
.tier-trenner {
  max-width: 780px;
  margin: clamp(52px, 6vw, 76px) 0 clamp(26px, 3vw, 36px);
  padding-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.tier-trenner.tier-erste { margin-top: 0; padding-top: 0; border-top: 0; }
.tier-trenner h2 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.75rem); margin-bottom: 12px; }
.tier-trenner p { font-size: .98rem; }

/* Städte im erweiterten Gebiet dezenter darstellen */
.city-card-erw { background: var(--surface-2); }
.city-card-erw .city-card-icon { background: var(--surface-3); }
