/* ═══════════════════════════════════════════════════════════════
   Schädlingsbekämpfung Käfer — Freiburg
   Brand: Lime-Grün #0E3756 (Logo) · Anthrazit (Arbeitskleidung) · clean white
   Engine: React + GSAP + Tailwind (CDN). Reveal via IntersectionObserver → .active
   ═══════════════════════════════════════════════════════════════ */

/* Lokale Fonts (selbst gehostet, DSGVO-konform, font-display:swap) */
@font-face{font-family:'Sora';font-style:normal;font-weight:400 800;font-display:swap;src:url('fonts/sora-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;src:url('fonts/inter-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

:root {
  --accent: #3E8AD8;          /* Sky-Blue (wie Kassel-Highlight im Hero) — Buttons & CTAs */
  --accent-rgb: 62, 138, 216;
  --accent-deep: #2D75BD;     /* Hover-State, etwas tiefer */
  --accent-ink: #1B4F7C;      /* Text auf hellem Grund (AA-Kontrast) */
  --accent-text: #FFFFFF;     /* Text auf Sky-Blue Buttons */
  --brand: #3E8AD8;
  --copper: #5FA8E0;            /* Akzent: Notdienst, Pulse, Highlights (Sky-Marine) */
  --copper-deep: #3D8DCC;
  --copper-rgb: 95, 168, 224;
  --brand-text: #15210A;

  --ink: #14171C;             /* Headlines */
  --body: #525A64;            /* Fließtext */
  --muted: #8A929C;           /* Captions */
  --border: rgba(20, 23, 28, 0.09);

  --bg: #FFFFFF;
  --bg-alt: #E8EEF3;          /* warm-grün getöntes Off-White */
  --bg-card: #FFFFFF;

  --dark: #15181D;            /* dunkle Sections — wie die Arbeitskleidung */
  --dark-2: #1D222A;
  --dark-card: rgba(255, 255, 255, 0.045);
  --dark-border: rgba(255, 255, 255, 0.10);

  --text: var(--ink);
}

/* ─── Base ─────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--ink);
}
::selection { background: rgba(var(--accent-rgb), 0.28); color: var(--ink); }
img { transition: opacity .4s ease; }

.font-heading { font-family: 'Sora', system-ui, sans-serif; }
.font-body { font-family: 'Inter', system-ui, sans-serif; }

/* Anchor offset for fixed navbar */
section[id] { scroll-margin-top: 96px; }

/* ─── Buttons ──────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .3s ease;
  box-shadow: 0 8px 24px -8px rgba(var(--accent-rgb), 0.55);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(var(--accent-rgb), 0.7);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .3s ease;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); }
.btn-ghost {
  background: #fff; color: var(--ink); border: 1px solid var(--border);
  transition: all .3s ease;
}
.btn-ghost:hover { border-color: rgba(var(--accent-rgb), .6); background: var(--bg-alt); transform: translateY(-2px); }

/* WhatsApp tint */
.btn-wa { background: #25D366; color: #0a2e16; font-weight: 700; transition: all .3s ease; }
.btn-wa:hover { background: #1eb858; transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(37,211,102,.6); }

/* ─── Shine-Sweep beim Hover (glossy buttons) ─── */
.btn-primary, .btn-dark, .btn-wa, .btn-glass, .btn-ghost {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after, .btn-dark::after, .btn-wa::after,
.btn-glass::after, .btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
}
/* Ghost-Buttons sind hell -> blauer statt weisser Glanz, damit man ihn sieht */
.btn-ghost::after {
  background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb),.18) 50%, transparent 100%);
}
.btn-primary:hover::after, .btn-dark:hover::after, .btn-wa:hover::after,
.btn-glass:hover::after, .btn-ghost:hover::after {
  animation: btn-shine .85s cubic-bezier(.25,.6,.3,1);
}
@keyframes btn-shine {
  to { transform: translateX(130%) skewX(-18deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after, .btn-dark::after, .btn-wa::after,
  .btn-glass::after, .btn-ghost::after { display: none; }
}

/* ─── CTA pulse ────────────────────────────────────────── */
@keyframes pulse-cta {
  0%   { box-shadow: 0 8px 24px -8px rgba(var(--accent-rgb), .55), 0 0 0 0 rgba(var(--accent-rgb), .45); }
  70%  { box-shadow: 0 8px 24px -8px rgba(var(--accent-rgb), .55), 0 0 0 16px rgba(var(--accent-rgb), 0); }
  100% { box-shadow: 0 8px 24px -8px rgba(var(--accent-rgb), .55), 0 0 0 0 rgba(var(--accent-rgb), 0); }
}
.cta-pulse { animation: pulse-cta 3s infinite; }
.cta-pulse:hover { animation: none; }

/* ─── Ambient animations ───────────────────────────────── */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.animate-float { animation: float 5s ease-in-out infinite; }
.animate-float-slow { animation: float 7s ease-in-out infinite; }
.animate-float-delay { animation: float 5s ease-in-out 1.2s infinite; }

@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.animate-breathe { animation: breathe 4.5s ease-in-out infinite; }

@keyframes dot-pulse-anim {
  0%   { transform: scale(.8); opacity: .5; }
  50%  { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(.8); opacity: .5; }
}
.dot-pulse { animation: dot-pulse-anim 2s ease-in-out infinite; }

@keyframes spin-slow { to { transform: rotate(360deg); } }
.animate-spin-slow { animation: spin-slow 26s linear infinite; }

/* ─── Reveal system (IntersectionObserver adds .active) ── */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-44px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity: 0; transform: translateX(44px);  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .animate-float, .animate-float-slow, .animate-float-delay, .animate-breathe, .dot-pulse, .cta-pulse, .marquee-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── Cards ────────────────────────────────────────────── */
.card-lift { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease; }
.card-lift:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -24px rgba(20,23,28,.28); }

/* Pest service card (image background) */
.pest-card { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease; position: relative; overflow: hidden; }
.pest-bg { transition: transform .7s cubic-bezier(.16,1,.3,1); }
.pest-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -26px rgba(20,23,28,.28); }
.pest-card:hover .pest-bg { transform: scale(1.07); }

/* Leistungen: 2-up horizontale Service-Cards */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; } }
.svc-card { display: flex; flex-direction: column; }
@media (min-width: 768px) { .svc-card { flex-direction: row; } }
.svc-card-media { position: relative; height: 13rem; overflow: hidden; flex: none; }
@media (min-width: 768px) { .svc-card-media { height: auto; width: 42%; min-height: 250px; } }
.svc-card-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(14,55,86,.30), rgba(14,55,86,0) 58%); pointer-events: none; }
.svc-card-num { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; letter-spacing: .03em; color: #fff; background: rgba(14,55,86,.92); border-radius: 10px; box-shadow: 0 6px 18px -8px rgba(14,55,86,.7); }
.svc-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1 1 auto; }
@media (min-width: 768px) { .svc-card-body { padding: 2rem 2rem 1.85rem; } }

