@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/space-grotesk-latin-var.woff2") format("woff2");
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-var.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Big Shoulders Display";
  src: url("fonts/big-shoulders-display-900.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  --black: #0F1B2D;
  --void: #091320;
  --graphite: #14263B;
  --panel: #1B3049;
  --line-dark: rgba(150, 180, 225, 0.16);
  --line-light: #e0d8ca;
  --paper: #F3EDE3;
  --paper-strong: #FBF7EF;
  --ink: #141414;
  --muted: #6a6258;
  --muted-dark: #aeb8c6;
  --yellow: #2D6BFF;
  --blue: #2D6BFF;
  --red: #2D6BFF;
  --blue-bright: #5590FF;
  --amber: #E0A155;
  --white: #ffffff;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --move: cubic-bezier(0.25, 1, 0.5, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --elegant-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --elegant-flow: cubic-bezier(0.45, 0, 0.55, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  /* clip statt hidden: verhindert horizontalen Overflow, ohne einen
     Scroll-Container zu erzeugen, der position:sticky (Sidebar) bricht */
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(45, 107, 255, 0.22);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
summary {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(45, 104, 255, 0.55);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Big Shoulders Display", "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 5.45rem;
  font-weight: 900;
  hyphens: none;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-size: 2.74rem;
  font-weight: 700;
  hyphens: none;
  max-width: 820px;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  font-weight: 700;
}

p {
  color: var(--muted);
  text-wrap: pretty;
  overflow-wrap: break-word;
}

[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 90;
  pointer-events: none;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(20, 22, 28, 0.72);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  gap: 24px;
  pointer-events: auto;
  transition: min-height 260ms var(--ease), background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease);
}

.site-header.is-compact .nav {
  /* Header bleibt beim Scrollen gleich gross, nur dezent staerkerer Look */
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(18, 20, 26, 0.86);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Header bleibt immer sichtbar (sticky), auch beim Runterscrollen auf Desktop */
.site-header.is-hidden .nav {
  transform: none;
}

/* Handy/Tablet: Header beim Scrollen NICHT ausblenden, bleibt immer sichtbar
   (gilt im gesamten Hamburger-Bereich bis 1080px) */
@media (max-width: 1080px) {
  .site-header.is-hidden .nav {
    transform: none !important;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: block;
  width: auto;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 14px rgba(45, 107, 255, 0.30));
  transition: width 260ms var(--ease), height 260ms var(--ease), flex-basis 260ms var(--ease);
}

/* Logo bleibt beim Scrollen gleich gross (kein Shrink) */

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted-dark);
  font-size: 0.78rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  /* Platz rechts reservieren (~Logo-Breite links), damit die Reiter echt mittig sitzen */
  padding-right: 232px;
}
/* Anruf-CTA bleibt rechts am Header-Rand (absolut rel. zur .nav) */
.nav-links .nav-cta {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-links a {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 54px;
  margin-left: 8px;
  padding: 8px 16px 8px 11px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(45, 107, 255, 0.7);
  transition: transform 200ms var(--spring), box-shadow 220ms var(--elegant-smooth), filter 200ms ease;
}

.nav-cta-icon {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.15);
  transition: background-color 220ms ease;
}

.nav-cta-icon svg {
  width: 18px;
  height: 18px;
}

.nav-cta-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.nav-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links .nav-cta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links .nav-cta:hover {
  /* Background hier wiederholen: .nav-links a:hover ist spezifischer als die Basis-Regel */
  background: #2559DB;
  color: var(--white);
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(45, 107, 255, 0.9);
}

.nav-links .nav-cta:hover .nav-cta-icon {
  background: rgba(255, 255, 255, 0.26);
}

.nav-links .nav-cta:active {
  transform: translateY(-50%) translateY(0);
}

.nav-links .nav-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms var(--ease), opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: calc(88px + clamp(64px, 9vh, 120px)) 0 0;
  background: var(--void);
  overflow: clip;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
  opacity: 0.9;
}

.hero::after {
  display: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  filter: saturate(0.82) contrast(1.12) brightness(0.9);
  transform: scale(1.03);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

/* Video-Hintergrund im Hero (bewegt sich selbst, deshalb kein hero-drift) */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(0.85) contrast(1.06) brightness(0.98);
  transform: scale(1.03);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero {
    background-image: url("img/hero-video-poster.webp");
    background-position: 62% 50%;
    background-size: cover;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.80) 38%, rgba(4, 4, 4, 0.34) 72%, rgba(4, 4, 4, 0.62) 100%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.84) 0%, rgba(4, 4, 4, 0.12) 44%, rgba(4, 4, 4, 0.44) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 372px);
  align-items: start;
  gap: 40px;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: clamp(64px, 9vh, 120px);
}

.hero-copy {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 16px 6px 28px;
  border: 1px solid rgba(128, 240, 167, 0.34);
  border-radius: var(--radius);
  background: rgba(128, 240, 167, 0.09);
  color: rgba(158, 244, 190, 0.98);
}

.status-dot {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #80f0a7;
  box-shadow: 0 0 0 0 rgba(128, 240, 167, 0.42);
  transform: translateY(-50%);
  animation: status-pulse 1.8s ease-out infinite;
}

/* Kein Strich mehr vor dem Kicker: nur noch die Textzeile selbst. */
.kicker::before {
  content: none;
}

.hero-kicker::before {
  display: none;
}

.hero-title {
  margin-bottom: 24px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  will-change: transform, opacity;
  animation: title-reveal 860ms var(--ease) forwards;
}

.title-line:first-child {
  font-size: 0.9em;
}

.title-line:nth-child(2) {
  animation-delay: 120ms;
}

.title-line:nth-child(3) {
  animation-delay: 240ms;
}

.title-city {
  color: var(--yellow);
}

.title-accent {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.48em;
  line-height: 1;
}

.kicker.dark {
  color: var(--red);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms var(--spring), background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(45, 107, 255, 0.24);
}

.button-primary:hover {
  background: #2559DB;
  color: var(--white);
  box-shadow: 0 18px 44px -14px rgba(45, 107, 255, 0.85);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  color: var(--white);
  text-decoration: none;
  transition: opacity 220ms ease;
}

.hero-trust:hover {
  opacity: 0.92;
}

.hero-trust-avatars {
  display: inline-flex;
  flex: 0 0 auto;
}

.hero-trust-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--void);
  object-fit: cover;
  margin-left: -14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.40);
  background: #1a1a1a;
}

.hero-trust-avatars img:first-child {
  margin-left: 0;
}

.hero-trust-text {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-trust-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-trust .review-stars-sm {
  width: 96px;
  height: 18px;
  background-size: 19.2px 18px;
}

.hero-trust-top strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--white);
}

.hero-trust-bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-style: italic;
}

.hero-trust-bottom strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-style: normal;
}

.owner-stage {
  position: relative;
  align-self: start;
  width: 100%;
  max-width: 372px;
  aspect-ratio: 1 / 1.26;
  margin-inline: auto;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: panel-reveal 780ms var(--ease) 560ms forwards;
}

/* Die grosse Scheibe startet weiter unten, damit der Kopf oben herausragt */
.owner-stage__bg {
  position: absolute;
  inset: 80px 0 0 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 40px 80px -34px rgba(0, 0, 0, 0.65);
}

/* Glasscheibe: eigener, unscharfer Bildlayer (backdrop-filter greift nicht auf
   das animierte Hero-Bild, das auf einer eigenen Compositing-Ebene liegt) */
.owner-stage__bg::before {
  position: absolute;
  inset: -12%;
  background-image: url("img/hero-video-poster.webp");
  background-position: 62% 42%;
  background-size: cover;
  filter: blur(26px) grayscale(0.92) brightness(0.5) contrast(1.08);
  content: "";
}

.owner-stage__bg::after {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(70% 52% at 82% 0%, rgba(120, 160, 230, 0.16) 0%, transparent 66%),
    linear-gradient(160deg, rgba(24, 36, 54, 0.34) 0%, rgba(11, 18, 30, 0.46) 58%, rgba(7, 12, 22, 0.62) 100%);
  pointer-events: none;
  content: "";
}

/* Der Inhaber steht hinter der Glaskarte, aber so hoch, dass die verschraenkten
   Arme oberhalb der Kartenkante bleiben und der Kopf oben aus der Scheibe ragt. */
