
:root {
  --blue: #004289;
  --blue-deep: #002F61;
  --blue-light: #1A5FA8;
  --blue-bg: #E8F0F9;
  --yellow: #FFD200;
  --yellow-soft: #FFF4B8;
  --yellow-deep: #E5BD00;
  --ink: #1A2230;
  --body: #3D4659;
  --muted: #6B7488;
  --line: #DCE2EC;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --bg-blue: #F0F5FB;
  --green: #2D8659;
  --red: #C62828;
  --shadow-sm: 0 2px 8px rgba(0,66,137,.06);
  --shadow-md: 0 8px 24px rgba(0,66,137,.10);
  --shadow-lg: 0 16px 48px rgba(0,66,137,.14);
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* TOPBAR */
.topbar { background: var(--ink); color: white; font-size: 15px; }
.topbar-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; flex-wrap: wrap; gap: 12px; }
.topbar a { color: white; transition: color .2s; }
.topbar a:hover { color: var(--yellow); }
.topbar-left { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.topbar-phone { color: var(--yellow); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.topbar-phone svg { width: 14px; height: 14px; }
.topbar-mail { color: rgba(255,255,255,.85); font-size: 15px; }
.topbar-right { display: flex; gap: 20px; font-size: 15px; color: rgba(255,255,255,.75); }
.topbar-right svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; }
.topbar-right span { display: inline-flex; align-items: center; }

/* NAV */
.nav-wrap { background: white; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.nav-wrap.scrolled { box-shadow: 0 2px 16px rgba(0,66,137,.08); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; gap: 32px; }
.logo img { height: 44px; width: auto; }
.nav-menu { display: flex; gap: 4px; list-style: none; align-items: center; flex: 1; justify-content: center; }
.nav-menu > li { position: relative; }
.nav-menu a { display: block; padding: 10px 16px; font-size: 15px; font-weight: 600; color: var(--ink); border-radius: 4px; transition: all .2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); background: var(--blue-bg); }
.nav-menu .has-sub > a::after { content: "▾"; display: inline-block; margin-left: 6px; font-size: 15px; vertical-align: 1px; color: var(--muted); }
.submenu { position: absolute; top: 100%; left: 0; background: white; border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow-lg); min-width: 280px; padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s; }
.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { padding: 10px 14px; border-radius: 4px; white-space: nowrap; font-size: 15px; }
.submenu a small { display: block; font-size: 15px; font-weight: 500; color: var(--muted); margin-top: 2px; font-family: var(--mono); letter-spacing: 0.05em; }
.submenu a:hover { background: var(--bg-soft); color: var(--blue); }
.submenu a.active { background: var(--blue-bg); color: var(--blue); }
.nav-cta { background: var(--yellow); color: var(--ink); padding: 12px 22px; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; border-radius: 4px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta:hover { background: var(--yellow-deep); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }
@keyframes termin-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,210,0,.34); } 50% { box-shadow: 0 0 0 8px rgba(255,210,0,0); } }
a[href="termin.html"].nav-cta, a[href="termin.html"].mobile-menu-cta, a[href="termin.html"].btn-yellow, .quick-item--appointment { animation: termin-pulse 2.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { a[href="termin.html"].nav-cta, a[href="termin.html"].mobile-menu-cta, a[href="termin.html"].btn-yellow, .quick-item--appointment { animation: none; } }
.menu-toggle { display: none; background: var(--ink); color: white; border: none; padding: 12px; border-radius: 4px; }
.menu-toggle svg { width: 20px; height: 20px; display: block; }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: white; z-index: 200; padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu-close { background: var(--ink); color: white; border: none; width: 40px; height: 40px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; }
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu-list { list-style: none; display: grid; gap: 4px; }
.mobile-menu-list a { display: block; padding: 14px 16px; font-size: 16px; font-weight: 600; color: var(--ink); border-radius: 4px; }
.mobile-menu-list a:hover, .mobile-menu-list a.active { background: var(--blue-bg); color: var(--blue); }
.submenu-mobile { list-style: none; padding-left: 16px; margin-bottom: 8px; }
.submenu-mobile a { font-size: 15px; padding: 10px 14px; font-weight: 500; color: var(--body); }
.mobile-menu-cta { display: block; margin-top: 24px; background: var(--yellow); color: var(--ink); padding: 16px 24px; text-align: center; font-weight: 700; border-radius: 4px; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; }
.mobile-menu-call { display: block; margin-top: 12px; background: var(--blue); color: white; padding: 16px 24px; text-align: center; font-weight: 700; border-radius: 4px; font-size: 15px; }

/* BREADCRUMB */
.breadcrumb-wrap { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 14px 0; }
.breadcrumb { display: flex; gap: 8px; font-size: 15px; color: var(--muted); flex-wrap: wrap; align-items: center; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 12px; height: 12px; }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 600; }

