/* =========================================================
   Tele-Center am Phönix – Stylesheet
   Moorstraße 15 · 21073 Hamburg-Harburg
   Keine externen Schriften/Dienste: DSGVO-freundlich & schnell.
   ========================================================= */

/* ---------- 1. Design-Tokens ---------- */
:root {
  --brand:        #D6121A;
  --brand-dark:   #A90D14;
  --brand-light:  #FF4A44;
  --brand-glow:   rgba(214, 18, 26, .32);

  --ink:          #131419;
  --ink-soft:     #1D1F27;
  --ink-line:     #2B2D37;

  --text:         #22242C;
  --text-muted:   #5C6270;
  --text-invert:  #FFFFFF;
  --text-invert-muted: #B7BAC5;

  --bg:           #FFFFFF;
  --bg-soft:      #F6F7F9;
  --bg-tint:      #FDF3F3;
  --line:         #E5E7EC;

  --ok:           #158A4A;
  --ok-bg:        #E7F6ED;
  --warn:         #B4560A;
  --warn-bg:      #FFF3E6;

  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-pill:  999px;

  --shadow-sm:    0 1px 2px rgba(19,20,25,.06), 0 2px 8px rgba(19,20,25,.05);
  --shadow:       0 4px 12px rgba(19,20,25,.07), 0 12px 32px rgba(19,20,25,.08);
  --shadow-lg:    0 12px 28px rgba(19,20,25,.10), 0 28px 64px rgba(19,20,25,.12);
  --shadow-brand: 0 10px 24px rgba(214,18,26,.28);

  --wrap:         1160px;
  --gutter:       clamp(18px, 4vw, 32px);
  --header-h:     72px;

  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Roboto, "Noto Sans", Arial, sans-serif;

  --ease:         cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. Reset & Basis ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--ink);
}

