/* ==========================================================================
   Allerkamp Fassaden-Clean
   Native CSS. Self-hosted fonts. WCAG AA.
   Identity: deep indigo (brand, trust) + clean cyan (water, the offer).
   ========================================================================== */

/* ---------- Fonts (self-hosted, no CDN) ---------------------------------- */
@font-face { font-family: "Schibsted Grotesk"; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/schibsted-400.woff2) format("woff2"); }
@font-face { font-family: "Schibsted Grotesk"; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/schibsted-500.woff2) format("woff2"); }
@font-face { font-family: "Schibsted Grotesk"; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/schibsted-600.woff2) format("woff2"); }
@font-face { font-family: "Schibsted Grotesk"; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/schibsted-700.woff2) format("woff2"); }
@font-face { font-family: "Schibsted Grotesk"; font-style: normal; font-weight: 800; font-display: swap; src: url(../fonts/schibsted-800.woff2) format("woff2"); }
/* ---------- Tokens ------------------------------------------------------- */
:root {
  --font-display: "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;

  /* Light theme (default) */
  --bg: oklch(0.984 0.004 255);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.965 0.006 255);
  --surface-3: oklch(0.945 0.008 258);
  --ink: oklch(0.22 0.035 278);
  --ink-2: oklch(0.42 0.028 278);
  --ink-3: oklch(0.54 0.02 275);

  --brand: oklch(0.36 0.115 278);        /* deep indigo */
  --brand-2: oklch(0.30 0.10 280);
  --brand-deep: oklch(0.205 0.075 281);  /* darkest indigo, for dark blocks */
  --on-brand: oklch(0.97 0.006 255);

  --accent: oklch(0.66 0.135 236);       /* cyan, the "clean water" */
  --accent-strong: oklch(0.60 0.145 240);
  --accent-soft: oklch(0.93 0.04 232);
  --on-accent: oklch(0.19 0.05 278);     /* dark ink on cyan (AA) */

  --line: oklch(0.905 0.008 258);
  --line-2: oklch(0.86 0.01 260);

  --ok: oklch(0.58 0.12 155);
  --shadow-color: 278 40% 22%;
  --shadow-sm: 0 1px 2px hsl(var(--shadow-color) / 0.08);
  --shadow-md: 0 8px 24px -8px hsl(var(--shadow-color) / 0.18);
  --shadow-lg: 0 26px 60px -18px hsl(var(--shadow-color) / 0.30);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* z-scale */
  --z-header: 100;
  --z-menu: 200;
  --z-top: 300;

  color-scheme: light;
}


/* ---------- Reset / base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
/* <picture> ist nur die Huelle fuer das WebP-Fallback und darf im Layout nicht
   mitzaehlen. Sonst zielt eine Regel wie .frame img { height: 100% } auf die
   Huelle statt auf den Rahmen, und das Bild fuellt ihn nicht mehr aus. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.028em;
  text-wrap: balance;
  color: var(--ink);
}
p { text-wrap: pretty; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brand); color: var(--on-brand);
  padding: 0.6rem 1rem; border-radius: 8px; z-index: var(--z-top);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers --------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1340px; }
.wrap-narrow { max-width: 760px; }
.section { padding-block: clamp(3.75rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.75rem, 5vw, 4.25rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; border-radius: 2px;
  background: var(--accent); display: inline-block;
}

.h-xl { font-size: clamp(2.35rem, 1.55rem + 3.1vw, 3.75rem); }
.h-lg { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.3rem); }
.h-md { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.15rem); }
.lead {
  font-size: clamp(1.12rem, 1.03rem + 0.5vw, 1.42rem);
  color: var(--ink-2); line-height: 1.5; max-width: 60ch;
}
.muted { color: var(--ink-2); }
.measure { max-width: 65ch; }
.accent-word { color: var(--accent-strong); }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.02rem; line-height: 1;
  padding: 0.95rem 1.5rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.16s var(--ease), background 0.2s var(--ease),
              box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-primary {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 10px 24px -10px hsl(200 80% 40% / 0.55);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 16px 30px -12px hsl(200 80% 40% / 0.65); }

.btn-brand { background: var(--brand); color: var(--on-brand); }
.btn-brand:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* on dark hero surfaces */
.on-dark .btn-ghost { color: var(--on-brand); border-color: oklch(0.98 0 0 / 0.35); }
.on-dark .btn-ghost:hover { background: oklch(0.98 0 0 / 0.10); border-color: oklch(0.98 0 0 / 0.6); color: var(--on-brand); }

.btn-sm { padding: 0.65rem 1.05rem; font-size: 0.92rem; }
.btn-lg { padding: 1.08rem 1.9rem; font-size: 1.12rem; }
.btn-block { width: 100%; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; color: var(--brand);
  font-family: var(--font-display);
}
.arrow-link svg { width: 1.05em; height: 1.05em; transition: transform 0.2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- Header / Nav ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: color-mix(in oklab, var(--bg) 92%, transparent); }
.nav {
  display: flex; align-items: center; gap: 1rem;
  height: 72px;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
}
/* Bildmarke: Haus + Tropfen, übernommen vom bestehenden Logo (Fahrzeugbeschriftung) */
.lm-house  { fill: #85888f; }
.lm-drop   { fill: #2a0d84; }
.footer-brand .lm-house  { fill: oklch(1 0 0 / 0.42); }
.footer-brand .lm-drop   { fill: #fff; }

.nav-links { display: flex; align-items: center; gap: 0.15rem; margin-left: auto; }
.nav-links a {
  padding: 0.5rem 0.62rem; border-radius: 8px; font-weight: 600; font-size: 0.94rem;
  color: var(--ink-2); transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--brand); }

.nav-cta { margin-left: 0.25rem; }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: 0.75rem; }
.nav-links:not(:last-child) ~ .nav-actions { margin-left: 0.75rem; }

.menu-toggle {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--line);
  cursor: pointer; color: var(--ink); transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}