/* SERVICE HERO */
.svc-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: white;
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,210,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.svc-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.svc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,210,0,.3);
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 32px;
  font-weight: 600;
  border-radius: 100px;
}
.svc-hero h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.svc-hero-title-main { display: inline-block; }
@media (min-width: 641px) { .svc-hero-title-main { white-space: nowrap; } }
.svc-hero h1 em { color: var(--yellow); font-style: italic; }
.svc-hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 560px;
}
.svc-hero-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 32px;
  padding: 8px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  max-width: 600px;
}
.svc-hero-quick-item strong {
  display: block;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.svc-hero-quick-item span {
  display: block;
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.7);
  line-height: 1.35;
}
.svc-hero-quick-item {
  padding: 16px 14px;
}
.svc-hero-quick-item + .svc-hero-quick-item {
  border-left: 1px solid rgba(255,255,255,.16);
}
.svc-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; font-weight: 700; font-size: 15px; border: 2px solid transparent; border-radius: 4px; cursor: pointer; transition: all .2s; }
.btn svg { width: 18px; height: 18px; }
.btn-yellow { background: var(--yellow); color: var(--ink); text-transform: uppercase; letter-spacing: .04em; font-size: 15px; }
.btn-yellow:hover { background: var(--yellow-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-blue { background: var(--blue); color: white; text-transform: uppercase; letter-spacing: .04em; font-size: 15px; }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }

.svc-hero-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  border: 4px solid rgba(255,210,0,.2);
  aspect-ratio: 4/3;
}
.svc-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
}
.svc-hero-image-credit {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 47, 97, .88);
  color: white;
  padding: 5px 8px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* Gemeinsames grosses Service-Hero */