/* Homepage Einsatzgebiet / Orte */
.hpa-head { display:flex; align-items:center; gap:.9rem; margin-bottom:2.5rem; }
.hpa-head h2 { flex:0 1 auto; min-width:0; margin:0; }
.hpa-count { flex:none; font-family:'Archivo',sans-serif; font-weight:600; font-size:13px; color:#525A64; letter-spacing:.02em; }
.hpa-line { flex:1; height:1px; background: linear-gradient(to right, rgba(20,23,28,.18), rgba(20,23,28,0)); }
.hpa-grid { display:grid; grid-template-columns:1fr; gap:1.1rem; }
@media (min-width:640px){ .hpa-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .hpa-grid { grid-template-columns: repeat(3,1fr); } }
.hpa-card { position:relative; overflow:hidden; display:block; text-decoration:none; border:1px solid rgba(20,23,28,.08); border-radius:18px; padding:1.5rem 1.6rem; background: linear-gradient(135deg, #f6f9fc 0%, #eef4fa 100%); transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s; }
.hpa-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(20,23,28,.32); border-color: rgba(14,55,86,.28); }
.hpa-card::after { content:""; position:absolute; right:-20%; top:-40%; width:60%; height:160%; background: radial-gradient(ellipse, rgba(95,168,224,.10) 0%, transparent 65%); pointer-events:none; }
.hpa-meta { display:inline-flex; align-items:center; gap:.45rem; font-family:'Archivo',sans-serif; font-weight:700; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:#1B4F7C; margin-bottom:.7rem; position:relative; z-index:1; }
.hpa-meta svg { color:#0E3756; flex:none; }
.hpa-card h3 { font-family:'Archivo',sans-serif; font-weight:800; font-size:1.25rem; color:#14171C; line-height:1.15; margin:0 0 .3rem; position:relative; z-index:1; }
.hpa-card .hpa-sub { color:#525A64; font-size:.92rem; position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:.5rem; }
.hpa-card .hpa-arrow { color:#1B4F7C; opacity:0; transform:translateX(-4px); transition:opacity .3s, transform .3s; }
.hpa-card:hover .hpa-arrow { opacity:1; transform:translateX(0); }
.hpa-card.central { border-color: transparent; background: linear-gradient(150deg, #0E2740 0%, #0E3756 58%, #1B4F7C 120%); box-shadow: 0 24px 50px -26px rgba(14,55,86,.7); }
.hpa-card.central::after { background: radial-gradient(ellipse, rgba(95,168,224,.28) 0%, transparent 60%); right:-15%; top:-50%; }
.hpa-card.central .hpa-meta { color:#bfe0f7; }
.hpa-card.central .hpa-meta svg { color:#5FA8E0; }
.hpa-card.central h3 { color:#fff; }
.hpa-card.central .hpa-sub { color: rgba(255,255,255,.72); }
.hpa-card.central .hpa-arrow { color:#bfe0f7; }

/* Case study card (Problem → Lösung) */
.case-card { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 24px 46px -26px rgba(20,23,28,.30); }

/* ─── Warum / Trust cards (blau, editorial) ── */
.feat-section {
  background:
    radial-gradient(125% 95% at 100% -10%, rgba(var(--accent-rgb), .09) 0%, transparent 52%),
    radial-gradient(90% 70% at -5% 110%, rgba(var(--accent-rgb), .05) 0%, transparent 55%),
    var(--bg);
}
.feat-card {
  position: relative; overflow: hidden; height: 100%;
  background: #fff;
  border: 1px solid rgba(20, 23, 28, .07);
  border-radius: 22px;
  padding: 2.5rem 2.1rem 2.7rem;
  box-shadow: 0 1px 2px rgba(20, 23, 28, .04);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease, border-color .5s ease;
}
.feat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 60px -32px rgba(20, 23, 28, .30);
  border-color: rgba(var(--accent-rgb), .38);
}
.feat-card::after {
  content: ''; position: absolute; left: 2.1rem; right: 2.1rem; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 3px 3px 0 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.feat-card:hover::after { transform: scaleX(1); }
.feat-num {
  position: absolute; top: 1.5rem; right: 1.8rem;
  font-family: 'Sora', system-ui, sans-serif; font-weight: 800;
  font-size: 3.6rem; line-height: 1; letter-spacing: -.045em;
  color: rgba(14, 55, 86, .07);
  pointer-events: none; user-select: none;
}
.feat-ico {
  width: 3.5rem; height: 3.5rem; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), .10);
  border: 1px solid rgba(var(--accent-rgb), .18);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.feat-card:hover .feat-ico { transform: translateY(-2px) rotate(-4deg); }
.feat-rule { width: 36px; height: 2px; background: var(--accent); border-radius: 2px; margin: 1.5rem 0 1.25rem; opacity: .85; }

/* ─── Marquee (trust strip) ────────────────────────────── */
.marquee { 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); }
.marquee-track { display: inline-flex; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Form fields ──────────────────────────────────────── */
.field {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-border);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.field::placeholder { color: rgba(255,255,255,.45); }
.field:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.10); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .16); }
.field-light {
  width: 100%; background: #fff; border: 1px solid var(--border); color: var(--ink);
  border-radius: 14px; padding: 14px 16px; font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field-light::placeholder { color: var(--muted); }
.field-light:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .16); }

/* ─── Step form (lead generator) ─────────────────────── */
@keyframes stepIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-in { animation: stepIn .45s cubic-bezier(.16,1,.3,1); }
@keyframes popIn { 0% { opacity:0; transform: scale(.8); } 60% { transform: scale(1.08); } 100% { opacity:1; transform: scale(1); } }
.pop-in { animation: popIn .5s cubic-bezier(.34,1.56,.64,1); }

.choice-tile { background: #fff; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease, background .25s ease; cursor: pointer; }
.choice-tile:hover { border-color: rgba(var(--accent-rgb), .55); transform: translateY(-3px); box-shadow: 0 14px 26px -16px rgba(20,23,28,.3); }
.choice-tile:active { transform: translateY(-1px) scale(.99); }
.choice-active { border-color: var(--accent) !important; background: rgba(var(--accent-rgb), .08) !important; box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .2); }
.choice-tile img { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.choice-tile:hover img { transform: scale(1.12) rotate(-5deg); }
@media (prefers-reduced-motion: reduce) { .step-in, .pop-in { animation: none !important; } }

/* ─── FAQ accordion ────────────────────────────────────── */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details[open] > summary .faq-icon { transform: rotate(45deg); color: var(--accent-deep); }
.faq-icon { transition: transform .35s cubic-bezier(.16,1,.3,1), color .35s ease; }
.faq-item { transition: border-color .3s ease, background .3s ease; }
.faq-item[open] { border-color: rgba(var(--accent-rgb), .45); }
details > div.faq-body { animation: faqOpen .4s cubic-bezier(.16,1,.3,1); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Decorative backgrounds ───────────────────────────── */
.bg-glow-tl { position: relative; }
.bg-glow-tl::before {
  content: ''; position: absolute; top: -15%; left: -8%; width: 46%; height: 60%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), .12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.bg-glow-br { position: relative; }
.bg-glow-br::before {
  content: ''; position: absolute; bottom: -18%; right: -8%; width: 48%; height: 62%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), .10) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.bg-dots { background-image: radial-gradient(rgba(20,23,28,.05) 1px, transparent 1px); background-size: 26px 26px; }
.bg-dots-light { background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 26px 26px; }
.bg-grid-dark {
  background-image: none;
}
.accent-line-top { position: relative; }
.accent-line-top::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 4px; background: var(--accent); border-radius: 0 0 6px 6px;
}
.watermark { position: relative; overflow: hidden; }
.watermark::before {
  content: attr(data-watermark);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-8deg);
  font-family: 'Sora', sans-serif; font-size: clamp(5rem, 14vw, 13rem); font-weight: 700;
  color: rgba(20,23,28,.028); white-space: nowrap; pointer-events: none; z-index: 0; line-height: 1;
}

/* gradient text + animated underline */
.text-gradient { background: linear-gradient(100deg, var(--accent-deep), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--accent);
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover::after { width: 100%; }

/* ═══ Schwarze Google-Bewertungs-Navbar ═══ */
/* Hero dunkel hinterlegen -> der weisse Body kann nicht mehr am Header/Hero-Rand
   durchblitzen. Nur der Hero, damit weisse Sektionen voellig unveraendert bleiben.
   Homepage-Hero (erste section in main) + Unterseiten-Hero (.k-hero). */
html { background-color: #0a0b0d; }
main > section:first-of-type { background-color: #0a0b0d !important; }
.k-hero { background-color: #0a0b0d !important; }

/* HERO: transparenter Header mit weichem dunklem Verlauf (Nav ueber dem Bild lesbar)
   ── White-Strip-Fix: backdrop-filter + Transitions verursachen Subpixel-Seam beim
   Statewechsel scroll <-> top. Lösung: keine Transitions auf bg/filter; nav per
   negativem margin-bottom & box-shadow den Edge überdecken; GPU-Layer stabil halten.
*/
.nav-dark {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  position: fixed;
  margin-bottom: -1px;
  box-shadow: 0 1px 0 0 transparent;
  transition: none !important;
  isolation: isolate;
}
.nav-dark::before {
  content: "";
  position: absolute;
  inset: -1px 0 -90px 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,10,14,0.78) 0%, rgba(8,10,14,0) 100%);
  opacity: 1;
  transition: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav-dark > div {
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: none !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
/* SCROLL: Frosted Glass — Background eine Idee dunkler damit kein heller Saum entsteht.
   WICHTIG: backdrop-filter NICHT auf .nav-dark-solid selbst (würde Containing-Block für
   position:fixed Kinder erzeugen und das Mobile-Menu auf 78px Nav-Höhe einsperren).
   Stattdessen Glass-Effekt auf inner > div (siehe unten). */
.nav-dark-solid {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.nav-dark-solid::before {
  /* Glass-Layer in voller Viewport-Breite. Backdrop-filter auf pseudo-element →
     erzeugt KEINEN Containing-Block für position:fixed Geschwister-Kinder (Menu).
     Inset von -1px deckt den 1px Subpixel-Seam beim Scroll-State-Toggle. */
  content: "" !important;
  position: absolute !important;
  inset: -1px 0 -1px 0 !important;
  background: rgba(8, 10, 14, 0.72) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
          backdrop-filter: saturate(180%) blur(20px) !important;
  z-index: -1 !important;
  opacity: 1 !important;
  pointer-events: none !important;
}
.nav-dark-solid > div {
  max-width: 80rem !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.nav-logo-light { filter: brightness(0) invert(1); }

/* Blauer Gradient-Glow hinter dem Logo — hebt die weisse Wortmarke auf Schwarz hervor */
nav a[href="#top"] { position: relative; isolation: isolate; }
nav a[href="#top"]::before {
  content: '';
  position: absolute;
  inset: -55% -22%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(78% 135% at 50% 50%,
      rgba(80, 160, 255, 0.85) 0%,
      rgba(42, 120, 235, 0.55) 38%,
      rgba(22, 90, 190, 0.22) 62%,
      rgba(14, 55, 86, 0) 80%);
  filter: blur(16px);
  pointer-events: none;
  animation: nav-logo-glow 5.5s ease-in-out infinite;
}
@keyframes nav-logo-glow {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  nav a[href="#top"]::before { animation: none; }
}

/* Desktop-Nav-Links (dunkel) — eigene Breakpoints, da Compiled-Tailwind kein xl: hat */
.nav-link-dark { position: relative; color: rgba(255,255,255,.72); transition: color .2s; }
.nav-link-dark:hover { color: #fff; }
.nav-link-dark::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--accent); transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-link-dark:hover::after { width: 100%; }

.nav-desktop-links { display: none; }
.nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 2px 8px -2px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
          backdrop-filter: blur(8px) saturate(140%);
  -webkit-tap-highlight-color: transparent;
  transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.nav-burger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(143, 190, 223, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 14px -2px rgba(62, 138, 216, 0.30);
}
.nav-burger:active { transform: scale(0.92); }
/* Wenn die Nav in "scrolled glass pill" Mode ist, Burger marginal dunkler einbetten */
.nav-dark-solid .nav-burger {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
}
.nav-mobile-wrap { display: block; }
@media (min-width: 1280px) {
  .nav-desktop-links { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-mobile-wrap { display: none; }
}

.btn-glass { background: rgba(255,255,255,.1); color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,.18); }

/* ── Google-Badge: glasig, dezenter Atem-Glow, Shimmer-Sweep beim Hover ── */
.gbadge {
  position: relative; display: inline-flex; align-items: center; gap: .65rem;
  padding: .4rem .9rem .4rem .65rem; border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, background .3s, box-shadow .3s;
  animation: gbadge-glow 5.5s ease-in-out infinite;
}
.gbadge::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.16) 50%, transparent 68%);
  transform: translateX(-130%);
}
.gbadge:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 16px 38px -16px rgba(0,0,0,.95), 0 0 22px -6px rgba(var(--accent-rgb),.5);
  animation: none;
}
.gbadge:hover::before { animation: gbadge-shimmer 1.05s ease; }
.gbadge > * { position: relative; z-index: 1; }
@keyframes gbadge-shimmer { to { transform: translateX(130%); } }
@keyframes gbadge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
  50%      { box-shadow: 0 0 20px -7px rgba(var(--accent-rgb), .4); }
}
.gb-arrow { width: 0; opacity: 0; overflow: hidden; transition: width .3s, opacity .3s; }
.gbadge:hover .gb-arrow { width: 16px; opacity: 1; }
.gb-sub { display: none; }
@media (min-width: 480px) { .gb-sub { display: block; } }
@media (prefers-reduced-motion: reduce) {
  .gbadge { animation: none; }
  .gbadge::before { display: none; }
}

/* Google-Sterne goldgelb — die Tailwind-Arbitrary-Klasse text-[#FBBF24] fehlt im
   kompilierten Build, daher hier hart gesetzt (gilt site-weit fuer die Stars-Komponente) */
.text-\[\#FBBF24\] { color: #FBBF24; }

/* ── Badge-Mobile-Fit: Badge nie stauchen (sonst klippt overflow:hidden die Sterne),
   Logo + Badge dafuer responsiv verkleinern, damit alles in 360px passt ── */
.gbadge { flex-shrink: 0; }
@media (max-width: 1023px) { nav a[href="#top"] img { height: 2rem; } }
@media (max-width: 639px)  { nav a[href="#top"] img { height: 1.75rem; } }
@media (max-width: 479px) {
  .gbadge { gap: .4rem; padding: .35rem .6rem .35rem .5rem; }
  .gbadge svg[viewBox="0 0 24 24"] { width: 11px; height: 11px; }
}
@media (max-width: 359px) { .gbadge .text-\[\#FBBF24\] { display: none; } }

/* ═══ Trust-Cards (Hero) — einheitliche rounded-square Cards in Markenblau ═══ */
.trust-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1rem .7rem .7rem;
  border-radius: 16px;
  min-width: 232px;
  background: var(--accent);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 38px -18px rgba(14,55,86,.85),
    inset 0 1px 0 rgba(255,255,255,.10);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, background .25s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  background: var(--accent-deep);
  box-shadow:
    0 26px 50px -18px rgba(14,55,86,.95),
    inset 0 1px 0 rgba(255,255,255,.16);
}
/* Shine-Sweep beim Hover (passt zum Button-Glanz) */
.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
}
.trust-card:hover::after { animation: btn-shine .9s cubic-bezier(.25,.6,.3,1); }

.trust-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(255,255,255,.18);
  color: #0E3756;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.6);
}
.trust-card-ico--white { background: #fff; }

/* Hero Checkpoints (statt Trust-Widgets) */
.hero-checks { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.hero-checks li { display: flex; align-items: center; gap: .7rem; color: #fff; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.02rem; line-height: 1.3; }
.hero-checks .ck { width: 26px; height: 26px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; background: var(--accent); color: #fff; box-shadow: 0 6px 16px -6px rgba(var(--accent-rgb), .7); }

@media (prefers-reduced-motion: reduce) {
  .trust-card::after { display: none; }
}

/* highlight swoosh under hero word — bulletproof gradient (no z-index tricks) */
.swoosh {
  background-image: linear-gradient(180deg, transparent 60%, rgba(var(--accent-rgb), .85) 60%);
  padding: 0 .08em;
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* scroll progress bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent)); z-index: 60;
  transition: width .1s linear;
}

/* sticky mobile call bar */
.mobile-callbar { box-shadow: 0 -8px 30px -10px rgba(0,0,0,.25); }

/* ─── Hero-Highlight: Marine-Blau mit Liquid-Sheen ───────
   "Kassel" wird in Marken-Blau gerendert; ein heller Streifen
   zieht beim Pageload einmalig durch das Wort (Linear/Stripe/Apple-Stil).
   Kein Underline, keine Marker-Box — moderne Typo-Akzentuierung. */
.hero-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  background-image: linear-gradient(
    100deg,
    var(--accent) 0%,
    var(--accent) 38%,
    #5FA8E0 50%,
    var(--accent) 62%,
    var(--accent) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hero-mark-sheen 1.6s cubic-bezier(.4,0,.2,1) .55s forwards;
}
@keyframes hero-mark-sheen {
  0%   { background-position: 100% 0; }
  100% { background-position: -10% 0; }
}
/* Hover-Re-Trigger: noch ein subtiler Sweep on demand */
.hero-mark:hover {
  animation: hero-mark-sheen 1.4s cubic-bezier(.4,0,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .hero-mark {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }
}


/* ─── FAQ Accordion (motion + 2-col + CTA card) ─────────── */
.faq-card {
  background: #fff;
  border: 1px solid rgba(20, 23, 28, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .4s cubic-bezier(.4,0,.2,1),
              box-shadow .4s cubic-bezier(.4,0,.2,1),
              background .4s ease;
}
.faq-card:hover { border-color: rgba(var(--accent-rgb), 0.22); }
.faq-card.is-open {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 18px 40px -22px rgba(var(--accent-rgb), 0.30),
              0 2px 8px -4px rgba(20, 23, 28, 0.06);
}

.faq-trigger {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  transition: color .25s ease;
}
.faq-trigger:hover { color: var(--accent-deep); }
.faq-card.is-open .faq-trigger > span:first-child { color: var(--accent-deep); }

.faq-plus {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  transition: background .35s ease, transform .5s cubic-bezier(.4,0,.2,1);
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .5s cubic-bezier(.6,-0.05,.2,1.4), background .25s ease;
}
.faq-plus::before { top: 50%; left: 7px; right: 7px; height: 2.2px; transform: translateY(-50%); }
.faq-plus::after  { left: 50%; top: 7px; bottom: 7px; width: 2.2px; transform: translateX(-50%) scaleY(1); }
.faq-card.is-open .faq-plus { background: var(--accent); transform: rotate(180deg); }
.faq-card.is-open .faq-plus::before { background: #fff; }
.faq-card.is-open .faq-plus::after  { transform: translateX(-50%) scaleY(0); background: #fff; }

/* Smooth open/close via grid-template-rows (Chrome 117+/FF 121+/Safari 17.4+) */
.faq-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s cubic-bezier(.4,0,.2,1);
}
.faq-card.is-open .faq-body-wrap,
.faq-card-dark.is-open .faq-body-wrap { grid-template-rows: 1fr; }
.faq-body-clip { min-height: 0; overflow: hidden; }
.faq-body-inner {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .35s ease .08s, transform .4s cubic-bezier(.4,0,.2,1) .08s;
}
.faq-card.is-open .faq-body-inner,
.faq-card-dark.is-open .faq-body-inner { opacity: 1; transform: translateY(0); }
.faq-card:not(.is-open) .faq-body-inner,
.faq-card-dark:not(.is-open) .faq-body-inner { transition: opacity .2s ease, transform .25s ease; }

/* CTA-Card rechts (dark) */
.faq-cta-card {
  background: linear-gradient(160deg, #1A1E25 0%, var(--dark, #15181D) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.faq-cta-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.20) 0%, transparent 60%);
  pointer-events: none;
}
.faq-cta-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  position: relative;
  z-index: 1;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.faq-cta-phone:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-1px);
}
.faq-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 11px 18px;
  width: 100%;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  position: relative;
  z-index: 1;
  transition: background .3s ease, transform .3s ease;
}
.faq-cta-secondary:hover { background: var(--accent-deep); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .faq-body-wrap, .faq-body-inner, .faq-plus,
  .faq-plus::before, .faq-plus::after { transition: none !important; }
}


/* ─── FAQ Aside v2: Pill-Button + Live-Counter ─────────── */
/* Single dark pill (like the reference), aber mit Hover-Microinteraction. */
.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  background: var(--ink, #14171C);
  color: #fff;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  transition: transform .35s cubic-bezier(.16,1,.3,1),
              box-shadow .35s ease,
              gap .35s cubic-bezier(.16,1,.3,1),
              padding-right .35s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 12px 28px -16px rgba(20, 23, 28, 0.55);
  white-space: nowrap;
}
.faq-pill:hover {
  transform: translateY(-2px);
  gap: 14px;
  padding-right: 22px;
  box-shadow: 0 18px 36px -16px rgba(20, 23, 28, 0.6),
              0 0 0 1px rgba(var(--accent-rgb), 0.4);
}
.faq-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  flex-shrink: 0;
  transition: background .3s ease;
}
.faq-pill:hover .faq-pill-icon {
  background: var(--accent);
}
.faq-pill-num {
  line-height: 1;
}
.faq-pill-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.faq-pill:hover .faq-pill-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Live-Counter: zeigt welche Frage offen ist (01/06, 02/06 ...). */
/* "Fresh"-Element — wandert mit dem Open-State, fühlt sich interaktiv an. */
.faq-counter {
  margin-top: 56px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 0.85;
  user-select: none;
}
.faq-counter-num {
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
  display: inline-block;
  min-width: 2ch;
}
.faq-card.is-open ~ * .faq-counter-num,
aside .faq-counter-num { /* re-render flicker */ }
.faq-counter-divider {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--accent);
  opacity: 0.25;
  font-weight: 500;
  margin: 0 2px;
}
.faq-counter-total {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--accent);
  opacity: 0.35;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .faq-counter { margin-top: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-pill, .faq-pill-icon, .faq-pill-arrow, .faq-counter-num { transition: none !important; }
}

/* ═══ Hero Glass-Stage Widget (blau, 1:1 nach EB Entruempelung) ═══ */
.hero-stage { position: relative; width: min(100%, 420px); margin-inline: auto; height: 580px; }
@media (max-width: 480px) { .hero-stage { height: 500px; } }
.hero-stage__bg {
  position: absolute; inset: 0; z-index: 0; border-radius: 32px; overflow: hidden;
  background:
    radial-gradient(60% 52% at 86% 2%, rgba(92,170,255,.68) 0%, transparent 60%),
    linear-gradient(160deg, rgba(30,60,96,.42) 0%, rgba(21,24,29,.60) 62%, rgba(17,20,25,.78) 100%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  backdrop-filter: blur(10px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 0 0 1px rgba(255,255,255,.12),
    0 34px 70px -30px rgba(0,0,0,.6);
}
.hero-stage__bg::after {
  content: ""; position: absolute; inset: 0; border-radius: 32px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 32%);
}
.hero-stage__fig {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  height: 100%; width: auto; max-width: none; object-fit: contain; object-position: bottom;
  z-index: 1; filter: drop-shadow(0 18px 26px rgba(0,0,0,.5));
}
.hero-card {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  border-radius: 24px; padding: 17px 20px 19px;
  background: linear-gradient(160deg, rgba(22,40,60,.52) 0%, rgba(15,18,22,.58) 100%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), inset 0 0 28px rgba(120,180,236,.06), 0 24px 50px -22px rgba(0,0,0,.65);
}
.hero-card__name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.35rem; color: #fff; line-height: 1.1; }
.hero-card__role { font-size: .85rem; color: rgba(255,255,255,.72); margin-top: .2rem; }
.hero-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-card__stat { text-align: left; }
.hero-card__num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem; color: #5AA9F0; line-height: 1; }
.hero-card__lbl { font-family: 'Sora', sans-serif; font-size: .61rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-top: .35rem; }
.hero-card__rating { display: flex; align-items: center; gap: .5rem; margin-top: .9rem; padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-card__g { width: 18px; height: 18px; flex: none; }
.hero-card__score { font-family: 'Sora', sans-serif; font-weight: 800; color: #fff; font-size: .95rem; }
.hero-card__reviews { font-size: .72rem; color: rgba(255,255,255,.55); margin-left: auto; }

/* ═══ Animierte Danke-Nachricht (Contact-Form + Quiz-Form) ═══════════════ */
.thank-stage {
  position: relative;
  padding: 56px 24px 64px;
  text-align: center;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thank-fx {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.thank-disc {
  position: relative;
  z-index: 3;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 22px 50px -18px rgba(var(--accent-rgb), 0.65),
              inset 0 1px 0 rgba(255,255,255,0.12);
  animation: thank-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.thank-disc--copper { background: var(--copper); box-shadow: 0 22px 50px -18px rgba(var(--copper-rgb), 0.6), inset 0 1px 0 rgba(255,255,255,0.16); }
@keyframes thank-pop {
  0%   { transform: scale(0);    opacity: 0; }
  55%  { transform: scale(1.18); opacity: 1; }
  82%  { transform: scale(0.94); }
  100% { transform: scale(1);    opacity: 1; }
}
.thank-check {
  display: block;
  width: 60px; height: 60px;
}
.thank-check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
  animation: thank-check-draw 0.55s 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes thank-check-draw { to { stroke-dashoffset: 0; } }

.thank-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  animation: thank-ring 1.6s 0.32s ease-out forwards;
}
.thank-ring--2 {
  animation-delay: 0.7s;
  border-color: var(--copper);
}
@keyframes thank-ring {
  0%   { transform: scale(0.5); opacity: 0; }
  18%  { opacity: 0.65; }
  100% { transform: scale(2.6); opacity: 0; }
}
.thank-spark {
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--copper);
  opacity: 0;
  z-index: 2;
  transform-origin: center;
  animation: thank-spark 0.95s 0.42s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.thank-spark:nth-child(odd) { background: var(--accent); width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; }
@keyframes thank-spark {
  0%   { opacity: 0; transform: rotate(var(--a, 0deg)) translateY(0) scale(0.4); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(var(--a, 0deg)) translateY(-78px) scale(0.3); }
}
.thank-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 2.85rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 18px;
  opacity: 0;
  animation: thank-fade-up 0.7s 0.92s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.thank-sub {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  max-width: 460px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: thank-fade-up 0.7s 1.06s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.thank-cta {
  display: inline-flex;
  opacity: 0;
  animation: thank-fade-up 0.7s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes thank-fade-up {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .thank-disc, .thank-check path, .thank-ring, .thank-spark, .thank-title, .thank-sub, .thank-cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* === Fesche dunkle Cards: Werte (.bg-ink-2) + Prozess (#ablauf) === */
#ablauf .card-lift,
.bg-ink-2 .card-lift {
  position: relative;
  background:
    radial-gradient(135% 120% at 0% 0%, rgba(var(--accent-rgb), .24) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 36px -24px rgba(0,0,0,.85);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease;
}
#ablauf .card-lift::before,
.bg-ink-2 .card-lift::before {
  content: '';
  position: absolute; top: 0; left: 1.6rem; right: 1.6rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(90,165,255,.95), transparent);
  opacity: .4; transition: opacity .4s ease;
}
#ablauf .card-lift:hover,
.bg-ink-2 .card-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(90,165,255,.38);
  box-shadow: 0 32px 62px -28px rgba(0,0,0,.92), 0 0 34px -12px rgba(var(--accent-rgb), .6);
}
#ablauf .card-lift:hover::before,
.bg-ink-2 .card-lift:hover::before { opacity: 1; }

/* Icon-Chips: blauer Verlauf + Glow + weisses Icon */
#ablauf .card-lift .bg-brand,
.bg-ink-2 .card-lift .bg-brand {
  background: linear-gradient(140deg, #3E8AD8 0%, #0E3756 92%);
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(62,138,216,.55), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
#ablauf .card-lift:hover .bg-brand,
.bg-ink-2 .card-lift:hover .bg-brand { transform: translateY(-2px) scale(1.05); }

/* Prozess-Nummern als blauer Verlauf statt grau */
#ablauf .card-lift .text-7xl {
  background: linear-gradient(180deg, rgba(90,165,255,.30) 0%, rgba(90,165,255,.05) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
@media (prefers-reduced-motion: reduce) {
  #ablauf .card-lift, .bg-ink-2 .card-lift,
  #ablauf .card-lift .bg-brand, .bg-ink-2 .card-lift .bg-brand { transition: none; }
}

/* === Features-Sektion ("Warum...") in Markenblau, Cards weiss === */
.feat-section {
  background:
    radial-gradient(70% 60% at 50% -20%, rgba(91,168,224,.10) 0%, transparent 70%),
    linear-gradient(180deg, #0E1B2C 0%, #0A1422 60%, #0A1320 100%);
}
.feat-section h2 { color: #fff; }
.feat-section span.uppercase { color: #93BEEE !important; }
.feat-section span.uppercase > span { background: #93BEEE !important; }
/* Dark Glass Cards passend zur Marine-Section (statt harter weisser Cards). */
.feat-section .feat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,.45);
}
.feat-section .feat-card:hover {
  background: linear-gradient(180deg, rgba(143,190,223,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(143,190,223,0.32);
  box-shadow: 0 30px 60px -28px rgba(91,168,224,.35);
}
.feat-section .feat-card h3 { color: #fff; }
.feat-section .feat-card p  { color: rgba(255,255,255,0.62); }
.feat-section .feat-num { color: rgba(143,190,223,0.10); }
.feat-section .feat-rule { background: #8FBEDF; opacity: 0.7; }
.feat-section .feat-ico {
  background: linear-gradient(140deg, #3E8AD8 0%, #0E3756 92%);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(62,138,216,.45), inset 0 1px 0 rgba(255,255,255,.3);
}


/* ─── FAQ v3: Dark Editorial Layout ────────────────────── */
/* "Fragen"-Akzent: Archivo italic (gleiche Font wie Hero), heller Marine-Ton. */
.faq-display-italic {
  font-family: 'Sora', system-ui, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #8FBEDF;
  letter-spacing: -0.025em;
  padding: 0 .04em;
}

/* Dark Accordion Cards */
.faq-card-dark {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .4s cubic-bezier(.4,0,.2,1),
              background .4s cubic-bezier(.4,0,.2,1),
              box-shadow .4s cubic-bezier(.4,0,.2,1);
}
.faq-card-dark:hover {
  border-color: rgba(143, 190, 223, 0.28);
  background: rgba(255, 255, 255, 0.05);
}
.faq-card-dark.is-open {
  background: rgba(143, 190, 223, 0.08);
  border-color: rgba(143, 190, 223, 0.45);
  box-shadow: 0 20px 50px -28px rgba(91, 168, 224, 0.4);
}
.faq-card-dark .faq-trigger {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  transition: color .25s ease;
}
.faq-card-dark.is-open .faq-trigger > span:first-child {
  color: #8FBEDF;
}

/* Plus → X morph für dark variant */
.faq-plus-dark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transition: background .35s ease, transform .5s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.faq-plus-dark::before, .faq-plus-dark::after {
  content: '';
  position: absolute;
  background: #8FBEDF;
  border-radius: 2px;
  transition: transform .5s cubic-bezier(.6,-0.05,.2,1.4), background .25s ease;
}
.faq-plus-dark::before { top: 50%; left: 8px; right: 8px; height: 2.2px; transform: translateY(-50%); }
.faq-plus-dark::after  { left: 50%; top: 8px; bottom: 8px; width: 2.2px; transform: translateX(-50%) scaleY(1); }
.faq-card-dark.is-open .faq-plus-dark { background: #8FBEDF; transform: rotate(180deg); }
.faq-card-dark.is-open .faq-plus-dark::before { background: var(--ink); }
.faq-card-dark.is-open .faq-plus-dark::after  { transform: translateX(-50%) scaleY(0); background: var(--ink); }

/* Image Card (right) */
.faq-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0E1218;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}
/* Bild nach links, Accordion nach rechts (nur Desktop; mobil bleiben die Fragen oben) */
@media (min-width: 1024px) {
  .faq-image-card { order: -1; }
}
.faq-image-card-img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 1023px) {
  .faq-image-card-img { height: 360px; }
}
@media (max-width: 639px) {
  .faq-image-card-img { height: 300px; }
}

/* Google badge top-right */
.faq-google-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(20, 23, 28, 0.78);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  z-index: 2;
}

/* Overlay bottom (text + CTA) */
.faq-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 28px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 45%,
    rgba(8, 10, 14, 0.55) 70%,
    rgba(8, 10, 14, 0.92) 100%
  );
  z-index: 1;
}
.faq-image-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: background .3s ease, transform .35s cubic-bezier(.16,1,.3,1),
              gap .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
  box-shadow: 0 14px 30px -14px rgba(var(--accent-rgb), 0.7);
}
.faq-image-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  gap: 11px;
  box-shadow: 0 20px 38px -14px rgba(var(--accent-rgb), 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .faq-card-dark, .faq-plus-dark, .faq-plus-dark::before, .faq-plus-dark::after,
  .faq-image-cta { transition: none !important; }
}

/* === Hero: Trotec-Foto als Hintergrund + Schatten-Overlay === */
#top {
  background:
    linear-gradient(100deg, rgba(8,12,20,.90) 0%, rgba(8,12,20,.70) 38%, rgba(8,12,20,.34) 70%, rgba(8,12,20,.14) 100%),
    url('img/hero-bg.jpg') center right / cover no-repeat;
}
#top .bg-dots { display: none; }
#top h1.hero-el { color: #fff; }
#top p.hero-el { color: rgba(255,255,255,.85); }
#top .hero-mark {
  background-image: linear-gradient(100deg, #6FB4EC 0%, #6FB4EC 38%, #CDE6FF 50%, #6FB4EC 62%, #6FB4EC 100%);
}
@media (max-width: 1023px) {
  #top {
    background:
      linear-gradient(180deg, rgba(8,12,20,.84) 0%, rgba(8,12,20,.66) 55%, rgba(8,12,20,.62) 100%),
      url('img/hero-bg.jpg') center / cover no-repeat;
  }
}

/* Logo-Glow entfernt (auf Wunsch) */
nav a[href="#top"]::before { display: none !important; animation: none !important; }

/* ═══ Ratgeber: Featured + Side-List (hell, blau) ═══ */
.rg { position: relative; overflow: hidden; padding: 2.75rem 1.25rem; background: #fff; color: var(--ink); }
@media (min-width: 768px) { .rg { padding: 3.5rem 2rem; } }
.rg::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.6; background-image: radial-gradient(rgba(20,23,28,.045) 1px, transparent 1px); background-size: 26px 26px; }
.rg-glow { position:absolute; top:-22%; right:-8%; width:46%; height:64%; pointer-events:none; background: radial-gradient(ellipse, rgba(14,55,86,.07) 0%, transparent 72%); }
.rg-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.rg-head { display:flex; align-items:flex-end; justify-content:space-between; gap:1.2rem 2.5rem; flex-wrap:wrap; margin-bottom:1.6rem; }
.rg-head-text { flex:1 1 auto; min-width:0; }
.rg-head .rg-all { flex:0 0 auto; align-self:flex-end; margin-bottom:.15rem; }
.rg-eyebrow { display:inline-flex; align-items:center; gap:.7rem; font-family:'Sora',sans-serif; font-weight:700; letter-spacing:.16em; text-transform:uppercase; font-size:.72rem; color:var(--accent); }
.rg-eyebrow i { width:24px; height:2px; border-radius:2px; background:var(--accent); }
.rg-title { font-family:'Sora',sans-serif; font-weight:800; font-size:clamp(1.6rem,2.9vw,2.35rem); line-height:1.12; letter-spacing:-.02em; margin:.8rem 0 0; max-width:30ch; color:var(--ink); }
.rg-sub { color:var(--body); margin:.8rem 0 0; line-height:1.6; font-size:.98rem; max-width:70ch; }
.rg-all { display:inline-flex; align-items:center; gap:.5rem; white-space:nowrap; padding:.72rem 1.25rem; border:1px solid rgba(20,23,28,.16); border-radius:100px; color:var(--ink); text-decoration:none; font-family:'Sora',sans-serif; font-weight:600; font-size:.92rem; transition:background .3s,border-color .3s,transform .3s,color .3s; }
.rg-all:hover { background:var(--accent); border-color:var(--accent); color:#fff; transform:translateY(-2px); }
.rg-all svg { transition:transform .3s ease; }
.rg-all:hover svg { transform:translateX(3px); }
.rg-grid { display:grid; grid-template-columns:1fr; gap:1.1rem; }
@media (min-width:1024px){ .rg-grid { grid-template-columns:1.45fr 1fr; gap:1.2rem; align-items:stretch; } }
.rg-feat { display:flex; flex-direction:column; border-radius:24px; overflow:hidden; color:var(--ink); text-decoration:none; background:#fff; border:1px solid rgba(20,23,28,.08); box-shadow:0 1px 2px rgba(20,23,28,.04); transition:transform .45s cubic-bezier(.16,1,.3,1),border-color .45s,box-shadow .45s; }
.rg-feat:hover { transform:translateY(-5px); border-color:rgba(14,55,86,.35); box-shadow:0 34px 60px -34px rgba(20,23,28,.4); }
.rg-feat-media { position:relative; height:clamp(170px,17vw,210px); overflow:hidden; }
.rg-feat-media img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.16,1,.3,1); }
.rg-feat:hover .rg-feat-media img { transform:scale(1.06); }
.rg-cat { position:absolute; top:1rem; left:1rem; padding:.4rem .85rem; border-radius:100px; background:var(--accent); color:#fff; font-family:'Sora',sans-serif; font-weight:700; font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; }
.rg-feat-body { padding:1.35rem; display:flex; flex-direction:column; flex:1; }
@media (min-width:768px){ .rg-feat-body { padding:1.6rem 1.7rem; } }
.rg-feat-title { font-family:'Sora',sans-serif; font-weight:800; font-size:clamp(1.15rem,1.6vw,1.4rem); line-height:1.18; letter-spacing:-.01em; color:var(--ink); }
.rg-feat-ex { color:var(--body); line-height:1.55; margin-top:.6rem; font-size:.9rem; flex:1; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.rg-foot { display:flex; align-items:center; gap:1rem; margin-top:1rem; padding-top:.9rem; border-top:1px solid rgba(20,23,28,.1); }
.rg-foot-meta { font-size:.82rem; color:var(--muted); }
.rg-dot { margin:0 .45rem; opacity:.5; }
.rg-readmore { display:inline-flex; align-items:center; gap:.45rem; margin-left:auto; color:var(--accent); font-family:'Sora',sans-serif; font-weight:700; font-size:.92rem; white-space:nowrap; }
.rg-readmore svg { transition:transform .3s ease; }
.rg-feat:hover .rg-readmore svg { transform:translateX(4px); }
.rg-side { display:flex; flex-direction:column; gap:1.1rem; }
.rg-row { display:flex; gap:.95rem; align-items:stretch; padding:.85rem; border-radius:16px; color:var(--ink); text-decoration:none; flex:1; background:#fff; border:1px solid rgba(20,23,28,.08); box-shadow:0 1px 2px rgba(20,23,28,.04); transition:transform .45s cubic-bezier(.16,1,.3,1),border-color .45s,box-shadow .45s; }
.rg-row:hover { transform:translateY(-3px); border-color:rgba(14,55,86,.35); box-shadow:0 18px 36px -22px rgba(20,23,28,.3); }
.rg-row-media { flex:0 0 92px; align-self:stretch; min-height:92px; border-radius:12px; overflow:hidden; }
.rg-row-media img { width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.16,1,.3,1); }
.rg-row:hover .rg-row-media img { transform:scale(1.07); }
.rg-row-body { flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; }
.rg-cat-sm { font-family:'Sora',sans-serif; font-weight:700; font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); }
.rg-row-title { font-family:'Sora',sans-serif; font-weight:700; font-size:.98rem; line-height:1.24; margin:.3rem 0 .35rem; color:var(--ink); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.rg-row-ex { color:var(--body); font-size:.82rem; line-height:1.5; margin:0 0 .45rem; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.rg-row-meta { font-size:.76rem; color:var(--muted); }
.rg-row-arrow { flex:0 0 auto; align-self:center; color:rgba(20,23,28,.35); transition:transform .3s,color .3s; }
.rg-row:hover .rg-row-arrow { color:var(--accent); transform:translateX(3px) rotate(-45deg); }
@media (max-width:520px){ .rg-row { flex-direction:column; align-items:flex-start; } .rg-row-media { max-width:none; width:100%; aspect-ratio:16/9; flex-basis:auto; min-height:0; } .rg-row-arrow { display:none; } }


/* ─── Features v2: Cert-Seal + horizontal Trust-Rows ────── */
/* Linkes Seal: rotierender Cert-Stamp mit textPath, Copper-Sterne, Marine-Disc. */
.feat-seal-wrap {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.feat-seal {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  filter: drop-shadow(0 18px 36px rgba(91,168,224,0.18));
}
.feat-seal-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.feat-seal-text {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.feat-seal-rotor {
  transform-origin: 120px 120px;
  animation: feat-seal-spin 28s linear infinite;
}
@keyframes feat-seal-spin {
  to { transform: rotate(360deg); }
}
.feat-seal-caption {
  flex: 1;
  min-width: 180px;
}

/* Rechte Trust-Rows: Icon-links / Text-rechts, dezente Hover-Marine-Line links */
.feat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid rgba(143,190,223,0.4);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: border-color .4s ease, background .4s ease,
              transform .4s cubic-bezier(.16,1,.3,1),
              box-shadow .4s ease;
}
.feat-row:hover {
  border-color: rgba(255,255,255,0.16);
  border-left-color: #8FBEDF;
  background: linear-gradient(180deg, rgba(143,190,223,0.08) 0%, rgba(255,255,255,0.03) 100%);
  transform: translateX(4px);
  box-shadow: 0 14px 30px -18px rgba(91,168,224,0.35);
}
.feat-row-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #3E8AD8 0%, #0E3756 92%);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(62,138,216,.45), inset 0 1px 0 rgba(255,255,255,.3);
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-row-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #8FBEDF;
  opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
  .feat-seal-rotor { animation: none; }
  .feat-row { transition: none; }
}

/* Feat-Grid: custom 2-col layout (lg+) - kompiliertes Tailwind hat das arbitrary lg:grid-cols-[5fr_7fr] nicht. */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .feat-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

/* Step-Form Progress-Bar (für 3-Step Lead-Form). */
.step-progress {
  height: 3px;
  background: rgba(20,23,28,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.step-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  border-radius: 999px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   DE-SAAS PASS  -  weniger Tech/Glas, mehr Handwerk-Vertrauen
   ============================================================ */

/* 1. Schrift: Sora (geometrisch/techy) -> Archivo (bodenstaendiger) */
@font-face{font-family:'ArchivoDS';font-style:normal;font-weight:400 900;font-display:swap;src:url('fonts/archivo-latin.woff2') format('woff2');}
.font-heading{ font-family:'ArchivoDS','Archivo',system-ui,sans-serif !important; letter-spacing:-0.01em; }

/* 2. Hero-Stat-Card entglasen + Metrik-Zeile (800+/95%/24/7 = SaaS-Dashboard) raus */
.hero-card{ -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
  background:#161A20 !important; border:1px solid rgba(255,255,255,.09) !important;
  box-shadow:0 24px 60px -30px rgba(0,0,0,.85) !important; }
.hero-stage__bg{ -webkit-backdrop-filter:none !important; backdrop-filter:none !important; }
.hero-card__stats{ display:none !important; }

/* 3. Tech-Effekte raus: Glows, Shimmer, Gradient-Text */
.gbadge{ animation:none !important; }
.gbadge::before{ display:none !important; }
.trust-card::after{ display:none !important; }
.btn-primary::after,.btn-dark::after,.btn-wa::after,.btn-glass::after,.btn-ghost::after{ display:none !important; }
.hero-mark{ background:none !important; -webkit-text-fill-color:#6FB4EC !important; color:#6FB4EC !important; animation:none !important; }
#ablauf .card-lift:hover, .bg-ink-2 .card-lift:hover{ box-shadow:0 24px 48px -26px rgba(0,0,0,.8) !important; }

/* 4. Waermerer Akzent: Eyebrows in Kupfer statt kaltem Blau */
.text-brand{ color: var(--copper) !important; }

/* Kontakt-Section Cards (rechts): Glass-Card mit Icon + Text. */
.kontakt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: background .3s ease, border-color .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
}
.kontakt-card:hover {
  background: rgba(143,190,223,0.07);
  border-color: rgba(143,190,223,0.32);
  transform: translateY(-2px);
}
.kontakt-card-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(140deg, #3E8AD8 0%, #0E3756 92%);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -6px rgba(62,138,216,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Google-Widget aus der Navbar entfernt (auf Wunsch) */
nav .gbadge { display: none !important; }

/* ─── Features v3: Dark-Card LEFT + numbered Rows RIGHT ─── */
.feat-hero-card {
  position: relative;
  background: linear-gradient(160deg, #1F4C77 0%, #0E2D4D 50%, #081A2D 100%);
  border: 1px solid rgba(143,190,223,0.18);
  border-radius: 26px;
  padding: 36px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  overflow: hidden;
  box-shadow: 0 26px 60px -30px rgba(0,0,0,0.55);
}
.feat-hero-shape {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 230px;
  height: 230px;
  pointer-events: none;
  opacity: 0.6;
}
.feat-hero-body { position: relative; z-index: 1; }
.feat-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8FBEDF;
  margin-bottom: 22px;
}
.feat-hero-eyebrow-dash {
  width: 26px;
  height: 2px;
  background: #8FBEDF;
  border-radius: 2px;
}
.feat-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}
.feat-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 38ch;
}
.feat-hero-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.feat-hero-foot-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.12);
}

/* RIGHT: numbered rows mit hairline divider */
.feat-rows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4px;
}
.feat-row-v3 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left .35s cubic-bezier(.16,1,.3,1);
}
.feat-row-v3.is-last { border-bottom: 0; }
.feat-row-v3:hover { padding-left: 6px; }
.feat-row-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(143,190,223,0.22);
  user-select: none;
  font-variant-numeric: tabular-nums;
}
.feat-row-content { padding-top: 6px; }
.feat-row-ico-v3 {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143,190,223,0.12);
  color: #8FBEDF;
  border: 1px solid rgba(143,190,223,0.22);
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .feat-hero-card { min-height: 0; padding: 28px 24px; }
  .feat-hero-foot { gap: 16px; }
}

/* Nav-Reiter mittig zentriert + weiss */
.nav-desktop-links { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.nav-desktop-links a { color: #fff !important; }
.nav-desktop-links a::after { background: var(--copper) !important; }

/* ═══ Contact-Form (dark glas card, label-above-input) ═══════════════ */
.contact-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5),
              inset 0 1px 0 rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
  .contact-card { padding: 36px 36px; }
}

.contact-form { display: flex; flex-direction: column; gap: 12px; }

.contact-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .contact-field-grid { grid-template-columns: 1fr; }
}

.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-flbl {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
}
.contact-req { color: #5FA8E0; font-style: normal; margin-left: 2px; }

.contact-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.contact-input::placeholder { color: rgba(255,255,255,0.38); }
.contact-input:focus {
  outline: none;
  border-color: #5FA8E0;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(95,168,224,0.14);
}
.contact-input:hover { border-color: rgba(255,255,255,0.18); }

.contact-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235FA8E0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-select option { background: #15181D; color: #fff; }

.contact-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  cursor: pointer;
  padding-top: 2px;
}
.contact-consent a { color: rgba(255,255,255,0.82); }
.contact-cb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.contact-cb:checked {
  background: #5FA8E0;
  border-color: #5FA8E0;
}
.contact-cb:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 6px; height: 10px;
  border: solid #15181D;
  border-width: 0 2.4px 2.4px 0;
  transform: rotate(45deg);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 12px 20px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #1B4F7C 0%, #0E3756 50%, #0B2C45 100%);
  box-shadow: 0 18px 40px -14px rgba(14,55,86,0.6),
              inset 0 1px 0 rgba(255,255,255,0.16);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, background 0.35s ease;
}
.contact-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2C6094 0%, #1B4F7C 50%, #0E3756 100%);
  box-shadow: 0 24px 50px -16px rgba(14,55,86,0.8),
              inset 0 1px 0 rgba(255,255,255,0.22);
}
.contact-submit:active { transform: translateY(0); }
.contact-submit svg { stroke: currentColor; transition: transform 0.3s ease; }
.contact-submit:hover svg { transform: translateX(3px); }

.contact-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.48);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.55;
}

/* ═══ Contact-Form Style 2 (schwarze Card, 2-col grid, blau-weiß Submit) ═══ */
.contact-card {
  background: #0A0A0A !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 24px !important;
  padding: 32px 30px !important;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6),
              inset 0 1px 0 rgba(255,255,255,0.04) !important;
  backdrop-filter: none !important;
}
@media (min-width: 768px) {
  .contact-card { padding: 40px 38px !important; }
}

.ff2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
  margin-bottom: 20px;
}
@media (max-width: 540px) { .ff2-grid { grid-template-columns: 1fr; } }
.ff2-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ff2-field--full { grid-column: 1 / -1; }

.ff2-lbl {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.ff2-req { color: #5FA8E0; font-style: normal; margin-left: 2px; }

.ff2-input {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.ff2-input::placeholder { color: rgba(255,255,255,0.32); }
.ff2-input:hover { border-color: rgba(255,255,255,0.18); background: #1F1F1F; }
.ff2-input:focus {
  outline: none;
  border-color: #5FA8E0;
  background: #1F1F1F;
  box-shadow: 0 0 0 3px rgba(95,168,224,0.16);
}

.ff2-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}
.ff2-select option { background: #1A1A1A; color: #fff; }

.ff2-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

/* iOS: kein Auto-Zoom beim Antippen von Formularfeldern.
   Safari zoomt rein, sobald ein Feld Schrift < 16px hat -> auf Mobile alle Felder auf 16px. */
@media (max-width: 767px) {
  input:not([type="checkbox"]):not([type="radio"]),
  textarea,
  select { font-size: 16px !important; }
}

/* Submit — blau-weiß Gradient wie im Bild */
.ff2-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 4px 0 14px;
  padding: 14px 24px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #5FA8E0 0%, #2C6094 35%, #0E3756 100%);
  box-shadow: 0 18px 44px -14px rgba(46,96,148,0.7),
              inset 0 1px 0 rgba(255,255,255,0.28);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, background 0.35s ease;
}
.ff2-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #8FC4EB 0%, #4A7DB8 35%, #1B4F7C 100%);
  box-shadow: 0 24px 56px -16px rgba(46,96,148,0.85),
              inset 0 1px 0 rgba(255,255,255,0.36);
}
.ff2-submit:active { transform: translateY(0); }

.ff2-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin: 0;
}
.ff2-note a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 2px; }
.ff2-note a:hover { color: #fff; }

/* Form-Header (h3 + sub) etwas kompakter im schwarzen Layout */
.contact-card form > h3 { color: #fff; }

/* ═══ Footer: kompakte 4-Spalten-Reihe (arbitrary grid-cols-Klasse kompiliert nicht) ═══ */
.ft-grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; }
@media (min-width: 768px) {
  .ft-grid { grid-template-columns: 1.7fr 1fr 1fr 1.35fr; gap: 2rem; align-items: start; }
}

/* ─── Dark Marine Form-Card (gleiche Farben wie FAQ-Section v3) ─── */
.kf-dark {
  background: #FFFFFF;
  border: 1px solid rgba(20,23,28,0.08);
  box-shadow: 0 30px 70px -34px rgba(20,23,28,0.28);
  color: var(--ink);
}
.kf-dark h3 { color: var(--ink); }
.kf-dark p { color: var(--body); }
.kf-dark label { color: var(--ink) !important; }
.kf-dark .text-content { color: var(--ink) !important; }
.kf-dark .text-content-secondary { color: var(--muted) !important; }
.kf-dark .border-black\/5,
.kf-dark .border-black\/10 { border-color: rgba(20,23,28,0.10) !important; }
.kf-dark .bg-surface-alt { background: #EEF3F8 !important; }
.kf-dark .text-brand-deep { color: var(--accent-deep) !important; }
.kf-dark .bg-brand\/15 { background: rgba(14,55,86,0.08) !important; }
/* Progress-Bar */
.kf-dark .h-1.rounded-full.bg-surface-alt > div,
.kf-dark .h-1\.5.rounded-full.bg-surface-alt > div {
  background: linear-gradient(90deg, #8FBEDF, #3E8AD8) !important;
}
/* Choice-Tiles dark */
.kf-dark .choice-tile {
  background: #F4F7FA !important;
  border-color: rgba(20,23,28,0.12) !important;
  color: var(--ink);
}
.kf-dark .choice-tile:hover {
  background: rgba(14,55,86,0.05) !important;
  border-color: rgba(14,55,86,0.45) !important;
}
.kf-dark .choice-active {
  border-color: var(--accent) !important;
  background: rgba(14,55,86,0.07) !important;
  box-shadow: 0 0 0 3px rgba(14,55,86,0.16) !important;
}
.kf-dark .choice-tile span,
.kf-dark .choice-tile div { color: inherit !important; }
.kf-dark .choice-tile .text-content { color: var(--ink) !important; }
.kf-dark .choice-tile .text-content-secondary { color: var(--muted) !important; }
.kf-dark .choice-tile span.bg-brand\/15 { background: rgba(14,55,86,0.10) !important; color: var(--accent-deep) !important; }
/* Inputs dark */
.kf-dark .field-light {
  background: #F4F7FA !important;
  border-color: rgba(20,23,28,0.14) !important;
  color: var(--ink) !important;
}
.kf-dark .field-light::placeholder { color: var(--muted) !important; }
.kf-dark .field-light:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px rgba(14,55,86,0.12) !important;
}
.kf-dark a.text-brand-deep { color: var(--accent-deep) !important; }
.kf-dark a.text-brand-deep:hover { color: var(--accent) !important; }

/* ─── Retro-Sticker oben rechts ─── */
.kf-sticker {
  position: absolute;
  top: -38px;
  right: -32px;
  width: 142px;
  height: 142px;
  transform: rotate(-12deg);
  z-index: 5;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.35));
  pointer-events: none;
  animation: kf-sticker-wobble 5s ease-in-out infinite;
}
.kf-sticker svg { width: 100%; height: 100%; overflow: visible; }
.kf-sticker-spin { transform-origin: 65px 65px; animation: kf-sticker-spin 22s linear infinite; }
@keyframes kf-sticker-spin { to { transform: rotate(360deg); } }
@keyframes kf-sticker-wobble {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50%      { transform: rotate(-8deg)  scale(1.04); }
}
@media (max-width: 1023px) {
  .kf-sticker { width: 116px; height: 116px; top: -28px; right: -18px; }
}
@media (prefers-reduced-motion: reduce) {
  .kf-sticker { animation: none; }
  .kf-sticker-spin { animation: none; }
}

/* ═══ Footer-Padding (Tailwind pt-/pb-Klassen kompilieren hier nicht zuverlässig) ═══ */
.ft-footer { padding-top: 3rem; padding-bottom: 2.75rem; }
@media (min-width: 1024px) { .ft-footer { padding-top: 3.25rem; padding-bottom: 2.5rem; } }

/* === Segments: 3-Zeilen-Layout (Thumbnail links, Pill-Tags rechts) === */
.seg-list { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.seg-row {
  display: flex; gap: 1.4rem; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 1rem 1.4rem 1rem 1rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
}
.seg-row:hover { transform: translateY(-3px); border-color: rgba(var(--accent-rgb), .3);
  box-shadow: 0 18px 40px -26px rgba(20,23,28,.3); }
.seg-thumb { position: relative; flex-shrink: 0; width: 210px; height: 140px;
  border-radius: 1rem; overflow: hidden; }
.seg-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.seg-badge { position: absolute; left: .65rem; bottom: .65rem;
  background: rgba(10,12,16,.8); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .01em; padding: .28rem .65rem; border-radius: 999px;
  font-family: 'ArchivoDS','Archivo',sans-serif; }
.seg-body { flex: 1; min-width: 0; }
.seg-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .45rem; }
.seg-ico { width: 2.1rem; height: 2.1rem; border-radius: .6rem; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--accent-rgb), .1); color: var(--accent); }
.seg-title { font-family: 'ArchivoDS','Archivo',sans-serif; font-weight: 700;
  font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
.seg-desc { color: var(--body); font-size: 14.5px; line-height: 1.55; margin-bottom: .85rem; }
.seg-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.seg-tag { display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(var(--accent-rgb), .06); color: var(--accent-deep);
  border: 1px solid rgba(var(--accent-rgb), .14);
  font-size: 12.5px; font-weight: 600; padding: .34rem .72rem; border-radius: 999px;
  font-family: 'ArchivoDS','Archivo',sans-serif; }
.seg-tag svg { color: var(--copper); flex-shrink: 0; }
@media (max-width: 640px) {
  .seg-row { flex-direction: column; align-items: stretch; padding: 1rem; }
  .seg-thumb { width: 100%; height: 160px; }
}

/* === Segments groesser === */
.seg-list { max-width: 72rem; gap: 1.5rem; }
.seg-row { gap: 1.9rem; padding: 1.5rem 2rem 1.5rem 1.5rem; border-radius: 1.6rem; }
.seg-thumb { width: 300px; height: 195px; border-radius: 1.2rem; }
.seg-badge { font-size: 12px; padding: .34rem .8rem; }
.seg-head { gap: .8rem; margin-bottom: .6rem; }
.seg-ico { width: 2.6rem; height: 2.6rem; border-radius: .8rem; }
.seg-ico svg { width: 24px; height: 24px; }
.seg-title { font-size: 1.55rem; }
.seg-desc { font-size: 16px; line-height: 1.62; margin-bottom: 1.1rem; max-width: 60ch; }
.seg-tags { gap: .6rem; }
.seg-tag { font-size: 14px; padding: .46rem .95rem; }
.seg-tag svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .seg-thumb { width: 100%; height: 190px; }
}

/* ─── Neuer simpler Tilted-Pill statt verwirrender Kreis ─── */
.kf-sticker-pill {
  position: absolute;
  top: -22px;
  right: -18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 16px;
  background: linear-gradient(135deg, #5FA8E0 0%, #3D8DCC 100%);
  color: #fff;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transform: rotate(-6deg);
  box-shadow: 0 14px 28px -10px rgba(197,123,63,0.55), 0 2px 4px rgba(0,0,0,0.25);
  border: 1.5px solid rgba(255,255,255,0.22);
  z-index: 5;
  pointer-events: none;
  animation: kf-pill-bob 4s ease-in-out infinite;
}
.kf-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
  animation: kf-pill-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.kf-pill-text { line-height: 1; }
.kf-pill-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
}
@keyframes kf-pill-bob {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-3px); }
}
@keyframes kf-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
  60%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
@media (max-width: 1023px) {
  .kf-sticker-pill { top: -16px; right: -8px; font-size: 13px; padding: 9px 15px 9px 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .kf-sticker-pill, .kf-pill-dot { animation: none; }
}

/* ─── Stepper (Schritte 1-2-3 mit Linien + Labels statt Progress-Bar) ─── */
.kf-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px 28px;
  margin-bottom: 8px;
}
.kf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
}
.kf-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: rgba(20,23,28,0.05);
  color: var(--muted);
  border: 1px solid rgba(20,23,28,0.12);
  transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.kf-step.is-active .kf-step-circle {
  background: linear-gradient(135deg, #5FA8E0 0%, #3D8DCC 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.20);
  transform: scale(1.06);
  box-shadow: 0 8px 20px -6px rgba(61,141,204,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.kf-step.is-done .kf-step-circle {
  background: rgba(143,190,223,0.18);
  color: #8FBEDF;
  border-color: rgba(143,190,223,0.40);
}
.kf-step-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .35s ease;
}
.kf-step.is-active .kf-step-label { color: var(--ink); }
.kf-step.is-done .kf-step-label { color: var(--muted); }
.kf-step-bar {
  flex: 1;
  height: 2px;
  background: rgba(20,23,28,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.kf-step-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(143,190,223,0.55), rgba(143,190,223,0.85));
  border-radius: 999px;
  transition: width .55s cubic-bezier(.4,0,.2,1);
}

/* === Notruf / 24h CTA-Band (blau, Rohrbruch-Bild) === */
.notruf-card {
  position: relative; overflow: hidden; border-radius: 2rem; padding: 3.5rem 2.5rem;
  background:
    linear-gradient(100deg, rgba(8,34,56,.97) 0%, rgba(14,55,86,.88) 46%, rgba(14,55,86,.5) 100%),
    url('img/notruf-rohrbruch.jpg') center right / cover no-repeat;
  box-shadow: 0 30px 70px -34px rgba(14,55,86,.7);
}
@media (min-width: 768px){ .notruf-card { padding: 4rem 3.5rem; } }
.notruf-inner { position: relative; z-index: 1; max-width: 40rem; }
.notruf-eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--copper);
  font-family: 'ArchivoDS','Archivo',sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.notruf-title { color: #fff; font-family: 'ArchivoDS','Archivo',sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.08; letter-spacing: -.015em;
  margin-bottom: 1rem; max-width: 18ch; }
.notruf-sub { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.6;
  max-width: 34rem; margin-bottom: 1.8rem; }
.notruf-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.notruf-call { display: inline-flex; align-items: center; gap: .7rem; background: var(--copper);
  color: #231405; font-family: 'ArchivoDS','Archivo',sans-serif; font-weight: 800;
  font-size: 1.15rem; letter-spacing: .01em; padding: 1rem 1.7rem; border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(var(--copper-rgb), .7);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  animation: notruf-pulse 2.6s ease-in-out infinite; }
.notruf-call:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(var(--copper-rgb), .85); animation: none; }
@keyframes notruf-pulse {
  0%,100% { box-shadow: 0 12px 30px -10px rgba(var(--copper-rgb),.7), 0 0 0 0 rgba(var(--copper-rgb),.5); }
  60% { box-shadow: 0 12px 30px -10px rgba(var(--copper-rgb),.7), 0 0 0 16px rgba(var(--copper-rgb),0); }
}
.notruf-second { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1);
  color: #fff; border: 1px solid rgba(255,255,255,.28); font-family: 'ArchivoDS','Archivo',sans-serif;
  font-weight: 600; font-size: .98rem; padding: 1rem 1.5rem; border-radius: 999px;
  transition: background .25s, transform .25s; }
.notruf-second:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.notruf-pulse-dot { position: absolute; top: 1.5rem; right: 1.8rem; z-index: 1; width: 11px; height: 11px;
  border-radius: 50%; background: var(--copper); animation: notruf-dot 2s ease-in-out infinite; }
@keyframes notruf-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(var(--copper-rgb),.55); }
  70% { box-shadow: 0 0 0 12px rgba(var(--copper-rgb),0); }
}
@media (max-width: 640px) {
  .notruf-card { padding: 2.5rem 1.6rem; background:
    linear-gradient(180deg, rgba(8,34,56,.95) 0%, rgba(14,55,86,.9) 100%),
    url('img/notruf-rohrbruch.jpg') center / cover no-repeat; }
  .notruf-call, .notruf-second { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .notruf-call, .notruf-pulse-dot { animation: none; } }

/* ─── Reviews v2: cream bg, big rating-badge, clean cards ─── */
.rv-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(20,23,28,0.06);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 14px 30px -22px rgba(20,23,28,0.20);
  flex-shrink: 0;
}
.rv-card {
  background: #fff;
  border: 1px solid rgba(20,23,28,0.06);
  border-radius: 20px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color .35s ease, box-shadow .35s ease, transform .4s cubic-bezier(.16,1,.3,1);
}
.rv-card:hover {
  border-color: rgba(143,190,223,0.40);
  box-shadow: 0 22px 42px -28px rgba(20,23,28,0.22);
  transform: translateY(-3px);
}
.rv-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(143,190,223,0.22);
  color: #1B4F7C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

/* Notruf-Button: Marken-Blau statt Kupfer */
.notruf-call { background: #2477C9 !important; color: #fff !important;
  box-shadow: 0 12px 30px -10px rgba(36,119,201,.6) !important;
  animation: notruf-pulse-warm 2.6s ease-in-out infinite !important; }
.notruf-call:hover { box-shadow: 0 18px 40px -10px rgba(36,119,201,.85) !important; animation: none !important; }
@keyframes notruf-pulse-warm {
  0%,100% { box-shadow: 0 12px 30px -10px rgba(36,119,201,.6), 0 0 0 0 rgba(36,119,201,.5); }
  60% { box-shadow: 0 12px 30px -10px rgba(36,119,201,.6), 0 0 0 16px rgba(36,119,201,0); }
}
.notruf-eyebrow { color: #5FA8E0 !important; }
.notruf-pulse-dot { background: #5FA8E0 !important; animation: notruf-dot-warm 2s ease-in-out infinite !important; }
@keyframes notruf-dot-warm {
  0%,100% { box-shadow: 0 0 0 0 rgba(95,168,224,.55); }
  70% { box-shadow: 0 0 0 12px rgba(95,168,224,0); }
}

/* ─── Reviews: Google branding (Avatar Google-Badge, Card Pill, Rating Badge clickable) ─── */
.rv-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(20,23,28,0.06);
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 0 14px 30px -22px rgba(20,23,28,0.20);
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
}
.rv-rating-badge:hover {
  border-color: rgba(26,115,232,0.30);
  box-shadow: 0 22px 38px -20px rgba(26,115,232,0.22);
  transform: translateY(-2px);
}

/* Card top-right Google-pill (kleines Verifizierungs-Badge) */
.rv-google-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(20,23,28,0.07);
  box-shadow: 0 2px 6px -2px rgba(20,23,28,0.10);
}

/* Avatar wrap: Avatar + kleines G-Badge unten rechts (wie auf Google-Profilen) */
.rv-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.rv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.25);
}
.rv-avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* === Segments 3-Spalten-Karten (Bild oben, Label, ueberlappendes Icon, Bullets) === */
.segc-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: 72rem; margin: 0 auto; }
.segc { position: relative; background:#fff; border:1px solid var(--border); border-radius: 1.4rem; overflow: hidden;
  display:flex; flex-direction:column; box-shadow: 0 1px 2px rgba(20,23,28,.04);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease; }
.segc:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -30px rgba(20,23,28,.32); border-color: rgba(var(--accent-rgb),.3); }
.segc-media { position: relative; height: 200px; flex-shrink: 0; }
.segc-img { width:100%; height:100%; object-fit: cover; }
.segc-badge { position:absolute; left:.85rem; bottom:.85rem; background: rgba(10,12,16,.8); color:#fff;
  font-size: 11.5px; font-weight:700; padding:.3rem .7rem; border-radius:999px; font-family:'ArchivoDS','Archivo',sans-serif; }