.owner-stage__fig {
  position: absolute;
  left: 50%;
  bottom: 148px;
  z-index: 1;
  height: 78%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom;
  transform: translateX(-53%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.owner-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  padding: 18px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(26, 38, 56, 0.66) 0%, rgba(9, 15, 26, 0.76) 100%);
  backdrop-filter: blur(30px) saturate(45%) brightness(0.72);
  -webkit-backdrop-filter: blur(30px) saturate(45%) brightness(0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 24px 50px -22px rgba(0, 0, 0, 0.65);
}

.owner-card__quote {
  position: relative;
  margin: 0 0 14px;
  padding-left: 15px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.owner-card__quote::before {
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 2px;
  border-radius: 2px;
  background: var(--blue-bright);
  content: "";
}

.owner-card__by {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 15px;
}

.owner-card__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.owner-card__role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.owner-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  text-decoration: none;
  transition: opacity 200ms ease;
}

.owner-card__rating:hover {
  opacity: 0.86;
}

.owner-card__g {
  width: 18px;
  height: 18px;
  flex: none;
}

.owner-card__score {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.owner-card__stars {
  width: 80px;
  height: 16px;
  background-size: 16px 16px;
}

.owner-card__reviews {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  white-space: nowrap;
}

.owner-card__go {
  display: flex;
  flex: none;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 220ms var(--elegant-smooth), color 220ms ease;
}

.owner-card__go svg {
  width: 15px;
  height: 15px;
}

.owner-card__rating:hover .owner-card__go {
  color: var(--blue-bright);
  transform: translateX(3px);
}

.service-ribbon {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, var(--void) 0%, rgba(4, 4, 4, 0) 6%, rgba(4, 4, 4, 0) 94%, var(--void) 100%),
    var(--black);
}

.ribbon-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 28px;
  padding: 16px 0;
  animation: ribbon-marquee 38s linear infinite;
  will-change: transform;
}

.service-ribbon span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

.service-ribbon span:not(.ribbon-dot):hover {
  color: var(--yellow);
}

.ribbon-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--yellow);
  opacity: 0.65;
}

.service-ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

@keyframes ribbon-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: start;
}

.intro {
  background: var(--paper);
}

.intro-head {
  max-width: 920px;
  margin-bottom: 48px;
}

.intro-head h2 {
  margin-bottom: 20px;
}

.intro-lead {
  max-width: 70ch;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
}

.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 30px 30px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: var(--paper-strong);
  transition: transform 280ms var(--ease), border-color 220ms ease, box-shadow 280ms var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 107, 255, 0.32);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.07);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(45, 107, 255, 0.10);
  color: var(--red);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .intro-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.operation {
  background: var(--graphite);
  color: var(--white);
}

.operation-layout {
  display: grid;
  grid-template-columns: 0.92fr 0.9fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.operation-copy h2 {
  /* schmale Spalte: auf Section-Groesse zerreisst schon ein langes Wort die Zeile */
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.14;
  text-wrap: balance;
}

.operation-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

.operation-copy p,
.process p,
.quote-copy p,
.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--muted-dark);
}

.text-link,
.direct-call {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 900;
}

.text-link:hover,
.direct-call:hover {
  color: var(--white);
}

.quote-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 12px;
}

.quote-checklist span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.operation-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.operation-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 34%;
}

.operation-points {
  display: grid;
  gap: 12px;
  align-self: end;
}

.operation-points article {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.operation-points span,
.service-index,
.process-line span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.operation-points h3,
.process h2,
.process h3,
.quote-section h2,
.site-footer strong {
  color: var(--white);
}

.operation-points p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.field-notes {
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 84px;
  background: var(--black);
  color: var(--white);
}

.field-notes .section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.field-notes .section-head p:last-child {
  max-width: 62ch;
  color: var(--muted-dark);
}

.field-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 238px;
  grid-auto-flow: dense;
  gap: 16px;
}

.field-frame {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.field-frame[data-reveal] {
  opacity: 1;
  transform: none;
}

.field-frame-large {
  grid-column: span 2;
  grid-row: span 2;
}

.field-frame-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.field-frame-before {
  grid-column: span 2;
  grid-row: span 1;
}

.field-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 48%);
  pointer-events: none;
}

.field-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 700ms var(--elegant-flow, var(--ease)), filter 300ms ease;
}

.field-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
}

.field-frame strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  line-height: 1.1;
}

.field-frame span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.field-frame:hover img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.07);
}

.services {
  background: var(--paper-strong);
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head p:last-child {
  font-size: 1.08rem;
}

.service-page .section-head,
.standort-page .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  grid-column: span 2;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.05);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 107, 255, 0.32);
  box-shadow: 0 26px 52px rgba(20, 20, 20, 0.12);
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--graphite);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-index {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 8px 20px rgba(45, 107, 255, 0.34);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 22px;
  flex: 1 1 auto;
}

.service-card-body h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.service-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.service-card-cta svg {
  transition: transform 240ms var(--ease);
}

.service-card:hover .service-card-cta svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }
  .service-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }
}

.service-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--line-light);
}

.service-promise {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(45, 107, 255, 0.10);
  color: var(--red);
}

.trust-icon svg {
  width: 23px;
  height: 23px;
}

.service-promise h3 {
  margin: 2px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.service-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .service-promises {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
    padding-top: 32px;
  }
}

.process {
  background: var(--black);
  color: var(--white);
}

.invert p {
  color: var(--muted-dark);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border-radius: var(--radius);
  background: var(--line-dark);
  list-style: none;
}

.process-line li {
  position: relative;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--graphite);
  overflow: hidden;
  transition: background-color 220ms ease, transform 220ms var(--elegant-smooth);
}

.process-line li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 760ms var(--elegant-smooth);
  transition-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}

.process-line li.is-visible::before {
  transform: scaleX(1);
}

.process-line li:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    var(--graphite);
  transform: translateY(-2px);
}

.process-line p {
  margin-bottom: 0;
}

.local-intent {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(246, 240, 229, 1)),
    var(--paper);
}

.local-intent-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.local-intent-head h2 {
  max-width: 680px;
  margin-bottom: 18px;
}

.local-intent-head p:last-child {
  max-width: 62ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.intent-board {
  display: grid;
  border-top: 1px solid var(--line-light);
}

/* Magazin-Register: Nummer | Titel | Beschreibung | Pfeil, ganze Breite */
.intent-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 34ch) minmax(0, 1fr) 44px;
  gap: 0 32px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 260ms var(--elegant-smooth), padding-inline 260ms var(--elegant-smooth);
}

.intent-row::before {
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 300ms var(--elegant-smooth);
  content: "";
}

.intent-num {
  font-family: "Big Shoulders Display", "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  color: rgba(20, 20, 20, 0.26);
  transition: color 260ms var(--elegant-smooth);
}

.intent-row h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.32;
  letter-spacing: -0.005em;
  hyphens: none;      /* kein "Haushalts-auflösung" mitten im Titel */
  overflow-wrap: normal;
}

.intent-row p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.intent-go {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(20, 20, 20, 0.3);
  transition: color 260ms var(--elegant-smooth), transform 260ms var(--elegant-smooth);
}

.intent-go svg {
  width: 22px;
  height: 22px;
}

.intent-row:hover,
.intent-row:focus-visible {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.62);
  outline: none;
}

.intent-row:hover::before,
.intent-row:focus-visible::before {
  transform: scaleY(1);
}

.intent-row:hover .intent-num,
.intent-row:focus-visible .intent-num {
  color: var(--blue);
}

.intent-row:hover .intent-go,
.intent-row:focus-visible .intent-go {
  color: var(--blue);
  transform: translateX(5px);
}

@media (max-width: 1080px) {
  .intent-row {
    grid-template-columns: 52px minmax(0, 1fr) 32px;
    gap: 6px 20px;
    align-items: start;
  }

  .intent-num {
    grid-row: span 2;
    font-size: 1.7rem;
  }

  .intent-go {
    grid-row: span 2;
    align-items: flex-start;
  }

  .intent-row p {
    max-width: 62ch;
  }
}

.evidence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  background: var(--paper-strong);
  padding-block: clamp(48px, 6.5vh, 74px);
}

.reviews-hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 42px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(45, 107, 255, 0.04), rgba(45, 107, 255, 0)),
    var(--black);
  color: var(--white);
  box-shadow: 0 30px 60px rgba(20, 20, 20, 0.10);
}