.svc-hero { min-height: 590px; padding: 0; background: var(--blue-deep); }
.svc-hero::before { display: none; }
.svc-hero-grid { display: block; min-height: 590px; }
.svc-hero-grid > div:first-child { position: relative; z-index: 2; width: min(56%, 660px); padding: 86px 0 90px; }
.svc-hero-image { position: absolute; inset: 0; right: calc((100vw - min(100vw, var(--container))) / -2 - 32px); z-index: 0; width: auto; height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; box-shadow: none; background: var(--blue-deep); }
.svc-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,47,97,.99) 0%, rgba(0,47,97,.96) 30%, rgba(0,47,97,.82) 43%, rgba(0,47,97,.48) 57%, rgba(0,47,97,.16) 72%, rgba(0,47,97,.03) 88%); }
.svc-hero-image img { object-position: center; }
.svc-hero-image-badge { display: none; }
.svc-hero-image-credit { z-index: 1; top: auto; right: 4px; bottom: 4px; padding: 1px 4px; background: rgba(0,47,97,.58); border-radius: 2px; font-size: 15px; font-weight: 500; line-height: 1.1; letter-spacing: 0; text-transform: none; }
.hero-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 0 0 30px; font-family: var(--mono); font-size: 15px; letter-spacing: .05em; color: rgba(255,255,255,.74); }
.hero-breadcrumb a { color: white; text-decoration: none; border-bottom: 1px solid rgba(255,210,0,.58); }
.hero-breadcrumb a:hover { color: var(--yellow); }
.hero-breadcrumb strong { color: var(--yellow); font-weight: 700; }
.hero-breadcrumb .breadcrumb-separator { color: rgba(255,255,255,.46); }
@media (max-width: 1024px) {
  .svc-hero { min-height: 0; padding: 0 0 48px; }
  .svc-hero-grid { min-height: 0; display: flex; flex-direction: column; gap: 0; }
  .svc-hero-grid > div:first-child { width: 100%; padding: 58px 0 34px; }
  .svc-hero-image { position: relative; inset: auto; right: auto; width: 100%; height: auto; min-height: 0; aspect-ratio: 2 / 1; order: 2; }
  .svc-hero-image::after { background: linear-gradient(0deg, rgba(0,47,97,.4), rgba(0,47,97,.06)); }
}
@media (max-width: 640px) {
  .svc-hero { padding-bottom: 36px; }
  .svc-hero-grid > div:first-child { padding: 42px 0 28px; }
  .hero-breadcrumb { margin-bottom: 22px; font-size:15px; }
  .svc-hero-image { aspect-ratio: 16 / 10; }
  .svc-hero-image-credit { right: 10px; bottom: 10px; }
}

/* SECTIONS */
section { padding: 96px 0; }
.section-bg-soft { background: var(--bg-soft); }
.section-bg-blue { background: var(--blue); color: white; }

.section-head { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; max-width: 720px; }
.section-eyebrow { font-family: var(--mono); font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 600; position: relative; padding-left: 40px; }
.section-eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 28px; height: 3px; background: var(--yellow); }
.section-bg-blue .section-eyebrow { color: var(--yellow); }
.section-bg-blue .section-eyebrow::before { background: var(--yellow); }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
.section-title em { font-style: italic; color: var(--blue); }
.section-bg-blue .section-title { color: white; }
.section-bg-blue .section-title em { color: var(--yellow); }
.section-lead { font-size: 18px; line-height: 1.55; color: var(--body); max-width: 720px; }
.section-bg-blue .section-lead { color: rgba(255,255,255,.85); }

/* PROBLEM / SYMPTOMS */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.symptom-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  text-align: center;
  transition: all .2s;
}
.symptom-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.symptom-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.symptom-icon svg { width: 26px; height: 26px; }
.symptom-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.symptom-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.5;
}

/* WAS WIR REPARIEREN */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.type-card {
  background: white;
  padding: 36px;
  border-radius: 6px;
  border: 1px solid var(--line);
  position: relative;
}
.type-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
  border-radius: 4px 0 0 4px;
}
.type-card-num {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.type-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.type-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 16px;
}
.type-card-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  padding: 8px 14px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
}
.type-card-price strong { color: var(--blue); }

/* Einheitliche Leistungslabels: immer am Kartenboden und klar lesbar. */
.type-card { display: flex; flex-direction: column; align-items: flex-start; }
.type-card h3, .type-card p { width: 100%; }
.type-card p { flex: 1 1 auto; margin-bottom: 24px; }
.type-card-price { margin-top: auto; background: var(--blue); color: #fff; border-color: var(--blue); }
.type-card-price strong { color: var(--yellow); }

/* PROZESS / ABLAUF */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--yellow);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.process-step-num {
  width: 60px;
  height: 60px;
  background: var(--blue);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--blue);
  font-family: var(--mono);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}

