/* ═══════════ MODERN CSS RESET ═══════════ */

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

* {
  margin: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

textarea {
  white-space: revert;
}

/* ═══════════ FONTS (self-hosted woff2, kein externes CDN → DSGVO) ═══════════ */

/* Space Grotesk — Display / Headlines */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/space-grotesk-500.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/space-grotesk-600.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/space-grotesk-700.woff2") format("woff2");
}

/* Inter — Body / UI */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
}

/* ═══════════ CUSTOM PROPERTIES — KÜHL-NEUTRAL + SIGNALBLAU ═══════════ */

:root {
  /* Markenfarben */
  --ink: #1f2a33; /* Slate, Text */
  --ink-soft: #52606b; /* gedämpfter Text */
  --paper: #ffffff; /* weißer Hintergrund (Kundenlogos brauchen Weiß) */
  --surface: #f5f7f8; /* sehr helle kühle Fläche für Cards */
  --line: #e6e8ec; /* kühle Haarlinie */
  --line-strong: #cdd2d8;
  --primary: #00708c; /* Petrol-Blau aus dem Rankland-Logo (Signatur) */
  --primary-dark: #00576e;
  --accent: #213a47; /* dunkles Petrol-Slate (Sekundär) */
  --accent-dark: #162c37;
  --accent2: #00708c; /* Logo-Petrol (Karten-Variante) */
  --pop: #8fdfff; /* heller Cyan-Akzent (C-Palette; Hero-Wort auf Dunkel) */
  --pop-ink: #0a2a36;
  --gold: #fbbc04; /* Google-Sterne (Google-Gelb) */
  --dark: #213a47; /* dunkle Sektionen (Hero, CTA, Stats, Footer) */
  --dark-2: #162c37;

  /* Semantische Aliase */
  --color-bg: var(--paper);
  --color-surface: var(--surface);
  --color-text: var(--ink);
  --color-text-muted: var(--ink-soft);
  --color-primary: var(--primary);
  --color-primary-hover: var(--primary-dark);
  --color-border: var(--line);
  --color-bg-alt: var(--surface);
  --color-success: #0e9488;
  --color-error: #dc2626;

  /* Typografie */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, monospace;

  /* Fluide Typo-Skala */
  --step--1: clamp(0.875rem, 0.84rem + 0.15vw, 0.95rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1: clamp(1.18rem, 1.08rem + 0.45vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.25rem + 0.95vw, 2rem);
  --step-3: clamp(1.85rem, 1.5rem + 1.7vw, 2.9rem);
  --step-4: clamp(2.3rem, 1.75rem + 2.9vw, 4.1rem);
  --step-5: clamp(2.8rem, 1.95rem + 4.4vw, 5.4rem);

  /* Abstände */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  --section-pad: clamp(4rem, 3rem + 6vw, 8rem);

  /* Maße */
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);

  /* Radien — weiche Geometrie */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Schatten — kühl, weich */
  --shadow: 0 1px 2px rgba(21, 23, 28, 0.05), 0 12px 34px -16px rgba(21, 23, 28, 0.22);
  --shadow-lg: 0 36px 64px -24px rgba(21, 23, 28, 0.28);
  --ring: 0 0 0 3px rgba(30, 64, 175, 0.4);
}

/* ═══════════ HTML ═══════════ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* ═══════════ BODY ═══════════ */

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--surface);
}

/* ═══════════ CONTAINER ═══════════ */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: 760px;
}

/* ═══════════ HEADINGS ═══════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

/* Display-Größen (von Komponenten genutzt) */
.display-1 { font-size: var(--step-5); font-weight: 700; line-height: 1.0; }
.display-2 { font-size: var(--step-4); font-weight: 600; line-height: 1.04; }
.display-3 { font-size: var(--step-3); font-weight: 600; line-height: 1.1; }

/* ═══════════ EYEBROW / LABEL (technisches Register) ═══════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.eyebrow::before {
  content: "";
  width: 0.62em;
  height: 0.62em;
  border-radius: 50%;
  background: var(--primary);
  flex: none;
}

.eyebrow--indigo::before { background: var(--accent2); }
.eyebrow--on-dark { color: var(--paper); }
.eyebrow--on-dark::before { background: var(--accent); }

/* ═══════════ LEAD / INTRO-TEXT ═══════════ */

.lead {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ═══════════ LINKS ═══════════ */

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: auto;
  transition: color 0.15s ease;
}
a:hover { color: var(--primary-dark); }

/* ═══════════ BUTTONS ═══════════ */