.reviews-hero-score {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.reviews-hero-num {
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.reviews-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-hero-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.reviews-hero-meta span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 500;
}

.reviews-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 240ms var(--ease), background-color 220ms ease;
}

.reviews-hero-cta:hover {
  transform: translateY(-2px);
  background: #2559DB;
}

.reviews-hero-cta svg {
  transition: transform 240ms var(--ease);
}

.reviews-hero-cta:hover svg {
  transform: translateX(3px);
}

.review-stars {
  --star-svg: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E0A155'%3E%3Cpath d='M12 .587l3.668 7.431 8.2 1.193-5.934 5.787 1.4 8.169L12 18.896l-7.334 3.871 1.4-8.169L.132 9.211l8.2-1.193z'/%3E%3C/svg%3E");
  display: inline-block;
  width: 100px;
  height: 20px;
  background-image: var(--star-svg);
  background-size: 20px 20px;
  background-repeat: repeat-x;
  background-position: left center;
}

.review-stars-lg {
  width: 132px;
  height: 24px;
  background-size: 26px 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px 24px;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--paper);
  overflow: hidden;
  transition: transform 280ms var(--ease), border-color 220ms ease, box-shadow 280ms var(--ease);
}

.review-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(45, 107, 255, 0.28));
  content: "";
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 20, 20, 0.18);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.08);
}

.review-quote {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 500;
  text-wrap: balance;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

.review-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(45, 107, 255, 0.10);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.review-author span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.reviews-disclaimer {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.reviews-disclaimer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  background: var(--black);
  color: var(--paper);
}

.area-copy {
  max-width: 760px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-pill {
  padding: 12px 18px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--elegant-smooth);
}

.area-pill:hover {
  border-color: rgba(45, 107, 255, 0.4);
  background: var(--paper-strong);
  transform: translateY(-2px);
}

.area-pill.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(45, 107, 255, 0.28);
}

.area-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.area-hint::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(45, 107, 255, 0.14);
  flex: 0 0 auto;
}

.area.is-expanded .area-hint {
  display: none;
}

.area-panels {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}

.area-panels[hidden],
.area-panel[hidden] {
  display: none;
}

.area-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  animation: area-reveal 460ms var(--ease) both;
}

.area-panel-main {
  min-width: 0;
}

.area-panel h3 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.area-panel-main p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.area-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.area-panel-tags span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(45, 107, 255, 0.08);
  border: 1px solid rgba(45, 107, 255, 0.18);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.area-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 240ms var(--ease), background-color 220ms ease;
}

.area-panel-cta:hover {
  transform: translateY(-2px);
  background: #5590FF;
}

.area-panel-cta svg {
  transition: transform 240ms var(--ease);
}

.area-panel-cta:hover svg {
  transform: translateX(4px);
}

.area-panel-facts {
  padding: 26px 28px;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--paper-strong);
}

.area-panel-facts h4 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.area-panel-facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.area-panel-facts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
}

.area-panel-facts li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.area-panel-facts strong {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.area-panel-facts span {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.5;
}

@keyframes area-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .area-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.92rem;
}

.footer-legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal a:hover {
  color: var(--yellow);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.35);
}

.footer-map {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 720px) {
  .area-panels {
    margin-top: 36px;
    padding-top: 28px;
  }
  .area-panel h3 {
    font-size: 1.35rem;
  }
}

.quote-section {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.94), rgba(9, 9, 9, 0.98)),
    var(--black);
  color: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 118px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.quote-form:focus-within {
  border-color: rgba(45, 107, 255, 0.42);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(45, 107, 255, 0.08);
}

.form-field {
  display: grid;
  gap: 8px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  transition: color 180ms ease;
}

.form-field:focus-within label {
  color: var(--yellow);
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.52);
  color: var(--white);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

select {
  appearance: none;
  background-color: rgba(9, 9, 9, 0.52);
}

::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #ff9f94;
  font-weight: 850;
}

.form-status.is-success {
  color: #80f0a7;
}

.form-button {
  width: 100%;
}

.form-button-wa {
  gap: 14px;
  min-height: 68px;
  padding: 12px 24px;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}

.form-button-wa:hover {
  background: #1ebe5b;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.38);
}

.form-button-wa:focus-visible {
  outline-color: rgba(37, 211, 102, 0.65);
}

.form-button-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.form-button-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}

