/* ================================================================
   HF Raumklar — Homepage styles
   System: Raleway only, white bg, accent #22c1f5, ink #0a0a0a
   ================================================================ */

html { scroll-behavior: smooth; }
:root {
  --bg: #ffffff;
  --bg-cream: #FAF8F3;
  --bg-stone: #F2EFE8;
  --ink: #0a0a0a;
  --ink-2: #3a3a3a;
  --muted: #7a7a7a;
  --line: #ECEAE5;
  --line-2: #E0DCD3;
  --orange: #22c1f5;
  --orange-2: #18a9da;
  --green: #1F8A5B;
  --container: 1440px;
  --pad-x: clamp(24px, 4vw, 56px);
  --section: clamp(60px, 7vw, 100px);
  font-family: 'Raleway', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Raleway', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
p, li, .lead, .blurb { text-wrap: pretty; }
h1, h2, h3, .section-title { text-wrap: balance; hyphens: manual; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ============= Layout primitives ============= */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section) 0; position: relative; scroll-margin-top: 84px; }
.section-cream { background: var(--bg-cream); }
.section-stone { background: var(--bg-stone); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .lead, .section-ink .muted { color: rgba(255,255,255,.72); }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content:""; width: 36px; height: 1px; background: var(--ink); opacity: .55; }
.section-ink .eyebrow { color: rgba(255,255,255,.5); }
.section-ink .eyebrow::before { background: rgba(255,255,255,.5); }

h2.section-title {
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: .98; letter-spacing: -.035em;
  font-weight: 700; margin: 24px 0 0;
  max-width: 980px;
}
h2.section-title .it { font-weight: 200; }
h2.section-title .or { color: var(--orange); }

.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: end; margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head .lead {
  font-size: 17px; line-height: 1.65; color: var(--ink-2);
  max-width: 480px;
}
.section-head .lead b { font-weight: 700; color: var(--ink); }