.btn {
  --btn-bg: var(--primary);
  --btn-fg: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn .btn__arrow { transition: transform 0.18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--accent { --btn-bg: var(--accent); }
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #ffffff; }

.btn--neon {
  --btn-bg: var(--neon);
  --btn-fg: var(--neon-ink);
}
.btn--neon:hover {
  background: color-mix(in srgb, var(--neon) 84%, var(--ink));
  border-color: color-mix(in srgb, var(--neon) 84%, var(--ink));
  color: var(--neon-ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.btn--on-dark.btn--ghost {
  color: var(--paper);
  border-color: color-mix(in srgb, var(--paper) 40%, transparent);
}
.btn--on-dark.btn--ghost:hover {
  color: var(--paper);
  border-color: var(--paper);
}

/* ═══════════ GEOMETRISCHE DEKO-FORMEN ═══════════ */

.shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.shape--circle { border-radius: 50%; }
.shape--quarter { border-radius: 0 100% 0 0; }
.shape--ring { border-radius: 50%; background: transparent; }

/* ═══════════ PROSE (Markdown-Seiten, Blog, Recht) ═══════════ */

/* Text-/Rechtsseiten (page.njk: Impressum, Datenschutz, …): konsistenter vertikaler
   Abstand zu Nav und Footer. .page hatte zuvor kein Padding → Inhalt klebte am Footer. */
.page { padding-block: clamp(3rem, 6vw, 5rem); }
.page > .prose > :first-child { margin-block-start: 0; }

.prose { font-size: var(--step-0); }
.prose > * + * { margin-block-start: var(--space-md); }
/* Tabellen in Prose: sauber gestylt + auf Mobil horizontal scrollbar statt abgeschnitten */
.prose table { display: block; width: max-content; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-collapse: collapse; margin-block: var(--space-md); font-size: var(--step--1); }
.prose th, .prose td { padding: 0.7rem 1rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose thead th { background: color-mix(in srgb, var(--primary) 7%, #fff); font-weight: 600; color: var(--ink); white-space: nowrap; }
.prose tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--primary) 3%, #fff); }
.prose h1 { font-size: var(--step-4); margin-block: var(--space-lg) var(--space-md); }
.prose h2 { font-size: var(--step-3); margin-block: var(--space-lg) var(--space-sm); }
.prose h3 { font-size: var(--step-2); margin-block: var(--space-lg) var(--space-sm); }
.prose h4 { font-size: var(--step-1); margin-block: var(--space-md) var(--space-xs); }
.prose p, .prose ul, .prose ol { color: var(--ink); }
.prose ul, .prose ol { padding-inline-start: 1.4em; }
.prose li { margin-block-end: 0.4em; }
.prose li::marker { color: var(--primary); }
.prose a { font-weight: 500; }
.prose blockquote {
  border-inline-start: 4px solid var(--primary);
  padding-inline-start: var(--space-md);
  color: var(--ink-soft);
  font-style: italic;
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.1em 0.35em;
  border-radius: var(--radius-sm);
}
.prose pre {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-md);
  border-radius: var(--radius);
  overflow-x: auto;
}
.prose pre code { background: none; border: none; padding: 0; color: inherit; }

/* ═══════════ SKIP LINK ═══════════ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 200;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: var(--space-sm); }

/* ═══════════ FOCUS ═══════════ */

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

/* ═══════════ REDUCED MOTION ═══════════ */

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

/* ═══════════ SEKTIONS-BASIS ═══════════ */

.section {
  padding-block: var(--section-pad);
  position: relative;
}
/* Zwei hintergrundlose Sektionen: obere behält ihr unteres Padding, die untere
   gibt ihr oberes ab → Block-Abstand = --section-pad (kein Doppel-Abstand). */
.section + .section { padding-block-start: 0; }
/* An einer Farbkante (Tint/Grid grenzt an andersfarbige Sektion) wird der Abstand
   geteilt: jede Seite bekommt das halbe Section-Padding. So bleibt der Block-Abstand
   gleich (= --section-pad), die Kante sitzt optisch mittig, und KEIN Inhalt klebt an
   der Kante (das passiert sonst bei alternierenden Bändern an der weißen Seite). */
.section + .section--tint,
.section + .section--grid       { padding-block-start: calc(var(--section-pad) / 2); }
.section:has(+ .section--tint),
.section:has(+ .section--grid)  { padding-block-end:   calc(var(--section-pad) / 2); }
.section--tint + .section,
.section--grid + .section       { padding-block-start: calc(var(--section-pad) / 2); }
.section--tint:has(+ .section),
.section--grid:has(+ .section)  { padding-block-end:   calc(var(--section-pad) / 2); }
.section--tint { background: color-mix(in srgb, var(--primary) 5%, #ffffff); }
/* Wrapper-Blöcke mit eigenem Abstand (.cta = Panel, .cta-band = margin-basiert,
   .contact = heller Formular-Block) liegen außerhalb des .section-Kollaps. Damit
   kein doppelter Leerraum entsteht, gibt die angrenzende Sektion ihr Padding ab –
   sowohl davor (vorausgehende Sektion) als auch danach (folgende Sektion). */
.section:has(+ .cta),
.section:has(+ .cta-band) { padding-block-end: 0; }
.cta + .section,
.cta-band + .section,
.contact + .section { padding-block-start: 0; }
/* .contact ist nur dezent getönt (surface): Abstand mittig teilen wie an Tint-Kanten,
   sonst klebt das letzte FAQ-/Sektions-Element an der Farbkante. */
.section:has(+ .contact) { padding-block-end: calc(var(--section-pad) / 2); }
.section + .contact { padding-block-start: calc(var(--section-pad) / 2); }

.section-head { max-width: 62ch; margin-block-end: var(--space-lg); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-head__intro { margin-inline: auto; }
.section-head__title { margin-block: 0.4em 0; max-width: 18ch; }
.section-head--center .section-head__title { max-width: 24ch; }
.section-head__intro { margin-block-start: var(--space-md); }

/* ═══════════ SCROLL-REVEAL ═══════════ */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ═══════════ HERO ═══════════ */

.hero {
  position: relative;
  padding-block: clamp(3.5rem, 2.5rem + 6vw, 7rem) clamp(4rem, 3rem + 6vw, 8rem);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero__title {
  margin-block: 0.5em 0;
  max-width: 16ch;
}
.hero__title .accent { color: var(--primary); }
.hero__title .accent-petrol { color: var(--accent); }
.hero__subtitle {
  margin-block-start: var(--space-md);
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 44ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-block-start: var(--space-lg);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.7rem;
  margin-block-start: var(--space-sm);
  padding: 0;
  list-style: none;
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.hero__meta li { display: flex; align-items: center; gap: 0.5em; }
.hero__meta li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--pop);
  border-radius: 50%;
  flex: none;
}

/* Hero-Grafik */
.hero__figure {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}
.herofig { position: relative; width: min(420px, 100%); aspect-ratio: 1 / 0.9; }
.herofig__ring {
  position: absolute;
  inset: 4% 6% auto auto;
  width: 62%; aspect-ratio: 1;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
}
.herofig__quarter {
  position: absolute;
  left: -4%; bottom: 8%;
  width: 34%; aspect-ratio: 1;
  background: var(--accent2);
  border-radius: 0 100% 0 0;
}
.herofig__dot {
  position: absolute;
  right: 10%; top: 6%;
  width: 16%; aspect-ratio: 1;
  background: color-mix(in srgb, var(--accent) 16%, var(--paper));
  border-radius: 50%;
}
.herofig__chart {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(26, 23, 20, 0.14));
}
.herofig__bars rect {
  fill: var(--surface);
  stroke: var(--ink);
  stroke-width: 2.5;
  transform-origin: bottom;
  animation: barRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.herofig__bars rect:nth-child(1) { animation-delay: 0.05s; }
.herofig__bars rect:nth-child(2) { animation-delay: 0.17s; }
.herofig__bars rect:nth-child(3) { animation-delay: 0.29s; fill: color-mix(in srgb, var(--accent2) 22%, var(--surface)); }
.herofig__bars rect:nth-child(4) { animation-delay: 0.41s; fill: var(--primary); stroke: var(--primary-dark); }
.herofig__curve {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: drawCurve 0.9s ease 0.5s forwards;
}
.herofig__peak {
  fill: var(--paper);
  stroke: var(--primary);
  stroke-width: 4;
  opacity: 0;
  animation: popIn 0.4s ease 1.2s forwards;
}
@keyframes barRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes drawCurve { to { stroke-dashoffset: 0; } }
@keyframes popIn { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }

/* ═══════════ TRUST-BAR ═══════════ */

.trustbar { padding-block: var(--space-lg); border-block: 1px solid var(--line); }
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
}
.trustbar__label {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
  flex: none;
}
.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  list-style: none;
  margin: 0; padding: 0;
}
.trustbar__item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-0);
  color: var(--ink);
  opacity: 0.85;
}

/* ═══════════ LEISTUNGS-GRID ═══════════ */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0; padding: 0;
}
.section--grid { background: #ffffff; }
.svc-grid__more { margin-block-start: clamp(1.75rem, 3vw, 2.5rem); text-align: center; }
.svc-grid__more a {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.18s ease;
}
.svc-grid__more a:hover { gap: 0.75em; }

/* ═══════════ TOOLS / APPS SHOWCASE ═══════════ */
.tools-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (min-width: 720px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
.tool-card {
  display: flex;
  gap: 1.25rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--primary) 30%, var(--line)); }
.tool-card__icon { width: 60px; height: 60px; border-radius: 14px; flex: none; object-fit: contain; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.tool-card__body { min-width: 0; }
.tool-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; margin-block-end: 0.5rem; }
.tool-card__name { font-family: var(--font-display); font-size: var(--step-1); margin: 0; }
.tool-card__badge { font-size: var(--step--1); font-weight: 600; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, #ffffff); padding: 0.15rem 0.6rem; border-radius: 999px; white-space: nowrap; }
.tool-card__desc { color: var(--ink-soft); margin: 0 0 var(--space-md); line-height: 1.6; }
.tool-card__link { font-family: var(--font-display); font-weight: 600; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35em; transition: gap 0.18s ease; }
.tool-card__link:hover { gap: 0.6em; }
.tools-note { max-width: 64ch; margin-block-start: clamp(1.75rem, 3vw, 2.5rem); color: var(--ink-soft); }

/* ═══════════ LANDING-HERO (mit Bild, wiederverwendbar) ═══════════ */
.lhero { background: var(--dark); color: #fff; padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.lhero__inner { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 880px) { .lhero__inner { grid-template-columns: 1.05fr 0.95fr; } }
.lhero__crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: var(--step--1); color: color-mix(in srgb, var(--paper) 58%, transparent); margin-block-end: var(--space-md); }
.lhero__crumbs a { color: inherit; text-decoration: none; }
.lhero__crumbs a:hover { color: var(--pop); }
.lhero__sep { opacity: 0.5; }
.lhero__eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pop); margin: 0 0 var(--space-md); }
.lhero__title { font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.08; letter-spacing: -0.02em; color: #fff; margin: 0; text-wrap: balance; }
.lhero__title .accent { color: var(--pop); }
.lhero__intro { margin: var(--space-md) 0 0; max-width: 48ch; color: color-mix(in srgb, var(--paper) 82%, transparent); font-size: var(--step-1); line-height: 1.6; }
.lhero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-block-start: var(--space-lg); }
.lhero__rating { display: flex; align-items: center; gap: 0.5rem; margin-block-start: var(--space-md); font-size: var(--step-0); color: color-mix(in srgb, var(--paper) 85%, transparent); }
.lhero__tel { display: inline-flex; align-items: center; gap: 0.55rem; margin-block-start: var(--space-md); font-size: var(--step--1); color: color-mix(in srgb, var(--paper) 78%, transparent); }
.lhero__tel a { color: var(--paper); font-weight: 600; white-space: nowrap; }
.lhero__tel a:hover { color: var(--pop); }
.lhero__stars { display: inline-flex; gap: 2px; }
.lhero__stars svg { width: 16px; height: 16px; color: var(--gold); }
.lhero__media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
/* Hero ohne Bild: einspaltig, Inhalt nutzt die Breite (kein leerer rechter Bereich). */
.lhero--solo .lhero__inner { grid-template-columns: 1fr; }
.lhero--solo .lhero__title { max-width: 20ch; }
.lhero--solo .lhero__intro { max-width: 62ch; }

/* ═══════════ STATEMENT (Signature, persönlich) ═══════════ */
.statement {
  background: var(--dark);
  color: #fff;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.statement .container { max-width: 1040px; }
.statement__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pop);
  margin-block-end: var(--space-lg);
}
.statement__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pop); }
.statement__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.85rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: balance;
}
.statement__quote .accent { color: var(--pop); }
.statement__foot {
  margin-block-start: clamp(2rem, 5vw, 3.25rem);
  padding-block-start: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 3rem;
}
.statement__by { display: flex; flex-direction: column; gap: 0.15rem; }
.statement__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #fff; }
.statement__role { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.statement__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
}
.statement__points li {
  position: relative;
  padding-inline-start: 1.05rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.statement__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pop);
}