.menu-toggle:hover { background: var(--surface-3); }

.menu-toggle { display: none; }
.menu-toggle svg { width: 22px; height: 22px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--bg); padding: 1.15rem var(--gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.32s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: 72px; margin-bottom: 0.5rem; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-menu nav a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  padding: 0.7rem 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu nav a.active { color: var(--brand); }
.mobile-menu .btn { margin-top: 1.4rem; }
.mm-contact { margin-top: auto; padding-top: 1.5rem; color: var(--ink-2); font-size: 0.95rem; display: grid; gap: 0.35rem; }
.mm-contact a { color: var(--brand); font-weight: 600; }

body.menu-open { overflow: hidden; }

/* ---------- Hero -------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.on-dark { background: var(--brand-deep); color: var(--on-brand); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--on-brand); }
.on-dark .lead, .on-dark .muted { color: oklch(0.86 0.02 255); }

.hero-home { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.hero-copy { max-width: 40ch; }
/* Startseite: laengere, sachliche Headline braucht mehr Breite */
.hero-home .hero-grid { grid-template-columns: 1fr 1.2fr; }
.hero-home .hero-copy { max-width: 45ch; }
.hero-home .hero-copy h1 { font-size: clamp(2.1rem, 1.35rem + 2.5vw, 2.95rem); }
.hero-copy h1 { margin-block: 1.1rem 1.15rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.7rem; }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; margin-top: 1.9rem; }
.assure-item { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.95rem; color: oklch(0.88 0.02 255); font-weight: 500; }
.assure-item svg { width: 1.2rem; height: 1.2rem; color: var(--accent); flex: none; }

/* decorative aurora on dark hero (subtle, not AI-purple) */
.hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-glow::before, .hero-glow::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.hero-glow::before { width: 45vw; height: 45vw; top: -20%; right: -10%; background: radial-gradient(circle, oklch(0.62 0.15 235 / 0.55), transparent 70%); }
.hero-glow::after { width: 38vw; height: 38vw; bottom: -25%; left: -12%; background: radial-gradient(circle, oklch(0.45 0.13 285 / 0.5), transparent 70%); }
.hero > .wrap { position: relative; z-index: 1; }

/* ---------- Media frames (real photos) --------------------------------- */
.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-2); box-shadow: var(--shadow-lg);
  border: 1px solid oklch(1 0 0 / 0.08);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 1rem; font-size: 0.9rem; font-weight: 600; color: #fff;
  background: linear-gradient(to top, oklch(0.15 0.04 280 / 0.82), transparent);
}
.frame-tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--accent); color: var(--on-accent);
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  padding: 0.4rem 0.8rem; border-radius: 999px;
}
.frame img.pos-top { object-position: center 20%; }
.frame img.pos-right { object-position: 72% center; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-16-10 { aspect-ratio: 16 / 10; }

/* ---------- Styled photo placeholders (Nano Banana slots) --------------- */

/* light-surface variant of slot (used inside light sections when needed) */

/* ---------- Google rating element -------------------------------------- */
.google-rating {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.55rem 1.1rem 0.55rem 0.7rem;
  box-shadow: var(--shadow-sm);
}
.google-rating .g-logo { width: 24px; height: 24px; flex: none; }
.google-rating .g-stars { display: inline-flex; gap: 2px; }
.google-rating .g-stars svg { width: 17px; height: 17px; color: #f5a623; }
.google-rating .g-text { font-size: 0.9rem; line-height: 1.2; }
.google-rating .g-text b { font-family: var(--font-display); font-weight: 800; }
.google-rating .g-text span { display: block; color: var(--ink-2); font-size: 0.8rem; }

/* ---------- Trust strip ------------------------------------------------- */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.3rem 2.2rem;
  justify-content: center;
}
.trust-item { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.96rem; color: var(--ink-2); }
.trust-item svg { width: 1.35rem; height: 1.35rem; color: var(--accent-strong); flex: none; }
.trust-item img { height: 46px; width: auto; }

/* ---------- Feature / benefit grid ------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 2.5vw, 1.9rem);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.panel-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.panel h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.panel p { color: var(--ink-2); font-size: 0.98rem; }
.panel .p-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-strong); margin-bottom: 1rem;
}
.panel .p-icon svg { width: 25px; height: 25px; }

/* split feature rows (zig-zag) */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-copy h2 { margin-bottom: 1rem; }
.split-copy p { color: var(--ink-2); margin-bottom: 1rem; }

/* ---------- HERMES process --------------------------------------------- */
.steps { display: grid; gap: 1.1rem; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.35rem 1.4rem;
  display: flex; flex-direction: column;
}
.step .step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--brand); color: var(--on-brand); margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.14rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.step p { color: var(--ink-2); font-size: 0.95rem; }
.step-badge {
  align-self: flex-start; margin-top: 0.9rem;
  font-size: 0.76rem; font-weight: 700; color: var(--accent-strong);
  background: var(--accent-soft); padding: 0.28rem 0.6rem; border-radius: 999px;
}