.form-button-text strong {
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.form-button-text span {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.86;
}

.faq {
  background: var(--paper-strong);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.faq-card {
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: #ffffff;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 240ms var(--ease);
}

.faq-card:hover {
  border-color: rgba(45, 107, 255, 0.32);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.05);
}

.faq-card[open] {
  /* offen bleibt die Karte weiss wie im geschlossenen Zustand; der beige Ton
     wirkte daneben schmutzig. Betonung stattdessen ueber Rand und Schatten. */
  border-color: rgba(45, 107, 255, 0.24);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(20, 20, 20, 0.07);
}

/* Antwort sitzt sichtbar unter der Frage, getrennt durch eine feine Linie */
.faq-card[open] summary {
  padding-bottom: 14px;
}

.faq-card[open] > p {
  margin: 0 22px;
  padding: 15px 0 20px;
  border-top: 1px solid var(--line-light);
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  line-height: 1.3;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
  color: var(--red);
  border-radius: 999px;
  transition: transform 260ms var(--ease);
}

.faq-card[open] summary::after {
  transform: rotate(135deg);
}

.faq-card p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.faq-foot {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.faq-foot a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-foot a:hover {
  color: var(--ink);
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 42px;
  padding: 60px max(24px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  margin-bottom: 18px;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--elegant-smooth), transform 520ms var(--elegant-smooth);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-reveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes panel-reveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, 0.8%, 0);
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(128, 240, 167, 0.42);
  }

  70%,
  100% {
    box-shadow: 0 0 0 12px rgba(128, 240, 167, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .operation-media img,
  .hero-image {
    transition: transform 900ms var(--move), filter 240ms ease;
  }

  .operation-media:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-hero {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "score meta"
      "cta cta";
    row-gap: 22px;
  }

  .reviews-hero-score {
    grid-area: score;
    padding-right: 24px;
  }

  .reviews-hero-meta {
    grid-area: meta;
  }

  .reviews-hero-cta {
    grid-area: cta;
    justify-self: start;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.38rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  /* Vollbild-Menue statt Dropdown-Panel: nichts blitzt mehr durch,
     der Daumen erreicht alles, Body-Scroll wird gesperrt (body.nav-open). */
  .nav-links {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    max-height: none;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Pflicht: die Desktop-Regel zentriert vertikal. Ist der Menueinhalt
       hoeher als der Bildschirm, schneidet justify-content:center oben ab
       (der erste Punkt lag hinter der Kopfzeile) und laesst unten ueberlaufen. */
    justify-content: flex-start;
    gap: 2px;
    padding: calc(env(safe-area-inset-top, 0px) + 132px) 20px calc(env(safe-area-inset-bottom, 0px) + 28px);
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #101D30 0%, #091320 60%, #070E18 100%);
    box-shadow: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 260ms var(--elegant-smooth), transform 300ms var(--elegant-smooth),
      visibility 260ms;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Logo und Burger muessen ueber dem Overlay bleiben */
  .brand,
  .nav-toggle {
    position: relative;
    z-index: 201;
  }

  /* Scroll-Lock: overflow:hidden am body reicht nicht, weil das Dokument ueber
     <html> scrollt. Position-Lock sperrt zuverlaessig (auch iOS Safari). */
  body.nav-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  html.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  /* backdrop-filter auf .nav macht die Navbar zum Bezugsrahmen fuer position:fixed
     -> beim offenen Menue abschalten, sonst bleibt das Overlay in der Navbar haengen */
  body.nav-open .nav {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links > .nav-item,
  .nav-links > a:not(.nav-cta) {
    border-bottom: 1px solid rgba(150, 180, 225, 0.12);
  }

  .nav-links > .nav-item > a,
  .nav-links > a:not(.nav-cta) {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .nav-links a {
    min-height: 56px;
  }

  /* Anruf-Button und Kontaktblock bilden eine Einheit direkt unter den
     Menuepunkten. Frueher schob margin-top:auto den Button ans Fensterende,
     wodurch der Block darunter aus dem Overlay ragte. */
  .nav-links .nav-cta {
    margin-top: 26px;
  }

  .nav-links .nav-cta {
    position: static;
    transform: none;
    margin-left: 0;
    /* als Block mittig statt Text zentrieren, sonst stehen Label und Nummer versetzt */
    grid-template-columns: 34px auto;
    justify-content: center;
  }

  .nav-links .nav-cta:hover,
  .nav-links .nav-cta:active {
    transform: translateY(-1px);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 46px;
  }

  .intent-row {
    padding: 22px 0;
  }

  .owner-stage {
    max-width: 420px;
  }

  .section-grid,
  .operation-layout,
  .evidence,
  .area,
  .quote-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .field-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .field-frame,
  .field-frame-large,
  .field-frame-wide,
  .field-frame-before {
    grid-column: span 1;
    grid-row: span 1;
  }

  .field-frame-large,
  .field-frame-wide,
  .field-frame-before {
    grid-column: span 2;
  }

  .operation-copy {
    min-height: auto;
    padding-right: 0;
  }

  .operation-media img {
    min-height: 460px;
  }

  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  :root {
    --container: calc(100% - 36px);
  }

  body {
    font-size: 16px;
  }

  .nav {
    min-height: 66px;
  }

  .brand-mark {
    width: auto;
    height: 26px;
    flex-basis: auto;
  }

  .brand-copy strong {
    /* nicht mehr abschneiden: lieber etwas kleiner und zweizeilig als "Braunsch..." */
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .hero {
    /* kein Padding unter der Leiste: sie soll den Hero abschliessen, sonst
       schwebt sie mit einem schwarzen Streifen darunter */
    padding: 126px 0 0;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.68) 0%, rgba(9, 9, 9, 0.86) 44%, rgba(9, 9, 9, 0.98) 100%),
      linear-gradient(90deg, rgba(9, 9, 9, 0.86), rgba(9, 9, 9, 0.32));
  }

  h1 {
    max-width: 100%;
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .title-accent {
    max-width: 15ch;
    font-size: 0.72em;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 1.04rem;
    max-width: 40ch;
  }

  .kicker {
    font-size: 0.73rem;
  }



  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-trust-avatars img {
    width: 42px;
    height: 42px;
    margin-left: -12px;
  }

  .hero-trust-top strong {
    font-size: 0.98rem;
  }

  .hero-trust-bottom {
    font-size: 0.84rem;
  }

  .service-ribbon {
    overflow: hidden;
  }

  .ribbon-track {
    gap: 20px;
    padding: 12px 0;
    animation-duration: 28s;
  }

  .service-ribbon span {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .owner-stage {
    max-width: 360px;
  }

  /* Mobil: Buehne im Hochformat statt fast quadratisch, Figur kleiner und
     tiefer, damit der Kopf nicht unter die fixierte Navigation rutscht. */
  .owner-stage {
    max-width: 330px;
    aspect-ratio: 1 / 1.42;
  }

  .owner-stage__fig {
    height: 66%;
    bottom: 150px;
  }

  .owner-stage__bg {
    inset: 92px 0 0 0;
  }

  /* Mobil KEINE Glasscheibe: sie blieb als grauer Kasten hinter der Person
     sichtbar. Stattdessen steht der Inhaber frei im Hero, nur ein weicher
     Lichtschein gibt Tiefe. Die Zitat-Karte behaelt ihr Glas. */
  .owner-stage__bg {
    inset: 0;
    border-radius: 0;
    box-shadow: none;
    background:
      radial-gradient(64% 46% at 50% 62%, rgba(45, 107, 255, 0.16) 0%, transparent 72%);
  }

  .owner-stage__bg::before,
  .owner-stage__bg::after {
    content: none;
  }

  .owner-card {
    left: 6px;
    right: 6px;
    bottom: 4px;
  }

  .owner-card {
    padding: 14px 15px 16px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .operation-media {
    border: 1px solid rgba(120, 160, 255, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03), 0 8px 60px rgba(45, 107, 255, 0.22);
  }

  .operation-media img {
    min-height: 420px;
  }

  .intent-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 6px 16px;
    padding: 20px 0;
  }

  .intent-num {
    font-size: 1.45rem;
  }

  .intent-go {
    display: none;
  }

  .process-line,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .field-frame,
  .field-frame-large,
  .field-frame-wide,
  .field-frame-before {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .field-frame-large,
  .field-frame-wide {
    aspect-ratio: 4 / 3;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-hero {
    padding: 26px 22px;
  }

  .reviews-hero-num {
    font-size: 3.2rem;
  }

  .process-line li {
    min-height: auto;
  }

  .quote-form {
    padding: 20px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Formular-Erfolg: animierte Danke-Ansicht (hell + dunkel) ---------- */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  min-height: 260px;
  padding: 24px 8px;
  color: inherit;
  animation: fs-pop 480ms var(--spring) both;
}
.form-success-check {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 14px;
}
.form-success-check::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(43, 178, 76, 0.16);
  animation: fs-ring 1000ms var(--ease) 220ms both;
}
.form-success-check svg {
  position: relative;
  width: 88px;
  height: 88px;
}
.form-success-check .fs-circle {
  fill: none;
  stroke: #2bb24c;
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: fs-draw 540ms var(--ease) 60ms forwards;
}
.form-success-check .fs-check {
  fill: none;
  stroke: #2bb24c;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: fs-draw 360ms var(--ease) 520ms forwards;
}
.form-success-title {
  margin: 0;
  /* color: inherit ergab auf der dunklen Formularkarte dunkelgrauen Text
     auf dunkelblauem Grund, praktisch unlesbar */
  color: #ffffff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  animation: fs-up 440ms var(--ease) 560ms both;
}
.form-success-text {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  animation: fs-up 440ms var(--ease) 700ms both;
}
@keyframes fs-pop { 0% { transform: scale(0.94); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes fs-draw { to { stroke-dashoffset: 0; } }
@keyframes fs-ring { 0% { transform: scale(0.45); opacity: 0.75; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes fs-up { 0% { opacity: 0; transform: translateY(9px); } 100% { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .form-success, .form-success-check::before,
  .form-success-check .fs-circle, .form-success-check .fs-check,
  .form-success-title, .form-success-text { animation: none; }
  .form-success-check .fs-circle, .form-success-check .fs-check { stroke-dashoffset: 0; }
}

/* Konfetti-Burst zur Danke-Ansicht */
.form-success { position: relative; overflow: visible; }
.form-confetti {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 2;
}
.form-confetti i {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: fs-confetti 1150ms var(--ease) forwards;
  animation-delay: var(--d);
}
@keyframes fs-confetti {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4) rotate(0); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1) rotate(var(--r)); }
}
@media (prefers-reduced-motion: reduce) {
  .form-confetti { display: none; }
}

/* ---------- Groesserer, konstanter Header auf Desktop (PC) ---------- */
@media (min-width: 1081px) {
  .nav { min-height: 82px; padding: 9px 10px; }
  .brand-mark { width: auto; height: 34px; flex: 0 0 auto; }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-copy small { font-size: 0.8rem; }
  .nav-links a { font-size: 0.95rem; padding: 10px 12px; }
  [id] { scroll-margin-top: 112px; }
}

/* ========== NEUER FOOTER (4 Spalten + Bottom-Bar) ========== */
.site-footer {
  display: block;
  grid-template-columns: none;
  padding: 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line-dark);
}
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr 0.9fr 1.35fr;
  gap: clamp(28px, 4vw, 56px);
  padding: 60px max(24px, calc((100% - 1180px) / 2)) 36px;
}
.site-footer .footer-col-brand { max-width: 360px; }
.site-footer .footer-brand { margin-bottom: 18px; }
.site-footer .footer-col > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.site-footer .footer-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.site-footer .footer-chips span {
  padding: 5px 11px;
  font-size: 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.site-footer h4 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer .footer-col nav {
  display: grid;
  gap: 12px;
}
.site-footer .footer-col nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 180ms ease;
}
.site-footer .footer-col nav a:hover { color: var(--red); }
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.site-footer .footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.4;
}
.site-footer .footer-contact a[href^="mailto"] { font-size: 0.88rem; overflow-wrap: normal; white-space: nowrap; }
.site-footer .footer-contact a {
  color: inherit;
  transition: color 180ms ease;
}
.site-footer .footer-contact a:hover { color: var(--red); }
.site-footer .footer-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: none;
  color: var(--blue-bright);
}
.site-footer .footer-contact li { align-items: flex-start; gap: 10px; }
.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px max(24px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}
.site-footer .footer-bottom .footer-legal {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}
.site-footer .footer-partner-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
}
.site-footer .footer-partner-label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .site-footer .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer .footer-bottom .footer-legal { justify-self: center; }
}
.site-footer .footer-bottom .footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 180ms ease;
}
.site-footer .footer-bottom .footer-legal a:hover { color: var(--red); }
.site-footer .footer-bottom .footer-legal span { display: none; }
@media (max-width: 960px) {
  .site-footer .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-col-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 560px) {
  .site-footer .footer-inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 32px; }
  .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Footer: Partner-Logo unten rechts (nur Logo, groesser) */
.site-footer .footer-partner {
  display: inline-flex;
  align-items: center;
  transition: opacity 180ms ease;
}
.site-footer .footer-partner img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  transition: opacity 180ms ease;
}
.site-footer .footer-partner:hover img { opacity: 1; }

/* Legal-Zeile leicht nach oben ziehen (visuell auf Baseline mit Copyright) */
.site-footer .footer-bottom .footer-legal { margin-top: -6px; }

/* ============================================================
   Angebots-Formular (Karte mit Floating-Labels, Segmented Control)
   ============================================================ */

.quote-form {
  gap: 11px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(150, 180, 225, 0.22);
  background:
    linear-gradient(180deg, rgba(27, 48, 73, 0.72), rgba(15, 27, 45, 0.86));
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}

/* --- Kopf der Karte --- */
.qf-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 22px 13px;
  border-bottom: 1px solid rgba(150, 180, 225, 0.16);
  background:
    radial-gradient(120% 160% at 12% 0%, rgba(45, 107, 255, 0.22), transparent 62%),
    rgba(9, 19, 32, 0.5);
}

.qf-badge {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(85, 144, 255, 0.4);
  border-radius: 11px;
  background: rgba(45, 107, 255, 0.16);
  color: var(--blue-bright);
  box-shadow: 0 10px 26px rgba(45, 107, 255, 0.22);
}

.qf-badge svg { width: 20px; height: 20px; }

.qf-head-copy h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.15;
}

.qf-head-copy p {
  margin: 3px 0 0;
  color: var(--muted-dark);
  font-size: 0.8rem;
  line-height: 1.35;
}

.qf-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: rgba(150, 180, 225, 0.14);
}