/* ═══════════ KONTAKT ═══════════ */
.contact { background: var(--surface); padding-block: var(--section-pad); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 860px) {
  .contact__grid { grid-template-columns: 0.95fr 1.05fr; }
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-block: 0.4rem 1rem;
  color: var(--ink);
}
.contact__lead { color: var(--ink-soft); max-width: 42ch; margin-block-end: var(--space-lg); }
.contact__details { list-style: none; margin: 0 0 var(--space-lg); padding: 0; display: grid; gap: 0.85rem; }
.contact__details li { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); }
.contact__details svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.contact__details a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact__details a:hover { color: var(--primary); }
.contact__trust { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-soft); font-size: 0.95rem; }
.contact__stars { display: inline-flex; gap: 2px; }
.contact__stars svg { width: 16px; height: 16px; color: var(--gold); }
.contact__trust strong { color: var(--ink); }
.contact__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.contact__card .lead-form { border: none; padding: 0; margin: 0; max-width: none; background: none; }

/* ═══════════ INTRO nach dem Hero (zentriert: kurze Headline + Subtitle + Such-Chips + USP-Reihe) ═══════════ */
.svc-intro__inner { display: grid; gap: clamp(1.8rem, 4vw, 2.6rem); max-width: 860px; margin-inline: auto; text-align: center; }
.svc-intro__lead { display: grid; gap: var(--space-sm); justify-items: center; }
.svc-intro__lead > p:first-child {
  color: var(--ink); font-family: var(--font-display); font-weight: 600;
  font-size: var(--step-2); line-height: 1.3; letter-spacing: -0.015em; max-width: 26ch; margin: 0;
}
.svc-intro__lead > p { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.65; max-width: 50ch; margin: 0; }
.svc-intro__lead strong { color: var(--ink); font-weight: 600; }
.svc-intro__lead a { color: var(--primary); font-weight: 500; }

/* Lokale Suchanfragen als sichtbare Such-Chips — das thematische Visual für Local SEO */
.svc-searches { display: grid; gap: 0.85rem; justify-items: center; }
.svc-searches__label {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.svc-searches__row { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; }
.svc-search {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; font-size: var(--step--1); color: var(--ink);
}
.svc-search svg { width: 15px; height: 15px; color: var(--primary); flex: none; }

/* USPs als offene, zentrierte 3er-Reihe: freistehendes Petrol-Icon (KEIN Kasten, damit kein
   Verwechseln mit den Karten-Icons danach) + dünne vertikale Trennlinien zwischen den Punkten */
.svc-usps-row {
  list-style: none; margin: 0;
  padding: clamp(1.7rem, 3vw, 2.4rem) 0 0; border-block-start: 1px solid var(--line);
  display: grid; gap: clamp(1.6rem, 3vw, 2.2rem);
}
@media (min-width: 720px) { .svc-usps-row { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.svc-usp { display: grid; justify-items: center; text-align: center; gap: 0.6rem; align-content: start; padding: 0.2rem clamp(1rem, 2.6vw, 2.2rem); }
@media (min-width: 720px) { .svc-usp + .svc-usp { border-inline-start: 1px solid var(--line); } }
.svc-usp__ic { --svc-accent: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.svc-usp__ic .svc-icon { width: 38px; height: 38px; }
.svc-usp b { font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); color: var(--ink); line-height: 1.3; }
.svc-usp__desc { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.55; max-width: 32ch; }

/* ═══════════ MID-CTA (Conversion-Anker, dunkel) ═══════════ */
.midcta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) clamp(1.75rem, 4vw, 3rem);
  background: var(--dark); border-radius: var(--radius-lg); }
.midcta__text { margin: 0; max-width: 30ch; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.3; color: #fff; }
.midcta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); }
.midcta__rating { display: inline-flex; align-items: center; gap: 0.35rem; font-size: var(--step--1); color: color-mix(in srgb, var(--paper) 85%, transparent); white-space: nowrap; }
.midcta__rating svg { width: 15px; height: 15px; fill: var(--gold); }

/* ═══════════ ROWS (Akzent-Streifen statt Standard-Kacheln) ═══════════ */
.rows { display: grid; gap: var(--space-md); }
.row-item { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 1.75rem); align-items: start;
  padding: clamp(1.4rem, 3vw, 2rem); background: #fff; border: 1px solid var(--line);
  border-inline-start: 4px solid var(--primary); border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease; }
.row-item:hover { border-color: var(--primary); transform: translateX(3px); }
.row-item__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); color: color-mix(in srgb, var(--primary) 45%, var(--line)); line-height: 1; }
.row-item__body h3 { font-family: var(--font-display); font-size: var(--step-1); margin: 0 0 0.4rem; color: var(--ink); }
.row-item__body p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.row-item__body a { color: var(--primary); font-weight: 500; }

/* ═══════════ REGION-BAND (dunkel, lokale Verankerung) ═══════════ */
.region { background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); }
.region__head { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; margin: 0 0 var(--space-md); color: #fff; }
.region__places { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-block-end: var(--space-md); }
.region__place { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: var(--step--1);
  padding: 0.5rem 0.95rem; border: 1px solid color-mix(in srgb, var(--paper) 22%, transparent); border-radius: 8px; color: var(--pop); }
.region__place::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pop); flex: none; }
.region__body { color: color-mix(in srgb, var(--paper) 84%, transparent); line-height: 1.7; }
.region__body > * + * { margin-block-start: var(--space-sm); }
.region__body a { color: var(--pop); }
.region--split .region__head { margin-block-end: var(--space-md); }
@media (min-width: 820px) {
  .region--split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
  .region--split .region__places { margin-block-end: 0; }
}