/* ---------- Big statement / marquee-free bold block -------------------- */
.statement { text-align: center; max-width: 22ch; margin-inline: auto; }
.statement .h-lg { line-height: 1.02; }

.figure-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.figure {
  padding: 1.6rem 1.4rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.figure .fig-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.3rem, 5vw, 3.2rem); line-height: 1; color: var(--brand); letter-spacing: -0.04em; }
.figure .fig-label { margin-top: 0.6rem; color: var(--ink-2); font-size: 0.98rem; }

/* ---------- Audience path cards ---------------------------------------- */
.path-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3vw, 2.4rem); min-height: 340px;
  display: flex; flex-direction: column;
  border: 1px solid var(--line); background: var(--surface);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.path-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.path-card.path-private { background: linear-gradient(160deg, var(--surface), var(--accent-soft)); }
.path-card.path-verwaltung { color: var(--on-brand); background: linear-gradient(160deg, var(--brand-2), var(--brand-deep)); border-color: transparent; }
.path-card.path-verwaltung h3, .path-card.path-verwaltung p { color: var(--on-brand); }
.path-card .pc-kicker { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.7rem; }
.path-card.path-private .pc-kicker { color: var(--accent-strong); }
.path-card.path-verwaltung .pc-kicker { color: var(--accent); }
.path-card h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.7rem; }
.path-card p { margin-bottom: 1.1rem; opacity: 0.95; }
.path-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 0.5rem; }
.path-card li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.97rem; }
.path-card li svg { width: 1.15rem; height: 1.15rem; flex: none; margin-top: 0.2rem; color: var(--accent-strong); }
.path-card.path-verwaltung li svg { color: var(--accent); }
.path-card .pc-foot { margin-top: auto; }
.path-card.path-verwaltung .pc-foot { color: var(--on-brand); }

/* ---------- FAQ / accordion -------------------------------------------- */
.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.4rem 1.3rem; transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 0; font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq-plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform 0.25s var(--ease); }
.faq summary .faq-plus::before, .faq summary .faq-plus::after {
  content: ""; position: absolute; background: var(--brand); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq summary .faq-plus::before { width: 14px; height: 2.5px; }
.faq summary .faq-plus::after { width: 2.5px; height: 14px; transition: transform 0.25s var(--ease); }
.faq details[open] summary .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq details[open] summary .faq-plus { transform: rotate(90deg); }
.faq-body { padding: 0 0 1.2rem; color: var(--ink-2); }
.faq-body p + p { margin-top: 0.7rem; }

/* ---------- Testimonial placeholder slots ------------------------------ */
.quote-slot {
  background: var(--surface); border: 1px dashed var(--line-2); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.quote-slot .qs-stars { display: inline-flex; gap: 2px; }
.quote-slot .qs-stars svg { width: 16px; height: 16px; color: #f5a623; }
.quote-slot .qs-body { color: var(--ink-2); font-style: italic; line-height: 1.55; }
.quote-slot .qs-foot { display: flex; align-items: center; gap: 0.6rem; margin-top: auto; }
.quote-slot .qs-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--surface-3); display: grid; place-items: center; color: var(--ink-3); flex: none; }
.quote-slot .qs-avatar svg { width: 20px; height: 20px; }
.quote-slot .qs-note { font-size: 0.82rem; font-weight: 700; color: var(--accent-strong); }
.quote-slot .qs-meta { font-size: 0.85rem; color: var(--ink-3); }

/* ---------- CTA band ---------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.cta-inner { position: relative; z-index: 1; padding: clamp(2.2rem, 5vw, 4rem); text-align: center; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner .lead { margin-inline: auto; margin-bottom: 1.8rem; color: oklch(0.88 0.02 255); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ---------- Forms ------------------------------------------------------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.field { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; }
.field label { font-weight: 600; font-size: 0.96rem; }
.field .req { color: var(--accent-strong); }
.field .hint { font-size: 0.83rem; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 0.95rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-2); background: var(--surface-2); color: var(--ink);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 30%, transparent);
  background: var(--surface);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b8a' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 18px; padding-right: 2.6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.radio-group { display: grid; gap: 0.6rem; }
.radio {
  display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.85rem 1rem;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.radio:hover { border-color: var(--accent-strong); }
.radio input { width: 20px; height: 20px; margin-top: 0.15rem; accent-color: var(--accent-strong); flex: none; }
.radio .r-label { font-weight: 600; }
.radio .r-desc { font-size: 0.86rem; color: var(--ink-2); display: block; font-weight: 400; }
.radio:has(input:checked) { border-color: var(--accent-strong); background: color-mix(in oklab, var(--accent) 8%, var(--surface)); }

.form-conditional { display: none; }
.form-conditional.show { display: block; animation: fadeSlide 0.3s var(--ease); }

/* Zwei Wege: die Weiche als zwei Schalter nebeneinander */
.weg-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.weg-option {
  display: block; text-align: center; padding: 0.9rem 1rem;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); cursor: pointer;
  font-weight: 600; line-height: 1.25;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.weg-option:hover { border-color: var(--accent-strong); }
.weg-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.weg-option:has(input:checked) { border-color: var(--accent-strong); background: color-mix(in oklab, var(--accent) 10%, var(--surface)); }
.weg-option:has(input:focus-visible) { outline: 2px solid var(--accent-strong); outline-offset: 2px; }
@media (max-width: 560px) { .weg-switch { grid-template-columns: 1fr; } }

/* Ohne JS steht beides mit Titel da, mit JS nur der gewaehlte */
.weg-title { font-weight: 700; margin-top: 1.2rem; }
.weg-panel + .weg-panel { margin-top: 0.4rem; }
.js .weg-panel { display: none; }
.js .weg-panel.show { display: block; animation: fadeSlide 0.3s var(--ease); }
.js .weg-panel .weg-title { display: none; }
.js .fs-intro[data-weg] { display: none; }
.js .fs-intro[data-weg].show { display: block; }
.cta-alt { margin-top: 1.1rem; font-size: 0.95rem; color: oklch(0.84 0.03 255); }
.cta-alt a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.cta-alt a:hover { color: #fff; }
.hero-alt { margin-top: 1rem; font-size: 0.95rem; color: oklch(0.82 0.03 255); }
.hero-alt a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.hero-alt a:hover { color: #fff; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

fieldset { border: none; padding: 0; margin: 0 0 0.5rem; }
fieldset legend { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.7rem; padding: 0; }

.form-note { font-size: 0.85rem; color: var(--ink-2); margin-top: 1rem; }
.form-note a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* aside contact box next to form */
.contact-aside { display: grid; gap: 1.15rem; align-content: start; }
.contact-line { display: flex; gap: 0.8rem; align-items: flex-start; }
.contact-line .ci {
  width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-strong);
}
.contact-line .ci svg { width: 22px; height: 22px; }
.contact-line .cl-label { display: block; font-size: 0.82rem; color: var(--ink-2); margin-bottom: 2px; }
.contact-line .cl-value { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; }
.contact-line a.cl-value:hover { color: var(--brand); }

/* ---------- Checklists -------------------------------------------------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.check-list li svg { width: 1.3rem; height: 1.3rem; flex: none; margin-top: 0.15rem; color: var(--accent-strong); }
.check-list.on-dark li svg { color: var(--accent); }
/* Die Liste traegt on-dark nur wegen der Hakenfarbe. Ohne diese Zeile legt der
   Flaechen-Hintergrund der Klasse einen sichtbaren Kasten ueber den Verlauf der Karte. */
.check-list.on-dark { background: none; }

.x-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.x-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-2); }
.x-list li svg { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.2rem; color: var(--ink-3); }