.qf-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 12px rgba(85, 144, 255, 0.7);
  transition: width 420ms var(--ease);
}

/* --- Alles unterhalb des Kopfs bekommt Innenabstand --- */
.quote-form > *:not(.qf-head) { margin-inline: 22px; }
.quote-form > *:last-child { margin-bottom: 18px; }

/* --- Leistungsauswahl als Segmented Control --- */
.qf-group {
  margin-top: 2px;
  padding: 0;
  border: 0;
}

.qf-group legend {
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 850;
}

.qf-seg {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 7px;
}

.qf-opt { cursor: pointer; }

.qf-opt input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.qf-opt > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-height: 56px;
  padding: 9px 6px;
  border: 1px solid rgba(150, 180, 225, 0.2);
  border-radius: 11px;
  background: rgba(9, 19, 32, 0.42);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: border-color 200ms var(--ease), background 200ms var(--ease),
    color 200ms var(--ease), transform 200ms var(--ease);
}

.qf-opt > span svg {
  width: 19px;
  height: 19px;
  color: var(--muted-dark);
  transition: color 200ms var(--ease);
}

.qf-opt:hover > span {
  border-color: rgba(85, 144, 255, 0.45);
  transform: translateY(-2px);
}

.qf-opt input:checked + span {
  border-color: rgba(85, 144, 255, 0.85);
  background: rgba(45, 107, 255, 0.18);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(45, 107, 255, 0.24), inset 0 0 0 1px rgba(85, 144, 255, 0.35);
}

.qf-opt input:checked + span svg { color: var(--blue-bright); }

.qf-opt input:focus-visible + span {
  outline: 2px solid rgba(85, 144, 255, 0.8);
  outline-offset: 2px;
}

/* --- Feld mit Floating-Label --- */
.qf-field { position: relative; }

.quote-form .qf-field input,
.quote-form .qf-field select,
.quote-form .qf-field textarea {
  min-height: 50px;
  padding: 19px 14px 6px;
  border: 1px solid rgba(150, 180, 225, 0.2);
  border-radius: 10px;
  background: rgba(9, 19, 32, 0.5);
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color 200ms var(--ease), background 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.quote-form .qf-field input:hover,
.quote-form .qf-field select:hover,
.quote-form .qf-field textarea:hover {
  border-color: rgba(150, 180, 225, 0.34);
}

.quote-form .qf-field input:focus,
.quote-form .qf-field select:focus,
.quote-form .qf-field textarea:focus {
  outline: none;
  border-color: rgba(85, 144, 255, 0.9);
  background: rgba(9, 19, 32, 0.75);
  box-shadow: 0 0 0 4px rgba(45, 107, 255, 0.16);
}

/* Feld-Icon links */
.qf-icon {
  position: absolute;
  top: 15px;
  left: 14px;
  display: block;
  width: 18px;
  height: 18px;
  color: var(--muted-dark);
  pointer-events: none;
  transition: color 200ms var(--ease);
}

.qf-icon svg { width: 100%; height: 100%; }

.qf-field:focus-within .qf-icon { color: var(--blue-bright); }

.qf-field:has(.qf-icon) input,
.qf-field:has(.qf-icon) select { padding-left: 42px; }

/* Das Label schwebt: Startposition = Platzhalter, bei Fokus/Inhalt nach oben */
.quote-form .qf-field > label {
  position: absolute;
  top: 15px;
  left: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 700;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 200ms var(--ease), color 200ms var(--ease);
}

.qf-field:has(.qf-icon) > label { left: 42px; }

.quote-form .qf-field input:focus + label,
.quote-form .qf-field input:not(:placeholder-shown) + label,
.quote-form .qf-field textarea:focus + label,
.quote-form .qf-field textarea:not(:placeholder-shown) + label,
.quote-form .qf-field select:focus + label,
.quote-form .qf-field select:valid + label {
  color: var(--blue-bright);
  transform: translateY(-10px) scale(0.72);
}

/* Datum und Auswahl zeigen immer Inhalt, deshalb Label dauerhaft oben */
.quote-form .qf-field-date > label,
.quote-form .qf-field-select > label {
  color: var(--blue-bright);
  transform: translateY(-12px) scale(0.74);
}

.quote-form .qf-field-date input {
  color-scheme: dark;
  padding-left: 42px;
}

.quote-form .qf-field-select select {
  appearance: none;
  cursor: pointer;
}

.qf-chevron {
  position: absolute;
  top: 17px;
  right: 14px;
  width: 18px;
  height: 18px;
  color: var(--muted-dark);
  pointer-events: none;
}

.qf-req { color: var(--blue-bright); }

.qf-optional {
  color: var(--muted-dark);
  font-size: 0.82em;
  font-weight: 600;
}

.qf-hint {
  display: block;
  margin: 6px 2px 0;
  color: rgba(174, 184, 198, 0.85);
  font-size: 0.76rem;
  font-weight: 600;
}

/* --- Von/Nach als Route --- */
.qf-route {
  position: relative;
  display: grid;
  gap: 14px;
}

.qf-route-line {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-bright), rgba(85, 144, 255, 0.35));
}

.quote-form .qf-field-route input { padding-left: 58px; }
.quote-form .qf-field-route > label { left: 58px; }

.qf-dot {
  position: absolute;
  top: 25px;
  left: 22px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue-bright);
  border-radius: 50%;
  background: var(--black);
  pointer-events: none;
}

.qf-dot-end {
  border-radius: 3px;
  border-color: rgba(85, 144, 255, 0.55);
}

/* --- Zweispaltige Reihen --- */
.qf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form .qf-field-area textarea {
  min-height: 132px;
  padding-top: 30px;
  resize: vertical;
}

/* --- Datenschutz-Checkbox --- */
.qf-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
}

.qf-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.qf-check {
  display: grid;
  flex: 0 0 22px;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1px solid rgba(150, 180, 225, 0.4);
  border-radius: 7px;
  background: rgba(9, 19, 32, 0.6);
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}

.qf-check svg {
  width: 14px;
  height: 14px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms var(--ease), transform 180ms var(--spring);
}

.qf-consent input:checked + .qf-check {
  border-color: var(--blue);
  background: var(--blue);
}