/* ═══════════ CALLOUT (Statement-Zitat, hell mit Petrol-Akzent) ═══════════ */
.callout {
  position: relative;
  background: color-mix(in srgb, var(--primary) 5%, #fff);
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--line));
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem) clamp(2.25rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.callout::before { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: 5px; background: var(--primary); }
.callout p { position: relative; margin: 0; max-width: 56ch; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.3vw, 1.8rem); line-height: 1.38; letter-spacing: -0.015em; }
.callout p + p { margin-block-start: 0.6em; }
.callout a { color: var(--primary); text-decoration: none; }
.callout a:hover { text-decoration: underline; }
/* Callout als Zitat */
.callout blockquote { position: relative; margin: 0; padding-block-start: 2.25rem; }
.callout blockquote::before { content: "\201C"; position: absolute; inset-block-start: -0.35rem; inset-inline-start: 0; font-family: var(--font-display); font-weight: 700; font-size: 4.5rem; line-height: 1; color: var(--primary); }
.callout cite { display: block; margin-block-start: var(--space-md); font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: var(--step--1); letter-spacing: 0; color: var(--ink-soft); }

/* ═══════════ DETAIL-GRID (Inhalt, statt Textwüste) ═══════════ */
.detail__lead {
  max-width: 68ch;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-block-end: clamp(2rem, 4vw, 3rem);
}
/* CTA direkt unter dem Lead-Text: nah am Text, klarer Abstand zum Detail-Grid darunter. */
.detail__lead:has(+ .detail__cta) { margin-block-end: 1.25rem; }
.detail__cta { margin-block: 0 clamp(2.5rem, 5vw, 3.5rem); }
.detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 3vw, 2.75rem) clamp(2rem, 4vw, 4rem);
}
@media (min-width: 760px) { .detail__grid { grid-template-columns: 1fr 1fr; } }
.detail__item { padding-block-start: 1.1rem; border-block-start: 2px solid var(--primary); }

/* ═══════════ BRANCHEN-/TAG-CHIPS (kantig, keine Pills) ═══════════ */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-block-start: var(--space-lg); padding: 0; list-style: none; }
.chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1.05rem;
  border: 1px solid color-mix(in srgb, var(--primary) 38%, transparent);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pop); flex: none; }
.chip:hover { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 6%, #ffffff); }
.detail__item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-block-end: 0.55rem;
}
.detail__item p { color: var(--ink-soft); line-height: 1.65; margin: 0; }
.detail__note {
  max-width: 64ch;
  margin-block-start: clamp(2rem, 4vw, 3rem);
  padding-block-start: var(--space-lg);
  border-block-start: 1px solid var(--line);
  color: var(--ink-soft);
}

.svc-card {
  --svc-accent: var(--primary);
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px color-mix(in srgb, var(--dark) 5%, transparent);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card--accent { --svc-accent: var(--accent); }
.svc-card--accent2 { --svc-accent: var(--accent2); }
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--svc-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--svc-accent) 40%, var(--line));
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-lg);
  text-decoration: none;
  color: var(--ink);
}
.svc-card__icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--svc-accent) 14%, var(--surface));
  margin-block-end: var(--space-md);
}
.svc-card__title { font-size: var(--step-1); margin: 0 0 0.5rem; }
.svc-card__text { color: var(--ink-soft); margin: 0 0 var(--space-md); font-size: var(--step-0); }
.svc-card__more {
  margin-block-start: auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: var(--svc-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.svc-card__more span { transition: transform 0.2s ease; }
.svc-card:hover .svc-card__more span { transform: translateX(4px); }

/* Geometrische Leistungs-Marke */
.svc-icon { width: 34px; height: 34px; }
.svc-icon__line { stroke: var(--svc-accent); stroke-width: 2.4; stroke-linejoin: round; stroke-linecap: round; fill: none; }
.svc-icon__fill { fill: var(--svc-accent); }
.svc-icon__fill-stroke { stroke: var(--svc-accent); stroke-width: 2.4; stroke-linecap: round; }

/* ═══════════ FEATURE-SPLIT ═══════════ */

.featuresplit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.featuresplit--flip .featuresplit__copy { order: 2; }
.featuresplit__body { color: var(--ink-soft); margin-block: var(--space-md); }
.featuresplit__body > * + * { margin-block-start: var(--space-sm); }
.featuresplit .display-3 { margin-block-start: 0.4em; }
.featuresplit .btn { margin-block-start: var(--space-md); }

/* Checkliste */
.checklist { list-style: none; margin: var(--space-md) 0; padding: 0; display: grid; gap: var(--space-sm); }
.checklist li {
  position: relative;
  padding-inline-start: 2rem;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 1.2rem; height: 1.2rem;
  background: var(--primary);
  border-radius: 5px;
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 0.4rem; top: 0.42em;
  width: 0.32rem; height: 0.62rem;
  border: solid #ffffff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checklist--sm li { font-size: var(--step--1); padding-inline-start: 1.7rem; }
.checklist--sm li::before { width: 1rem; height: 1rem; top: 0.2em; }
.checklist--sm li::after { left: 0.34rem; top: 0.4em; height: 0.5rem; width: 0.28rem; }

/* Feature-Medien (Bild bevorzugt, sonst ruhige Platzhalter-Grafik) */
.featuresplit__media {
  --fm-accent: var(--accent);
  position: relative;
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, var(--fm-accent) 9%, var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.featuresplit__media--primary { --fm-accent: var(--primary); }
.featuresplit__media--accent2 { --fm-accent: var(--accent2); }
.featuresplit__media--photo { background: none; border: none; }
.featuresplit__media--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
/* Porträt-Variante: Hochformat-Rahmen passend zum freigestellten Foto,
   Bildausschnitt oben verankert (Kopf bleibt, nichts wird oben abgeschnitten). */
.featuresplit__media--portrait { aspect-ratio: 4 / 5; background: var(--surface); }
.featuresplit__media--portrait img { object-position: center top; }
/* UI-Mockup/Screenshot: Bild frei stellen (eigener heller Grund), nur dezenter Schatten, kein Rahmen-Kasten */
.featuresplit__media--shot { aspect-ratio: auto; background: none; border: none; padding: 0; box-shadow: none; overflow: visible; }
.featuresplit__media--shot img { width: 100%; aspect-ratio: auto; height: auto; object-fit: contain; border-radius: var(--radius-lg); box-shadow: 0 18px 48px -12px color-mix(in srgb, var(--dark) 28%, transparent); }
/* Mockups bekommen die breitere Spalte, damit der Screenshot groß genug wirkt */
@media (min-width: 768px) {
  .featuresplit--mediawide .featuresplit__inner { grid-template-columns: 0.78fr 1.22fr; gap: clamp(2rem, 4vw, 3.5rem); }
  .featuresplit--mediawide.featuresplit--flip .featuresplit__inner { grid-template-columns: 1.22fr 0.78fr; }
}
.featmedia { position: absolute; inset: 0; display: grid; place-items: center; }
.featmedia__ring {
  width: 46%; aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--fm-accent) 50%, var(--line));
  border-radius: 50%;
}
.featmedia__dot {
  position: absolute;
  width: 20%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fm-accent);
}

/* ═══════════ SHOWCASE (breites UI-Mockup mit kurzem Intro) ═══════════ */
.showcase__intro { max-width: 720px; margin-inline: auto; margin-block-end: var(--space-lg); }
/* Nur die Überschrift zentriert, der Fließtext bleibt linksbündig (liest sich besser) */
.showcase__intro .display-3 { text-align: center; margin-block-end: var(--space-md); }
.showcase__intro .prose { text-align: left; }
.showcase__intro .prose > * + * { margin-block-start: var(--space-md); }
.showcase__intro .prose p { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.7; }
.showcase__intro .prose > p:first-child { color: var(--ink); }
.showcase__intro .prose strong { color: var(--ink); font-weight: 600; }
.showcase__intro .prose a { color: var(--primary); font-weight: 500; }
.showcase__intro .prose ul { list-style: none; margin: var(--space-lg) 0 0; padding: 0; display: grid; gap: 0.8rem; }
.showcase__intro .prose li { position: relative; padding-inline-start: 1.6rem; color: var(--ink-soft); line-height: 1.6; }
.showcase__intro .prose li::before { content: ""; position: absolute; inset-inline-start: 0; inset-block-start: 0.5em; width: 7px; height: 7px; border-radius: 2px; background: var(--primary); }
.showcase__intro .prose li strong { color: var(--ink); }
/* Optionaler Textabsatz UNTER dem Bild (rahmt das Mockup redaktionell ein) */
.showcase__after { max-width: 720px; margin-inline: auto; margin-block-start: var(--space-lg); }
.showcase__after p { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.7; }
.showcase__after strong { color: var(--ink); font-weight: 600; }
.showcase__after a { color: var(--primary); font-weight: 500; }
.showcase__figure { margin: 0; }
.showcase__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 26px 64px -20px color-mix(in srgb, var(--dark) 34%, transparent);
}
.showcase__caption {
  margin-block-start: var(--space-sm);
  font-size: var(--step--1);
  color: var(--ink-soft);
  max-width: 760px;
}
.showcase__caption::before { content: "› "; color: var(--primary); font-weight: 700; }

