/* ============================================================
   MUSTERBERG — Demo-Shell für simplysolve
   Best-Practice-Referenz: Reparatur & Garantie auf der Website
   ============================================================ */

/* ---------- 1. simplysolve Brand Tokens (Original-CI) ---------- */
:root {
  --siso-primary:     #24515B;
  --siso-dark:        #1D3D42;
  --siso-jelly-bean:  #287C8F;
  --siso-emerald:     #40A0AD;
  --siso-soft:        #8EBABC;
  --siso-light:       #E8F0F1;
  --siso-white:       #F8F9FA;
  --siso-accent:      #FFA25E;

  /* abgeleitet: dunklere Akzent-Variante für Text und Linien,
     da #FFA25E auf Weiss zu wenig Kontrast hat */
  --siso-accent-deep: #A85B17;
}

/* ---------- 2. Semantische Rollen ---------- */
:root {
  --ink:          var(--siso-primary);      /* Text, Header, Logo */
  --ink-deep:     var(--siso-dark);         /* dunkle Flächen, Footer */
  --ink-mid:      #4A737C;                  /* Sekundärtext */
  --muted:        #55777E;

  --brand:        var(--siso-jelly-bean);   /* CTA, Garantie-Pfad */
  --brand-deep:   var(--siso-primary);      /* CTA-Hover, Eyebrows */
  --brand-bright: var(--siso-emerald);      /* Akzente auf dunklem Grund */
  --tint:         var(--siso-light);        /* Flächen im Garantie-Kontext */

  --accent:       var(--siso-accent);       /* Reparatur-Pfad, kostenpflichtig */
  --accent-deep:  var(--siso-accent-deep);
  --accent-tint:  #FFF1E4;

  --white:        #FFFFFF;
  --surface:      var(--siso-white);
  --line:         #D4E1E3;

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --r: 4px;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brand-deep);
}
.lead { font-size: 18px; color: var(--ink-mid); }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border: 1px solid transparent; border-radius: var(--r);
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-deep); }
.btn--accent { background: var(--accent); color: var(--siso-dark); }
.btn--accent:hover { background: #F98F3C; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-deep); }
.btn--ghost { border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Bild-Platzhalter ---------- */
.ph {
  position: relative; display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(36,81,91,.07) 0 12px, rgba(36,81,91,0) 12px 24px),
    var(--surface);
  color: var(--muted);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--line);
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 12px, rgba(255,255,255,0) 12px 24px),
    var(--ink-deep);
  color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.15);
}
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--16x9 { aspect-ratio: 16 / 9; }

/* ============================================================
   HEADER-BEREICH
   ============================================================ */