.qf-consent input:checked + .qf-check svg {
  opacity: 1;
  transform: scale(1);
}

.qf-consent input:focus-visible + .qf-check {
  outline: 2px solid rgba(85, 144, 255, 0.8);
  outline-offset: 2px;
}

.qf-consent a { color: var(--blue-bright); }

/* --- Button, Trust-Zeile, Legende --- */
.quote-form .form-button {
  width: auto;
  margin-top: 4px;
}

.form-button-arrow {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  transition: transform 220ms var(--ease);
}

.form-button-wa:hover .form-button-arrow { transform: translateX(4px); }

.qf-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 14px 30px 0;
  padding: 0;
  list-style: none;
}

.qf-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.qf-trust li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
}

.qf-legend {
  margin: 10px 30px 26px;
  color: rgba(174, 184, 198, 0.75);
  font-size: 0.74rem;
  font-weight: 600;
}

/* Statuszeile nimmt nur Platz ein, wenn wirklich eine Meldung drinsteht */
.quote-form .form-status {
  min-height: 0;
  margin-top: -4px;
  font-size: 0.86rem;
}

.quote-form .form-status:empty { display: none; }

/* --- Fehlerzustand --- */
.quote-form .qf-field.has-error input,
.quote-form .qf-field.has-error select,
.quote-form .qf-field.has-error textarea {
  border-color: rgba(255, 122, 105, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 122, 105, 0.14);
}

.qf-group.has-error .qf-opt > span { border-color: rgba(255, 122, 105, 0.7); }
.qf-consent.has-error .qf-check { border-color: rgba(255, 122, 105, 0.85); }