/* ═══════════ COMPARE (Gegenüberstellung Lokal/National) ═══════════ */
.compare { display: grid; gap: var(--space-md); margin-block-start: var(--space-lg); }
@media (min-width: 720px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__col {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff;
}
.compare__col--accent {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--line));
  background: color-mix(in srgb, var(--primary) 4%, #fff);
}
.compare__label {
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
  color: var(--ink); margin: 0 0 var(--space-md); display: flex; align-items: center; gap: 0.55rem;
}
.compare__col--accent .compare__label { color: var(--primary); }
.compare__col--accent .compare__label::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--primary); }
.compare__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.compare__list li { position: relative; padding-inline-start: 1.4rem; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.5; }
.compare__list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.compare__col--accent .compare__list li::before { background: var(--primary); }
.compare__note { margin-block-start: var(--space-lg); color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; max-width: 70ch; }
.compare__note a { color: var(--primary); font-weight: 500; }

/* ═══════════ TECH-LOGOS (Damit arbeite ich) ═══════════ */
/* Tools-Band: etwas deutlichere Tönung (hebt sich gegen weisse Nachbarn ab), nutzt section--tint fürs Padding-Kollaps */
.techlogos-band { background: color-mix(in srgb, var(--primary) 6%, #fff); }
/* Getöntes Band: symmetrisches Padding behalten, auch wenn .cta folgt (sonst kleben die Logos am unteren Rand) */
.techlogos-band:has(+ .cta), .techlogos-band:has(+ .cta-band) { padding-block-end: calc(var(--section-pad) / 2); }
.techlogos { list-style: none; margin: 0 auto; padding: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 4.5vw, 3.6rem); max-width: 980px; }
.techlogos li { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.techlogos img { height: 30px; width: auto; object-fit: contain; opacity: 0.82; transition: opacity 0.2s ease; }
.techlogos img.is-icon { height: 48px; }
.techlogos img:hover { opacity: 1; }

/* ═══════════ STATS-BAND ═══════════ */

.statsband__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  list-style: none;
  margin: 0; padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-block: 2px solid var(--ink);
}
.statsband__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding-inline: var(--space-md);
  border-inline-start: 1px solid var(--line);
}
.statsband__item:first-child { border-inline-start: none; }
.statsband__rule { width: 28px; height: 2px; border-radius: 2px; background: var(--primary); margin-block: 0.1rem; }
.statsband__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.06;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.16em;
  white-space: nowrap;
}
.statsband__suffix { font-size: 0.46em; font-weight: 600; letter-spacing: 0; color: var(--accent2); }
.statsband__label { font-size: var(--step-0); color: var(--ink-soft); line-height: 1.4; }

/* ═══════════ PROZESS ═══════════ */

.process__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: step;
}
@media (min-width: 1024px) { .process__list { grid-template-columns: repeat(var(--steps, 5), 1fr); } }
.process__step { position: relative; padding-block-start: var(--space-md); }
.process__step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--line);
}
.process__step::after {
  content: "";
  position: absolute;
  top: -4px; left: 0;
  width: 11px; height: 11px;
  background: var(--primary);
  border-radius: 50%;
}
.process__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-3);
  color: color-mix(in srgb, var(--accent) 35%, var(--paper));
  letter-spacing: -0.02em;
}
.process__title { font-size: var(--step-1); margin: var(--space-sm) 0 0.4rem; }
.process__text { color: var(--ink-soft); margin: 0; }

/* ═══════════ TESTIMONIALS ═══════════ */

.testimonials__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0; padding: 0;
}
.testimonial {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.1em; right: 0.3em;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent2) 45%, var(--surface));
}
.testimonial__quote { margin: 0 0 var(--space-md); font-size: var(--step-1); line-height: 1.4; }
.testimonial__cite { display: flex; flex-direction: column; margin: 0; }
.testimonial__name { font-family: var(--font-display); font-weight: 600; }
.testimonial__role { font-size: var(--step--1); color: var(--ink-soft); }

/* ═══════════ PRICING ═══════════ */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.price-card--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}
.price-card__badge {
  position: absolute;
  top: -0.85rem; left: var(--space-lg);
  background: var(--primary);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}
.price-card__name { font-size: var(--step-2); margin: 0; }
.price-card__tagline { color: var(--ink-soft); margin: 0 0 var(--space-sm); }
.price-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-3);
  color: var(--ink);
  margin: var(--space-sm) 0 0;
  letter-spacing: -0.02em;
}
.price-card__prefix { font-size: var(--step-0); font-weight: 500; color: var(--ink-soft); margin-inline-end: 0.3em; }
.price-card__unit { font-size: var(--step-0); font-weight: 500; color: var(--ink-soft); }
.price-card__sub { font-size: var(--step--1); color: var(--ink-soft); margin: 0.2rem 0 var(--space-sm); }
.price-card .checklist { margin-block: var(--space-md); }
.price-card .btn { margin-block-start: auto; justify-content: center; }
.pricing__note {
  margin-block-start: var(--space-lg);
  font-size: var(--step--1);
  color: var(--ink-soft);
  text-align: center;
  max-width: 64ch;
  margin-inline: auto;
}

/* ═══════════ FAQ ═══════════ */

.faq__list { display: grid; gap: var(--space-sm); }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 var(--space-md);
}
.faq__item[open] { border-color: color-mix(in srgb, var(--primary) 40%, var(--line)); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-1);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__sign { position: relative; width: 18px; height: 18px; flex: none; }
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.faq__sign::before { top: 8px; left: 0; width: 18px; height: 2.5px; }
.faq__sign::after { left: 8px; top: 0; width: 2.5px; height: 18px; }
.faq__item[open] .faq__sign::after { transform: scaleY(0); }
.faq__a { padding: 0 0 var(--space-md); color: var(--ink-soft); }
.faq__a > * + * { margin-block-start: var(--space-sm); }

/* ═══════════ CTA-BAND ═══════════ */