/* PREISVERGLEICH */
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  padding: 40px;
  border-radius: 6px;
  position: relative;
}
.pricing-card-bad {
  background: white;
  border: 2px solid var(--line);
  opacity: 0.85;
}
.pricing-card-good {
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.pricing-card-good::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,210,0,0.1) 0%, transparent 60%);
}
.pricing-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-weight: 700;
}
.pricing-card-good .pricing-badge { background: var(--yellow); color: var(--ink); }
.pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pricing-card-bad h3 { color: var(--ink); }
.pricing-card-good h3 { color: white; }
.pricing-card .pricing-meta {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.pricing-card-good .pricing-meta { color: rgba(255,255,255,.65); }
.pricing-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-card-bad .pricing-amount { color: var(--red); }
.pricing-card-good .pricing-amount { color: var(--yellow); }
.pricing-amount-sub {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
}
.pricing-card-bad .pricing-amount-sub { color: var(--muted); }
.pricing-card-good .pricing-amount-sub { color: rgba(255,255,255,.85); }
.pricing-features { list-style: none; display: grid; gap: 10px; }
.pricing-features li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.pricing-features li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.4;
}
.pricing-card-bad .pricing-features li::before { content: "✕"; color: var(--red); }
.pricing-card-good .pricing-features li::before { color: var(--yellow); }
.pricing-savings {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255,210,0,.15);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  color: var(--yellow);
}

/* TRUST IM SERVICE */
.svc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-trust-card {
  text-align: center;
  padding: 32px 20px;
}
.svc-trust-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.svc-trust-icon svg { width: 28px; height: 28px; }
.svc-trust-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-trust-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; max-width: 980px; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: 6px; transition: all .2s; }
.faq-item:hover { border-color: var(--blue); }
.faq-item summary { padding: 24px 28px; font-size: 17px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; letter-spacing: -0.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 28px; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-content { padding: 0 28px 24px; font-size: 15px; line-height: 1.65; color: var(--body); }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,210,0,0.08) 0%, transparent 60%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-section h2 em { color: var(--yellow); font-style: italic; }
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  line-height: 1.55;
}
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: end; }
.cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
.cta-phone-label { font-family: var(--mono); font-size: 15px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,.65); text-align: right; }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-block { display: flex; flex-direction: column; gap: 20px; }
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-tagline { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.6); max-width: 360px; }
.footer-tagline strong { color: var(--yellow); font-style: italic; font-weight: 700; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 4px; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: white; transition: all .2s; }
.footer-social a:hover { background: var(--yellow); color: var(--ink); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { font-family: var(--mono); font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { font-size: 15px; margin-bottom: 10px; line-height: 1.5; }
.footer-hours { max-width: 275px; }.footer-hours-note { display: inline-block; margin: -2px 0 10px; padding: 4px 8px; background: rgba(255,210,0,.12); border: 1px solid rgba(255,210,0,.25); border-radius: 4px; color: var(--yellow); font-size: 15px; font-weight: 700; }
.footer-hours dl { margin: 0; }.footer-hours dl > div { display: grid; grid-template-columns: 78px 1fr; gap: 8px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; }.footer-hours dt { color: rgba(255,255,255,.6); }.footer-hours dd { margin: 0; color: #fff; font-weight: 700; white-space: nowrap; }.footer-hours-meta { margin: 12px 0 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.45; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-col strong { color: white; font-weight: 600; }
.footer-contact-row { display: flex; align-items: start; gap: 8px; }
.footer-contact-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--yellow); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 16px; }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--yellow); }
.footer-credit { text-transform: none; letter-spacing: .02em; color: rgba(255,255,255,.55); }
.footer-credit a { color: var(--yellow); font-weight: 700; }
.footer-credit .heart { color: var(--yellow); }