@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= Buttons ============= */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px; border-radius: 999px;
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-2); }
.btn-dark { background: var(--ink); color: #fff; border-radius: 0; }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn .arr { font-weight: 300; font-size: 18px; letter-spacing: 0; }

/* ============= HEADER ============= */
.hd {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hd-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  max-width: var(--container); margin: 0 auto;
}
.hd-brand { display: flex; align-items: center; gap: 14px; }
.hd-brand .mono { width: 46px; height: 46px; }
.hd-brand .mono img { width: 100%; height: 100%; object-fit: contain; }
.hd-brand .word { font-size: 13px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.hd-brand .word .sub { display: block; font-weight: 400; font-size: 10px; letter-spacing: .2em; color: var(--muted); margin-top: 3px; }
.hd-nav { display: flex; gap: 36px; font-size: 12.5px; font-weight: 500; color: var(--ink-2); letter-spacing: .06em; text-transform: uppercase; }
.hd-nav a:hover { color: var(--ink); }
.hd-right { display: flex; align-items: center; gap: 14px; }
.hd-right .phone { font-size: 13px; font-weight: 500; }

/* Klickbare Telefonnummern (Header, Footer, Kontaktleiste) wie Text darstellen */
.hd-right a.phone,
.ft-brand .contact .ph a,
.s3-cs-item a { color: inherit; text-decoration: none; }
.hd-right a.phone:hover,
.ft-brand .contact .ph a:hover,
.s3-cs-item a:hover { color: var(--orange); }
.hd-pill { background: var(--orange); color: #fff; padding: 11px 20px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
@media (max-width: 980px) {
  .hd-nav { display: none; }
}

/* ============= HERO 2 — full-bleed ============= */
.hero2 {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background: #0d1420;
  color: #fff;
}
.hero2-bg { position: absolute; inset: 0; }
.hero2-bg img {
  width: 100%; height: 118%; object-fit: cover; display: block;
  transform: scale(1.1); will-change: transform;
}
.hero2-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7,12,20,.85) 0%, rgba(7,12,20,.6) 42%, rgba(7,12,20,.22) 72%, rgba(7,12,20,.4) 100%),
    linear-gradient(rgba(7,12,20,.15), rgba(7,12,20,.55));
}
.hero2-inner { position: relative; z-index: 1; padding-top: clamp(70px, 9vh, 130px); padding-bottom: clamp(48px, 6vh, 80px); }
.hero2 .eyebrow { color: rgba(255,255,255,.78); }
.hero2 .eyebrow::before { background: #fff; opacity: .7; }
.hero2 h1 {
  font-size: clamp(48px, 6.6vw, 100px);
  line-height: 1.0; letter-spacing: -.04em;
  font-weight: 700; margin: 30px 0 0; color: #fff;
}
.hero2 h1 .it { font-weight: 200; }
.hero2 h1 .or { color: var(--orange); }
.hero2 .lead {
  font-size: 17.5px; line-height: 1.65; color: rgba(255,255,255,.82);
  max-width: 520px; margin: 32px 0 38px;
}
.hero2 .lead b { color: #fff; font-weight: 700; }
.hero2 .ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero2-stats {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(10,14,22,.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero2-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.h2s { padding: 26px 28px 26px 0; border-right: 1px solid rgba(255,255,255,.12); margin-right: 28px; }
.h2s:last-child { border-right: none; margin-right: 0; }
.h2s .num { font-size: clamp(26px, 2.8vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.h2s .lbl { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; font-weight: 600; }
@media (max-width: 880px) {
  .hero2 { min-height: 86vh; }
  .hero2-stats-grid { grid-template-columns: 1fr 1fr; }
  .h2s { padding: 18px 16px 18px 0; }
  .h2s:nth-child(2n) { border-right: none; }
}

/* ============= SCROLL EFFECTS ============= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform-origin: 0 50%; transform: scaleX(0);
  z-index: 200; pointer-events: none;
}
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.rv-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .scroll-progress { display: none; }
}

/* ============= HERO (Variant E) ============= */
.hero { padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 8vw, 120px); overflow: visible; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(56px, 8.5vw, 116px);
  line-height: .94; letter-spacing: -.04em; margin: 36px 0 0;
  font-weight: 700;
}
.hero h1 .it { font-weight: 200; }
.hero h1 .or { color: var(--orange); }
.hero .lead {
  font-size: 17px; line-height: 1.65; color: var(--ink-2);
  max-width: 480px; margin: 36px 0 40px;
}
.hero .lead b { font-weight: 700; color: var(--ink); }
.hero .ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero .meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 64px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero .meta .num { font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.hero .meta .num .or { color: var(--orange); }
.hero .meta .lbl { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 8px; font-weight: 500; }

.hero-visual { position: relative; }
.hp-main {
  margin: 0; position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--bg-stone);
}
.hp-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-frame { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.4); pointer-events: none; z-index: 2; }
.hp-main figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 48px 26px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
}
.hp-main figcaption span:last-child { font-weight: 400; opacity: .8; }
.hp-side {
  margin: 0; position: absolute; left: -56px; bottom: -44px; z-index: 3;
  width: clamp(160px, 16vw, 230px); aspect-ratio: 1; overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 28px 60px -24px rgba(10,10,10,.4);
  background: var(--bg-stone);
}
.hp-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-side figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
}
.hp-badge {
  position: absolute; top: 26px; right: -18px; z-index: 3;
  background: var(--ink); color: #fff;
  padding: 16px 22px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 18px 44px -18px rgba(10,10,10,.45);
}
.hp-badge-top { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--orange); }
.hp-badge-num { font-size: 26px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.hp-badge-sub { font-size: 11px; color: rgba(255,255,255,.65); }

/* legacy placeholder styles (unused) */
.hero-photo {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #EFEBE2 0%, #DDD6C8 100%);
  overflow: hidden;
}
.hero-photo .frame { position: absolute; inset: 14px; border: 1px solid rgba(10,10,10,.10); pointer-events: none; }
.hero-photo .corner { position: absolute; top: 24px; right: 24px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.hero-photo .tag {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--ink-2); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.hero-photo .tag .t { font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--ink); font-size: 16px; font-style: italic; }
.hero-photo .placeholder { position: absolute; inset: 30%; opacity: .14; color: var(--ink); }
.hero-eyebrow-stamp { position: absolute; top: 24px; left: 24px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero .meta { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hp-side { left: 16px; bottom: -36px; }
  .hp-badge { right: 16px; }
  .hero-visual { margin-bottom: 36px; }
}

/* ============= STEPS (8-Schritte-System) ============= */
.steps { background: var(--bg-cream); }
.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.step {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 36px 28px; min-height: 280px;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--bg);
  transition: background .2s ease;
}
.step:hover { background: #fff; }
.step .num { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.step .num b { color: var(--orange); font-weight: 700; }
.step h3 { font-size: 22px; font-weight: 700; line-height: 1.15; letter-spacing: -.02em; margin: 0; }
.step p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.step .meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-top: auto; padding-top: 12px; }
.step .meta b { color: var(--ink); font-weight: 700; }
.step .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
@media (max-width: 980px) { .steps-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .steps-list { grid-template-columns: 1fr; } }

/* ============= STATS ============= */
.stats { padding: clamp(60px, 8vw, 110px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.stat-cell {
  padding: 36px 0; border-right: 1px solid var(--line); padding-right: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .big { font-size: clamp(48px, 6vw, 88px); font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.stat-cell .big .or { color: var(--orange); }
.stat-cell .lbl { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.stat-cell .desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; max-width: 240px; }
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-cell { padding-right: 20px; } }

/* ============= LEISTUNGEN — Detail-Abschnitte ============= */
.svcd-row {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.svcd-row:last-child { border-bottom: none; padding-bottom: 0; }
.svcd-row.alt .svcd-media { order: 2; }
.svcd-media { margin: 0; position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-stone); }
.svcd-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.svcd-media image-slot { width: 100%; height: 100%; display: block; }
.svcd-row:hover .svcd-media img { transform: scale(1.03); }
.svcd-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; pointer-events: none;
  padding: 40px 24px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
}
.svcd-num {
  font-size: 13px; font-weight: 700; letter-spacing: .24em; color: var(--orange);
}
.svcd-content h3 {
  font-size: clamp(28px, 3.2vw, 44px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.05; margin: 14px 0 18px;
}
.svcd-content p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0 0 22px; max-width: 54ch; }
.svcd-content ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.svcd-content ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: var(--ink); }
@media (max-width: 980px) {
  .svcd-row { grid-template-columns: 1fr; gap: 28px; }
  .svcd-row.alt .svcd-media { order: 0; }
}

/* ============= SERVICES ============= */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc {
  background: #fff; border: 1px solid var(--line);
  padding: 28px; min-height: 300px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .2s ease, transform .2s ease;
}
.svc:hover { border-color: var(--ink); transform: translateY(-2px); }
.svc.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.svc.featured h3, .svc.featured .price { color: #fff; }
.svc.featured .price-from, .svc.featured ul { color: rgba(255,255,255,.7); }
.svc.featured .ico-svc { background: var(--orange); color: #fff; border-color: var(--orange); }
.svc .ico-svc {
  width: 48px; height: 48px; border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.svc h3 { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.svc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--ink-2); }
.svc ul li { display: flex; gap: 10px; align-items: flex-start; }
.svc ul li::before { content: "—"; color: var(--orange); font-weight: 700; }
.svc .price-row { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.svc.featured .price-row { border-top-color: rgba(255,255,255,.15); }
.svc .price-from { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; hyphens: none; }
.svc .price { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); font-style: italic; hyphens: none; }
.svc.featured .price { color: var(--orange); }
@media (max-width: 1200px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============= EXPRESS BANNER ============= */
.express { background: var(--ink); color: #fff; padding: clamp(60px, 7vw, 100px) 0; position: relative; overflow: hidden; scroll-margin-top: 84px; }
.express-bgimg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .22; pointer-events: none;
}
.express::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.55) 60%, rgba(10,10,10,.75) 100%);
  pointer-events: none;
}
.express .bg-mark, .express-grid { position: relative; z-index: 1; }
.express .bg-mark { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); font-size: 480px; font-weight: 800; color: rgba(34,193,245,.10); line-height: 1; letter-spacing: -.06em; pointer-events: none; }
.express-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.express .ey { color: var(--orange); font-weight: 700; }
.express .ey::before { background: var(--orange); }
.express h2 { font-size: clamp(40px, 6vw, 80px); line-height: .98; letter-spacing: -.04em; font-weight: 700; margin: 20px 0 0; color: #fff; }
.express h2 .it { font-weight: 200; color: rgba(255,255,255,.7); }
.express .lead { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65; max-width: 480px; margin: 28px 0 36px; }
.express .lead b { color: #fff; font-weight: 700; }
.express .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.express-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 32px; }
.express-card h3 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600; margin: 0 0 24px; }
.express-card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.express-card .row:last-child { border-bottom: none; }
.express-card .row .k { color: rgba(255,255,255,.6); }
.express-card .row .v { font-weight: 700; font-size: 16px; white-space: nowrap; }
.express-card .row .v.or { color: var(--orange); }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 8px; box-shadow: 0 0 0 4px rgba(31,138,91,.18); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(31,138,91,.05); } }
@media (max-width: 980px) { .express-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============= DISTRICTS ============= */
.dst-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dst {
  border: 1px solid var(--line); padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s ease, background .2s ease;
}
.dst:hover { border-color: var(--ink); background: var(--bg-cream); }
.dst .name { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.dst .meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.dst .meta b { color: var(--orange); font-weight: 700; }
@media (max-width: 980px) { .dst-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============= BEFORE / AFTER ============= */
.ba-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba-card {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--line);
}
.ba-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ba-card .stamp { z-index: 2; }
.ba-card.before { background: linear-gradient(135deg, #C9C0AE 0%, #9A8E76 100%); }
.ba-card.after { background: linear-gradient(135deg, #F5F2EB 0%, #E0DCD3 100%); }
.ba-card .stamp {
  position: absolute; top: 20px; left: 20px; white-space: nowrap;
  background: rgba(0,0,0,.78); color: #fff;
  padding: 8px 14px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
}
.ba-card.after .stamp { background: var(--orange); }
.ba-card .placeholder { position: absolute; inset: 32%; opacity: .25; color: var(--ink); }
.ba-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 0; font-size: 13px; color: var(--ink-2);
}
.ba-meta b { color: var(--ink); font-weight: 700; }
.ba-meta .or { color: var(--orange); font-weight: 700; }

/* ============= TESTIMONIALS ============= */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tm {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  padding: 36px 32px 32px; display: flex; flex-direction: column; gap: 20px;
  min-height: 320px;
}
.tm::before {
  content: "„";
  position: absolute; top: 14px; right: 24px;
  font-size: 64px; line-height: 1;
  color: var(--orange); opacity: .18;
  font-weight: 700; pointer-events: none;
}
.tm .stars { color: var(--orange); letter-spacing: 4px; font-size: 14px; }
.tm .quote {
  font-size: 16.5px; line-height: 1.65; font-weight: 400;
  color: var(--ink); flex-grow: 1;
  hyphens: auto; -webkit-hyphens: auto;
  text-wrap: pretty;
}
.tm .quote::before { content: "„"; color: var(--ink); }
.tm .quote::after { content: "\""; color: var(--ink); }
.tm .who { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.tm .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-stone); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; letter-spacing: .04em; color: var(--ink); }
.tm .who .name { font-size: 14px; font-weight: 700; }
.tm .who .role { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (max-width: 980px) { .tm-grid { grid-template-columns: 1fr; } }

/* ============= FAQ ============= */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  text-align: left; font-size: 19px; font-weight: 600; letter-spacing: -.01em; color: var(--ink);
}
.faq-q:hover { color: var(--orange); }
.faq-q .plus { font-size: 24px; font-weight: 300; color: var(--muted); transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--orange); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  font-size: 15px; line-height: 1.7; color: var(--ink-2);
  padding: 0 0;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 28px; }
.faq-a b { color: var(--ink); font-weight: 700; }

/* ============= FINAL CTA ============= */
.cta-final { background: var(--ink); color: #fff; padding: clamp(80px, 10vw, 140px) 0; text-align: center; }
.cta-final h2 { font-size: clamp(48px, 7.5vw, 110px); line-height: .96; letter-spacing: -.04em; font-weight: 700; margin: 0 auto; max-width: 980px; color: #fff; }
.cta-final h2 .it { font-weight: 200; color: rgba(255,255,255,.65); }
.cta-final h2 .or { color: var(--orange); }
.cta-final .sub { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.7); max-width: 580px; margin: 32px auto 40px; }
.cta-final .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .marks { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 52px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; flex-wrap: wrap; }
.cta-final .marks .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }

/* ============= FOOTER ============= */
.ft { background: var(--bg); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 48px; }
.ft-col h4 { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 0 0 20px; }
.ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--ink-2); }
.ft-col ul a:hover { color: var(--orange); }
.ft-brand .word { font-size: 13px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.ft-brand .word .sub { display: block; font-weight: 400; font-size: 10px; letter-spacing: .2em; color: var(--muted); margin-top: 3px; }
.ft-brand .blurb { font-size: 14px; line-height: 1.65; color: var(--ink-2); margin: 16px 0 24px; max-width: 320px; }
.ft-brand .contact { font-size: 14px; color: var(--ink); }
.ft-brand .contact .ph { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 80px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }
.ft-bottom .legal { display: flex; gap: 24px; }
@media (max-width: 980px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .ft-bottom { flex-direction: column; gap: 16px; } }

/* small icon helper for placeholders */
.ph-svg { width: 100%; height: 100%; display: block; }

/* ============= 3-SCHRITTE-PROZESS ============= */
.steps3 { background: var(--bg-cream); scroll-margin-top: 84px; }
.s3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; position: relative; }
.s3-grid::before {
  content: ""; position: absolute; top: 84px; left: 16%; right: 16%;
  height: 1px; border-top: 1px dashed var(--line-2); z-index: 0;
}
.s3-card {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--line);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, border-color .2s ease;
}
.s3-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.s3-num { font-size: 11px; letter-spacing: .28em; color: var(--muted); font-weight: 600; }
.s3-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-cream); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); margin: 4px 0 8px;
}
.s3-card h3 { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.s3-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; flex: 1; }
.s3-meta {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; padding-top: 14px;
  border-top: 1px solid var(--line);
}
.s3-callout {
  margin-top: 56px; background: var(--ink); color: #fff;
  padding: 44px 56px; display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
}
.s3-callout-left .eyebrow { color: rgba(255,255,255,.6); }
.s3-callout-left .eyebrow::before { background: rgba(255,255,255,.5); }
.s3-callout-left h3 { font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 16px 0 12px; color: #fff; }
.s3-callout-left p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.6; margin: 0; }
.s3-callout-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.s3-callout-right .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.s3-contactstrip {
  margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center;
  gap: 32px; padding: 24px 0 0; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-2);
}
.s3-cs-item { display: flex; align-items: center; gap: 10px; }
.s3-cs-ico {
  width: 28px; height: 28px; border: 1px solid var(--line-2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink);
}
.s3-cs-meta { font-size: 12px; color: var(--muted); margin-left: auto; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
@media (max-width: 980px) {
  .s3-grid { grid-template-columns: 1fr; }
  .s3-grid::before { display: none; }
  .s3-callout { grid-template-columns: 1fr; padding: 32px; }
  .s3-contactstrip { gap: 16px; }
  .s3-cs-meta { margin-left: 0; }
}

/* ============= TRUST BAR ============= */
.trust-bar {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin: 32px 0 56px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-bar-item {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  text-align: center; padding: 0 16px;
  border-right: 1px solid var(--line);
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item b { font-size: 28px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.trust-bar-item span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@media (max-width: 980px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } .trust-bar-item { border-right: none; border-bottom: 1px solid var(--line); padding: 16px; } }

/* ============= FESTPREIS-GARANTIE ============= */
.guarantee { background: var(--bg-cream); }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.guarantee-left h2.section-title { font-size: clamp(40px, 6vw, 80px); }
.guarantee-left .lead { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin-top: 24px; max-width: 460px; }
.guarantee-right { position: relative; }
.guarantee-list {
  list-style: none; padding: 36px 40px; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
  background: #fff; border: 1px solid var(--line);
}
.guarantee-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--ink); }
.g-check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 1px;
}
.guarantee-seal {
  position: absolute; top: -28px; right: -28px;
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.seal-circle {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  box-shadow: 0 12px 36px rgba(10,10,10,.18);
  transform: rotate(-8deg);
}
.seal-top, .seal-bot { font-size: 8.5px; letter-spacing: .22em; font-weight: 700; opacity: .8; }
.seal-mid { font-size: 28px; font-weight: 700; letter-spacing: -.02em; line-height: 1; margin: 4px 0; color: var(--orange); }
@media (max-width: 980px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-list { grid-template-columns: 1fr; padding: 28px; }
  .guarantee-seal { top: -20px; right: 8px; width: 110px; height: 110px; }
}

/* ============= WARUM WIR? ============= */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-check {
  flex: none; font-size: 14px; font-weight: 700;
  color: var(--orange); margin-top: 2px;
}
.why-t { font-size: 15px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px; }
.why-d { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; } }