/* ═══════════ CTA (zentriert, mit Trust-Zeile) ═══════════ */
.cta { padding-block: var(--section-pad); }
.cta__panel {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.cta__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pop);
  margin: 0 0 var(--space-sm);
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.cta__text {
  margin: var(--space-md) auto 0;
  max-width: 52ch;
  color: color-mix(in srgb, var(--paper) 80%, transparent);
  font-size: var(--step-1);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-block-start: clamp(1.75rem, 3vw, 2.25rem);
}
.cta__trust {
  list-style: none;
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: var(--space-lg) 0 0;
  border-block-start: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
}
.cta__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step-0);
  color: color-mix(in srgb, var(--paper) 85%, transparent);
}
.cta__trust strong { color: #fff; }
.cta__trust-icon { width: 18px; height: 18px; flex: none; color: var(--pop); }
.cta__trust-icon--star { color: var(--gold); }

.cta-band {
  --cta-bg: var(--primary);
  --cta-fg: var(--paper);
  margin-block: var(--section-pad);
  position: relative;
}
.cta-band--accent { --cta-bg: var(--accent); }
.cta-band--ink { --cta-bg: var(--ink); }
.cta-band__inner {
  position: relative;
  background: var(--cta-bg);
  color: var(--cta-fg);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: var(--space-lg) clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
}
@media (max-width: 760px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band__shape {
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; aspect-ratio: 1;
  border: 36px solid color-mix(in srgb, var(--paper) 14%, transparent);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band__copy { position: relative; z-index: 1; max-width: 42ch; }
.cta-band__title { color: var(--cta-fg); margin: 0; font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.12; letter-spacing: -0.02em; }
.cta-band__text { margin: var(--space-sm) 0 0; color: color-mix(in srgb, var(--paper) 88%, transparent); font-size: var(--step-1); }
.cta-band__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: var(--space-md) 0 0;
  font-size: var(--step-0);
  color: color-mix(in srgb, var(--paper) 90%, transparent);
}
.cta-band__note strong { color: var(--paper); }
.cta-band__stars { display: inline-flex; gap: 2px; }
.cta-band__stars svg { width: 16px; height: 16px; color: var(--gold); }
.cta-band__actions { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: stretch; gap: var(--space-sm); }
.cta-band__actions .btn { justify-content: center; }
@media (max-width: 760px) { .cta-band__actions { flex-direction: row; flex-wrap: wrap; } }
.btn--invert { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--invert:hover { background: var(--surface); color: var(--ink); border-color: var(--surface); }

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__figure { order: -1; min-height: 260px; }
  .herofig { width: min(340px, 80%); }
  .featuresplit__inner { grid-template-columns: 1fr; }
  .featuresplit--flip .featuresplit__copy { order: 0; }
}

@media (max-width: 560px) {
  .statsband__item { border-inline-start: none; padding-inline: 0; }
  .cta-band__inner { padding: var(--space-lg); }
}

/* ═══════════ HERO-FOTO ═══════════ */

.hero__figure--photo { min-height: 0; }
.hero__photo {
  position: relative;
  width: min(440px, 100%);
  margin-inline: auto;
  aspect-ratio: 1;
}
.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -7%; bottom: -7%;
  width: 58%; aspect-ratio: 1;
  background: color-mix(in srgb, var(--primary) 16%, var(--paper));
  border-radius: var(--radius-lg);
}
.hero__photo-accent {
  position: absolute;
  z-index: 2;
  left: -16px; top: 26px;
  width: 60px; height: 60px;
  border: 3px solid var(--neon);
  border-radius: 50%;
}

/* ═══════════ TRUST-BAR LOGOS ═══════════ */

.trustbar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-xl);
  list-style: none;
  margin: 0; padding: 0;
}
.trustbar__logos li { display: flex; }
.trustbar__logos img {
  height: 40px; width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.trustbar__logos li:hover img { filter: grayscale(0); opacity: 1; }

/* ═══════════ AKZENTE ═══════════ */

.svc-card:hover {
  box-shadow: var(--shadow), 0 0 0 1px color-mix(in srgb, var(--svc-accent) 35%, transparent);
}

/* ═══════════ HERO (dunkel, Slate) ═══════════ */

.hero { background: var(--dark); color: #f6f2e8; overflow: hidden; }
.hero .eyebrow { color: color-mix(in srgb, var(--paper) 78%, transparent); }
.hero .eyebrow::before { background: var(--pop); }
.hero__title { color: #f7f3ea; letter-spacing: -0.03em; }
.hero__title .accent { color: var(--pop); }
.hero__subtitle { color: color-mix(in srgb, var(--paper) 80%, transparent); }
.hero__meta { color: color-mix(in srgb, var(--paper) 75%, transparent); }
.hero__meta li::before { background: var(--pop); }

/* Hero-Buttons auf Dunkel */
.hero__actions .btn:first-child {
  background: #fff; border-color: #fff; color: var(--ink);
}
.hero__actions .btn:first-child:hover {
  background: color-mix(in srgb, #fff 86%, var(--ink));
  border-color: color-mix(in srgb, #fff 86%, var(--ink));
  color: var(--ink);
}
.hero__actions .btn--ghost {
  color: #f6f2e8;
  border-color: color-mix(in srgb, var(--paper) 38%, transparent);
}
.hero__actions .btn--ghost:hover { color: #fff; border-color: #f6f2e8; }

/* Hero-Foto: scharfer Rahmen, dezenter Teal-Block, kein Kreis */
.hero__photo {
  width: min(440px, 100%);
  aspect-ratio: auto;
}
.hero__photo img {
  display: block;
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__photo::before { display: none; }
.hero__photo-accent { display: none; }

/* Google-Bewertung im Hero */
.hero__rating {
  display: flex; align-items: center; gap: 0.6rem;
  margin-block-start: var(--space-lg);
}
.hero__stars { display: inline-flex; gap: 3px; }
.hero__stars svg { width: 22px; height: 22px; fill: var(--gold); }
.hero__rating-text { font-size: var(--step-0); color: color-mix(in srgb, var(--paper) 82%, transparent); }
.hero__rating-text strong { color: #f6f2e8; font-family: var(--font-display); font-weight: 600; }
.hero__rating + .hero__meta { margin-block-start: var(--space-sm); }

/* ═══════════ LOGO-MARQUEE (animierte Kundenlogos) ═══════════ */

.trustbar__marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.trustbar__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 58s linear infinite;
}
.trustbar__group {
  display: flex;
  align-items: center;
  gap: 84px;
  padding-inline-end: 84px;
  margin: 0;
  padding-block: 0;
  padding-inline-start: 0;
  list-style: none;
  flex: none;
}
.trustbar__marquee:hover .trustbar__track { animation-play-state: paused; }
.trustbar__group li { flex: none; display: flex; align-items: center; }
.trustbar__group img {
  max-width: 240px; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.trustbar__group li:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trustbar__track { animation: none; width: 100%; }
  .trustbar__group:nth-child(2) { display: none; }
  .trustbar__group { flex-wrap: wrap; justify-content: center; row-gap: 24px; padding-inline-end: 0; }
}
.trustbar__label--center { text-align: center; margin-block-end: var(--space-md); }

/* ═══════════ CTA-BAND (dunkel + Neon) ═══════════ */

.cta-band--dark .cta-band__inner { background: var(--dark); color: #f6f2e8; }
.cta-band--dark .cta-band__title { color: #f7f3ea; }
.cta-band--dark .cta-band__text { color: color-mix(in srgb, var(--paper) 82%, transparent); }

/* ═══════════ FEATURE-SPLIT OHNE BILD (einspaltig) ═══════════ */
.featuresplit--nomedia .featuresplit__inner { grid-template-columns: 1fr; max-width: 920px; }
.featuresplit--nomedia .checklist { grid-template-columns: 1fr 1fr; gap: var(--space-sm) var(--space-lg); }
@media (max-width: 640px) { .featuresplit--nomedia .checklist { grid-template-columns: 1fr; } }

/* ═══════════ NEON-HIGHLIGHT (Marker hinter Schlüsselwörtern) ═══════════ */
.hl {
  background: var(--pop);
  color: var(--ink);
  padding: 0.02em 0.22em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ═══════════ C-SKIN: dunkles Stats-Band ═══════════ */
.statsband.section { background: var(--dark); padding-block: clamp(3rem, 5vw, 4.25rem); }
.statsband + .section { padding-block-start: var(--section-pad); }
.statsband__list { border-block: none; padding-block: 0; align-items: start; }
.statsband__item { border-inline-start-color: color-mix(in srgb, var(--paper) 16%, transparent); }
.statsband__rule { background: var(--pop); }
.statsband__value { color: #ffffff; }
.statsband__suffix { color: color-mix(in srgb, #ffffff 82%, transparent); }
.statsband__label { color: color-mix(in srgb, var(--paper) 72%, transparent); }

/* ═══════════ GOOGLE-BEWERTUNGEN ═══════════ */
.reviews__summary { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-block-end: var(--space-lg); font-size: var(--step-0); color: var(--ink-soft); }
.reviews__summary strong { color: var(--ink); font-family: var(--font-display); }
.reviews__stars { display: inline-flex; gap: 2px; }
.reviews__stars svg { width: 18px; height: 18px; fill: var(--gold); }
.reviews__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); list-style: none; margin: 0; padding: 0; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-lg); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--primary) 30%, var(--line)); }
.review__stars { display: inline-flex; gap: 2px; margin-block-end: var(--space-sm); }
.review__stars svg { width: 18px; height: 18px; fill: var(--gold); }
.review__text { margin: 0 0 var(--space-md); color: var(--ink); line-height: 1.55; }
.review__cite { display: flex; flex-direction: column; margin: 0; }
.review__name { font-family: var(--font-display); font-weight: 600; }
.review__src { font-size: var(--step--1); color: var(--ink-soft); }

/* ═══════════ SEITEN-HEADER (Unterseiten) ═══════════ */
.page-header { background: var(--dark); color: #f6f2e8; padding-block: clamp(3rem, 4vw, 5rem); }
.page-header__title { color: #f7f3ea; margin-block: 0.3em 0; max-width: 22ch; }
.page-header__intro { color: color-mix(in srgb, var(--paper) 80%, transparent); margin-block-start: var(--space-md); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; font-size: var(--step--1); margin-block-end: var(--space-md); }
.crumbs a { color: color-mix(in srgb, var(--paper) 72%, transparent); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs__sep { color: color-mix(in srgb, var(--paper) 38%, transparent); }

/* ═══════════ KONTAKT ═══════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
/* Beide Spalten-H2 (Kontaktdaten + Formular) gleich gross: einheitliche Hierarchie */
.contact-grid .display-3, .contact-grid .lead-form__heading { font-size: var(--step-2); }
.contact-info .lead { margin-block: var(--space-md) var(--space-lg); }
/* Formular-Box bündig mit der Kontaktdaten-Spalte: kein Box-Versatz, füllt die Spalte */
.contact-grid .lead-form { margin-block: 0; max-width: none; }
.contact-grid .contact-info { padding-block-start: var(--space-lg); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-md); }
.contact-list li { display: grid; gap: 0.2rem; }
.contact-list__label { font-family: var(--font-display); font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.contact-list a { font-size: var(--step-1); font-family: var(--font-display); text-decoration: none; }
.contact-list address { font-style: normal; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────
   Responsive Images — Base Styles
   Add these rules to your main stylesheet.
   Required for proper responsive behavior and CLS prevention.
   ───────────────────────────────────────────────────────── */

/* Core responsive image behavior + CLS prevention */
img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
}

/* Ensure <picture> wrapper doesn't break layout */
picture {
  display: block;
}

/* ─────────────────────────────────────────────────────────
   Hero Image — Optional utility class
   Apply to the hero <img> or wrapping <picture> element.
   Use with eleventy:pictureattr:class="hero-image" on the <img>.
   ───────────────────────────────────────────────────────── */
.hero-image {
  inline-size: 100%;
}

.hero-image img {
  inline-size: 100%;
  block-size: auto;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────────────
   Content Images — Optional styling
   Images within the main content column.
   ───────────────────────────────────────────────────────── */
.content img,
.prose img {
  border-radius: 4px;
  margin-block: 1.5rem;
}

/* ─────────────────────────────────────────────────────────
   Thumbnail / Card Images — Optional
   For card grid layouts with fixed aspect ratio.
   ───────────────────────────────────────────────────────── */
.card-image img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* ═══════════ SITE-HEADER (sticky) ═══════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border-block-end: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  border-block-end-color: var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 68px;
}

/* ── Marke ── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--ink); }
.brand__logo { height: 34px; width: auto; display: block; }

/* ── Primär-Navigation ── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.5vw, 1.25rem);
  list-style: none;
  margin: 0; padding: 0;
}
.primary-nav__item { position: relative; }
.primary-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.5rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-0);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav__link:hover { color: var(--primary); }
.primary-nav__link[aria-current="page"] { color: var(--primary); }
.caret {
  width: 0.5em; height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

/* ── Dropdown ── */
.subnav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -0.75rem;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-sub:hover .caret,
.has-sub:focus-within .caret { transform: translateY(1px) rotate(225deg); }
.subnav a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
}
.subnav a:hover { background: color-mix(in srgb, var(--primary) 10%, var(--surface)); color: var(--ink); }
.subnav a[aria-current="page"] { background: color-mix(in srgb, var(--primary) 12%, var(--surface)); }
.subnav__label { font-family: var(--font-display); font-weight: 500; display: block; }
.subnav__hint { font-size: var(--step--1); color: var(--ink-soft); }

/* ── Telefon-CTA ── */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55rem 1.1rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-0);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.nav-phone:hover { background: var(--primary); color: var(--paper); border-color: var(--primary); }
.nav-phone__icon {
  width: 16px; height: 16px;
  color: var(--primary);
  flex: none;
}
.nav-phone:hover .nav-phone__icon { color: var(--paper); }

/* ── Mobile-Toggle ── */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__box { position: relative; display: block; width: 20px; height: 14px; margin: 0 auto; }
.nav-toggle__line, .nav-toggle__box::before, .nav-toggle__box::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__box::before { top: 0; }
.nav-toggle__line { top: 6px; }
.nav-toggle__box::after { bottom: 0; }

/* ═══════════ MOBILE ═══════════ */

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    background: var(--paper);
    border-block-end: 1px solid var(--line);
    padding: var(--space-lg) var(--container-padding) var(--space-xl);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .site-header.is-open .primary-nav { opacity: 1; visibility: visible; transform: none; }
  .site-header.is-open .nav-toggle__line { opacity: 0; }
  .site-header.is-open .nav-toggle__box::before { transform: translateY(6px) rotate(45deg); }
  .site-header.is-open .nav-toggle__box::after { transform: translateY(-6px) rotate(-45deg); }

  .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .primary-nav__item { border-block-end: 1px solid var(--line); }
  .primary-nav__link { padding: 0.9rem 0; font-size: var(--step-1); justify-content: space-between; }
  .caret { transform: rotate(45deg); }

  .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 0.5rem;
    min-width: 0;
  }
  .subnav a { padding: 0.5rem 0; }
  .subnav__hint { display: none; }

  .nav-phone { margin-block-start: var(--space-md); justify-content: center; }
}

/* ═══════════ SITE-FOOTER ═══════════ */

.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--paper) 82%, transparent);
  padding-block: clamp(3rem, 4vw, 5rem) var(--space-lg);
  border-block-start: 3px solid var(--primary);
}
.site-footer a { color: color-mix(in srgb, var(--paper) 82%, transparent); text-decoration: none; }
.site-footer a:hover { color: var(--pop); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
}

.site-footer__brandlink { display: inline-block; margin-block-end: var(--space-md); }
.site-footer__logo { height: 34px; width: auto; display: block; }
.site-footer__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: var(--space-md);
  font-size: var(--step--1);
  color: color-mix(in srgb, var(--paper) 78%, transparent);
}
.site-footer__rating strong { color: var(--paper); }
.site-footer__stars { display: inline-flex; gap: 2px; }
.site-footer__stars svg { width: 15px; height: 15px; color: var(--gold); }
.site-footer__tagline { max-width: 36ch; line-height: 1.6; margin-block-end: var(--space-md); }
.site-footer__region {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--paper) 60%, transparent);
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--pop);
  letter-spacing: 0.1em;
  margin-block-end: var(--space-md);
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.site-footer__contact address { font-style: normal; line-height: 1.9; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-block-start: clamp(2rem, 4vw, 3.5rem);
  padding-block-start: var(--space-lg);
  border-block-start: 1px solid color-mix(in srgb, var(--paper) 16%, transparent);
  font-size: var(--step--1);
  color: color-mix(in srgb, var(--paper) 64%, transparent);
}
.site-footer__legal { display: flex; gap: var(--space-md); list-style: none; margin: 0; padding: 0; }
.site-footer__cookie-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.site-footer__cookie-btn:hover { color: var(--pop); }

@media (max-width: 860px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ═══════════ LEAD FORM ═══════════ */

.lead-form {
  max-width: 32rem;
  margin: var(--space-lg) auto;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
}

.lead-form__heading {
  margin: 0 0 var(--space-md);
  font-size: 1.5rem;
}

.lead-form__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.lead-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
}

.lead-form__field input,
.lead-form__field textarea,
.lead-form__field select {
  padding: var(--space-sm) 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}

.lead-form__field input:focus,
.lead-form__field textarea:focus,
.lead-form__field select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

.lead-form__consent {
  font-size: 0.8125rem;
}

.lead-form__consent a {
  color: var(--color-primary);
}

.lead-form__submit {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════ BLOG ═══════════════════════════════ */
/* Archiv-Grid, Artikel-Layout und Inline-Konventionsklassen für Beiträge.
   Nur Design-Tokens aus _base.css, keine Hardcodes (außer #fff). */

/* ─────────────── Archiv: Karten-Grid ─────────────── */

.post-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary) 55%, var(--line));
}