/* RESPONSIVE */
@media (max-width: 1180px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .menu-toggle { display: inline-flex; }
  .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process-grid::before { display: none; }
  .pricing-compare { grid-template-columns: 1fr; }
  .svc-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { align-items: stretch; }
  .cta-phone-label { text-align: left; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .topbar-right { display: none; }
  .topbar-left { width: 100%; justify-content: space-between; gap: 12px; }
  .nav { padding: 12px 0; gap: 12px; }
  .logo img { height: 36px; }
  .svc-hero { padding: 48px 0 64px; }
  .svc-hero h1 { font-size: 32px; }
  .svc-hero-quick { grid-template-columns: 1fr; gap: 0; }
  .svc-hero-quick-item + .svc-hero-quick-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .symptoms-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 15px; }
  .pricing-amount { font-size: 44px; }
  .btn { padding: 14px 20px; font-size: 15px; }
}

@media (max-width: 420px) {
  .logo img { height: 32px; }
  .nav { gap: 8px; }
  .nav-cta { padding: 8px 12px; }
  .topbar-mail { display: none; }
}


.fab-back { background: var(--ink); color: white; padding: 12px 18px; border-left: 3px solid var(--yellow); }
.fab-back:hover { background: var(--blue); }
.fab-back svg { width: 14px; height: 14px; margin-right: 2px; }
.fab-recom { background: var(--yellow); color: var(--ink); padding: 12px 18px; }
.fab-recom:hover { background: var(--yellow-deep); }
.fab-recom strong { margin-right: 4px; }
@media (max-width: 640px) {
  .fab-back, .fab-recom { padding: 10px 14px; font-size: 15px; }
}