.segc-body { position: relative; padding: 2.4rem 1.7rem 1.9rem; flex: 1; }
.segc-ico { position:absolute; top:-1.7rem; left:1.6rem; width:3.4rem; height:3.4rem; border-radius:1rem;
  display:flex; align-items:center; justify-content:center; background: var(--accent); color:#fff;
  box-shadow: 0 12px 26px -10px rgba(var(--accent-rgb),.6); border: 3px solid #fff; }
.segc-title { font-family:'ArchivoDS','Archivo',sans-serif; font-weight:700; font-size:1.32rem; color: var(--ink); margin-bottom:.6rem; line-height:1.2; }
.segc-desc { color: var(--body); font-size:14.5px; line-height:1.56; margin-bottom:1.1rem; }
.segc-ul { display:flex; flex-direction:column; gap:.6rem; }
.segc-li { display:flex; align-items:flex-start; gap:.55rem; color: var(--ink); font-size:14.5px; }
.segc-li svg { color: var(--accent); margin-top:1px; flex-shrink:0; }
@media (max-width: 900px) { .segc-grid { grid-template-columns: 1fr; max-width: 32rem; } }

/* Notruf-Band: dunkler Hintergrund (Fast-Schwarz) statt hellem Blau */
.notruf-card {
  background:
    linear-gradient(115deg, #0F1621 0%, #0F1621 42%, rgba(16,23,33,.86) 100%),
    url('img/notruf-rohrbruch.jpg') center right / cover no-repeat;
}
@media (max-width: 640px) {
  .notruf-card { background:
    linear-gradient(180deg, #0F1621 0%, rgba(16,23,33,.9) 100%),
    url('img/notruf-rohrbruch.jpg') center / cover no-repeat; }
}

/* Korrektur: Card bleibt blau (Bild), nur die SECTION dahinter wird dunkel */
.notruf-card {
  background:
    linear-gradient(100deg, rgba(8,34,56,.97) 0%, rgba(14,55,86,.88) 46%, rgba(14,55,86,.5) 100%),
    url('img/notruf-rohrbruch.jpg') center right / cover no-repeat;
}
@media (max-width: 640px) {
  .notruf-card { background:
    linear-gradient(180deg, rgba(8,34,56,.95) 0%, rgba(14,55,86,.9) 100%),
    url('img/notruf-rohrbruch.jpg') center / cover no-repeat; }
}
section:has(.notruf-card) { background: #0F1621 !important; }

/* === Section-Headlines in Archivo Black (nur h1 + h2) === */
@font-face{font-family:'Archivo Black';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/archivo-black-latin.woff2') format('woff2');}
h1, h2,
h1.font-heading, h2.font-heading {
  font-family: 'Archivo Black', 'ArchivoDS', 'Archivo', system-ui, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.018em;
}

/* ─── Polished Mobile Mega-Menu — iOS Sheet Feel ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 10, 18, 0);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  pointer-events: none;
  visibility: hidden;
  transition: background .35s ease, backdrop-filter .35s ease, visibility 0s linear .45s;
}
.menu-overlay.is-open {
  background: rgba(6, 10, 18, 0.55);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
          backdrop-filter: blur(12px) saturate(140%);
  pointer-events: auto;
  visibility: visible;
  transition: background .35s ease, backdrop-filter .35s ease, visibility 0s;
}

/* The sheet — slides up from bottom (iOS modal style) */
.menu-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 12px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #101D2F 0%, #0A1422 55%, #050B14 100%);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -30px 80px -20px rgba(0,0,0,0.6), 0 -2px 0 0 rgba(143,190,223,0.10);
  transform: translateY(105%);
  overflow: hidden;
  will-change: transform;
}
/* CSS-Animation statt transition: feuert zuverlässig beim Klassen-Toggle,
   ohne first-frame-Race-Conditions die manche Browser bei reinen Transitions haben. */
.menu-overlay.is-open .menu-sheet {
  animation: menu-sheet-up .55s cubic-bezier(.32,.72,.18,1) forwards;
}
@keyframes menu-sheet-up {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}

/* Ambient glow */
.menu-sheet::before {
  content: "";
  position: absolute;
  top: -10%; right: -15%;
  width: 65%; height: 45%;
  background: radial-gradient(ellipse, rgba(62,138,216,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.menu-sheet::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -15%;
  width: 60%; height: 45%;
  background: radial-gradient(ellipse, rgba(143,190,223,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Drag-handle (iOS-style pull bar) */
.menu-grabber {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,0.22);
  margin: 10px auto 0;
  flex-shrink: 0;
}

.menu-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.menu-close:active { transform: scale(0.92); background: rgba(255,255,255,0.14); }

/* Live-Status-Pill (Notdienst aktiv) */
.menu-overlay-top + .menu-status,
.menu-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 22px 10px;
  padding: 6px 14px 6px 8px;
  align-self: flex-start;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ADE80;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.menu-status-dot {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-status-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(74,222,128,0.4);
  animation: menu-pulse 1.6s ease-in-out infinite;
}
.menu-status-dot::after {
  content: "";
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
}
@keyframes menu-pulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.menu-list {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 4px 8px 16px;
  position: relative;
  z-index: 2;
}
.menu-list::-webkit-scrollbar { width: 0; }

.menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}
.menu-item:last-child { border-bottom: 0; }

.menu-overlay.is-open .menu-item {
  animation: menu-item-in .55s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes menu-item-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 64px;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  border-radius: 14px;
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: background .25s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.menu-row:active { transform: scale(0.985); background: rgba(255,255,255,0.05); }
.menu-item.is-expanded .menu-row {
  background: linear-gradient(90deg, rgba(62,138,216,0.14) 0%, rgba(62,138,216,0.04) 100%);
  box-shadow: inset 3px 0 0 0 #5FA8E0;
}

.menu-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.20em;
  color: #8FBEDF;
  opacity: 0.65;
  flex-shrink: 0;
  width: 26px;
  font-variant-numeric: tabular-nums;
  transition: opacity .25s ease, color .25s ease;
}
.menu-item.is-expanded .menu-num { opacity: 1; color: #5FA8E0; }

.menu-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: #fff;
  flex: 1;
}

.menu-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  transition: transform .45s cubic-bezier(.16,1,.3,1), background .25s ease, color .25s ease;
  flex-shrink: 0;
}
.menu-item.is-expanded .menu-chevron {
  transform: rotate(-180deg);
  background: rgba(95,168,224,0.18);
  color: #5FA8E0;
}

/* Sub-menu (grid-rows smooth open/close) */
.menu-sub-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s cubic-bezier(.4,0,.2,1);
}
.menu-item.is-expanded .menu-sub-wrap { grid-template-rows: 1fr; }
.menu-sub-clip {
  min-height: 0;
  overflow: hidden;
}
.menu-sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 16px 64px;
  position: relative;
}
.menu-sub::before { display: none; }
.menu-sub-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 0;
  color: rgba(255,255,255,0.70);
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  -webkit-tap-highlight-color: transparent;
  transition: color .25s ease, transform .3s cubic-bezier(.16,1,.3,1);
}
.menu-sub-link:active { color: #fff; transform: translateX(4px); }
.menu-sub-dash {
  display: inline-block;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: rgba(143,190,223,0.5);
  flex-shrink: 0;
  transition: width .3s ease, background .25s ease;
}
.menu-sub-link:active .menu-sub-dash { width: 22px; background: #5FA8E0; }
/* "Alle X"-Eintrag im Mobile-Untermenue hervorheben */
.menu-sub-all { color: #fff; font-weight: 700; }
.menu-sub-all .menu-sub-ico { color: #5FA8E0; }
.menu-sub-all:active { transform: translateX(4px); }

/* Sticky Footer */
.menu-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(4, 8, 14, 0.65);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.menu-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.menu-phone > span:last-child { line-height: 1.15; }
.menu-phone > span:last-child > span { display: block; }
.menu-phone > span:last-child > span:first-child { font-size: 9.5px !important; letter-spacing: 0.16em !important; }
.menu-phone > span:last-child > span:last-child { font-size: 14.5px !important; }
.menu-phone:active {
  background: rgba(95,168,224,0.10);
  border-color: rgba(95,168,224,0.40);
  transform: scale(0.985);
}
.menu-phone-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5FA8E0 0%, #2D75BD 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}
.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #3E8AD8 0%, #1B4F7C 100%);
  color: #fff;
  border-radius: 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  box-shadow: 0 14px 30px -10px rgba(62,138,216,0.55), inset 0 1px 0 rgba(255,255,255,0.20);
  -webkit-tap-highlight-color: transparent;
  transition: transform .25s ease, box-shadow .3s ease;
}
.menu-cta:active {
  transform: scale(0.985);
  box-shadow: 0 8px 18px -6px rgba(62,138,216,0.55);
}

/* Auf XL+ versteckt (Desktop nutzt normale Nav-Links) */
@media (min-width: 1280px) {
  .menu-overlay { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .menu-sheet { transition: none !important; }
  .menu-item, .menu-sub-wrap, .menu-chevron, .menu-close { transition: none !important; animation: none !important; }
}

/* Trust-Pills (Hero): Gradient bleibt (definiert in :490) */
.trust-card::before { display: none !important; }

/* Form: Kupfer-Glow -> Blau (Sticker-Pill + aktiver Schritt-Kreis) */
.kf-sticker-pill { box-shadow: 0 14px 28px -10px rgba(61,141,204,0.55), 0 2px 4px rgba(0,0,0,0.25) !important; }
.kf-step.is-active .kf-step-circle { box-shadow: 0 8px 20px -6px rgba(61,141,204,0.6), inset 0 1px 0 rgba(255,255,255,0.25) !important; }

/* ─── Hero Trust-Pill (dark, mit colored Icon-Circle wie Ehrliches-Handwerk-Vibe) ─── */
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  background: rgba(20, 24, 32, 0.88);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-top: 0;
  margin-bottom: 36px;
  transform: translateY(-90px);
  box-shadow: 0 14px 30px -16px rgba(20,24,32,0.5);
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease;
}
.hero-trust-pill:hover {
  transform: translateY(-93px);
  border-color: rgba(62,138,216,0.30);
}
.hero-trust-pill-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5FA8E0 0%, #2D75BD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 10px -3px rgba(62,138,216,0.45);
}
.hero-trust-pill-text {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.hero-trust-pill-text strong {
  color: #fff;
  font-weight: 800;
}
@media (max-width: 480px) {
  .hero-trust-pill { padding: 6px 14px 6px 6px; gap: 10px; }
  .hero-trust-pill-ico { width: 30px; height: 30px; }
  .hero-trust-pill-text { font-size: 13px; }
}

/* Hero-Trust-Widgets (24/7 Notdienst + Google) auf Handy ausblenden */
@media (max-width: 767px) {
  .hero-el:has(> .trust-card) { display: none !important; }
  .trust-card { display: none !important; }
}

/* ═══ Header Hover-Dropdowns (Desktop) ═══ */
.nav-item { position: relative; }
.nav-dd { position: absolute; top: 100%; left: 0; transform: translateY(12px) scale(.97); transform-origin: top left; padding-top: 16px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s cubic-bezier(.16,1,.3,1), transform .28s cubic-bezier(.16,1,.3,1), visibility .28s; z-index: 70; }
.nav-item:hover .nav-dd, .nav-item:focus-within .nav-dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.nav-dd-inner { background: #fff; border: 1px solid rgba(20,23,28,.07); border-radius: 20px; box-shadow: 0 30px 60px -24px rgba(20,23,28,.4); padding: 10px; min-width: 322px; }
.nav-dd-inner a { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 14px; color: var(--ink); white-space: nowrap; text-decoration: none; opacity: 0; transform: translateY(8px); transition: opacity .28s ease, transform .32s cubic-bezier(.16,1,.3,1), background .15s ease; }
.nav-item:hover .nav-dd-inner a, .nav-item:focus-within .nav-dd-inner a { opacity: 1; transform: translateY(0); }
.nav-item:hover .nav-dd-inner a:nth-child(1) { transition-delay: .02s; }
.nav-item:hover .nav-dd-inner a:nth-child(2) { transition-delay: .04s; }
.nav-item:hover .nav-dd-inner a:nth-child(3) { transition-delay: .06s; }
.nav-item:hover .nav-dd-inner a:nth-child(4) { transition-delay: .08s; }
.nav-item:hover .nav-dd-inner a:nth-child(5) { transition-delay: .10s; }
.nav-item:hover .nav-dd-inner a:nth-child(6) { transition-delay: .12s; }
.nav-dd-inner a:hover { background: rgba(var(--accent-rgb), .07); }
.nav-dd-box { width: 38px; height: 38px; border-radius: 11px; background: rgba(var(--accent-rgb), .10); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; flex: none; transition: background .15s ease, color .15s ease; }
.nav-dd-inner a:hover .nav-dd-box { background: var(--accent); color: #fff; }
.nav-dd-t { display: block; font-size: 14px; font-weight: 600; line-height: 1.25; color: var(--ink); }
.nav-dd-s { display: block; font-size: 12px; line-height: 1.25; margin-top: 1px; color: var(--muted); }
.nav-caret { transition: transform .25s ease; opacity: .6; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
/* rechtes Dropdown (Ratgeber) nicht ueber den Rand schieben */
.nav-item:last-child .nav-dd { left: auto; right: 0; transform-origin: top right; }
@media (prefers-reduced-motion: reduce) {
  .nav-dd, .nav-dd-inner a { transition: opacity .12s linear; transform: none; }
  .nav-dd-inner a { opacity: 1; }
}

/* ═══ Zentriertes Mega-Menü (Desktop, frisch) ═══ */
.nav-mega { position: absolute; top: calc(100% + 13px); left: 50%; transform: translateX(-50%) translateY(10px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .26s cubic-bezier(.16,1,.3,1), transform .3s cubic-bezier(.16,1,.3,1), visibility .26s; z-index: 80; }
.nav-mega.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-mega::before { content: ""; position: absolute; left: -40px; right: -40px; top: -26px; height: 28px; }
.nav-mega-inner { position: relative; background: #fff; border: 1px solid rgba(20,23,28,.07); border-radius: 22px; box-shadow: 0 44px 90px -34px rgba(20,23,28,.55), 0 10px 24px -16px rgba(20,23,28,.3); padding: 14px; }
.nav-mega-inner::after { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: #fff; border-left: 1px solid rgba(20,23,28,.07); border-top: 1px solid rgba(20,23,28,.07); border-radius: 4px 0 0 0; }
.nav-mega-grid { display: grid; gap: 4px; }
.nav-mega-grid.cols1 { grid-template-columns: minmax(310px, 360px); }
.nav-mega-grid.cols2 { grid-template-columns: repeat(2, minmax(252px, 1fr)); }
.nav-mega-inner a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 14px; text-decoration: none; transition: background .16s ease, transform .16s ease; }
.nav-mega-inner a:hover { background: rgba(var(--accent-rgb), .07); }
.nav-mega-inner a:active { transform: scale(.985); }
.nav-mega-inner a:hover .nav-dd-box { background: var(--accent); color: #fff; transform: translateY(-1px); }
.nav-trigger.is-active { color: #fff; }
.nav-trigger.is-active .nav-caret { transform: rotate(180deg); }
/* Vollbreiter "Alle X"-Balken unter dem Grid (statt ungerade Luecke) */
.nav-mega-inner .nav-mega-foot {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; margin-top: 7px; padding: 14px 16px; border-radius: 14px;
  background: var(--accent); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14.5px; letter-spacing: -0.005em;
  box-shadow: 0 12px 26px -14px rgba(var(--accent-rgb), .75);
}
.nav-mega-inner .nav-mega-foot:hover { background: var(--accent-deep); color: #fff; transform: translateY(-1px); }
.nav-mega-inner .nav-mega-foot svg { transition: transform .2s ease; }
.nav-mega-inner .nav-mega-foot:hover svg { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .nav-mega { transition: opacity .12s linear; } }

/* ═══ Subpage Mobile-Menü (header.js) ═══ */
.shm-overlay { position: fixed; inset: 0; z-index: 60; background: #0E1B2C; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .3s ease, transform .3s ease, visibility .3s; overflow-y: auto; }
.shm-overlay.is-open { opacity: 1; visibility: visible; transform: none; }
.shm-top-bar { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 78px; border-bottom: 1px solid rgba(255,255,255,.08); }
.shm-close { color: #fff; background: rgba(255,255,255,.08); width: 42px; height: 42px; border: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.shm-close svg:first-child { display: none; }
.shm-list { padding: 1.25rem 1.25rem 3rem; display: flex; flex-direction: column; }
.shm-group { border-bottom: 1px solid rgba(255,255,255,.07); padding: .35rem 0 .7rem; }
.shm-top { display: block; color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; text-decoration: none; padding: .65rem 0; }
.shm-subs { display: flex; flex-direction: column; }
.shm-subs a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .95rem; padding: .38rem 0 .38rem .1rem; }
.shm-subs a:hover { color: #fff; }
.shm-cta { margin-top: 1.4rem; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; background: var(--accent); color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; padding: 1rem; border-radius: 999px; text-decoration: none; }
@media (min-width: 1280px) { .shm-overlay { display: none !important; } }

/* ── Homepage FAQ (dunkel, 2-spaltig, Fragen rechts) ── */
.hf { position:relative; overflow:hidden; background:linear-gradient(180deg,#0E1B2C 0%,#0A1422 60%,#0A1320 100%); color:#fff; padding:4rem 1.25rem; }
@media (min-width:768px){ .hf { padding:5.5rem 2rem; } }
.hf-glow { position:absolute; top:-180px; right:-160px; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle, rgba(95,168,224,.14) 0%, transparent 65%); pointer-events:none; }
.hf-wrap { position:relative; z-index:1; max-width:78rem; margin:0 auto; display:grid; grid-template-columns:1fr; gap:2.4rem; align-items:start; }
@media (min-width:900px){ .hf-wrap { grid-template-columns:.82fr 1.18fr; gap:3.4rem; align-items:center; } }
.hf-eyebrow { font-family:'Sora',sans-serif; font-weight:800; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:#5FA8E0; margin-bottom:.9rem; }
.hf-h2 { font-family:'Sora',sans-serif; font-weight:800; font-size:clamp(1.9rem,3.2vw,2.8rem); line-height:1.1; letter-spacing:-.02em; margin:0 0 1rem; color:#fff; }
.hf-h2 .accent { color:#5FA8E0; }
.hf-lead { color:rgba(255,255,255,.62); font-size:1rem; line-height:1.6; margin:0 0 1.8rem; max-width:26rem; }
.hf-cta { display:flex; align-items:center; justify-content:space-between; gap:1.2rem; max-width:26rem; padding:1.15rem 1.15rem 1.15rem 1.5rem; border-radius:18px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); text-decoration:none; transition:border-color .25s, transform .25s; }
.hf-cta:hover { border-color:rgba(95,168,224,.4); transform:translateY(-2px); }
.hf-cta-txt { display:flex; flex-direction:column; gap:.15rem; }
.hf-cta-txt small { font-family:'Sora',sans-serif; font-weight:700; font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:#5FA8E0; }
.hf-cta-txt strong { font-family:'Sora',sans-serif; font-weight:800; font-size:1.1rem; color:#fff; }
.hf-cta-txt em { font-style:normal; font-size:12.5px; color:rgba(255,255,255,.5); }
.hf-cta-arrow { flex:none; width:52px; height:52px; border-radius:50%; background:linear-gradient(140deg,#3E8AD8,#2D75BD); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -10px rgba(62,138,216,.55); transition:transform .25s; }
.hf-cta:hover .hf-cta-arrow { transform:translateX(2px); }
.hf-list { display:flex; flex-direction:column; }
.hf-item { border-top:1px solid rgba(255,255,255,.1); }
.hf-item:last-child { border-bottom:1px solid rgba(255,255,255,.1); }
.hf-summary { width:100%; background:none; border:none; text-align:left; cursor:pointer; display:flex; align-items:center; gap:1.1rem; padding:1.35rem .25rem; }
.hf-num { font-family:'Sora',sans-serif; font-weight:800; font-size:12.5px; color:rgba(255,255,255,.35); width:2rem; flex:none; }
.hf-q { flex:1; font-family:'Sora',sans-serif; font-weight:700; font-size:clamp(15.5px,1.5vw,18px); line-height:1.35; color:#fff; }
.hf-ic { flex:none; width:32px; height:32px; border-radius:50%; background:rgba(95,168,224,.14); color:#5FA8E0; display:flex; align-items:center; justify-content:center; font-size:21px; line-height:1; transition:transform .3s, background .3s, color .3s; }
.hf-item.is-open .hf-ic { transform:rotate(45deg); background:#3E8AD8; color:#fff; }
.hf-item.is-open .hf-num { color:#5FA8E0; }
.hf-a-wrap { display:grid; grid-template-rows:0fr; transition:grid-template-rows .4s cubic-bezier(.4,0,.2,1); }
.hf-item.is-open .hf-a-wrap { grid-template-rows:1fr; }
.hf-a-clip { overflow:hidden; min-height:0; }
.hf-a { padding:0 0 1.35rem 3.1rem; color:rgba(255,255,255,.66); font-size:14.5px; line-height:1.65; opacity:0; transform:translateY(-4px); transition:opacity .3s ease .05s, transform .35s cubic-bezier(.4,0,.2,1) .05s; }
.hf-item.is-open .hf-a { opacity:1; transform:none; }
@media (max-width:600px){ .hf-a { padding-left:0; } }

/* Fix: Thank-Stage Text auf der dunklen Contact-Card (kontakt.html) muss weiss sein */
.contact-card .thank-title { color: #fff !important; }
.contact-card .thank-sub { color: rgba(255,255,255,0.72) !important; }
.contact-card .thank-cta { color: #fff !important; }


/* Lock body when mobile menu open */
body:has(.menu-overlay.is-open) { overflow: hidden !important; }


/* Prevent any element from causing horizontal scroll site-wide.
   WICHTIG: clip (nicht hidden!) - hidden bricht position:sticky in Kindelementen
   (z.B. Ratgeber-Sidebar). clip verhindert H-Scroll genauso, ohne sticky zu brechen.
   Der overflow-x-hidden-Body (Tailwind-Klasse) wird hier auf clip ueberschrieben. */
html, body { overflow-x: clip; }
body.overflow-x-hidden { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html, body, body.overflow-x-hidden { overflow-x: hidden; } /* Fallback: alte Browser ohne clip */
}

/* Hero mobil: einheitlicher Abstand zwischen allen Bloecken (Badge, H1, Text, Bullets, Buttons) */
@media (max-width: 1023px) {
  #top .hero-el { margin: 0 0 1.5rem !important; }
  #top .hero-el:last-child { margin-bottom: 0 !important; }
}

/* Hero mobil wie DachService: Content oben angedockt, kompakter Rhythmus */
@media (max-width: 1023px) {
  /* weniger Polster oben -> Content sitzt direkt unter dem Header, kein Schweben */
  #top { padding-top: 6rem !important; padding-bottom: 3.5rem !important; }
  /* Pill in den Fluss holen (kein -90px/-1.5rem Versatz) + knackiger Abstand zur Headline */
  #top .hero-trust-pill.hero-el { margin-top: 0 !important; margin-bottom: 1.5rem !important; transform: none !important; }
  /* engerer Hero-Rhythmus zwischen den Bloecken */
  #top .hero-el { margin-bottom: 1.15rem !important; }
  /* Headline etwas groesser */
  #top h1 { font-size: clamp(2.2rem, 1rem + 5.8vw, 3.9rem) !important; }
  /* Haken-Punkte groesser (Kreis + Icon + Text) */
  #top .hero-checks li { font-size: 1.12rem !important; gap: .8rem !important; }
  #top .hero-checks .ck { width: 30px !important; height: 30px !important; }
  #top .hero-checks .ck svg { width: 17px !important; height: 17px !important; }
  /* mehr Abstand zwischen den Punkten und den Buttons */
  #top .hero-checks { margin-bottom: 2.6rem !important; }
}

/* ─── Mobile Menu Sub-Links (Icon-Box + Title + Subtitle, wie Desktop-Mega) ─── */
.menu-sub-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px 11px 0;
  color: rgba(255,255,255,0.85);
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.menu-sub-link:active { transform: translateX(3px); }

.menu-sub-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(143,190,223,0.14);
  color: #8FBEDF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(143,190,223,0.18);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.menu-sub-link:active .menu-sub-ico {
  background: rgba(95,168,224,0.30);
  border-color: #5FA8E0;
  color: #fff;
}

.menu-sub-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.menu-sub-t {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  line-height: 1.25;
}
.menu-sub-s {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255,255,255,0.50);
}

/* Adjust the existing menu-sub list since we removed the dash + indent left line */
.menu-sub { padding: 4px 0 14px 8px !important; }
.menu-sub::before { left: 22px !important; opacity: 0.4; }

/* ── Hero-Textblock auf Desktop etwas nach rechts + oben (User-Wunsch) ── */
@media (min-width: 1024px) {
  #top .grid > div:first-child { transform: translate(2rem, -2.25rem); }
}