/* ---------- Region ------------------------------------------------------ */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  padding: 0.5rem 0.95rem; border-radius: 999px; background: var(--surface-2);
  border: 1px solid var(--line); font-weight: 600; font-size: 0.94rem;
}
.pill.pill-strong { background: var(--brand); color: var(--on-brand); border-color: transparent; }

/* ---------- Cost table -------------------------------------------------- */
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cost-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; }
.cost-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.cost-card .cost-sub { color: var(--ink-2); font-size: 0.94rem; margin-bottom: 1rem; }
.cost-card .cost-factors { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.cost-card .cost-factors li { display: flex; gap: 0.55rem; font-size: 0.95rem; color: var(--ink-2); align-items: flex-start; }
.cost-card .cost-factors li svg { width: 1.1rem; height: 1.1rem; color: var(--accent-strong); flex: none; margin-top: 0.22rem; }

/* ---------- Footer ------------------------------------------------------ */
.site-footer { background: var(--brand-deep); color: oklch(0.86 0.02 255); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.site-footer h2 { color: #fff; font-size: 0.95rem; letter-spacing: 0.02em; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; }
.footer-brand .footer-brand p { margin-top: 1rem; font-size: 0.94rem; max-width: 32ch; color: oklch(0.82 0.02 255); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-links a { color: oklch(0.84 0.02 255); font-size: 0.96rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-contact { display: grid; gap: 0.7rem; font-size: 0.96rem; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact .fc-muted { color: oklch(0.78 0.02 255); }
.footer-bottom { border-top: 1px solid oklch(1 0 0 / 0.14); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center; font-size: 0.88rem; color: oklch(0.76 0.02 255); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }

/* ---------- Breadcrumb / page head ------------------------------------- */
.page-head { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }
.breadcrumb { font-size: 0.88rem; color: var(--ink-2); margin-bottom: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--brand); font-weight: 600; }
.breadcrumb span { color: var(--ink-3); }

/* legal / prose */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; margin-bottom: 0.8rem; }
.prose h3 { font-size: 1.16rem; margin-top: 1.6rem; margin-bottom: 0.5rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose p { margin-bottom: 0.9rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.2rem; display: grid; gap: 0.4rem; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.prose strong { color: var(--ink); }
.legal-toc { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-bottom: 2rem; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; columns: 2; gap: 1.5rem; }
.legal-toc li { margin-bottom: 0.4rem; }
.legal-toc a { color: var(--brand); font-weight: 600; }

/* ---------- Reveal on scroll (content visible by default; JS enhances) -- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .panel, .path-card, .frame img { transition: none !important; }
}

/* ---------- Utilities --------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.75rem; } .mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2.2rem; } .mt-4 { margin-top: 3.2rem; }
.mb-1 { margin-bottom: 0.75rem; } .mb-2 { margin-bottom: 1.4rem; } .mb-3 { margin-bottom: 2.2rem; }
.stack-sm { display: grid; gap: 0.5rem; }
.flex { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.flex-between { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.hide-mobile { }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.tag-inline { display: inline-block; background: var(--accent-soft); color: var(--accent-strong); font-weight: 700; font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 6px; }

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-grid; }
  /* gleiche Spezifitaet wie die Regel oben, sonst gewinnt deren margin-left */
  .nav-links:not(:last-child) ~ .nav-actions { margin-left: auto; }
}
@media (max-width: 900px) {
  .hero-grid, .hero-home .hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-home .hero-copy { max-width: 100%; }
  /* Startseite am Handy: Film zuerst, Headline direkt darunter */
  .hero-home .hero-media { order: -1; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .figure-row { grid-template-columns: 1fr; gap: 0.9rem; }
  .cost-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-cta { display: none; }
}
@media (max-width: 640px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-toc ul { columns: 1; }
  .btn-block-mobile { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .figure-row { grid-template-columns: 1fr; }
}
/* ---------- Video (nativer Player, Poster, kein Autoplay) --------------- */
.videobox {
  position: relative; overflow: hidden; background: #000;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.videobox video { display: block; width: 100%; height: auto; }
.video-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  width: 100%; height: 100%; border: 0; padding: 0; cursor: pointer;
  background: linear-gradient(to bottom, oklch(0.2 0.04 280 / 0.1), oklch(0.2 0.04 280 / 0.42));
}
.video-play svg {
  width: clamp(3.6rem, 6vw, 4.6rem); height: clamp(3.6rem, 6vw, 4.6rem);
  padding: 0.9rem 0.8rem 0.9rem 1rem; border-radius: 50%;
  background: oklch(1 0 0 / 0.94); color: var(--brand-deep);
  box-shadow: 0 8px 26px oklch(0.2 0.04 280 / 0.35);
  transition: transform 160ms ease, background 160ms ease;
}
.video-play:hover svg, .video-play:focus-visible svg { transform: scale(1.06); background: #fff; }
.video-caption {
  margin-top: 0.9rem; font-size: 0.9rem; color: var(--ink-3); text-align: center;
}
.split-media .videobox { margin: 0; }

/* ---------- Zitat aus dem Video ---------------------------------------- */
.pull-quote {
  margin: 1.6rem 0; padding: 0 0 0 1.3rem;
  border-left: 3px solid var(--accent-strong);
  font-family: var(--font-display); font-size: 1.28rem; line-height: 1.35;
  font-weight: 600; letter-spacing: -0.015em; color: var(--ink);
}
.pull-quote cite {
  display: block; margin-top: 0.7rem;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600;
  font-style: normal; letter-spacing: 0.02em; color: var(--ink-3);
}

/* ---------- Formular: eigenes Dropdown, Upload, Hinweise --------------- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
  border: 1px solid var(--accent-strong); border-left-width: 4px;
  background: color-mix(in oklab, var(--accent) 10%, var(--surface));
  border-radius: var(--radius); padding: 1rem 1.15rem; margin-bottom: 1.5rem;
  font-size: 0.96rem; color: var(--ink);
}
.fs-intro { color: var(--ink-2); margin-bottom: 1.1rem; font-size: 0.98rem; }

/* Eigenes Dropdown: natives select bleibt im DOM (Fallback ohne JS) */
.select-native { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.select-ui { position: relative; }
.select-btn {
  width: 100%; text-align: left; cursor: pointer;
  border: 1px solid var(--line-2); border-radius: 11px;
  background: var(--surface); padding: 0.72rem 2.6rem 0.72rem 0.9rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.select-btn::after {
  content: ""; position: absolute; right: 0.95rem; top: 50%; width: 10px; height: 10px;
  border-right: 2.2px solid var(--ink-3); border-bottom: 2.2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg); border-radius: 1px;
  transition: transform 0.18s var(--ease);
}
.select-btn[aria-expanded="true"]::after { transform: translateY(-25%) rotate(225deg); }
.select-btn:hover { border-color: var(--ink-3); }
.select-btn:focus-visible,
.select-btn[aria-expanded="true"] {
  outline: none; border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 28%, transparent);
}
.select-btn.is-placeholder { color: var(--ink-3); }

.select-list {
  position: absolute; z-index: 40; top: calc(100% + 6px); left: 0; right: 0;
  margin: 0; padding: 0.35rem; list-style: none;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 13px; box-shadow: var(--shadow-lg);
  max-height: 17rem; overflow-y: auto;
}
.select-list[hidden] { display: none; }
.select-list li {
  padding: 0.6rem 0.75rem; border-radius: 8px; cursor: pointer;
  font-size: 0.97rem; line-height: 1.35;
}
.select-list li[aria-selected="true"] { font-weight: 600; color: var(--brand); }
.select-list li.is-active { background: var(--surface-2); }
.select-list li:hover { background: var(--surface-2); }

/* Upload */
.upload input[type="file"] { position: absolute; opacity: 0; width: 1px; height: 1px; }
.upload-drop {
  display: flex; gap: 1rem; align-items: center; cursor: pointer;
  border: 1.5px dashed var(--line-2); border-radius: var(--radius);
  background: var(--surface-2); padding: 1.15rem 1.25rem;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.upload-drop:hover, .upload.is-drag .upload-drop {
  border-color: var(--accent-strong);
  background: color-mix(in oklab, var(--accent) 7%, var(--surface));
}
.upload input[type="file"]:focus-visible + .upload-drop {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 28%, transparent);
}
.upload-icon {
  flex: none; display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; background: var(--surface); border: 1px solid var(--line);
  color: var(--accent-strong);
}
.upload-icon svg { width: 24px; height: 24px; }
.upload-text { display: grid; gap: 0.2rem; }
.upload-text strong { font-size: 1rem; }
.upload-text span { font-size: 0.86rem; color: var(--ink-2); line-height: 1.45; }

.upload-list { list-style: none; margin: 0.9rem 0 0; padding: 0; display: grid; gap: 0.5rem; }
.upload-list:empty { display: none; }
.upload-list li {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 0.5rem 0.7rem; font-size: 0.9rem;
}
.upload-list img {
  width: 44px; height: 44px; object-fit: cover; border-radius: 7px; flex: none;
}
.upload-list .ul-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-list .ul-size { margin-left: auto; color: var(--ink-3); font-size: 0.83rem; flex: none; }
.upload-list .ul-bad { color: var(--accent-strong); font-weight: 600; }

/* Danke-Seite */
.danke-card { max-width: 46rem; margin-inline: auto; text-align: center; }
.danke-icon {
  display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 1.4rem;
  border-radius: 50%; background: color-mix(in oklab, var(--accent) 16%, var(--surface));
  color: var(--accent-strong);
}
.danke-icon svg { width: 30px; height: 30px; }
.danke-card p { color: var(--ink-2); margin-top: 0.9rem; }
.danke-card .lead { margin-top: 1rem; }

/* ---------- Hintergrund-Gründe (Definitionsliste) ---------------------- */
.reasons { margin: 0; display: grid; gap: 0; }
.reasons > div {
  display: grid; grid-template-columns: 13rem 1fr; gap: 1.5rem;
  padding: 1.35rem 0; border-top: 1px solid var(--line);
}
.reasons > div:last-child { border-bottom: 1px solid var(--line); }
.reasons dt {
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.reasons dd { margin: 0; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 720px) {
  .reasons > div { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ---------- Vorher/Nachher-Paare --------------------------------------- */
.vn-grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
@media (min-width: 900px) { .vn-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .vn-grid.vn-stack { grid-template-columns: 1fr; } }

/* ---------- Fotoband: eine Aufnahme traegt den Abschnitt ---------------- */
.photo-band { margin: clamp(1.6rem, 4vw, 2.75rem) 0 0; }
.photo-band img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
@media (max-width: 720px) { .photo-band img { aspect-ratio: 4 / 3; } }

.vn {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  background: var(--line-2); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.vn figure { position: relative; margin: 0; background: var(--surface-3); }
.vn img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.vn figcaption {
  position: absolute; left: 0.6rem; bottom: 0.6rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 999px;
  background: oklch(0.18 0.03 280 / 0.78); color: #fff; backdrop-filter: blur(3px);
}
.vn figure:last-child figcaption { background: var(--accent-strong); color: var(--on-accent); }

/* Karussell: ein Paar gross statt einer Bilderwand */
.vnc-track {
  display: flex; gap: clamp(1rem, 3vw, 2rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; padding-bottom: 4px;
}
.vnc-track::-webkit-scrollbar { display: none; }
.vnc-track:focus-visible { outline-offset: 6px; }
.vnc-slide { flex: 0 0 100%; scroll-snap-align: center; }
.vnc-slide .vn { box-shadow: var(--shadow-lg); }
.vnc-caption { margin-top: 0.85rem; font-size: 0.92rem; color: var(--ink-3); text-align: center; }
.vnc-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem; margin-top: 1.7rem;
}
.vnc-btn {
  width: 3rem; height: 3rem; border-radius: 50%; flex: none;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.16s var(--ease);
}
.vnc-btn svg { width: 1.3rem; height: 1.3rem; }
.vnc-btn:hover:not(:disabled) { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.vnc-btn:disabled { opacity: 0.35; cursor: default; }
.vnc-count {
  font-family: var(--font-display); font-weight: 700;
  font-variant-numeric: tabular-nums; min-width: 8ch; text-align: center;
  color: var(--ink-2);
}
@media (prefers-reduced-motion: reduce) { .vnc-track { scroll-behavior: auto; } }



/* ---------- Team ------------------------------------------------------- */
.person-grid { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }
@media (min-width: 700px) { .person-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .person-grid { grid-template-columns: repeat(3, 1fr); } }
.person h3 { font-size: 1.28rem; margin-top: 1.1rem; }
.person-rolle { font-weight: 600; color: var(--accent-strong); margin-top: 0.25rem; }
.person-seit { font-size: 0.92rem; color: var(--ink-3); margin-top: 0.1rem; }
.person-text { margin-top: 0.8rem; font-size: 0.98rem; color: var(--ink-2); }
.person-zitat {
  margin-top: 0.9rem; font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; line-height: 1.4; color: var(--ink);
}

/* ---------- Platzhalterflaechen ---------------------------------------- */
.ph-media { margin: 0; }
.ph-media img { width: 100%; height: auto; border-radius: var(--radius-lg); }
.ph-media figcaption { margin-top: 0.7rem; text-align: center; font-size: 0.9rem; color: var(--ink-3); }

/* ==========================================================================
   Strukturumbau: Rhythmus, Hierarchie, weniger Kachelraster
   Nur additive Klassen. Bestehende Regeln bleiben unangetastet.
   ========================================================================== */

/* Trennlinie innerhalb eines Abschnitts, statt zweier gleicher Abschnitte */
.band-cut {
  margin-top: clamp(1.8rem, 3.5vw, 2.8rem);
  padding-top: clamp(1.8rem, 3.5vw, 2.8rem);
  border-top: 1px solid var(--line);
}

/* Hakenliste zweispaltig: acht Punkte auf einen Blick statt als Scrollwand */
.tick-cols { grid-template-columns: 1fr 1fr; gap: 0.75rem 3rem; }
@media (max-width: 760px) { .tick-cols { grid-template-columns: 1fr; } }

/* Asymmetrische Splits, damit nicht jede Reihe 50/50 ist */
.split-lead { grid-template-columns: 0.88fr 1.12fr; }
.split-aside { grid-template-columns: 0.78fr 1.22fr; align-items: start; }
@media (max-width: 900px) { .split-lead, .split-aside { grid-template-columns: 1fr; } }

/* Leiser Abschnittslabel, Alternative zum Eyebrow mit Strich */
.label-quiet {
  display: block; font-weight: 700; font-size: 0.86rem;
  color: var(--ink-3); letter-spacing: 0.01em; margin-bottom: 0.35rem;
}
.on-dark .label-quiet { color: oklch(0.80 0.03 250); }

/* Pfeil-Links auf dunklem Grund */
.on-dark .arrow-link { color: var(--accent); }
.on-dark .arrow-link:hover { color: #fff; }

/* Dunkles Schwerpunkt-Band mitten auf der Seite */
.feature-dark { position: relative; overflow: hidden; }
.feature-dark > .wrap { position: relative; z-index: 1; }
.feature-dark .check-list li svg { color: var(--accent); }
.feature-dark .frame { box-shadow: 0 30px 70px -24px oklch(0.12 0.04 280 / 0.75); }

/* Ablauf als Schiene statt Vierer-Kachelraster */
.flow { display: grid; }
.flow-step {
  position: relative; display: grid;
  grid-template-columns: 2.5rem 1fr; gap: 0 1.35rem;
  padding-bottom: 1.9rem;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step::before {
  content: ""; position: absolute; left: 1.25rem; top: 3rem; bottom: 0;
  width: 2px; background: var(--line); transform: translateX(-1px);
}
.flow-step:last-child::before { display: none; }
.flow-step .flow-num {
  font-family: var(--font-display); font-weight: 800; font-size: 0.98rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: var(--on-brand); position: relative; z-index: 1;
}
.flow-step h3 { font-size: 1.16rem; margin-bottom: 0.35rem; padding-top: 0.35rem; }
.flow-step p { color: var(--ink-2); font-size: 0.98rem; max-width: 62ch; }
.flow-step .step-badge { margin-top: 0.7rem; }

/* Zwei Nebenargumente ohne Kartenrahmen */
.duo-hair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.2rem); }
.duo-hair > div { border-top: 2px solid var(--line-2); padding-top: 1.1rem; }
.duo-hair h3 { font-size: 1.14rem; margin-bottom: 0.4rem; }
.duo-hair p { color: var(--ink-2); font-size: 0.96rem; }
.duo-hair .p-icon { margin-bottom: 0.85rem; }
@media (max-width: 640px) { .duo-hair { grid-template-columns: 1fr; } }

/* Hintergrundwissen als Beistück: dt/dd untereinander in schmaler Spalte */
.reasons-slim > div { grid-template-columns: 1fr; gap: 0.3rem; padding: 1.1rem 0; }
.reasons-slim dd { font-size: 0.98rem; }

/* Einzelner Abzweig als Querband statt einsamer hoher Kachel */
.path-lane {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 4vw, 3rem); align-items: start;
  min-height: 0; padding: clamp(1.8rem, 3.5vw, 2.6rem);
}
.path-lane ul { margin-bottom: 0; }
.path-lane .pc-foot { margin-top: 1.3rem; }
@media (max-width: 800px) { .path-lane { grid-template-columns: 1fr; } }

/* Kundenstimmen ohne gestrichelte Platzhalterkarten */
.quote-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.quote-row .quote-item {
  padding: 0 clamp(1rem, 2vw, 1.8rem);
  border-left: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 0.9rem;
}
.quote-row .quote-item:first-child { border-left: 0; padding-left: 0; }
.quote-row .quote-item:last-child { padding-right: 0; }
.quote-row .qs-body { color: var(--ink-2); font-style: italic; line-height: 1.55; }
.quote-row .qs-foot { display: flex; align-items: center; gap: 0.6rem; margin-top: auto; }
.quote-row .qs-meta { font-size: 0.85rem; color: var(--ink-3); }
@media (max-width: 860px) {
  .quote-row { grid-template-columns: 1fr; }
  .quote-row .quote-item {
    border-left: 0; border-top: 1px solid var(--line-2);
    padding: 1.3rem 0 0; margin-top: 1.3rem;
  }
  .quote-row .quote-item:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
}

/* Zwei Prosablöcke nebeneinander statt einer langen Spalte */
.prose-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); }
.prose-duo > .prose { max-width: 46ch; }
.prose-duo > .prose > h2:first-child { margin-top: 0; }
@media (max-width: 860px) { .prose-duo { grid-template-columns: 1fr; } }

/* Vier kurze Parallelposten als Hairline-Reihe, keine Karten */
.hair-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2.5vw, 2rem); }
.hair-cols > li { list-style: none; border-top: 2px solid oklch(1 0 0 / 0.28); padding-top: 0.95rem; }
.hair-cols strong { display: block; font-family: var(--font-display); font-size: 1.06rem; margin-bottom: 0.3rem; }
@media (max-width: 900px) { .hair-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hair-cols { grid-template-columns: 1fr; } }

/* Preisfaktoren als Zeilenliste mit Haarlinien */
.factor-list { margin: 0; display: grid; }
.factor-list > div {
  display: grid; grid-template-columns: 11rem 1fr; gap: 1.5rem;
  padding: 1.3rem 0; border-top: 1px solid var(--line);
}
.factor-list > div:last-child { border-bottom: 1px solid var(--line); }
.factor-list dt { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.factor-list dd { margin: 0; color: var(--ink-2); }
@media (max-width: 760px) { .factor-list > div { grid-template-columns: 1fr; gap: 0.35rem; } }

/* Leistungsumfang als Querstreifen */
.include-strip { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(1.2rem, 3vw, 2.6rem); align-items: start; }
@media (max-width: 800px) { .include-strip { grid-template-columns: 1fr; } }

/* Ruhiger Nachsatz, deutlich leichter als die Hauptabschnitte */
.quiet-note { max-width: 62ch; }
.quiet-note h2 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.65rem); margin-bottom: 0.7rem; }
.quiet-note p { color: var(--ink-2); }
.quiet-note p + p { margin-top: 0.8rem; }

/* Nachziehen: Komponenten, die ihren alten Elternkontext verloren haben */
.feature-dark .split-copy p { color: oklch(0.86 0.02 255); }
.feature-dark .split-copy h2 { margin-bottom: 1rem; }

.duo-hair .p-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-strong);
}
.duo-hair .p-icon svg { width: 24px; height: 24px; }

.quote-row .qs-stars { display: inline-flex; gap: 2px; }
.quote-row .qs-stars svg { width: 16px; height: 16px; color: #f5a623; }
.quote-row .qs-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--surface-3);
  display: grid; place-items: center; color: var(--ink-3); flex: none;
}
.quote-row .qs-avatar svg { width: 20px; height: 20px; }

.split-aside .reasons-slim > div:first-child { border-top: 0; padding-top: 0; }

/* Verfahren: Schritte 2 bis 4 als durchlaufende Sequenz */
.proc-seq { display: grid; }
.proc-row {
  display: grid; grid-template-columns: 0.42fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.6rem); align-items: start;
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
  border-top: 1px solid var(--line);
}
.proc-row:first-child { border-top: 0; padding-top: 0; }
.proc-row:last-child { padding-bottom: 0; }
.proc-copy p { color: var(--ink-2); margin-bottom: 1rem; max-width: 68ch; }
.proc-copy h2 { margin-bottom: 0.6rem; }
@media (max-width: 820px) { .proc-row { grid-template-columns: 1fr; } }

.prose-links { display: flex; flex-wrap: wrap; gap: 0.9rem 2.2rem; }
.feature-dark .video-caption { color: oklch(0.80 0.03 250); }

.on-dark .band-cut { border-top-color: oklch(1 0 0 / 0.20); }
.include-strip .hint { font-size: 0.9rem; color: var(--ink-2); }
.include-strip h3 { margin-bottom: 0.3rem; }

/* Begriffsspalte muss das laengste Wort tragen ("Verschmutzungsgrad.") */
.factor-list > div { grid-template-columns: 14.5rem 1fr; }
.factor-list dt { font-size: 1.06rem; }
.factor-list dd { max-width: 70ch; }
@media (max-width: 900px) { .factor-list > div { grid-template-columns: 12rem 1fr; } }
@media (max-width: 760px) { .factor-list > div { grid-template-columns: 1fr; } }

/* Original-Logo als Datei, nicht nachgebaut. Steven-Vorgabe 2026-07-30. */
.brand-lockup .bl-logo { height: 38px; width: auto; display: block; }
@media (max-width: 560px) { .brand-lockup .bl-logo { height: 32px; } }
/* Auf dunklem Grund braucht das farbige Original ein helles Feld, statt es einzufaerben. */
.footer-brand .brand-lockup { background: #fff; padding: 0.55rem 0.75rem; border-radius: 10px; display: inline-block; }
.footer-brand .brand-lockup .bl-logo { height: 34px; }

/* Anfrageseite: Formular breit, Randspalte darunter --------------------- */
.anfrage-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) {
  .anfrage-grid { grid-template-columns: 1fr; }
}