/* ============= UNSER ABLAUF · 8 SCHRITTE ============= */
.ablauf {
  background: #f7f3ec;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.ablauf::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 90% 10%, rgba(34,193,245,0.05), transparent 70%),
    radial-gradient(ellipse 45% 30% at 8% 88%, rgba(34,193,245,0.05), transparent 70%);
  pointer-events: none;
}

.ablauf-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 0;
  position: relative;
  z-index: 1;
}
.ablauf-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
  position: relative;
}
.ablauf-step::before {
  /* glow dot on number */
  content: '';
  position: absolute;
  left: 38px; top: 44px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(34,193,245,0.14);
  opacity: 0;
  transition: opacity .4s ease;
}
.ablauf-step:hover::before { opacity: 1; }

.ablauf-num {
  font-family: var(--font-mono, 'JetBrains Mono', 'Geist Mono', monospace);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0.92;
}
.ablauf-body { padding-top: 6px; }
.ablauf-t {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  text-transform: uppercase;
  font-feature-settings: "ss01";
}
.ablauf-d {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
  max-width: 44ch;
}

/* Nachlass-Callout am Ende der Sektion */
.ablauf-nachlass {
  margin-top: 56px;
  padding: 44px 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.35);
}
.ablauf-nachlass .eyebrow {
  color: var(--orange);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ablauf-nachlass h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: #fff;
  text-wrap: balance;
}
.ablauf-nachlass p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 12px;
  max-width: 62ch;
}
.ablauf-nachlass p b { color: #fff; font-weight: 500; }
.abl-nl-quiet {
  font-family: 'Cardo', Georgia, serif;
  font-style: italic;
  color: rgba(255,255,255,0.65) !important;
  font-size: 14px !important;
}
.abl-nl-right { display: flex; flex-direction: column; gap: 10px; align-items: stretch; min-width: 240px; }
.abl-nl-right .btn { white-space: nowrap; justify-content: space-between; }
.abl-nl-right .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.abl-nl-right .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.abl-nl-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .ablauf-list { grid-template-columns: 1fr; column-gap: 0; }
  .ablauf-nachlass { grid-template-columns: 1fr; gap: 28px; padding: 36px; }
  .abl-nl-right { min-width: 0; }
}
@media (max-width: 720px) {
  .ablauf-step { grid-template-columns: 64px 1fr; gap: 18px; padding: 24px 0; }
  .ablauf-step::before { left: 24px; top: 38px; }
  .ablauf-num { font-size: 36px; }
  .ablauf-nachlass { padding: 28px 24px; }
}