.announce {
  background: var(--brand-deep); color: #fff;
  font-size: 14px; position: relative;
}
.announce__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 10px 48px 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.announce__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; padding: 6px 10px; opacity: .8; line-height: 1;
}
.announce__close:hover { opacity: 1; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; min-height: 74px;
}
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: 0.14em; text-decoration: none; text-transform: uppercase;
}
.logo span { color: var(--brand); }
.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 14px; font-size: 15px; font-weight: 500; text-decoration: none;
  background: none; border: 0; border-radius: var(--r);
}
.nav__link:hover { background: var(--surface); }
.nav__item { position: relative; }
.nav__item > .nav__link[aria-expanded="true"] { background: none; }
.caret { width: 9px; height: 9px; border-right: 2px solid; border-bottom: 2px solid;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
[aria-expanded="true"] .caret { transform: rotate(-135deg) translateY(-2px); }

.mega {
  position: absolute; top: calc(100% + 1px); right: 0; min-width: 620px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 24px 48px -20px rgba(29,61,66,.28);
  padding: 26px 28px; display: none; grid-template-columns: 1fr 1fr; gap: 28px;
}
.mega.is-open { display: grid; }
.mega__title {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 12px;
}
.mega__list li + li { margin-top: 2px; }
.mega__list a {
  display: block; padding: 8px 10px; margin-left: -10px; border-radius: var(--r);
  text-decoration: none; font-size: 15px; font-weight: 500;
}
.mega__list a:hover { background: var(--surface); }
.mega__list small { display: block; font-weight: 400; color: var(--muted); font-size: 13px; }
.mega__promo { background: var(--tint); border-radius: var(--r); padding: 20px; }
.mega__promo p { font-size: 14px; color: var(--ink-mid); margin: 8px 0 14px; }

.header__icons { display: flex; gap: 6px; }
.icon-btn {
  background: none; border: 0; padding: 10px; border-radius: var(--r);
  display: grid; place-items: center; text-decoration: none;
}
.icon-btn:hover { background: var(--surface); }
.icon-btn svg { width: 20px; height: 20px; }
.burger { display: none; }

/* ============================================================
   HERO-SLIDER
   ============================================================ */
.hero { position: relative; background: var(--ink-deep); overflow: hidden; }
.slides { position: relative; height: clamp(440px, 56vw, 580px); }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .7s ease;
  display: flex; align-items: center;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide__bg { position: absolute; inset: 0; }
.slide--1 .slide__bg { background:
  radial-gradient(80% 120% at 78% 20%, #35707E 0%, rgba(53,112,126,0) 60%),
  linear-gradient(160deg, #1D3D42 0%, #24515B 100%); }
.slide--2 .slide__bg { background:
  radial-gradient(70% 110% at 20% 80%, #40A0AD 0%, rgba(64,160,173,0) 62%),
  linear-gradient(150deg, #1D3D42 0%, #287C8F 100%); }
.slide--3 .slide__bg { background:
  radial-gradient(75% 120% at 85% 75%, #FFFFFF 0%, rgba(255,255,255,0) 60%),
  linear-gradient(150deg, #E8F0F1 0%, #C7DBDD 100%); }
.slide--3 { color: var(--ink); }
.slide__grid {
  position: relative; max-width: var(--wrap); width: 100%; margin: 0 auto; padding: 0 24px;
}
.slide__copy { max-width: 560px; color: #fff; }
.slide--3 .slide__copy { color: var(--ink); }
.slide__copy .eyebrow { color: rgba(255,255,255,.72); }
.slide--3 .slide__copy .eyebrow { color: var(--brand-deep); }
.slide__copy h2 { font-size: clamp(32px, 4.4vw, 54px); margin: 14px 0 16px; }
.slide__copy p { font-size: 17px; opacity: .88; margin-bottom: 28px; max-width: 460px; }
.slide__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.slider__nav {
  position: absolute; bottom: 26px; left: 0; right: 0;
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 14px;
}
.dots { display: flex; gap: 8px; }
.dot {
  width: 34px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.35);
  transition: background .2s;
}
.dot.is-active { background: #fff; }
.slide--3-active .dot { background: rgba(36,81,91,.3); }
.slide--3-active .dot.is-active { background: var(--ink); }
.arrows { margin-left: auto; display: flex; gap: 8px; }
.arrow {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.4); background: none;
  color: #fff; border-radius: 50%; display: grid; place-items: center;
}
.arrow:hover { background: rgba(255,255,255,.14); }
.slide--3-active .arrow { border-color: rgba(36,81,91,.35); color: var(--ink); }
.slide--3-active .arrow:hover { background: rgba(36,81,91,.08); }

/* ============================================================
   TRUST-BAR
   ============================================================ */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  display: flex; align-items: center; gap: 14px; padding: 20px 22px;
  text-decoration: none; border-left: 1px solid var(--line);
}
.trust__item:first-child { border-left: 0; }
.trust__item svg { width: 24px; height: 24px; flex: none; color: var(--brand-deep); }
.trust__item strong { display: block; font-size: 14px; font-weight: 600; }
.trust__item span { font-size: 13px; color: var(--muted); }
a.trust__item:hover { background: var(--tint); }

/* ============================================================
   ABSCHNITTE
   ============================================================ */
.section { padding: 84px 0; }
.section--surface { background: var(--tint); }
.section--ink { background: var(--ink-deep); color: #fff; }
.section__head { max-width: 620px; margin-bottom: 40px; }
.section__head h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 12px 0 14px; }
.section__head p { color: var(--ink-mid); font-size: 17px; }
.section--ink .section__head p { color: rgba(255,255,255,.75); }
.section--ink .eyebrow { color: var(--siso-soft); }

/* Kategorie-Kacheln */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile {
  position: relative; text-decoration: none; overflow: hidden; border-radius: var(--r);
  display: block;
}
.tile .ph { aspect-ratio: 3 / 4; border: 0; }
.tile--wide { grid-column: span 2; }
.tile--wide .ph { aspect-ratio: 8 / 5; }
.tile__label {
  position: absolute; left: 20px; bottom: 18px; right: 20px;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 20px;
  text-shadow: 0 1px 12px rgba(29,61,66,.6);
}
.tile__label small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; opacity: .85; }
.tile .ph { background:
  repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 14px, rgba(255,255,255,0) 14px 28px),
  linear-gradient(170deg, var(--ink), var(--ink-deep)); color: rgba(255,255,255,.45); }
.tile:hover .ph { filter: brightness(1.12); }
.tile--service .tile__photo {
  background:
    linear-gradient(180deg, rgba(29,61,66,.2) 0%, rgba(29,61,66,.62) 100%),
    url("https://images.unsplash.com/photo-1625479144604-ae69462778b7?auto=format&fit=crop&w=900&q=80")
      center / cover no-repeat;
  color: transparent;
}
.tile--service:hover .tile__photo { filter: brightness(1.06); }

/* Produkt-Grid */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product { text-decoration: none; display: block; }
.product .ph { border: 1px solid var(--line); }
.product__badge {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff;
  font-size: 10px; letter-spacing: .1em; padding: 5px 9px; border-radius: 2px;
}
.product__name { font-weight: 600; margin-top: 14px; font-size: 15px; }
.product__meta { font-size: 14px; color: var(--muted); }
.product__price { font-weight: 600; margin-top: 4px; font-size: 15px; }

/* Service-Teaser */
.teaser { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.teaser__steps { counter-reset: st; margin-top: 26px; }
.teaser__steps li {
  display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line);
}
.teaser__steps li:last-child { border-bottom: 1px solid var(--line); }
.teaser__steps .num {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--brand-deep); padding-top: 3px; flex: none; width: 26px;
}
.teaser__steps strong { display: block; font-size: 16px; }
.teaser__steps span { font-size: 14px; color: var(--muted); }
.teaser__cta { margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.teaser__note { font-size: 13px; color: var(--muted); }

/* Zahlen-Block */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 44px; }
.stat__value {
  font-family: var(--font-display); font-size: clamp(38px, 5vw, 58px); font-weight: 600;
  letter-spacing: -0.03em; color: var(--siso-soft);
}
.stat__label { font-size: 15px; color: rgba(255,255,255,.75); margin-top: 6px; }

/* Journal */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { text-decoration: none; display: block; }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 16px 0 8px; }
.card__text { font-size: 14px; color: var(--muted); }
.card__kicker { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-deep); font-weight: 600; margin-top: 16px; }

/* Newsletter */
.newsletter { background: var(--tint); padding: 64px 0; }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter h2 { font-size: 28px; margin-bottom: 10px; }
.field-row { display: flex; gap: 10px; }
.field-row input {
  flex: 1; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r);
  font: inherit; background: #fff;
}
.newsletter small { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; }
.footer__brand .logo { color: #fff; }
.footer__brand p { font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer__col h3 {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #fff;
  margin-bottom: 16px; font-family: var(--font-body); font-weight: 600;
}
.footer__col li + li { margin-top: 9px; }
.footer__col a { font-size: 14px; text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__col a.is-highlight { color: var(--siso-soft); font-weight: 500; }
.footer__bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; gap: 20px; font-size: 13px; flex-wrap: wrap;
}
.footer__bottom ul { display: flex; gap: 20px; }
.footer__bottom a { text-decoration: none; }

/* ============================================================
   STICKY HILFE-BUTTON
   ============================================================ */
.helpdock {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.helpdock__panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 20px 44px -18px rgba(29,61,66,.35); width: 290px; padding: 18px; display: none;
}
.helpdock__panel.is-open { display: block; }
.helpdock__panel strong { display: block; font-family: var(--font-display); font-size: 16px; }
.helpdock__panel p { font-size: 13px; color: var(--muted); margin: 6px 0 14px; }
.helpdock__panel a {
  display: block; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; font-size: 14px; font-weight: 500; margin-bottom: 8px;
}
.helpdock__panel a:hover { border-color: var(--brand); background: var(--tint); }
.helpdock__btn {
  background: var(--ink); color: #fff; border: 0; border-radius: 999px;
  padding: 14px 22px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 28px -12px rgba(29,61,66,.6);
}
.helpdock__btn:hover { background: var(--ink-deep); }

/* ============================================================
   SERVICE-SEITE
   ============================================================ */
.crumbs { padding: 18px 0; font-size: 13px; color: var(--muted); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 8px; opacity: .5; }

.page-hero { background: var(--surface); padding: 48px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); margin: 14px 0 18px; max-width: 760px; }
.page-hero .lead { max-width: 620px; }
.page-hero__assure { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.page-hero__assure li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; }
.page-hero__assure svg { width: 18px; height: 18px; color: var(--brand-deep); flex: none; }

/* Zwei Einstiege (Ansatz B) */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--brand);
  border-radius: var(--r); padding: 32px; display: flex; flex-direction: column;
}
.path--repair { border-top-color: var(--accent); }
.path__tag {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--brand-deep);
}
.path--repair .path__tag { color: var(--accent-deep); }
.path h3 { font-size: 25px; margin: 12px 0 12px; }
.path > p { color: var(--ink-mid); font-size: 15px; }
.path__list { margin: 22px 0 26px; }
.path__list li { display: flex; gap: 11px; font-size: 15px; padding: 7px 0; }
.path__list svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--brand-deep); }
.path--repair .path__list svg { color: var(--accent-deep); }
.path__foot { margin-top: auto; }
.path__price {
  background: var(--tint); border-radius: var(--r); padding: 12px 14px;
  font-size: 14px; font-weight: 500; margin-bottom: 18px;
}
.path--repair .path__price { background: var(--accent-tint); }
.paths__helper {
  margin-top: 22px; text-align: center; font-size: 15px; color: var(--ink-mid);
}
.paths__helper a { color: var(--brand-deep); font-weight: 600; }