.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
  border-block-end: 1px solid var(--line);
}
.post-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card__media img { transform: scale(1.04); }

.post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.post-card__cat {
  color: var(--primary-dark);
  padding-inline-start: 0.6rem;
  border-inline-start: 1px solid var(--line-strong);
}

.post-card__title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
  color: var(--ink);
}
.post-card:hover .post-card__title { color: var(--primary-dark); }

.post-card__excerpt {
  margin: 0 0 var(--space-md);
  color: var(--ink-soft);
  font-size: var(--step-0);
}

.post-card__more {
  margin-block-start: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--primary);
}
.post-card__arrow { transition: transform 0.18s ease; }
.post-card:hover .post-card__arrow { transform: translateX(4px); }

/* Leerer Zustand (noch keine Beiträge) */
.post-empty {
  font-size: var(--step-1);
  color: var(--ink-soft);
  text-align: center;
  max-width: 46ch;
  margin-inline: auto;
  padding-block: var(--space-lg);
}

/* ─────────────── Artikel: Kopf & Meta ─────────────── */

.post-header {
  padding-block: clamp(2.5rem, 4vw, 4rem) var(--space-lg);
  border-block-end: 1px solid var(--line);
}
.post-header .eyebrow { margin-block-end: var(--space-sm); }
.post-header__title {
  font-size: var(--step-4);
  line-height: 1.06;
  margin: 0.2em 0 0;
  max-width: 22ch;
}