h1 { font-size: clamp(2.05rem, 5.2vw, 3.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

strong { font-weight: 700; color: var(--ink); }

/* Auf dunklen Flächen muss fetter Text hell sein */
.hero strong,
.hero__card strong,
.pagehead strong,
.section--dark strong,
.card--dark strong,
.cta-band strong,
.footer strong,
.map-consent strong,
.calc__result strong,
.topbar strong { color: #fff; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--brand); color: #fff; }

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

/* ---------- 3. Layout-Helfer ---------- */
.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--soft { background: var(--bg-soft); }

.section--dark {
  background: var(--ink);
  color: var(--text-invert-muted);
  position: relative;
  overflow: hidden;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark::before {
  content: "";
  position: absolute;
  inset: -40% 55% 30% -25%;
  background: radial-gradient(circle at center, var(--brand-glow), transparent 68%);
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

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

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- 4. Section-Kopf ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--brand-light); }
.section--dark .eyebrow::before { background: var(--brand-light); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head.center { margin-inline: auto; }
.section-head p { font-size: 1.06rem; color: var(--text-muted); margin-bottom: 0; }
.section--dark .section-head p { color: var(--text-invert-muted); }

.lead { font-size: 1.12rem; color: var(--text-muted); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-light), var(--brand) 45%, var(--brand-dark));
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { color: #fff; box-shadow: 0 14px 30px rgba(214,18,26,.38); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }

.btn--ghost { border-color: var(--line); background: #fff; color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--outline-light { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { color: var(--brand); }

.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- 6. Kopfzeile ---------- */
.topbar {
  background: var(--ink);
  color: var(--text-invert-muted);
  font-size: .87rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--brand-light); }
.topbar__items { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
@media (max-width: 720px) {
  /* Auf dem Handy nur der Status – Adresse und Telefon stehen ohnehin im Header */
  .topbar__items { display: none; }
  .topbar__inner { justify-content: center; min-height: 34px; }
  .topbar .status { font-size: .78rem; }
}
.topbar__item { display: inline-flex; align-items: center; gap: .45em; }
.topbar__item svg { width: 15px; height: 15px; opacity: .8; }

.status {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
}
.status--open { background: rgba(21,138,74,.18); color: #56D98E; }
.status--closed { background: rgba(255,255,255,.1); color: #E4E6EC; }
.status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
}
.status--open .status__dot { animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(86,217,142,.7); }
  70%  { box-shadow: 0 0 0 7px rgba(86,217,142,0); }
  100% { box-shadow: 0 0 0 0 rgba(86,217,142,0); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 44px; height: 44px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: -.025em;
  white-space: nowrap;
  background: linear-gradient(120deg, var(--brand-light), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__sub {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  font-size: .96rem;
  white-space: nowrap;
  position: relative;
  transition: color .16s var(--ease), background .16s var(--ease);
}
/* Telefon-Knopf steckt nur im mobilen Menü */
.nav > .btn { display: none; }
.nav a:hover { color: var(--brand); background: var(--bg-tint); }
.nav a[aria-current="page"] { color: var(--brand); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .header__cta .btn--ghost { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    max-height: calc(100dvh - var(--header-h) - 20px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a:last-of-type { border-bottom: 0; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 16px; }
  .nav > .btn--primary,
  .nav > .btn--primary:hover { color: #fff; background: linear-gradient(135deg, var(--brand-light), var(--brand) 45%, var(--brand-dark)); }
}
@media (max-width: 420px) {
  .header__cta .btn span,
  .header__cta .btn { font-size: .9rem; padding: 10px 14px; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0E0F13 0%, #191A21 45%, #2A1416 100%);
  color: var(--text-invert-muted);
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 7vw, 96px);
}
.hero::before {
  content: "";
  position: absolute;
  width: 760px; height: 760px;
  right: -180px; top: -280px;
  background: radial-gradient(circle, var(--brand-glow), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,.06), transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-light), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { font-size: clamp(1.03rem, 1.6vw, 1.2rem); max-width: 56ch; margin-bottom: 1.6em; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
}
.chip svg { width: 15px; height: 15px; color: var(--brand-light); flex: none; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.stars { display: inline-flex; gap: 2px; color: #FFB400; }
.stars svg { width: 18px; height: 18px; }
.hero__proof strong { color: #fff; }
.hero__proof a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hero__proof a:hover { color: var(--brand-light); }

.hero__card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__card h2 {
  font-size: 1.16rem;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .55em;
}
.hero__card h2 svg { width: 20px; height: 20px; color: var(--brand-light); }

.hours { list-style: none; margin: 0 0 18px; padding: 0; font-size: .96rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  margin: 0;
}
.hours li:last-child { border-bottom: 0; }
.hours li.is-today { color: #fff; font-weight: 700; }
.hours li.is-today span:first-child::after { content: " · heute"; font-weight: 600; color: var(--brand-light); }

/* Variante auf hellem Untergrund */
.hours--light li { border-bottom-color: var(--line); }
.hours--light li.is-today { color: var(--ink); }
.hours--light li.is-today span:first-child::after { color: var(--brand); }

.hero__logo {
  width: min(280px, 60%);
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.5));
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { order: 2; }
}

/* ---------- 8. Vertrauensleiste ---------- */
.trustbar { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 6px 26px;
  padding: 22px 0;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.trustbar__item svg { width: 26px; height: 26px; color: var(--brand); flex: none; }
.trustbar__item span { line-height: 1.35; }
.trustbar__item small { display: block; font-weight: 500; color: var(--text-muted); font-size: .84rem; }

/* ---------- 9. Karten ---------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  height: 100%;
}
.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(214,18,26,.35);
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); font-size: .98rem; }
.card__icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--bg-tint), #fff);
  border: 1px solid rgba(214,18,26,.18);
  color: var(--brand);
  margin-bottom: 18px;
}
.card__icon svg { width: 27px; height: 27px; }
.card__list { list-style: none; padding: 0; margin: 16px 0 0; font-size: .95rem; }
.card__list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  margin-bottom: .4em;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.card__more {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  margin-top: 18px;
  font-weight: 700;
  font-size: .95rem;
}
.card__more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card--link:hover .card__more svg { transform: translateX(4px); }
.card--dark {
  background: var(--ink);
  border-color: var(--ink-line);
  color: var(--text-invert-muted);
}
.card--dark p { color: var(--text-invert-muted); }
.card--dark h3,
.card--dark h4 { color: #fff; }
.card--dark .card__list li { color: var(--text-invert-muted); }

.stretched { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.stretched span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- 10. Ablauf / Schritte ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 68px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-brand);
}
.step h3 { margin-bottom: .35rem; padding-top: 8px; }
.step p { color: var(--text-muted); margin-bottom: 0; font-size: .98rem; }
.section--dark .step p { color: var(--text-invert-muted); }

/* ---------- 11. Preisrechner ---------- */
.calc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.calc__body {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
}
.calc__form { padding: clamp(24px, 3vw, 34px); }
.calc__fields { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.calc__result {
  background: linear-gradient(160deg, var(--ink) 0%, #26151a 100%);
  color: var(--text-invert-muted);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.calc__result::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  right: -120px; bottom: -140px;
  background: radial-gradient(circle, var(--brand-glow), transparent 68%);
}
.calc__result > * { position: relative; z-index: 1; }
.calc__price {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.calc__price small { font-size: .42em; font-weight: 700; color: var(--brand-light); display: block; letter-spacing: .02em; }
.calc__meta { font-size: .95rem; }
.calc__meta strong { color: #fff; }
.calc__hint { font-size: .85rem; color: var(--text-invert-muted); opacity: .85; }
.calc__note { font-size: .85rem; color: var(--text-muted); margin-top: 16px; }
@media (max-width: 860px) {
  .calc__body { grid-template-columns: 1fr; }
}

/* ---------- 12. Formular-Elemente ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; font-size: .93rem; color: var(--ink); }
.field .opt { font-weight: 500; color: var(--text-muted); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235C6270'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5' stroke='%235C6270' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}
textarea { min-height: 140px; resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(214,18,26,.12);
}

.check { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--text-muted); }
.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--brand); flex: none; }

.form-note { font-size: .85rem; color: var(--text-muted); }

.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .96rem;
  margin-bottom: 18px;
}
.form-msg.is-ok { display: block; background: var(--ok-bg); color: var(--ok); }
.form-msg.is-error { display: block; background: #FDECEC; color: var(--brand-dark); }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- 13. Preistabelle ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
table.price {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
  min-width: 560px;
}
table.price caption {
  text-align: left;
  padding: 18px 20px 4px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}
table.price th,
table.price td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.price thead th {
  background: var(--bg-soft);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
  white-space: nowrap;
}
table.price tbody tr:last-child td { border-bottom: 0; }
table.price tbody tr:hover td { background: var(--bg-tint); }
table.price td.model { font-weight: 700; color: var(--ink); }
table.price td.price { font-weight: 800; color: var(--brand); white-space: nowrap; }
table.price td.na { color: var(--text-muted); font-weight: 500; }

.price-legend {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.filterbar button {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 700;
  font-size: .93rem;
  color: var(--text);
  cursor: pointer;
  transition: all .16s var(--ease);
}
.filterbar button:hover { border-color: var(--brand); color: var(--brand); }
.filterbar button[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---------- 14. FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.faq details[open] { border-color: rgba(214,18,26,.3); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -7px;
  border-right: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--brand); }
.faq__answer { padding: 0 22px 20px; color: var(--text-muted); font-size: .99rem; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ---------- 15. Bewertungen ---------- */
.rating-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: var(--shadow);
}
.rating-card__score { text-align: center; }
.rating-card__num {
  font-size: clamp(3rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
}
.rating-card__stars { display: inline-flex; gap: 3px; color: #FFB400; margin: 8px 0 4px; }
.rating-card__stars svg { width: 22px; height: 22px; }
.rating-card__count { font-size: .9rem; color: var(--text-muted); }
@media (max-width: 640px) {
  .rating-card { grid-template-columns: 1fr; text-align: center; }
  .rating-card .btn-row { justify-content: center; }
}

/* ---------- 16. Karte / Anfahrt ---------- */
.map-consent {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(19,20,25,.9), rgba(42,20,22,.9)),
    repeating-linear-gradient(45deg, #2A2C36 0 18px, #23252E 18px 36px);
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  color: var(--text-invert-muted);
}
.map-consent h3 { color: #fff; }
.map-consent p { max-width: 46ch; margin-inline: auto; font-size: .95rem; }
.map-consent iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent.is-loaded { padding: 0; min-height: 0; background: none; display: block; }
.map-consent.is-loaded iframe { height: 420px; }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 3px; }
.contact-list strong { display: block; color: var(--ink); }
.section--dark .contact-list strong { color: #fff; }
.contact-list a { color: inherit; }
.contact-list a:hover { color: var(--brand); }
.section--dark .contact-list a:hover { color: var(--brand-light); }

/* ---------- 17. CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 55%, #E8342C);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4.5vw, 52px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -120px; top: -180px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { margin-bottom: 0; color: rgba(255,255,255,.92); }
@media (max-width: 780px) {
  .cta-band { grid-template-columns: 1fr; }
}

/* ---------- 18. Seitenkopf (Unterseiten) ---------- */
.pagehead {
  background: linear-gradient(160deg, #0E0F13, #1D1A20 60%, #2A1416);
  color: var(--text-invert-muted);
  padding: clamp(36px, 6vw, 64px) 0 clamp(40px, 6vw, 68px);
  position: relative;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -200px; top: -240px;
  background: radial-gradient(circle, var(--brand-glow), transparent 66%);
}
.pagehead > * { position: relative; z-index: 1; }
.pagehead h1 { color: #fff; margin-bottom: .35em; }
.pagehead p { max-width: 62ch; font-size: 1.06rem; margin-bottom: 0; }

.crumbs { font-size: .86rem; margin-bottom: 18px; color: var(--text-invert-muted); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5em; padding: 0; margin: 0; }
.crumbs li { margin: 0; display: flex; align-items: center; gap: .5em; }
.crumbs li + li::before { content: "›"; opacity: .6; }
.crumbs a { color: #fff; opacity: .85; }
.crumbs a:hover { color: var(--brand-light); opacity: 1; }
.crumbs [aria-current] { opacity: .7; }

/* ---------- 19. Info-Box ---------- */
.note {
  border-left: 4px solid var(--brand);
  background: var(--bg-tint);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .96rem;
}
.note > strong:first-child { display: block; margin-bottom: .2em; }

.tickgrid { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tickgrid li { position: relative; padding-left: 34px; margin: 0; font-size: .99rem; }
.tickgrid li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D6121A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
  border: 1px solid rgba(214,18,26,.2);
}
.section--dark .tickgrid li::before { background-color: rgba(214,18,26,.16); border-color: rgba(214,18,26,.4); }

/* ---------- 20. Fußzeile ---------- */
.footer {
  background: var(--ink);
  color: var(--text-invert-muted);
  padding: clamp(46px, 6vw, 72px) 0 0;
  font-size: .95rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(26px, 4vw, 48px);
  padding-bottom: 42px;
}
.footer h3 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer a { color: var(--text-invert-muted); }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55em; }
.footer__logo { width: 190px; margin-bottom: 18px; }
.footer__bottom {
  border-top: 1px solid var(--ink-line);
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  align-items: center;
  font-size: .87rem;
}
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* ---------- 21. Mobile Aktionsleiste ---------- */
.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(19,20,25,.1);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
}
.actionbar__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.actionbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 12px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}
.actionbar a svg { width: 21px; height: 21px; color: var(--brand); }
.actionbar a.is-primary { background: var(--brand); color: #fff; }
.actionbar a.is-primary svg { color: #fff; }
@media (max-width: 760px) {
  .actionbar { display: block; }
  body { padding-bottom: 74px; }
}

/* ---------- 22. Reveal-Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 23. Rechtstexte ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-top: 2.2rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; }
.legal p, .legal li { font-size: .99rem; color: var(--text); }
.legal address { font-style: normal; margin-bottom: 1.1em; }

/* ---------- 24. 404 ---------- */
.error-page { text-align: center; padding: clamp(60px, 12vw, 130px) 0; }
.error-page__code {
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.05em;
  background: linear-gradient(120deg, var(--brand-light), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .2em;
}

/* ---------- 25. Druck ---------- */
@media print {
  .header, .topbar, .actionbar, .footer, .cta-band, .map-consent, .nav-toggle { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .hero, .pagehead, .section--dark { background: none !important; color: #000 !important; }
  .hero h1, .pagehead h1, .section--dark h2, .section--dark h3 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