/* Direkte Kontaktleiste: Desktop seitlich, Mobil am unteren Bildschirmrand. */
.quick-contact { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 300; display: grid; gap: 6px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.quick-item { --quick-accent: var(--blue); position: relative; display: flex; justify-content: flex-end; align-items: center; min-height: 52px; color: var(--ink); text-decoration: none; }
.quick-item--hours { --quick-accent: var(--green); }.quick-item--appointment { --quick-accent: #b58f00; }.quick-item--whatsapp { --quick-accent: #25a969; }.quick-item--mail { --quick-accent: var(--blue-deep); }
.quick-icon { width: 52px; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; color: var(--quick-accent); background: #fff; border: 1px solid var(--line); border-right: 0; border-radius: 8px 0 0 8px; flex: 0 0 52px; transition: color .2s, background .2s, border-color .2s; }
.quick-icon svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.quick-item--appointment .quick-icon { color: #9a7900; background: #fff8d0; }
.quick-label { position: absolute; top: 50%; right: 52px; width: 0; min-height: 44px; overflow: hidden; opacity: 0; padding: 0; display: grid; align-content: center; transform: translateY(-50%); background: var(--blue); border: 0 !important; outline: 0 !important; box-shadow: none !important; color: #fff; transition: width .22s ease, opacity .18s ease, padding .22s ease; font-size: 15px; font-weight: 800; line-height: 1.05; }
.quick-label small { display: block; margin-top: 1px; color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500; line-height: 1.05; white-space: nowrap; }
.quick-item--hours .quick-label, .quick-item--appointment .quick-label { background: var(--blue); color: #fff; }.quick-item--appointment .quick-label small { color: rgba(255,255,255,.8); }.quick-item:hover .quick-icon, .quick-item:focus-visible .quick-icon { background: var(--blue); color: #fff; border-color: rgba(255,255,255,.9); outline: 0; }
.quick-item:hover .quick-label, .quick-item:focus-visible .quick-label { width: 220px; opacity: 1; padding: 4px 14px; }.quick-item--hours:hover .quick-label, .quick-item--hours:focus-visible .quick-label { width: 246px; }.quick-item--whatsapp:hover .quick-label, .quick-item--whatsapp:focus-visible .quick-label { width: 210px; }.quick-item--mail:hover .quick-label, .quick-item--mail:focus-visible .quick-label { width: 236px; }
.quick-item:focus-visible { outline: 0; }.quick-item:focus-visible .quick-icon { outline: 2px solid var(--blue); outline-offset: -3px; }
.opening-status.is-open { color: #bff3ce; }
.opening-summary { display: inline-flex; align-items: center; gap: 8px; }
.opening-summary svg { width: 15px; height: 15px; flex: 0 0 15px; }
.opening-summary strong { font-size: 15px; }
.opening-summary [data-opening-detail] { color: rgba(255,255,255,.75); }

@media (max-width: 760px) {
  body { padding-bottom: 82px; }
  .quick-contact { right: 0; bottom: 0; top: auto; transform: none; width: 100%; height: 70px; padding: 8px 12px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; background: #fff; border: 0; border-top: 1px solid var(--line); border-radius: 0; box-shadow: 0 -4px 18px rgba(0,47,97,.12); }
  .quick-item { justify-content: center; min-height: 0; }
  .quick-icon { width: 48px; min-height: 48px; font-size: 21px; border-radius: 8px; box-shadow: none; }
  .quick-label { display: none; }
}
/* Saisonhinweis bleibt im Lesefluss und kann pro Gerät geschlossen werden. */
.seasonal-notice { background: linear-gradient(90deg, #fff6bf, #fffdf2); border-bottom: 1px solid #ead36b; color: var(--ink); }
.seasonal-notice.is-hidden { display: none; }
.seasonal-notice-inner { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: start; padding: 14px 48px 14px 0; }
.seasonal-notice-icon { font-size: 24px; line-height: 1.2; }
.seasonal-notice strong { display: block; font-size: 16px; }
.seasonal-notice p { margin: 2px 0 0; font-size: 15px; line-height: 1.45; }
.seasonal-notice a { color: var(--blue-deep); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.seasonal-notice-close { position: absolute; top: 12px; right: 0; width: 32px; height: 32px; border: 1px solid rgba(26,34,48,.25); border-radius: 50%; background: rgba(255,255,255,.6); color: var(--ink); font-size: 18px; line-height: 1; }
@media (max-width: 760px) {
  .seasonal-notice-inner { grid-template-columns: auto 1fr; gap: 8px; padding: 12px 42px 12px 0; }
  .seasonal-notice-icon { font-size: 20px; }
  .seasonal-notice strong { font-size: 15px; }
}

.mobile-hours-bar{display:none}@media(max-width:768px){.nav-wrap .nav-cta{display:none!important}.mobile-hours-bar{display:flex;align-items:center;gap:10px;margin:0 16px 12px;padding:7px 12px;background:var(--blue,#004289);color:#fff;border-radius:4px;box-shadow:0 6px 16px rgba(0,47,97,.15)}.mobile-hours-bar svg{width:21px;height:21px;flex:0 0 21px;stroke:#ffd200;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.mobile-hours-bar span{display:grid;gap:1px;min-width:0}.mobile-hours-bar strong{font-size:15px;line-height:1.1;color:#fff}.mobile-hours-bar small{font-size:15px;line-height:1.1;color:rgba(255,255,255,.86);white-space:nowrap}.mobile-hours-bar>b{margin-left:auto;color:#ffd200;font-size:20px;line-height:1}}

/* Mobile: zwei gleichwertige Schnellaktionen */
.mobile-quick-actions{display:none}@media(max-width:768px){.nav-wrap .nav-cta{display:none!important}.mobile-hours-bar{display:none!important}.mobile-quick-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:0 16px 12px}.mobile-quick-actions a{min-height:48px;padding:7px 9px;border-radius:4px;display:flex;align-items:center;justify-content:center;gap:7px;text-align:center;font-size:15px;font-weight:800;line-height:1.1}.mobile-quick-actions svg{width:19px;height:19px;flex:0 0 19px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.mobile-quick-termin{background:#ffd200!important;color:#1a2230!important}.mobile-quick-hours{background:#004289;color:#fff}.mobile-quick-hours>span{display:grid;gap:2px;text-align:left}.mobile-quick-hours strong{font-size:15px;line-height:1.05;color:#fff}.mobile-quick-hours small{font-size:15px;line-height:1.05;color:rgba(255,255,255,.84);white-space:nowrap}.mobile-quick-hours svg{color:#ffd200}}

/* Mobile menu actions */
.menu-direct-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:0 0 16px}.menu-direct-actions .mobile-menu-cta,.menu-direct-actions .mobile-menu-call{min-height:44px;margin:0!important;padding:8px!important;display:flex;align-items:center;justify-content:center;gap:7px;font-size:15px!important;line-height:1.1;letter-spacing:0!important;text-transform:none!important}.menu-direct-actions .mobile-menu-call{background:#004289!important;color:#fff!important}.menu-direct-actions .mobile-menu-cta{background:#ffd200!important;color:#1a2230!important}.menu-direct-actions .mobile-menu-call svg,.menu-direct-actions .mobile-menu-cta svg{width:17px;height:17px;flex:0 0 17px}.mobile-quick-actions a{min-height:44px!important;padding:5px 8px!important}

/* E-Auto-Hinweis: Fachbegriff erklären und Inhalte klar voneinander trennen. */
.brake-focus { background: var(--blue-deep); color: #fff; overflow: hidden; }
.brake-focus-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 64px; align-items: start; }
.brake-focus .section-eyebrow { color: var(--yellow); }
.brake-focus .section-title { color: #fff; }
.brake-focus .section-title em { color: var(--yellow); }
.brake-focus-intro { max-width: 680px; margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.72; }
.brake-focus-intro strong { color: #fff; }
.brake-focus-cards { display: grid; gap: 16px; }
.brake-focus-card { position: relative; padding: 26px 28px 28px; background: #fff; color: var(--ink); border: 1px solid rgba(255,255,255,.22); border-left: 4px solid var(--yellow); box-shadow: 0 16px 42px rgba(0,20,50,.2); }
.brake-focus-card-kicker { display: block; margin-bottom: 9px; color: var(--blue); font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.brake-focus-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 21px; line-height: 1.28; }
.brake-focus-card p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.65; }
@media (max-width: 900px) {
  .brake-focus-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .brake-focus-intro { font-size: 16px; line-height: 1.65; }
  .brake-focus-card { padding: 22px 20px 24px; }
  .brake-focus-card h3 { font-size: 19px; }
}
/* Verbindlicher Hero-Faktenstil für alle Leistungsseiten. */
.svc-hero-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  padding: 0;
  margin: 0 0 32px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.svc-hero-quick-item {
  min-width: 0;
  min-height: 94px;
  padding: 16px 18px 17px;
  display: grid;
  align-content: start;
  gap: 6px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
}
.svc-hero-quick-item + .svc-hero-quick-item { border-left: 3px solid var(--yellow); }
.svc-hero-quick-item strong {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.svc-hero-quick-item span {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .svc-hero-quick { grid-template-columns: 1fr; gap: 8px; }
  .svc-hero-quick-item { min-height: 0; padding: 13px 15px 14px; }
  .svc-hero-quick-item + .svc-hero-quick-item { border-top: 1px solid rgba(255,255,255,.16); border-left: 3px solid var(--yellow); }
  .svc-hero-quick-item strong { font-size: 17px; }
  .svc-hero-quick-item span { font-size: 16px; }
}

/* FAQ GEO rules: vollständig sichtbar, jede Frage als H3. */
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; max-width: 980px; }
.faq-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--yellow); border-radius: 6px; padding: 24px 28px; box-shadow: var(--shadow-sm); }
.faq-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 19px; line-height: 1.38; letter-spacing: -.01em; }
.faq-card p { margin: 0; color: var(--body); font-size: 16px; line-height: 1.7; }
@media (max-width: 600px) { .faq-card { padding: 20px; } .faq-card h3 { font-size: 18px; } }


/* Ausgewogene Zeilenumbrüche */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