/* Brotkrumen auf hellem Grund (Basis-.crumbs ist für dunkle Bänder) */
.crumbs--light a { color: var(--ink-soft); }
.crumbs--light a:hover { color: var(--primary); }
.crumbs--light [aria-current="page"] { color: var(--ink); }
.crumbs--light .crumbs__sep { color: var(--line-strong); }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: var(--space-md);
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.post-meta time { font-variant-numeric: tabular-nums; }
.post-meta__dot { color: var(--line-strong); }
.post-meta__author { font-weight: 500; color: var(--ink); }

/* Titelbild des Artikels */
.post__figure {
  margin: 0;
  padding-block: var(--space-lg);
}
.post__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.post__figure figcaption {
  margin-block-start: var(--space-sm);
  font-size: var(--step--1);
  color: var(--ink-soft);
  text-align: center;
}

/* ─────────────── Artikel: lesefreundlicher Textkörper ─────────────── */

.post-body {
  max-width: 70ch;
  margin-inline: auto;
  padding-block: var(--space-lg);
  line-height: 1.75;
}
/* Bilder im Fließtext */
.post-body figure { margin-block: var(--space-lg); }
.post-body figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.post-body figcaption {
  margin-block-start: var(--space-sm);
  font-size: var(--step--1);
  color: var(--ink-soft);
  text-align: center;
}

/* ─────────────── Inline-Konventionsklassen für Autoren ─────────────── */

/* .post-box — Info-/Hinweis-Box (heller Petrol-Tint, Akzentkante links) */
.post-box {
  margin-block: var(--space-lg);
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  background: color-mix(in srgb, var(--primary) 6%, #fff);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--line));
  border-inline-start: 3px solid var(--primary);
  border-radius: var(--radius-sm);
}
.post-box > :first-child { margin-block-start: 0; }
.post-box > :last-child { margin-block-end: 0; }
.post-box__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-dark);
  margin-block-end: var(--space-xs);
}
/* Key-Takeaway-Variante (Gold-Akzent) */
.post-box--key {
  background: color-mix(in srgb, var(--gold) 10%, #fff);
  border-color: color-mix(in srgb, var(--gold) 40%, var(--line));
  border-inline-start-color: var(--gold);
}
.post-box--key .post-box__title { color: var(--ink); }

/* .post-cta — auffällige CTA-Box im Artikel (dunkles Band) */
.post-cta {
  margin-block: var(--space-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.post-cta__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: #fff;
  margin: 0 0 var(--space-sm);
}
.post-cta p { color: color-mix(in srgb, #fff 82%, transparent); margin-block: 0 var(--space-md); }
.post-cta .btn {
  --btn-bg: var(--pop);
  --btn-fg: var(--pop-ink);
  color: var(--pop-ink);
}
.post-cta .btn:hover {
  background: color-mix(in srgb, var(--pop) 84%, var(--ink));
  border-color: color-mix(in srgb, var(--pop) 84%, var(--ink));
  color: var(--pop-ink);
}

/* .post-steps — nummerierte Schritt-Liste mit Petrol-Nummern */
.post-steps {
  list-style: none;
  counter-reset: post-step;
  margin-block: var(--space-lg);
  padding: 0;
  display: grid;
  gap: var(--space-md);
}
.post-steps li {
  counter-increment: post-step;
  position: relative;
  padding-inline-start: 3.25rem;
  min-height: 2.25rem;
}
.post-steps li::before {
  content: counter(post-step, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step--1);
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius-sm);
}
.post-steps li > strong:first-child {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
}

/* ─────────────── Artikel: Autor-Box ─────────────── */

.post-author {
  margin-block: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--primary) 5%, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.post-author__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  margin: 0;
  color: var(--ink);
}
.post-author__role {
  margin: 0.1rem 0 var(--space-sm);
  color: var(--ink-soft);
  font-size: var(--step--1);
}
.post-author__bio {
  margin: 0 0 var(--space-md);
  color: var(--ink-soft);
}
.post-author__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
}
.post-author__links span { color: var(--line-strong); }

/* ═══════════ COOKIE CONSENT OVERRIDES ═══════════ */

:root {
  --cc-bg: var(--color-bg);
  --cc-text: var(--color-text);
  --cc-btn-primary-bg: var(--color-primary);
  --cc-btn-primary-text: #fff;
  --cc-btn-primary-hover-bg: var(--color-primary-hover);
  --cc-btn-secondary-bg: var(--color-bg-alt);
  --cc-btn-secondary-text: var(--color-text);
  --cc-btn-secondary-hover-bg: var(--color-border);
  --cc-toggle-bg-on: var(--color-primary);
  --cc-link: var(--color-primary);
  --cc-link-hover: var(--color-primary-hover);
  --cc-cookie-category-block-bg: var(--color-bg-alt);
  --cc-overlay-bg: rgba(0, 0, 0, 0.5);
  --cc-font-family: var(--font-sans);
  --cc-modal-border-radius: var(--radius-xl);
}

.site-footer__cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.site-footer__cookie-btn:hover {
  color: var(--color-primary);
}