/* --- Mobil --- */
@media (max-width: 720px) {
  .qf-head { padding: 22px 20px 20px; }
  .quote-form > *:not(.qf-head) { margin-inline: 20px; }
  .qf-trust, .qf-legend { margin-inline: 20px; }
  .qf-seg { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qf-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   Kontakt-/Anfrage-Section — EIN Baustein fuer alle Seiten
   Links Kontaktwege, rechts das Formular. Klassen-Praefix cc-
   ═══════════════════════════════════════════════════════════════ */
.contact-cta {
  background: var(--paper);
  color: var(--ink);
}

.cc-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: var(--container);
  margin: 0 auto;
}

/* ---- linke Spalte ---- */
.cc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid rgba(45, 107, 255, 0.28);
  border-radius: 999px;
  background: rgba(45, 107, 255, 0.08);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cc-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.cc-copy h2 {
  margin: 0 0 14px;
  text-wrap: balance;
}

.cc-copy h2 em {
  color: var(--blue);
  font-style: normal;
}

.cc-lead {
  max-width: 46ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cc-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-list > li > a,
.cc-list > li > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: var(--paper-strong);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 200ms var(--elegant-smooth), transform 200ms var(--elegant-smooth),
    box-shadow 200ms var(--elegant-smooth);
}

.cc-list > li > div {
  grid-template-columns: 46px minmax(0, 1fr);
}

.cc-list > li > a:hover {
  border-color: rgba(45, 107, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(20, 20, 20, 0.4);
}

.cc-ico {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
}

.cc-ico svg {
  width: 21px;
  height: 21px;
}

.cc-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.cc-text small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cc-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.cc-go {
  color: rgba(20, 20, 20, 0.3);
  transition: transform 200ms var(--elegant-smooth), color 200ms ease;
}

.cc-go svg {
  width: 18px;
  height: 18px;
}

.cc-list > li > a:hover .cc-go {
  color: var(--blue);
  transform: translateX(3px);
}

/* ---- Formular-Karte ---- */
.cc-form {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(150, 180, 225, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(45, 107, 255, 0.16) 0%, transparent 62%),
    linear-gradient(180deg, #16263B 0%, #0D1726 100%);
  box-shadow: 0 40px 90px -40px rgba(9, 19, 32, 0.75);
}

.cc-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  padding: 6px 13px;
  border: 1px solid rgba(107, 240, 165, 0.32);
  border-radius: 999px;
  background: rgba(107, 240, 165, 0.10);
  color: #7CEBA8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-form-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BF0A5;
}

.cc-form h3 {
  margin: 6px 0 0;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.cc-form-sub {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.cc-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cc-field {
  position: relative;
}

.cc-field-ico {
  position: absolute;
  top: 16px;
  left: 15px;
  display: flex;
  color: rgba(133, 170, 235, 0.75);
  pointer-events: none;
}

.cc-field-ico svg {
  width: 18px;
  height: 18px;
}

.cc-form input,
.cc-form select,
.cc-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px 14px 46px;
  border: 1px solid rgba(150, 180, 225, 0.20);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  transition: border-color 200ms var(--elegant-smooth), background 200ms var(--elegant-smooth),
    box-shadow 200ms var(--elegant-smooth);
}

.cc-form textarea {
  min-height: 132px;
  padding-top: 15px;
  line-height: 1.5;
  resize: vertical;
}

.cc-form select {
  appearance: none;
  cursor: pointer;
}

.cc-form ::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.cc-form select:invalid {
  color: rgba(255, 255, 255, 0.46);
}

.cc-form input:hover,
.cc-form select:hover,
.cc-form textarea:hover {
  border-color: rgba(150, 180, 225, 0.34);
}

.cc-form input:focus,
.cc-form select:focus,
.cc-form textarea:focus {
  outline: none;
  border-color: rgba(85, 144, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(45, 107, 255, 0.15);
}

.cc-field-caret {
  position: absolute;
  top: 17px;
  right: 15px;
  display: flex;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.cc-field-caret svg {
  width: 17px;
  height: 17px;
}

.cc-field.has-error input,
.cc-field.has-error select,
.cc-field.has-error textarea {
  border-color: rgba(255, 130, 118, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 130, 118, 0.14);
}

/* ---- Einwilligung ---- */
.cc-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.45;
  cursor: pointer;
}

.cc-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
}

.cc-check {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(150, 180, 225, 0.35);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease;
}

.cc-check svg {
  width: 13px;
  height: 13px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 170ms var(--ease), transform 170ms var(--spring);
}

.cc-consent input:checked + .cc-check {
  border-color: var(--blue);
  background: var(--blue);
}

.cc-consent input:checked + .cc-check svg {
  opacity: 1;
  transform: scale(1);
}

.cc-consent input:focus-visible + .cc-check {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

.cc-consent a {
  color: var(--blue-bright);
  text-underline-offset: 3px;
}

.cc-consent.has-error .cc-check {
  border-color: rgba(255, 130, 118, 0.8);
}

/* ---- Button + Fussnote ---- */
.cc-submit {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  padding: 15px 22px;
  border: 0;
  border-radius: 13px;
  background: var(--blue);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 34px -14px rgba(45, 107, 255, 0.85);
  transition: background 200ms ease, transform 200ms var(--spring), box-shadow 220ms ease;
}

.cc-submit svg {
  width: 19px;
  height: 19px;
  transition: transform 220ms var(--elegant-smooth);
}

.cc-submit:hover {
  background: #2559DB;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -16px rgba(45, 107, 255, 0.95);
}

.cc-submit:hover svg {
  transform: translateX(4px);
}

.cc-submit:active {
  transform: translateY(0);
}

.cc-submit:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.cc-note {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.cc-form .form-status {
  min-height: 0;
  margin: 0;
  font-size: 0.88rem;
}

.cc-form .form-status:empty {
  display: none;
}

@media (max-width: 960px) {
  .cc-layout {
    grid-template-columns: 1fr;
  }

  .cc-copy {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  /* Feldpaare bleiben nebeneinander: einspaltig wurde das Formular so lang,
     dass der Absenden-Button weit unterhalb des Sichtfensters lag. */
  .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* Adresszeile braucht die volle Breite, sonst wird "Von: Ort & Strasse"
     mitten im Wort abgeschnitten */
  .cc-row-wide {
    grid-template-columns: 1fr;
  }

  .cc-form {
    gap: 10px;
    padding: 20px 16px 22px;
    border-radius: 18px;
  }

  .cc-form input,
  .cc-form select,
  .cc-form textarea {
    min-height: 46px;
    padding: 11px 12px 11px 40px;
    /* exakt 16px: darunter zoomt iOS Safari beim Antippen automatisch hinein
       und die Seite sitzt danach verschoben */
    font-size: 16px;
    border-radius: 11px;
  }

  .cc-form textarea {
    min-height: 92px;
    padding-top: 12px;
  }

  .cc-field-ico {
    left: 12px;
  }

  .cc-field-ico svg {
    width: 17px;
    height: 17px;
  }

  .cc-form h3 {
    font-size: 1.32rem;
  }

  .cc-form-sub {
    margin-bottom: 2px;
    font-size: 0.88rem;
  }

  .cc-list > li > a,
  .cc-list > li > div {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 13px 14px;
  }

  .cc-go {
    display: none;
  }

  .cc-ico {
    width: 42px;
    height: 42px;
  }
}


/* ===== AREA dunkel-invert (Navy-Section) ===== */
.area .kicker { color: var(--blue-bright); }
.area-copy h2 { color: var(--paper-strong); }
.area-copy p { color: var(--muted-dark); }
.area-pill {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
}
.area-pill:hover {
  border-color: rgba(85, 144, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}
.area-hint { color: var(--muted-dark); }
.area-panels { border-top-color: var(--line-dark); }

/* ---- Footer: alle Einsatzorte (Link-Equity-Gleichverteiler) ---- */
.footer-col-geo { grid-column: 1 / -1; }

.footer-geo {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 4px;
}

.footer-geo a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-geo a:hover { color: var(--white); }

/* ---- Zweiter Panel-Link: fuehrt in die Standortseite (interne Verlinkung) ---- */
.area-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
  color: var(--blue-bright);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.area-panel-link:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 640px) {
  .area-panel-link { margin: 10px 0 0; }
}


/* Footer-Ortsliste lief als eine 1300px hohe Spalte: die generische
   .site-footer .footer-col nav-Regel (display:grid) war spezifischer */
.site-footer .footer-col nav.footer-geo {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

/* Zeilenbalance: sonst laeuft Zeile 1 randvoll und Zeile 2 haengt als Rest */
h1, h2, h3, .cc-copy h2, .section-head h2 { text-wrap: balance; }

/* Mail-Adresse brach als "info@ma- / umzuegebraunschweig.de" */
.footer-contact a[href^="mailto"], .cc-text strong { overflow-wrap: break-word; word-break: normal; hyphens: none; }

/* Kicker-Blau auf Papier hatte nur 3.48:1 Kontrast */
.section:not(.faq-band) .kicker.dark,
.paper .kicker, .section-alt .kicker { color: #2559DB; }

/* ── debugmax-Fixes ───────────────────────────────────────────── */
/* Bindestrich-Trennung mitten im Wort ("Entrümpe-lung Wolfenbüttel") */
h1, h2, h3, h4,
.related-card h3, .intent-row h3, .cc-text strong, .card h3 {
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

/* Fliesstext-Links waren farbgleich mit dem Absatz und ohne Unterstrich */
.silo-orte p a, .section p a:not(.button):not([class*="cc-"]):not([class*="card"]) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer- und Breadcrumb-Links waren 21-25px hoch (Touch-Target < 44px) */
.site-footer a { display: inline-block; padding-block: 8px; }
.crumbs a { display: inline-block; padding-block: 6px; }

/* Success-Animation Aufwertung: weicher Glow hinter dem Haken */
.form-success-check::after {
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.20), rgba(45, 107, 255, 0.10) 45%, transparent 70%);
  z-index: 0;
  animation: fs-glow 1100ms var(--ease) 180ms both;
}
.form-success-check svg { z-index: 1; }
@keyframes fs-glow {
  0% { opacity: 0; transform: scale(0.5); }
  55% { opacity: 1; }
  100% { opacity: 0.65; transform: scale(1.12); }
}
.form-success-title { font-size: 1.65rem; letter-spacing: -0.01em; }

/* ============================================================
   Mobiles Menue: Direktkontakt statt leerer Flaeche + gestaffelte Einblendung
   ============================================================ */
.nav-extra { display: none; }

/* Mobile-Menue entschlacken + kein WhatsApp: der ganze Direktkontakt-Block
   raus, es bleiben nur die Nav-Links + der Anrufen-Button. */
.nav-extra {
  display: none !important;
}

@media (max-width: 1080px) {
  .nav-extra {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(150, 180, 225, 0.16);
  }

  .nav-extra-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-height: 62px;
    padding: 11px 14px;
    border: 1px solid rgba(150, 180, 225, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
  }

  .nav-extra-card:active { background: rgba(255, 255, 255, 0.09); }

  .nav-extra-ico {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(45, 107, 255, 0.16);
    color: var(--blue-bright);
  }

  .nav-extra-ico svg { width: 21px; height: 21px; }
  .nav-extra-wa .nav-extra-ico { background: rgba(37, 211, 102, 0.16); color: #4ee08a; }

  .nav-extra-tx { display: grid; gap: 2px; line-height: 1.2; }
  .nav-extra-tx small { color: var(--muted-dark); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .nav-extra-tx strong { color: var(--white); font-size: 0.98rem; }

  .nav-extra-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(224, 161, 85, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    text-decoration: none;
  }

  .nav-extra-stars { color: var(--amber); letter-spacing: 2px; }
  .nav-extra-rating strong { color: var(--white); }

  .nav-extra-hours {
    margin: 2px 2px 0;
    color: var(--muted-dark);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  /* Menueeintraege laufen gestaffelt ein, statt als Block aufzuploppen */
  .nav-links.is-open > .nav-item,
  .nav-links.is-open > a,
  .nav-links.is-open > .nav-extra {
    animation: nav-in 340ms var(--elegant-smooth) both;
  }

  .nav-links.is-open > *:nth-child(1) { animation-delay: 40ms; }
  .nav-links.is-open > *:nth-child(2) { animation-delay: 80ms; }
  .nav-links.is-open > *:nth-child(3) { animation-delay: 120ms; }
  .nav-links.is-open > *:nth-child(4) { animation-delay: 160ms; }
  .nav-links.is-open > *:nth-child(5) { animation-delay: 200ms; }
  .nav-links.is-open > *:nth-child(6) { animation-delay: 240ms; }
}

@keyframes nav-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links.is-open > * { animation: none !important; }
}


/* ============================================================
   Mobile-Fixes: Menue-Kopfzeile und Breite der Kontakt-Sektion
   ============================================================ */
@media (max-width: 1080px) {
  /* Beim Aufklappen eines Untermenues scrollte der Inhalt unter die
     transparente Kopfzeile: Logo und Menuepunkt lagen uebereinander.
     Die Kopfzeile bekommt im geoeffneten Menue einen deckenden Hintergrund. */
  /* Deckender Streifen im Overlay selbst: Logo und Schliessen-Button liegen
     ueber dem Menue, der Header-Hintergrund aber darunter. Ohne diesen Streifen
     scrollt der Menuetext sichtbar durch die Kopfzeile. */
  .nav-links.is-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(env(safe-area-inset-top, 0px) + 96px);
    background: #0B1522;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
  }

  .nav-links {
    scroll-padding-top: 112px;
  }

  .nav-links.is-open > * {
    position: relative;
    /* Offsets der Desktop-Regel zuruecksetzen: sonst wirken top:50% und
       right:8px weiter und verschieben den Anruf-Button gegen die
       uebrigen Buttons. */
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    z-index: 0;
  }

  /* Kontakt-Sektion: die Karte stand mobil in einem schmalen Kasten mit
     breitem Rand; jetzt nutzt sie die Bildschirmbreite. */
  .section.contact-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* der Container zog zusaetzlich 48 px ab: mobil volle Breite nutzen */
  .contact-cta .cc-layout {
    width: 100%;
    max-width: none;
  }

  .cc-layout {
    gap: 22px;
  }
}

/* Footer-Chips (Festpreis/Bewertungen/Inhabergefuehrt/Region) ausgeblendet */
.site-footer .footer-chips { display: none; }

/* ============================================================
   Scroll-Choreografie
   Sektionen kommen nicht mehr als Block, sondern in Etappen:
   erst die Sektion selbst, dann ihre Karten/Listen gestaffelt.
   Nur transform + opacity, damit nichts ruckelt.
   ============================================================ */
:root {
  --motion-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 760ms var(--motion-out),
    transform 860ms var(--motion-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Ueberschriften schieben sich hinter einer Kante hervor */
.js [data-reveal] > .section-head h2,
.js [data-reveal] > h2,
.js .section-head[data-reveal] h2 {
  clip-path: inset(0 0 108% 0);
  transition: clip-path 900ms var(--motion-out) 90ms;
}

.js [data-reveal].is-visible > .section-head h2,
.js [data-reveal].is-visible > h2,
.js .section-head[data-reveal].is-visible h2 {
  clip-path: inset(0 0 -18% 0);
}

/* Karten, Listenpunkte und Chips laufen nacheinander ein */
.js .stagger-ready > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  transition:
    opacity 620ms var(--motion-out),
    transform 720ms var(--motion-out);
  transition-delay: calc(var(--i, 0) * 85ms + 120ms);
}

.js [data-reveal].is-visible .stagger-ready > *,
.js .stagger-ready[data-reveal].is-visible > *,
.js .is-visible.stagger-ready > *,
/* verschachtelte Staffel-Container (z. B. die Chips im Footer-Block) */
.js .is-visible .stagger-ready > * {
  opacity: 1;
  transform: none;
}

/* Bilder in Sektionen ziehen leicht heran, statt hart zu erscheinen */
.js [data-reveal] .local-split-media img,
.js [data-reveal] .field-frame img,
.js [data-reveal] .related-media img {
  transform: scale(1.06);
  transition: transform 1200ms var(--motion-out);
}

.js [data-reveal].is-visible .local-split-media img,
.js [data-reveal].is-visible .field-frame img,
.js [data-reveal].is-visible .related-media img {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js .stagger-ready > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .js [data-reveal] h2 { clip-path: none !important; }
  .js [data-reveal] img { transform: none !important; }
}

/* ============================================================
   Seitenwechsel: weicher Uebergang statt Weissblitz
   Die View-Transitions-API blendet die alte Seite aus und die neue herein.
   Browser ohne Unterstuetzung ignorieren den Block und navigieren normal.
   ============================================================ */
@view-transition {
  navigation: auto;
}

/* WICHTIG: der Kopfzeile KEIN view-transition-name geben. Das Attribut macht
   sie zum Bezugsrahmen fuer position:fixed, wodurch das Menue-Overlay nur noch
   so gross war wie die Kopfzeile (Seiteninhalt schien oben und unten durch). */

::view-transition-old(root) {
  animation: seite-raus 200ms cubic-bezier(0.4, 0, 1, 1) both;
}

::view-transition-new(root) {
  animation: seite-rein 460ms var(--motion-out) both;
}

@keyframes seite-raus {
  to {
    opacity: 0;
    transform: translate3d(0, -10px, 0) scale(0.996);
  }
}

@keyframes seite-rein {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}


/* ---- iOS: kein Auto-Zoom beim Fokus auf Eingabefelder ----
   Safari zoomt die Seite, sobald ein Feld unter 16px Schriftgroesse hat.
   Gilt fuer alle Formulare der Site. */
@media (max-width: 820px) {
  input,
  select,
  textarea,
  .qf-field input,
  .qf-field select,
  .qf-field textarea,
  .cc-form input,
  .cc-form select,
  .cc-form textarea {
    font-size: 16px;
  }
}


/* Bestaetigung nach dem Absenden: heller Text, damit er auf der dunklen
   Formularkarte lesbar bleibt */
.form-success-text strong { color: #ffffff; }
.cc-form .form-success,
.quote-form .form-success { color: #ffffff; }

/* Zwei-Spalten-Dropdown (Orte) aus dem CSS statt per Inline-Style.
   Der frühere style="min-width:460px" sprengte auf dem Handy die
   Bildschirmbreite, dadurch war der Menuetext links abgeschnitten. */
.nav-dropdown[data-cols="2"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 6px;
}

@media (min-width: 1081px) {
  .nav-dropdown[data-cols="2"] { min-width: 460px; }
}

@media (max-width: 1080px) {
  .nav-dropdown[data-cols="2"] {
    min-width: 0;
    width: 100%;
  }

  /* nichts im Menue darf breiter als der Bildschirm werden */
  .nav-links,
  .nav-links * {
    max-width: 100%;
  }

  .nav-links { overflow-x: hidden; }
}

/* Seitenwechsel-Uebergang fuer Browser ohne native View Transitions
   (siehe home.js). Wird nur aktiv, wenn die Klasse gesetzt ist. */
.hat-seitenwechsel body {
  animation: seite-rein 400ms var(--motion-out) both;
}

.hat-seitenwechsel.seite-verlaesst body {
  animation: seite-raus 170ms cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes seite-rein {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes seite-raus {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: translate3d(0, -8px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hat-seitenwechsel body,
  .hat-seitenwechsel.seite-verlaesst body { animation: none !important; }
}

/* ---- Kontakt-Sektion: Kopfbereich wie in jeder anderen Sektion ----
   Auf dem Handy stapelt die Sektion einspaltig. Der linksbuendige Pillen-Chip
   fiel dort aus dem Raster, weil alle uebrigen Sektionen einen zentrierten
   Kicker mit Strich haben. Auf dem Desktop bleibt das zweispaltige Layout
   linksbuendig, dort ist die Pille richtig. */
@media (max-width: 760px) {
  .contact-cta .cc-copy {
    text-align: center;
  }

  .contact-cta .cc-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .contact-cta .cc-pill::before {
    content: none;
  }

  /* der Punkt in der Pille entfaellt, der Strich uebernimmt die Rolle */
  .contact-cta .cc-pill > span:first-child {
    display: none;
  }

  .contact-cta .cc-lead {
    margin-inline: auto;
  }

  /* die Kontaktkarten darunter bleiben linksbuendig, sonst steht der Text
     mittig neben dem Icon */
  .contact-cta .cc-list,
  .contact-cta .cc-list * {
    text-align: left;
  }
}


/* ---- Formular-CTA im Handy-Menue (auf Desktop steckt er im Hero) ---- */
.nav-quote { display: none; }

@media (max-width: 1080px) {
  .nav-links .nav-quote {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 20px;
    border: 1px solid rgba(150, 180, 225, 0.32);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 200ms ease, border-color 200ms ease;
  }

  .nav-links .nav-quote svg { width: 18px; height: 18px; }

  .nav-links .nav-quote:hover,
  .nav-links .nav-quote:active {
    border-color: rgba(85, 144, 255, 0.7);
    background: rgba(45, 107, 255, 0.16);
  }

  .nav-links .nav-cta { margin-top: 10px; }
}


/* ============================================================
   Mobiles Menue: Buttons buendig, Overlay ueber allem
   ============================================================ */
@media (max-width: 1080px) {
  /* NUR die beiden Buttons ausrichten. Die Menuepunkte (Leistungen,
     Einsatzgebiet, Ratgeber, Kontakt) bleiben linksbuendig wie zuvor. */
  .nav-links.is-open .nav-cta,
  .nav-links.is-open .nav-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 62px;
    margin-left: 0;
    margin-right: 0;
    padding: 12px 18px;
    box-sizing: border-box;
    text-align: center;
  }

  /* Beide Buttons zeigen dasselbe Muster: Symbol plus eine Textzeile.
     Beim Anruf-Button entfaellt mobil das kleine Label darueber. */
  .nav-links.is-open .nav-cta .nav-cta-label {
    display: none;
  }

  .nav-links.is-open .nav-cta .nav-cta-text {
    display: flex;
    align-items: center;
  }

  .nav-links.is-open .nav-cta .nav-cta-text strong,
  .nav-links.is-open .nav-quote > span {
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .nav-links.is-open .nav-cta .nav-cta-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  /* Der Header traegt z-index 90; Inhalte mit eigenem Stapelkontext (Footer,
     animierte Sektionen) konnten dadurch vor dem Overlay landen. Bei offenem
     Menue liegt der Header ueber allem. */
  body.nav-open .site-header {
    z-index: 9999;
  }
}

/* Footer-Spalten kompakter: 8px Padding + 12px Gap ergaben ~53px pro
   Zeile, die Leistungs-Spalte wirkte dadurch auseinandergezogen. */
.site-footer .footer-col nav { gap: 8px; }
.site-footer .footer-col nav a { padding: 3px 0; }

/* Handy: Header als Milchglas. Inhalt (z.B. das Footer-Logo) bleibt
   sichtbar HINTER dem Glas, wird aber weichgezeichnet statt scharf
   durchzuscheinen. Grundfarbe bleibt die gewohnte Glas-Optik. */
@media (max-width: 1080px) {
  .nav {
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    backdrop-filter: blur(14px) saturate(1.15);
    background: rgba(9, 11, 16, 0.96);
  }
}