/* Vergleichstabelle */
.compare { width: 100%; border-collapse: collapse; background: #fff; }
.compare caption { text-align: left; font-size: 13px; color: var(--muted); padding-bottom: 12px; }
.compare th, .compare td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15px; }
.compare thead th { font-family: var(--font-display); font-size: 17px; background: var(--surface); }
.compare thead th:nth-child(2) { border-top: 3px solid var(--accent); }
.compare thead th:nth-child(3) { border-top: 3px solid var(--brand); }
.compare tbody th { width: 200px; font-weight: 600; font-size: 14px; color: var(--ink-mid); }
.compare td { width: 32%; }

/* Schadensbeispiele */
.cases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.case .ph { border: 0; border-bottom: 1px solid var(--line); }
.case__body { padding: 18px; }
.case__body strong { display: block; font-size: 15px; margin-bottom: 6px; }
.case__body p { font-size: 14px; color: var(--muted); }
.verdict {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 999px;
}
.verdict--warranty { background: var(--tint); color: var(--brand-deep); }
.verdict--repair { background: var(--accent-tint); color: var(--accent-deep); }

/* Prozess-Tabs */
.tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tab {
  padding: 12px 22px; border: 1px solid var(--line); background: #fff; border-radius: 999px;
  font-weight: 600; font-size: 15px;
}
.tab[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.step { background: #fff; border: 1px solid var(--line); padding: 24px 22px; position: relative; }
.step__num {
  font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: var(--brand-deep);
}
.steps--repair .step__num { color: var(--accent-deep); }
.step h4 { font-size: 17px; margin: 10px 0 8px; }
.step p { font-size: 14px; color: var(--muted); }
.step__time {
  display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600;
  background: var(--surface); padding: 5px 10px; border-radius: 2px; color: var(--ink-mid);
}
.step--usp {
  border-color: var(--accent);
  background: var(--accent-tint);
  box-shadow: inset 3px 0 0 var(--accent);
}
.steps--repair .step--usp .step__num { color: var(--accent-deep); }
.step--usp .step__time {
  background: var(--accent);
  color: #fff;
}
.panel[hidden] { display: none; }
.steps__after { margin-top: 26px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Kostenlogik */
.costbox {
  background: var(--ink-deep); color: #fff; border-radius: var(--r); padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.costbox h2 { font-size: 27px; margin-bottom: 12px; }
.costbox p { color: rgba(255,255,255,.78); font-size: 15px; }
.costbox ul li { display: flex; gap: 12px; padding: 9px 0; font-size: 15px; }
.costbox svg { width: 18px; height: 18px; color: var(--siso-soft); flex: none; margin-top: 4px; }

/* FAQ */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left; padding: 20px 40px 20px 0;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; position: relative;
}
.faq__q::after {
  content: ""; position: absolute; right: 6px; top: 26px; width: 10px; height: 10px;
  border-right: 2px solid var(--brand-deep); border-bottom: 2px solid var(--brand-deep);
  transform: rotate(45deg); transition: transform .2s;
}
.faq__q[aria-expanded="true"]::after { transform: rotate(-135deg); }
.faq__a { padding: 0 40px 22px 0; font-size: 15px; color: var(--ink-mid); }
.faq__a[hidden] { display: none; }

/* Rechtlicher Hinweis */
.legal {
  border-left: 3px solid var(--brand); background: var(--surface);
  padding: 26px 30px; border-radius: 0 var(--r) var(--r) 0;
}
.legal h3 { font-size: 18px; margin-bottom: 10px; }
.legal p { font-size: 14px; color: var(--ink-mid); }
.legal p + p { margin-top: 10px; }

/* Abschluss-CTA */
.closing { text-align: center; }
.closing h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.closing p { color: var(--ink-mid); max-width: 560px; margin: 0 auto 30px; font-size: 17px; }
.closing__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   GUIDE-LAYER (Best-Practice-Hinweise)
   ============================================================ */
.guide-toggle {
  position: fixed; left: 22px; bottom: 22px; z-index: 80;
  background: #fff; border: 1px solid var(--ink); border-radius: 999px;
  padding: 12px 20px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 11px;
  box-shadow: 0 12px 28px -14px rgba(29,61,66,.5);
}
.guide-toggle .sw {
  width: 30px; height: 17px; border-radius: 999px; background: var(--line);
  position: relative; transition: background .2s; flex: none;
}
.guide-toggle .sw::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
body.guide-on .guide-toggle { background: var(--ink); color: #fff; }
body.guide-on .guide-toggle .sw { background: var(--accent); }
body.guide-on .guide-toggle .sw::after { transform: translateX(13px); }

.annotated { position: relative; }
/* .annotated setzt position:relative und würde sonst .helpdock { position:fixed } überschreiben */
.helpdock.annotated { position: fixed; }
.marker {
  position: absolute; z-index: 40; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: var(--siso-dark); border: 2px solid #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: none; place-items: center;
  box-shadow: 0 6px 16px -4px rgba(29,61,66,.5);
}
body.guide-on .marker { display: grid; }
.marker:hover { background: #F98F3C; transform: scale(1.08); }
body.guide-on .annotated { outline: 1px dashed rgba(255,162,94,.7); outline-offset: 2px; }
body.guide-on .annotated:hover { outline: 2px dashed var(--accent); }
.marker--inset { top: 14px; right: 14px; }

.notepanel {
  position: fixed; right: 22px; bottom: 90px; z-index: 90; width: 340px;
  background: #fff; border: 1px solid var(--ink); border-radius: var(--r);
  box-shadow: 0 28px 60px -24px rgba(29,61,66,.5); padding: 22px; display: none;
}
.notepanel.is-open { display: block; }
.notepanel__kicker {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--brand-deep);
}
.notepanel h4 { font-size: 18px; margin: 8px 0 10px; }
.notepanel p { font-size: 14px; color: var(--ink-mid); }
.notepanel__close {
  position: absolute; top: 12px; right: 12px; background: none; border: 0;
  font-size: 20px; line-height: 1; color: var(--muted); padding: 4px 8px;
}
.notepanel__close:hover { color: var(--ink); }

/* Demo-Toast für tote Links */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 13px 20px; border-radius: var(--r);
  font-size: 14px; z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .products, .cases { grid-template-columns: 1fr 1fr; }
  .steps, .steps--3, .steps--5 { grid-template-columns: 1fr 1fr; }
  .teaser, .newsletter__inner, .costbox { grid-template-columns: 1fr; gap: 32px; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .tile--wide { grid-column: span 2; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: grid; }
  .mega { min-width: 0; left: 0; right: 0; grid-template-columns: 1fr; }
  .paths, .cards, .stats { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .compare, .compare tbody, .compare tr, .compare td, .compare th { display: block; width: auto; }
  .compare thead { display: none; }
  .compare caption { display: block; width: auto; }
  .compare tbody th { width: auto; background: var(--tint); border-bottom: 0; padding-bottom: 8px; }
  .compare td::before { content: attr(data-label); display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 5px; }
  .compare td { border-bottom: 1px solid var(--line); }
  .notepanel { right: 12px; left: 12px; width: auto; }
  .helpdock { right: 12px; bottom: 12px; }
  .helpdock__panel { width: min(290px, calc(100vw - 24px)); }
  .guide-toggle { left: 12px; bottom: 12px; padding: 10px 16px; font-size: 13px; }
  .costbox { padding: 28px; }
  .slides { height: auto; min-height: 480px; }
  .slide { position: absolute; padding: 60px 0 90px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