/* ============= SPEZIALFALL-BOXEN ============= */
.spc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.spc {
  background: #fff; border: 1px solid var(--line);
  padding: 0 0 36px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s ease, border-color .2s ease;
  overflow: hidden;
}
.spc:hover { transform: translateY(-3px); border-color: var(--ink); }
.spc-img { aspect-ratio: 16/8; overflow: hidden; background: var(--bg-stone); }
.spc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.spc:hover .spc-img img { transform: scale(1.04); }
.spc-head, .spc-title, .spc-body, .spc-cta { margin-left: 36px; margin-right: 36px; }
.spc-head { display: flex; align-items: center; gap: 12px; }
.spc-ico {
  width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink);
}
.spc-label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.spc-title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin: 4px 0 0; }
.spc-body { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; flex: 1; }
.spc-cta {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink); padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.spc-cta:hover { color: var(--orange); }
.spc-cta .arr { transition: transform .2s ease; }
.spc-cta:hover .arr { transform: translateX(4px); }
@media (max-width: 980px) { .spc-grid { grid-template-columns: 1fr; } }

/* ============= EINSATZGEBIETE + KARTE ============= */
.sa-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; margin-top: 32px; }
.sa-map-wrap { position: relative; }
.sa-map-frame {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-stone);
}
.sa-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.35) contrast(1.02); }
.sa-map-badge {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: var(--ink); color: #fff;
  padding: 9px 15px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  box-shadow: 0 10px 30px -12px rgba(10,10,10,.5);
}
.sa-map-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(34,193,245,.25); }
.sa-legend {
  display: flex; gap: 24px; margin-top: 16px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.sa-leg-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  margin-right: 8px; vertical-align: -1px;
}
.sa-leg-bz { background: var(--ink); }
.sa-leg-bb { background: var(--orange); }
.sa-list { display: flex; flex-direction: column; gap: 32px; }
.sa-block h4 {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin: 0 0 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.sa-bezirke { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 24px; }
.sa-bezirke li { font-size: 14px; line-height: 1.9; break-inside: avoid; }
.sa-bezirke li a { color: var(--ink); }
.sa-bezirke li a:hover { color: var(--orange); }
.sa-more a { font-style: italic; color: var(--muted) !important; }
.sa-cta { background: var(--bg-cream); padding: 24px 28px; border: 1px solid var(--line); }
.sa-cta p { font-size: 14px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.55; }
@media (max-width: 980px) {
  .sa-grid { grid-template-columns: 1fr; }
  .sa-bezirke { columns: 1; }
}

/* ============= 24/7 NOTFALL-BANNER ============= */
.notfall {
  background: var(--ink); color: #fff;
  padding: clamp(60px, 7vw, 100px) 0;
}
.notfall-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.notfall .ey { color: var(--orange); font-weight: 700; }
.notfall .ey::before { background: var(--orange); }
.notfall h2 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  line-height: 1.05; letter-spacing: -.03em; margin: 18px 0 0; color: #fff;
}
.notfall h2 .it { font-weight: 200; color: rgba(255,255,255,.7); }
.notfall h2 .or { color: var(--orange); }
.notfall p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.6; margin: 24px 0 0; max-width: 480px; }
.notfall-phone {
  display: block; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15); padding: 32px 36px;
  transition: background .2s ease, border-color .2s ease;
}
.notfall-phone:hover { background: rgba(255,255,255,.08); border-color: var(--orange); }
.np-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 600;
}
.np-number {
  font-size: clamp(32px, 3.6vw, 48px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.1; margin: 12px 0 14px; color: #fff;
}
.np-sub { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; }
@media (max-width: 980px) { .notfall-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============= ANFRAGE-FORMULAR ============= */
.anfrage { padding: var(--section) 0; background: var(--bg-cream); scroll-margin-top: 90px; }
.anfrage .wrap { max-width: min(1480px, calc(100% - 48px)); }
.anfrage-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.anfrage-left .ey { color: var(--orange); font-weight: 700; }
.anfrage-left .ey::before { background: var(--orange); }
.anfrage-left h2 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  line-height: 1.02; letter-spacing: -.03em; margin: 18px 0 28px;
}
.anfrage-left h2 .it { font-weight: 200; color: var(--muted); }
.anfrage-left h2 .or { color: var(--orange); }
.anfrage-trust { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.anfrage-trust li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; color: var(--ink); }
.anfrage-alt {
  border-top: 1px solid var(--line);
  padding-top: 24px; display: flex; flex-direction: column; gap: 12px;
}
.alt-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 14px; }
.alt-row .k { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.alt-row a { font-weight: 700; color: var(--ink); }
.alt-row a:hover { color: var(--orange); }

.anfrage-form {
  background: #fff; border: 1px solid var(--line);
  padding: 44px 48px; display: flex; flex-direction: column; gap: 24px;
}
.form-progress {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.fp-step { display: flex; align-items: center; gap: 10px; opacity: .35; transition: opacity .2s ease; }
.fp-step.active { opacity: 1; }
.fp-num {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.fp-step.active .fp-num { background: var(--ink); color: #fff; }
.fp-lbl { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.fp-line { flex: 1; height: 1px; background: var(--line); }
.fp-counter { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-left: auto; }

.form-step { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.field .req { color: var(--orange); margin-left: 2px; }
.field .opt { color: var(--muted); font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 11px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field textarea {
  border: 1px solid var(--line-2); padding: 12px 14px; font: inherit;
  font-size: 15px; background: #fff; color: var(--ink); border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--orange); outline-offset: 1px; }
.field textarea { resize: vertical; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff; border: 1px solid var(--line-2);
  padding: 9px 16px; font-size: 13.5px; font-weight: 500;
  border-radius: 999px; transition: all .15s ease;
  color: var(--ink-2);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.dropzone {
  border: 1.5px dashed var(--line-2); padding: 24px; text-align: center;
  font-size: 14px; color: var(--muted); display: flex; align-items: center;
  justify-content: center; gap: 12px;
  transition: border-color .2s ease, color .2s ease;
}
.dropzone { cursor: pointer; }
.dropzone:hover { border-color: var(--ink); color: var(--ink); }
.dropzone.is-drag { border-color: var(--orange); color: var(--ink); background: var(--bg-cream); }
.dz-ico { font-size: 18px; }

/* Datei-Upload: verstecktes Feld + Liste der gewaehlten Dateien */
.dz-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.dz-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.dz-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); background: var(--bg-cream); border: 1px solid var(--line); padding: 8px 12px; }
.dz-name { flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dz-size { flex: none; color: var(--muted); font-size: 12px; }
.dz-rm { flex: none; border: 0; background: none; color: var(--muted); cursor: pointer; font-size: 18px; line-height: 1; padding: 0 2px; }
.dz-rm:hover { color: var(--orange); }
.dz-error { color: #b3261e; font-size: 12.5px; line-height: 1.5; margin-top: 8px; }

.checkbox-row { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); cursor: pointer; padding: 14px 16px; background: var(--bg-cream); border: 1px solid var(--line); }
.checkbox-row input { margin-top: 3px; accent-color: var(--orange); width: 16px; height: 16px; flex: none; }
.checkbox-row a { color: var(--orange); text-decoration: underline; font-weight: 600; }
.checkbox-row a:hover { color: var(--ink); }

.form-actions { display: flex; justify-content: flex-end; padding-top: 8px; }
.form-actions-2 { justify-content: space-between; }
.form-actions .btn { white-space: nowrap; }

@media (max-width: 980px) {
  .anfrage-grid { grid-template-columns: 1fr; gap: 32px; }
  .anfrage-form { padding: 28px 24px; }
  .field-grid { grid-template-columns: 1fr; }
}

/* ============= MOBILE STICKY BAR ============= */
.mobile-sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--line);
  padding: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.06);
}
.ms-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 6px; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; color: var(--ink); border-radius: 4px;
}
.ms-ico { font-size: 18px; }
.ms-btn-cta { background: var(--orange); color: #fff; }
@media (max-width: 740px) {
  .mobile-sticky { display: flex; gap: 4px; }
  body { padding-bottom: 70px; }
}

/* ============= FORMULAR-FEEDBACK (Danke-Animation) ============= */
.form-success {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: 30px 12px 14px; min-height: 280px; justify-content: center;
}
.fs-badge { width: 92px; height: 92px; margin-bottom: 4px; }
.fs-badge svg { width: 100%; height: 100%; overflow: visible; }
.fs-pulse { fill: var(--orange); opacity: 0; transform-origin: 50% 50%; }
.fs-ring {
  fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 289; stroke-dashoffset: 289;
  transform: rotate(-90deg); transform-origin: 50% 50%;
  animation: fsRing .7s cubic-bezier(.65,0,.35,1) forwards;
}
.fs-tick {
  fill: none; stroke: var(--orange); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 80; stroke-dashoffset: 80;
  animation: fsTick .42s .55s cubic-bezier(.65,0,.35,1) forwards;
}
@keyframes fsRing { to { stroke-dashoffset: 0; } }
@keyframes fsTick { to { stroke-dashoffset: 0; } }
.fs-badge .fs-pulse { animation: fsPulse .9s .55s ease-out; }
@keyframes fsPulse {
  0%   { transform: scale(.55); opacity: .22; }
  100% { transform: scale(1.35); opacity: 0; }
}
.fs-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -.02em;
  margin: 0; color: var(--ink); opacity: 0; animation: fsUp .5s .55s both;
}
.fs-text {
  font-size: 15.5px; line-height: 1.7; color: var(--ink-2); max-width: 440px;
  margin: 0; opacity: 0; animation: fsUp .5s .67s both;
}
.fs-meta {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: 6px; opacity: 0;
  animation: fsUp .5s .79s both;
}
@keyframes fsUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .fs-ring, .fs-tick, .fs-pulse, .fs-title, .fs-text, .fs-meta { animation: none !important; }
  .fs-ring, .fs-tick { stroke-dashoffset: 0 !important; }
  .fs-pulse { opacity: 0 !important; }
  .fs-title, .fs-text, .fs-meta { opacity: 1 !important; }
}

.form-error {
  margin-top: 6px; padding: 14px 16px; background: #fff4ef;
  border: 1px solid var(--orange); font-size: 14px; line-height: 1.6; color: var(--ink-2);
}
.form-error a { color: var(--orange); font-weight: 600; text-decoration: underline; }
.btn.is-loading { opacity: .55; pointer-events: none; }

/* ============= WIDERRUF-SEITE ============= */
.wd-section { background: var(--bg-cream); padding: clamp(48px, 7vw, 96px) 0; border-top: 1px solid var(--line); }
.wd-wrap { max-width: 820px; }
.wd-intro { margin-bottom: 28px; }
.wd-intro .eyebrow { display: inline-block; margin-bottom: 14px; }
.wd-intro h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -.02em; margin: 0 0 10px; }
.wd-intro p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); margin: 0; }
.wd-muster {
  border: 1px solid var(--line-2); background: #fff; padding: 22px 26px; margin: 6px 0 0;
  font-size: 14px; line-height: 1.85; color: var(--ink-2);
}
.wd-muster b { color: var(--ink); font-weight: 700; }
.wd-muster .wd-muster-note { display: block; margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.wd-form-card { margin-top: 18px; }
.wd-form-card .anfrage-form { background: #fff; }
.field-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .field-grid-3 { grid-template-columns: 1fr; } }

/* ================================================================
   MOBILE & TABLET — Premium Responsive Refinements
   (zusammenhängender Block, überschreibt gezielt frühere Regeln)
   ================================================================ */

/* Sanfteres Tap-Verhalten + kein horizontales Scrollen.
   overflow-x auch auf html, da fixierte Elemente (Menü-Panel) von body
   NICHT beschnitten werden — nur html/Container fangen deren Überlauf ab. */
* { -webkit-tap-highlight-color: transparent; }
html, body { overflow-x: clip; }

/* ---------- Header: Hamburger-Button ---------- */
.hd-burger { display: none; }
@media (max-width: 980px) {
  .hd-nav { display: none; }
  .hd-right .phone { display: none; }          /* Nummer steckt im Menü */
  .hd-right { gap: 10px; }
  .hd-burger {
    display: inline-flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 46px; height: 46px; padding: 0 11px;
    background: transparent; border: 0;
  }
  .hd-burger span {
    display: block; height: 2px; width: 24px; background: var(--ink);
    border-radius: 2px;
    transition: transform .32s cubic-bezier(.22,.61,.36,1), opacity .2s ease;
  }
  .hd-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hd-burger.is-open span:nth-child(2) { opacity: 0; }
  .hd-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 520px) {
  .hd-pill { display: none; }                  /* CTA steckt im Menü */
  .hd-brand .mono, .hd-brand .mono img { width: 40px; height: 40px; }
  .hd-brand .word { font-size: 12px; letter-spacing: .2em; }
  .hd-brand .word .sub { font-size: 9px; letter-spacing: .16em; }
  .hd-inner { padding-top: 14px; padding-bottom: 14px; }
}

/* ---------- Mobile-Menü (Slide-in von rechts) ---------- */
@media (min-width: 981px) { .hd-mobile { display: none !important; } }
.hd-mobile {
  position: fixed; inset: 0; z-index: 80;
  visibility: hidden; opacity: 0;
  overflow: hidden;   /* schneidet das off-canvas-Panel ab -> kein weißer Rand */
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.hd-mobile.open { visibility: visible; opacity: 1; transition: opacity .35s ease; }
.hd-mobile-backdrop {
  position: absolute; inset: 0; background: rgba(10,12,16,.55);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.hd-mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 88vw);
  background: #fff; color: var(--ink);
  display: flex; flex-direction: column;
  padding: clamp(22px, 6vw, 40px);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
  box-shadow: -40px 0 90px -40px rgba(10,10,10,.5);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.hd-mobile.open .hd-mobile-panel { transform: none; }
.hd-mobile-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.hd-mobile-brand { font-size: 12px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; line-height: 1.3; }
.hd-mobile-brand span { display: block; font-weight: 400; font-size: 9.5px; letter-spacing: .18em; color: var(--muted); margin-top: 4px; }
.hd-mobile-close {
  flex: none; width: 44px; height: 44px; margin: -8px -8px 0 0;
  border: 0; background: transparent; color: var(--ink);
  font-size: 32px; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.hd-mobile-close:hover { color: var(--orange); }
.hd-mobile-links { list-style: none; margin: clamp(20px, 5vw, 36px) 0 0; padding: 0; }
.hd-mobile-links li {
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateX(24px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,.61,.36,1);
}
.hd-mobile.open .hd-mobile-links li { opacity: 1; transform: none; }
.hd-mobile.open .hd-mobile-links li:nth-child(1) { transition-delay: .10s; }
.hd-mobile.open .hd-mobile-links li:nth-child(2) { transition-delay: .15s; }
.hd-mobile.open .hd-mobile-links li:nth-child(3) { transition-delay: .20s; }
.hd-mobile.open .hd-mobile-links li:nth-child(4) { transition-delay: .25s; }
.hd-mobile.open .hd-mobile-links li:nth-child(5) { transition-delay: .30s; }
.hd-mobile.open .hd-mobile-links li:nth-child(6) { transition-delay: .35s; }
.hd-mobile-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 2px; font-size: clamp(20px, 5.4vw, 24px); font-weight: 600;
  letter-spacing: -.01em; color: var(--ink);
  transition: color .2s ease, padding .25s ease;
}
.hd-mobile-links a::after {
  content: "→"; font-weight: 300; font-size: 18px; color: var(--line-2);
  transition: color .2s ease, transform .2s ease;
}
.hd-mobile-links a:hover, .hd-mobile-links a:active { color: var(--orange); padding-left: 10px; }
.hd-mobile-links a:hover::after, .hd-mobile-links a:active::after { color: var(--orange); transform: translateX(4px); }
.hd-mobile-foot { margin-top: auto; padding-top: clamp(24px, 5vw, 34px); display: flex; flex-direction: column; gap: 16px; }
.hd-mobile-phone { display: flex; flex-direction: column; gap: 4px; }
.hd-mobile-phone .lbl { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hd-mobile-phone .num { font-size: clamp(22px, 6vw, 26px); font-weight: 700; letter-spacing: -.01em; color: var(--ink); transition: color .2s ease; }
.hd-mobile-phone:hover .num { color: var(--orange); }
.hd-mobile-cta { justify-content: center; padding-top: 17px; padding-bottom: 17px; }

/* ---------- Formulare: iOS-Zoom verhindern (Schrift >= 16px) ---------- */
@media (max-width: 980px) {
  .field input[type="text"],
  .field input[type="tel"],
  .field input[type="email"],
  .field input[type="date"],
  .field textarea { font-size: 16px; }
}

/* ---------- CTAs auf dem Smartphone: voll, gut tappbar ---------- */
@media (max-width: 560px) {
  .hero2 .ctas, .express .ctas, .cta-final .ctas, .kr-hero2-cta { width: 100%; }
  .hero2 .ctas .btn, .express .ctas .btn, .cta-final .ctas .btn,
  .kr-hero2-cta .btn, .abl-nl-right .btn, .s3-callout-right .btn {
    width: 100%; justify-content: center;
  }
  .btn { padding: 17px 26px; }
  .hero2 .ctas .btn, .express .ctas .btn { padding-top: 18px; padding-bottom: 18px; }
}

/* ---------- Footer: Marke volle Breite, luftigere Spalten ---------- */
@media (max-width: 560px) {
  .ft { padding-top: 56px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .ft-brand { grid-column: 1 / -1; }
}

/* ---------- Kleinere Sektions-Feinheiten fürs Smartphone ---------- */
@media (max-width: 560px) {
  .hero2-inner { padding-bottom: clamp(40px, 9vw, 64px); }
  .hero2 .lead, .express .lead, .cta-final .sub { font-size: 16px; }
  .tm { min-height: 0; padding: 30px 26px 28px; }
  .step { min-height: 0; }
  .svc { min-height: 0; }
  .faq-q { font-size: 17px; padding: 22px 0; gap: 16px; }
  .s3-callout { padding: 28px 24px; }
}

/* ---------- 3-Schritte-Karten: Nummer NEBEN dem Symbol, kompakter (Mobile/Tablet) ---------- */
@media (max-width: 980px) {
  .s3-grid { gap: 16px; margin-top: 28px; }
  .s3-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon num"
      "title title"
      "text  text"
      "meta  meta";
    align-items: center;
    column-gap: 16px; row-gap: 12px;
    padding: 24px 22px;
  }
  .s3-icon { grid-area: icon; width: 50px; height: 50px; margin: 0; }
  .s3-num {
    grid-area: num; justify-self: start; align-self: center;
    font-size: 22px; font-weight: 800; letter-spacing: 0;
    color: var(--orange); line-height: 1;
  }
  .s3-card h3 { grid-area: title; font-size: 21px; margin-top: 2px; }
  .s3-card p { grid-area: text; font-size: 14px; }
  .s3-meta { grid-area: meta; padding-top: 12px; }
}

/* ---------- Kundenstimmen: kompakter auf dem Smartphone ---------- */
@media (max-width: 560px) {
  .tm-grid { gap: 16px; }
  .tm { padding: 26px 22px 24px; gap: 14px; }
  .tm::before { font-size: 50px; top: 8px; right: 18px; }
  .tm .quote { font-size: 15.5px; line-height: 1.6; }
  .tm .who { padding-top: 16px; gap: 12px; }
  .tm .who .av { width: 40px; height: 40px; font-size: 13px; }
}

/* ---------- Vorher/Nachher: größere Bilder, saubere Beschriftung (Smartphone) ---------- */
@media (max-width: 560px) {
  .ba-row { gap: 10px; }
  .ba-card { aspect-ratio: 1/1; }
  .ba-card .stamp { font-size: 10px; padding: 6px 10px; letter-spacing: .16em; top: 14px; left: 14px; }
  .ba-meta {
    flex-direction: column; align-items: flex-start;
    gap: 4px; padding-top: 12px;
    font-size: 12px; line-height: 1.45;
    hyphens: manual; -webkit-hyphens: manual;
  }
  .ba-meta .or {
    font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
    white-space: nowrap;
  }
}

/* ---------- Ablauf (8 Schritte): kompakter & glatter auf dem Smartphone ---------- */
@media (max-width: 560px) {
  .ablauf-step { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; }
  .ablauf-step::before { left: 16px; top: 28px; }
  .ablauf-num { font-size: 26px; }
  .ablauf-body { padding-top: 2px; }
  .ablauf-t { font-size: 18px; margin-bottom: 6px; letter-spacing: 0; }
  .ablauf-d { font-size: 14px; line-height: 1.6; }
}

/* ---------- 24/7-Notfall: Hotline-Nummer auf EINE Zeile, runder ---------- */
@media (max-width: 560px) {
  .notfall-phone { padding: 24px 22px; }
  .np-label { font-size: 10.5px; letter-spacing: .16em; }
  .np-number {
    font-size: clamp(24px, 7.2vw, 34px);
    white-space: nowrap; letter-spacing: -.015em;
    margin: 10px 0 12px;
  }
  .np-sub { font-size: 12px; }
}

/* ================================================================
   ANFRAGEFORMULAR — vollständige Smartphone-Anpassung
   Alles untereinander, nichts wird abgeschnitten.
   Kernfix: Grid-Spalte schrumpfbar machen (minmax(0,1fr) + min-width:0),
   sonst sprengt der Formularinhalt (Chips/Fortschritt) den Viewport.
   ================================================================ */
@media (max-width: 980px) {
  .anfrage .wrap { max-width: 100%; }
  .anfrage-grid { grid-template-columns: minmax(0, 1fr); }
  .anfrage-left, .anfrage-form { min-width: 0; }
}
@media (max-width: 560px) {
  .anfrage-form { padding: 22px 18px; gap: 20px; }

  /* Fortschrittsanzeige: passt garantiert in eine Zeile (Zähler ausgeblendet) */
  .form-progress { gap: 10px; padding-bottom: 18px; }
  .fp-counter { display: none; }
  .fp-num { width: 24px; height: 24px; font-size: 11px; }
  .fp-lbl { font-size: 11px; letter-spacing: .1em; }
  .fp-step { gap: 8px; }

  /* Auswahl-Chips: kompakter, brechen sauber innerhalb der Breite um */
  .chip-row { gap: 7px; }
  .chip { padding: 8px 13px; font-size: 13px; }

  /* Feld-Beschriftungen etwas kompakter */
  .field { gap: 7px; }
  .field label { font-size: 11.5px; letter-spacing: .1em; }

  /* Buttons: volle Breite, gut tappbar, nie abgeschnitten */
  .form-actions .btn { width: 100%; justify-content: center; }
  .form-actions-2 { flex-direction: column-reverse; gap: 12px; }
  .form-actions-2 .btn { width: 100%; justify-content: center; }
}

/* Nachlass-Block: blaue Eyebrow linksbündig mit Überschrift/Text (ohne führenden Strich) */
.ablauf-nachlass .eyebrow::before { display: none; }
/* Eyebrow-Labels nie per Silbentrennung umbrechen (kein "NACH-LASS") */
.eyebrow { hyphens: manual; -webkit-hyphens: manual; }

/* ---------- Mobile-Korrekturen: Live-Status, Ablauf-Überschrift, Nachlass-Buttons ---------- */
@media (max-width: 560px) {
  h2.section-title { overflow-wrap: break-word; }        /* lange Wörter brechen statt überlaufen */
  .hero2 h1 { font-size: clamp(33px, 10vw, 46px); line-height: 1.05; }  /* "Entrümpelung" wird nicht mehr abgeschnitten */
  .express-card { padding: 24px 20px; }                  /* mehr Platz für die Status-Zeilen */
  /* Nachlass-Buttons: Text linksbündig UND komplett im Button (kompakter, bricht notfalls innen um statt rauszulaufen) */
  .ablauf-nachlass { padding: 24px 18px; }
  .abl-nl-right .btn { justify-content: space-between; font-size: 11px; letter-spacing: .08em; padding: 14px 18px; gap: 8px; white-space: normal; }
  .abl-nl-right .arr { font-size: 14px; }
  .abl-nl-sub { text-align: left; }
}

/* ---------- Reduced motion: Menü-Animationen aus ---------- */
@media (prefers-reduced-motion: reduce) {
  .hd-mobile, .hd-mobile-panel, .hd-mobile-links li, .hd-burger span { transition: none !important; }
  .hd-mobile-links li { opacity: 1; transform: none; }
}

/* ================================================================
   PREMIUM-POLISH — Fokus, Buttons, Interaktion (zurückhaltend)
   ================================================================ */

/* Sichtbarer, markenkonformer Tastatur-Fokus (nur bei Tastaturbedienung) */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
.chip:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Buttons: einheitliches Press-Feedback + sauberer Disabled-Zustand */
.btn:active { transform: translateY(0); }
.btn:disabled, .btn[aria-disabled="true"], button:disabled {
  opacity: .5; cursor: not-allowed; transform: none;
}

/* Subtile, einheitliche Übergänge für Textlinks */
.hd-nav a, .ft-col ul a, .sa-bezirke li a, .alt-row a, .lg-body a {
  transition: color .2s ease;
}

/* prefers-reduced-motion: Dauer-/Scrollanimationen ruhigstellen */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dot-live { animation: none; }
}

