/* =========================================================================
   Fränkisches Autoglas Zentrum – Stylesheet
   Design-Tokens 1:1 aus dem Original (HSL-Tripel wie im Vorbild)
   ========================================================================= */

:root {
  --brand: 0 100% 60%;
  --brand-dark: 0 85% 45%;
  --brand-light: 0 100% 95%;

  --background: 0 0% 100%;
  --foreground: 220 13% 13%;
  --card: 0 0% 100%;
  --primary: 0 100% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 14% 96%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  --accent: 0 100% 95%;
  --accent-foreground: 0 100% 60%;
  --success: 142 71% 45%;
  --border: 220 13% 91%;
  --ring: 0 100% 60%;

  --whatsapp: #25d366;
  --whatsapp-dark: #20bd5a;

  --radius: 0.5rem;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px 0 hsl(220 13% 13% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(220 13% 13% / 0.1), 0 2px 4px -2px hsl(220 13% 13% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(220 13% 13% / 0.1), 0 4px 6px -4px hsl(220 13% 13% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(220 13% 13% / 0.1), 0 8px 10px -6px hsl(220 13% 13% / 0.1);
  --shadow-brand: 0 4px 14px 0 hsl(0 100% 60% / 0.25);

  --header-h: 64px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: hsl(var(--primary));
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.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;
}

/* ---------- Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section { padding-block: 3rem; }
@media (min-width: 640px) { .section { padding-block: 4rem; } }
@media (min-width: 1024px) { .section { padding-block: 6rem; } }

.section--secondary { background: hsl(var(--secondary) / 0.3); }
.section--muted { background: hsl(var(--muted) / 0.3); }
.section--accent { background: hsl(var(--accent) / 0.3); }
.section--accent-full { background: hsl(var(--accent) / 0.5); }
.section--brand {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .section-head { margin-bottom: 3rem; } }

.section-head h2,
.h-section {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}
@media (min-width: 640px) {
  .section-head h2, .h-section { font-size: 1.5rem; margin-bottom: 1rem; }
}
@media (min-width: 768px) {
  .section-head h2, .h-section { font-size: 1.875rem; }
}

.section-head p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin-inline: auto;
}
@media (min-width: 640px) { .section-head p { font-size: 1rem; } }

.section--brand .section-head p { color: hsl(var(--primary-foreground) / 0.9); }

.text-balance { text-wrap: balance; }
.muted { color: hsl(var(--muted-foreground)); }
.brand { color: hsl(var(--primary)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  height: 3rem;
  padding-inline: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.3s, color 0.2s, border-color 0.2s;
}
@media (min-width: 640px) {
  .btn { height: 3.5rem; padding-inline: 2rem; font-size: 1rem; }
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn--primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.25), 0 4px 6px -4px hsl(var(--primary) / 0.25);
}
.btn--primary:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.3), 0 8px 10px -6px hsl(var(--primary) / 0.3);
}

.btn--outline {
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(4px);
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
}
.btn--outline:hover { background: hsl(var(--background)); border-color: hsl(var(--border)); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgb(37 211 102 / 0.25);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--on-brand {
  background: #fff;
  color: hsl(var(--primary));
}
.btn--on-brand:hover { background: hsl(var(--accent)); }

.btn--ghost-on-brand {
  background: transparent;
  border: 2px solid hsl(var(--primary-foreground) / 0.5);
  color: #fff;
}
.btn--ghost-on-brand:hover { background: hsl(var(--primary-foreground) / 0.12); }

.btn--sm {
  height: 2.5rem;
  padding-inline: 1rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) { .btn--sm { height: 2.5rem; padding-inline: 1rem; font-size: 0.875rem; } }

.btn--md { height: 2.75rem; padding-inline: 1.25rem; font-size: 0.9375rem; }
@media (min-width: 640px) { .btn--md { height: 2.75rem; padding-inline: 1.25rem; font-size: 0.9375rem; } }

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .btn-row { flex-direction: row; gap: 1rem; flex-wrap: wrap; }
}
.btn-row--center { align-items: stretch; }
@media (min-width: 640px) { .btn-row--center { justify-content: center; align-items: center; } }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
}
.link-arrow svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.95);
  border-bottom: 1px solid hsl(var(--border));
}
@media (min-width: 1024px) {
  .site-header { backdrop-filter: blur(6px); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.logo { flex-shrink: 0; }
.logo img { height: 38px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1100px) { .nav-links { display: flex; } }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  color: hsl(var(--foreground));
  transition: background-color 0.2s, color 0.2s;
}
.nav-link:hover { background: hsl(var(--accent) / 0.6); color: hsl(var(--primary)); }
.nav-link[aria-current='page'],
.nav-link.is-active {
  background: hsl(var(--accent));
  color: hsl(var(--primary));
}
.nav-link svg { width: 0.875rem; height: 0.875rem; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > .nav-link > svg { transition: transform 0.2s; }
.nav-item:hover > .nav-link > svg,
.nav-item:focus-within > .nav-link > svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 16rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.9375rem;
  transition: background-color 0.15s, color 0.15s;
}
.dropdown a:hover { background: hsl(var(--accent) / 0.7); color: hsl(var(--primary)); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.15;
  padding-right: 0.875rem;
  margin-right: 0.25rem;
}
@media (min-width: 1100px) { .nav-phone { display: inline-flex; } }
.nav-phone svg { width: 1rem; height: 1rem; color: hsl(var(--muted-foreground)); flex-shrink: 0; }
.nav-phone:hover { color: hsl(var(--primary)); }
.nav-phone span { display: block; max-width: 8ch; }

.nav-cta { display: none; }
@media (min-width: 1100px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background));
  cursor: pointer;
}
@media (min-width: 1100px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded='true'] .icon-close { display: block; }
.nav-toggle[aria-expanded='true'] .icon-menu { display: none; }

/* Mobile-Menü */
.mobile-nav {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1100px) { .mobile-nav, .mobile-nav.is-open { display: none; } }

.mobile-nav ul { padding-block: 0.75rem; }
.mobile-nav ul a {
  display: block;
  padding: 0.75rem 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}
.mobile-nav ul a:hover { color: hsl(var(--primary)); }
.mobile-nav .sub a {
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}
.mobile-nav .mobile-cta {
  display: grid;
  gap: 0.75rem;
  padding-block: 1rem 1.5rem;
}
.mobile-nav .mobile-cta .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background) / 0.95), hsl(var(--background) / 0.85) 50%, hsl(var(--background) / 0.6));
}
@media (min-width: 1024px) {
  .hero__bg::after {
    background: linear-gradient(to right, hsl(var(--background) / 0.95), hsl(var(--background) / 0.85) 50%, hsl(var(--background) / 0));
  }
}
.hero__inner {
  position: relative;
  padding-block: 3rem;
}
@media (min-width: 640px) { .hero__inner { padding-block: 4rem; } }
@media (min-width: 768px) { .hero__inner { padding-block: 7rem; } }
@media (min-width: 1024px) { .hero__inner { padding-block: 9rem; } }

.hero__content { max-width: 42rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .hero__content { gap: 2rem; } }

.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
@media (min-width: 640px) { .pills { gap: 0.75rem; } }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.625rem;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 999px;
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .pill { gap: 0.375rem; padding: 0.5rem 1rem; font-size: 0.875rem; }
}
.pill svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

.hero h1 {
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .hero h1 { font-size: 1.875rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero__lead {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  max-width: 36rem;
  margin-top: 0.75rem;
}
@media (min-width: 640px) { .hero__lead { font-size: 1.125rem; margin-top: 1.25rem; } }
@media (min-width: 768px) { .hero__lead { font-size: 1.25rem; } }

.hero .btn { width: 100%; }
@media (min-width: 640px) { .hero .btn { width: auto; } }

/* Trust-Zeile */
.trust { display: grid; gap: 0.75rem; padding-top: 1rem; }

.rating { display: flex; align-items: center; gap: 0.5rem; }
.rating__stars { display: flex; }
.rating__stars svg { width: 1rem; height: 1rem; color: #facc15; fill: #facc15; }
.rating span { font-size: 0.875rem; font-weight: 500; }

.trust__row { display: none; }
@media (min-width: 1024px) {
  .trust__row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.5rem;
}
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .trust__grid { display: none; } }

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 640px) { .trust__item { font-size: 0.875rem; } }
.trust__item svg { width: 0.875rem; height: 0.875rem; color: hsl(var(--primary)); flex-shrink: 0; }

.trust__sep { width: 1px; height: 1rem; background: hsl(var(--border) / 0.6); }

.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  padding-top: 0.5rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}
@media (min-width: 640px) {
  .hero__meta { flex-direction: row; align-items: center; gap: 1rem; }
}
.hero__meta a, .hero__meta span { display: flex; align-items: center; gap: 0.375rem; }
.hero__meta svg { width: 0.875rem; height: 0.875rem; }
.hero__meta a:hover { color: hsl(var(--primary)); }
.hero__meta .trust__sep { display: none; }
@media (min-width: 640px) { .hero__meta .trust__sep { display: block; } }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  padding-block: 2.5rem;
  background: linear-gradient(180deg, hsl(var(--accent) / 0.45), hsl(var(--background)));
  border-bottom: 1px solid hsl(var(--border) / 0.7);
}
@media (min-width: 768px) { .page-hero { padding-block: 4rem; } }

.page-hero .eyebrow { margin-bottom: 1rem; }

.page-hero h1 {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  max-width: 46rem;
}
@media (min-width: 640px) { .page-hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 2.75rem; } }

.page-hero__lead {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
}
@media (min-width: 640px) { .page-hero__lead { font-size: 1.125rem; } }

.page-hero--center { text-align: center; }
.page-hero--center h1,
.page-hero--center .page-hero__lead { margin-inline: auto; }
.page-hero--center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  line-height: 1.2;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  font-size: 0.8125rem;
  font-weight: 500;
}
.eyebrow svg { width: 0.875rem; height: 0.875rem; }

.eyebrow--on-brand {
  background: hsl(var(--primary-foreground) / 0.15);
  border-color: hsl(var(--primary-foreground) / 0.25);
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.25rem;
}
.breadcrumb a:hover { color: hsl(var(--primary)); }
.breadcrumb svg { width: 0.75rem; height: 0.75rem; opacity: 0.6; }
.breadcrumb [aria-current] { color: hsl(var(--foreground)); font-weight: 500; }

/* ---------- Grids & Karten ---------- */
.grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .grid { gap: 1.5rem; } }
.grid--2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 640px) {
  .grid--2, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.card-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--accent) / 0.5);
  padding: 1rem;
}
@media (min-width: 640px) { .card-trust { gap: 1rem; } }
.card-trust p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.625;
}
@media (min-width: 640px) { .card-trust p { font-size: 0.875rem; } }

.icon-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) { .icon-box { width: 2.5rem; height: 2.5rem; } }
.icon-box svg { width: 1.125rem; height: 1.125rem; }

.icon-box--lg { width: 3rem; height: 3rem; border-radius: 0.75rem; }
.icon-box--lg svg { width: 1.5rem; height: 1.5rem; }

.icon-box--round { border-radius: 999px; }

.card {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.card--link:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-2px);
}
.card > .icon-box { margin-bottom: 1.125rem; }

.card .eyebrow {
  display: flex;
  width: fit-content;
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}
.card .link-arrow { margin-top: 1rem; }

.card--flat {
  background: hsl(var(--accent) / 0.5);
  border-radius: var(--radius);
}

.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card--media .card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: hsl(var(--secondary));
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.tag svg { width: 0.75rem; height: 0.75rem; color: hsl(var(--primary)); }

/* Wertekarten (Von Franken, für Franken) */
.value-card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--accent) / 0.5);
  padding: 2rem 1rem;
  text-align: center;
}
.value-card .icon-box { margin-inline: auto; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; }

.promise {
  margin-top: 2.5rem;
  max-width: 48rem;
  margin-inline: auto;
  background: hsl(var(--primary));
  color: #fff;
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
}
.promise h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.promise li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: hsl(var(--primary-foreground) / 0.95);
}
.promise li + li { margin-top: 0.875rem; }
.promise li svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.3rem; }

/* ---------- Prozess-Schritte ---------- */
.steps {
  display: grid;
  gap: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
}
.step { text-align: center; position: relative; }
.step__icon {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: hsl(var(--background));
  border: 2px solid hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}
.step__icon svg { width: 2rem; height: 2rem; }
.step__num {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.step p {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  max-width: 22rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .steps::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    left: 16.6%;
    right: 16.6%;
    height: 1px;
    background: hsl(var(--border));
    z-index: 0;
  }
  .step__icon { z-index: 1; }
}

/* ---------- Entscheidungs-Box ---------- */
.decision {
  max-width: 52rem;
  margin-inline: auto;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
@media (min-width: 768px) { .decision { padding: 3rem; } }

.decision__head { display: flex; gap: 1rem; margin-bottom: 2rem; }
.decision__head h2 { font-size: 1.375rem; margin-bottom: 0.25rem; }
@media (min-width: 640px) { .decision__head h2 { font-size: 1.5rem; } }
.decision__head p { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); }

.decision__cols {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .decision__cols { grid-template-columns: 1fr 1fr; } }

.decision__cols h3 { font-size: 0.9375rem; margin-bottom: 1rem; }

.check-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
.check-list li + li { margin-top: 0.625rem; }
.check-list li::before {
  content: '✓';
  color: hsl(var(--primary));
  font-weight: 700;
  flex-shrink: 0;
}

.decision .btn-row { margin-top: 2rem; }

/* ---------- Regional-Band ---------- */
.band { text-align: center; }
.band h2 {
  font-size: 1.5rem;
  max-width: 48rem;
  margin: 1.5rem auto 0;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) { .band h2 { font-size: 2rem; } }
.band p {
  margin: 1.25rem auto 0;
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(var(--primary-foreground) / 0.9);
}
.band .btn-row { margin-top: 2rem; justify-content: center; }

/* ---------- Bewertungen ---------- */
.review-card {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.review-card__stars { display: flex; gap: 2px; }
.review-card__stars svg { width: 1rem; height: 1rem; color: #facc15; fill: #facc15; }
.review-card p { font-size: 0.9375rem; line-height: 1.7; color: hsl(var(--muted-foreground)); }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.review-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: hsl(var(--accent));
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.review-card__author strong { font-size: 0.875rem; font-weight: 600; display: block; }
.review-card__author span { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.reviews-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}
.reviews-source svg { width: 1rem; height: 1rem; }

/* ---------- Accordion (FAQ) ---------- */
.faq-group + .faq-group { margin-top: 2.5rem; }
.faq-group__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.faq-group__num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-group__head h2 { font-size: 1.125rem; }

.accordion {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  background: hsl(var(--card));
}
.accordion details + details { border-top: 1px solid hsl(var(--border)); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.15s;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: hsl(var(--accent) / 0.4); }
.accordion summary svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: hsl(var(--primary));
  transition: transform 0.2s;
}
.accordion details[open] summary svg { transform: rotate(180deg); }
.accordion .accordion__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
}

/* ---------- Prosa (Ratgeber & Rechtstexte) ---------- */
.prose { max-width: 48rem; }
.prose--wide { max-width: 56rem; }
.prose > * + * { margin-top: 1.125rem; }
.prose h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-size: 1.0625rem;
  margin-top: 2rem;
}
.prose p, .prose li {
  font-size: 1rem;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
}
.prose strong { color: hsl(var(--foreground)); font-weight: 600; }
.prose a { color: hsl(var(--primary)); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li + li { margin-top: 0.5rem; }
.prose ul, .prose ol { margin-top: 1rem; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}
.prose th, .prose td {
  border: 1px solid hsl(var(--border));
  padding: 0.75rem 1rem;
  text-align: left;
}
.prose th { background: hsl(var(--secondary)); font-weight: 600; }
.prose td { color: hsl(var(--muted-foreground)); }

.note {
  border: 1px solid hsl(var(--border));
  border-left: 3px solid hsl(var(--primary));
  border-radius: var(--radius);
  background: hsl(var(--accent) / 0.4);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.note h3 { font-size: 1rem; margin-bottom: 0.5rem; margin-top: 0; }
.note p { font-size: 0.9375rem; line-height: 1.7; color: hsl(var(--muted-foreground)); }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}
.article-meta .tag { background: hsl(var(--accent)); color: hsl(var(--primary)); font-weight: 500; }

/* ---------- Standort / Kontakt ---------- */
.split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}

.info-list li {
  display: flex;
  gap: 0.875rem;
  padding-block: 0.875rem;
}
.info-list li + li { border-top: 1px solid hsl(var(--border) / 0.7); }
.info-list svg { width: 1.125rem; height: 1.125rem; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.2rem; }
.info-list strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.125rem; }
.info-list span, .info-list a { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
.info-list a:hover { color: hsl(var(--primary)); }

.map-frame {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  background: hsl(var(--secondary));
  aspect-ratio: 4 / 3;
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  text-align: center;
  padding: 1.5rem;
  background: hsl(var(--secondary));
}
.map-consent p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); max-width: 26rem; line-height: 1.6; }
.map-consent svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary)); }

/* ---------- Formular ---------- */
.form {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
@media (min-width: 768px) { .form { padding: 2.5rem; } }

.form fieldset { border: 0; }
.form fieldset + fieldset { margin-top: 2rem; }
.form legend {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.field { display: grid; gap: 0.375rem; margin-bottom: 1rem; }
.field label { font-size: 0.875rem; font-weight: 500; }
.field .hint { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background));
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}
.field textarea { min-height: 8rem; resize: vertical; }

.field-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
.checkbox input { width: 1rem; height: 1rem; margin-top: 0.2rem; accent-color: hsl(var(--primary)); flex-shrink: 0; }
.checkbox a { color: hsl(var(--primary)); text-decoration: underline; }

.form .btn { width: 100%; margin-top: 1.5rem; }
@media (min-width: 640px) { .form .btn { width: auto; } }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- CTA-Abschnitt ---------- */
.cta-box {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.5);
  padding: 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .cta-box { padding: 3rem; } }
.cta-box h2 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.cta-box p {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}
.cta-box .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}
.site-footer__top {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-block: 4rem; }
}
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.site-footer__brand img { height: 38px; width: auto; margin-bottom: 1.5rem; }

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--background) / 0.75);
}
.footer-contact li + li { margin-top: 1rem; }
.footer-contact svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.2rem; color: hsl(var(--background) / 0.7); }
.footer-contact strong { display: block; color: hsl(var(--background)); font-weight: 600; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact .wa { color: var(--whatsapp); }
.footer-contact .wa svg { color: var(--whatsapp); }

.footer-links li + li { margin-top: 0.75rem; }
.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.75);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

.footer-maps {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: hsl(var(--background) / 0.6);
}
.footer-maps svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; margin-top: 0.2rem; }
.footer-maps a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid hsl(var(--background) / 0.12);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: hsl(var(--background) / 0.6);
}
@media (min-width: 900px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.site-footer__bottom a { text-decoration: underline; text-underline-offset: 2px; }
.site-footer__bottom a:hover { color: #fff; }
.footer-credit { color: hsl(var(--background) / 0.6); }

/* ---------- Mobile Sticky-Bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: hsl(var(--border));
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -4px 14px hsl(220 13% 13% / 0.08);
}
@media (min-width: 1100px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.625rem 0.25rem calc(0.625rem + env(safe-area-inset-bottom));
  background: hsl(var(--background));
  font-size: 0.6875rem;
  font-weight: 600;
}
.mobile-bar svg { width: 1.125rem; height: 1.125rem; }
.mobile-bar .is-phone { color: hsl(var(--foreground)); }
.mobile-bar .is-wa { color: var(--whatsapp); }
.mobile-bar .is-cta { background: hsl(var(--primary)); color: #fff; }

body { padding-bottom: 0; }
@media (max-width: 1099px) { body { padding-bottom: 64px; } }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -8px 24px hsl(220 13% 13% / 0.1);
  padding: 1rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
@media (max-width: 1099px) { .cookie-banner { bottom: 64px; } }

.cookie-banner__inner {
  max-width: 80rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 900px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie-banner__text { display: flex; gap: 0.75rem; align-items: flex-start; }
.cookie-banner__text svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.15rem; }
.cookie-banner__text strong { display: block; font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.125rem; }
.cookie-banner__text p { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); }
.cookie-banner__text a { color: hsl(var(--primary)); text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.5rem;
  padding-inline: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s;
}
.cookie-btn:hover { background: hsl(var(--secondary)); }
.cookie-btn svg { width: 0.875rem; height: 0.875rem; }
.cookie-btn--plain { border-color: transparent; }
.cookie-btn--accept {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: #fff;
  font-weight: 600;
}
.cookie-btn--accept:hover { background: hsl(var(--brand-dark)); }

.cookie-details {
  border-top: 1px solid hsl(var(--border));
  margin-top: 1rem;
  padding-top: 1rem;
  display: none;
  gap: 0.75rem;
  flex-direction: column;
  max-width: 80rem;
  margin-inline: auto;
}
.cookie-details.is-open { display: flex; }
.cookie-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}
.cookie-option input { width: 1rem; height: 1rem; margin-top: 0.15rem; accent-color: hsl(var(--primary)); }
.cookie-option strong { display: block; color: hsl(var(--foreground)); font-size: 0.875rem; }

/* ---------- Reveal-Animation ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Leistungs-/Artikelseiten ---------- */
.service-banner {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.service-banner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .service-banner img { aspect-ratio: 3 / 1; }
}

.layout-article {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .layout-article { grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
}

.layout-article h1 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .layout-article h1 { font-size: 2.25rem; } }

.lead {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 2rem;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.stat-card {
  background: hsl(var(--accent) / 0.5);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat-card svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  margin: 0 auto 0.5rem;
}
.stat-card strong { display: block; font-weight: 600; font-size: 0.9375rem; }
.stat-card span { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); }

.panel {
  background: hsl(var(--accent) / 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.panel ul, .panel ol { margin-top: 0; padding-left: 0; }
.panel li,
.prose .panel ul li,
.prose .panel ol li { list-style: none; }
.panel h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.875rem;
  margin-top: 0;
}
.panel h3 svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.panel li {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  padding-left: 1rem;
  position: relative;
}
.panel li + li { margin-top: 0.5rem; }
.panel li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
}

.panel-grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .panel-grid { grid-template-columns: 1fr 1fr; } }
.panel-grid .panel { margin-top: 0; }

.steps-ol { counter-reset: s; margin-top: 1.5rem; }
.steps-ol li {
  counter-increment: s;
  display: flex;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}
.steps-ol li + li { margin-top: 1rem; }
.steps-ol li::before {
  content: counter(s) '.';
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: hsl(var(--accent));
  color: hsl(var(--primary));
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-ol strong { color: hsl(var(--foreground)); font-weight: 600; }

.callout {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--accent) / 0.4);
  padding: 1.25rem 1.5rem;
  margin-top: 1.75rem;
}
.callout h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.callout p { font-size: 0.9375rem; line-height: 1.7; color: hsl(var(--muted-foreground)); }
.callout ul { margin-top: 0.75rem; }
.callout li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  padding-left: 1rem;
  position: relative;
}
.callout li::before { content: '•'; position: absolute; left: 0; color: hsl(var(--primary)); }

.callout--warn {
  background: #fffbeb;
  border-color: #fde68a;
  border-left: 3px solid #f59e0b;
}
.callout--warn h3 { color: #92400e; }
.callout--warn p, .callout--warn li { color: #b45309; }
.callout--warn li::before { color: #f59e0b; }

.callout--brand {
  background: hsl(var(--accent) / 0.6);
  border-left: 3px solid hsl(var(--primary));
}

.sidebar { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); } }

.sidebar-card {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h2, .sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; height: 2.75rem; padding-inline: 1rem; font-size: 0.9375rem; }
.sidebar-card .btn + .btn { margin-top: 0.625rem; }
.sidebar-card .footer-links a { color: hsl(var(--muted-foreground)); }
.sidebar-card .footer-links a:hover { color: hsl(var(--primary)); }
.sidebar-card .meta {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.sidebar-card .meta strong { display: block; color: hsl(var(--foreground)); font-weight: 600; margin-top: 0.75rem; }
.sidebar-card .meta strong:first-child { margin-top: 0; }

.footer-cookie-link {
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.75);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.footer-cookie-link:hover { color: #fff; }

/* ---------- Schadenmeldung ---------- */
.form-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .form-layout { grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; }
  .form-layout .sidebar { margin-top: 0 !important; }
}

.option-list { display: grid; gap: 0.75rem; }
@media (min-width: 640px) {
  .option-list--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.option:hover { border-color: hsl(var(--primary) / 0.5); }
.option input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: hsl(var(--primary));
  flex-shrink: 0;
}
.option strong { display: block; font-weight: 600; font-size: 0.9375rem; }
.option span { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }
.option:has(input:checked) { border-color: hsl(var(--primary)); background: hsl(var(--accent)); }
.option:has(input:focus-visible) { outline: 2px solid hsl(var(--ring)); outline-offset: 2px; }

.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

/* Tabellen auf schmalen Displays horizontal scrollbar machen */
@media (max-width: 700px) {
  .prose table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .prose th, .prose td { padding: 0.625rem 0.75rem; }
}

/* Hero-CTAs bleiben ab Tablet in einer Reihe (wie im Original) */
@media (min-width: 768px) {
  .hero .btn-row { flex-wrap: nowrap; }
}

/* ---------- Große Überschriften ---------- */
.h-display {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .h-display { font-size: 2.125rem; } }
@media (min-width: 768px) { .h-display { font-size: 2.5rem; } }

.section-head .h-display { margin-bottom: 1rem; }

/* Als Zitat etwas luftiger und weniger schwer */
blockquote.h-display { font-weight: 600; line-height: 1.4; }

/* ---------- Hinweis-Boxen auf Leistungs- und Ratgeberseiten ---------- */
.panel--ok {
  background: hsl(var(--accent) / 0.4);
}
.panel--ok h3 svg { color: hsl(var(--success)); }

.panel--warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.panel--warn h3 svg { color: #d97706; }
.panel--warn li { color: #92400e; }
.panel--warn li::before { color: #d97706; }

/* ---------- Artikel-Meta (Datum, Lesezeit, Kategorie) ---------- */
.article-meta > span,
.article-meta > .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  line-height: 1.2;
}
.article-meta svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

/* ---------- Sidebar: Terminkarte in Markenfarbe (wie im Original) ---------- */
.sidebar-card--brand {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.sidebar-card--brand h2 { color: #fff; }
.sidebar-card--brand .btn--on-brand {
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
}
.sidebar-card--brand .btn--on-brand:hover { background: #fff; }
.sidebar-card--brand .btn--ghost-on-brand {
  border-width: 1px;
  border-color: hsl(var(--primary-foreground) / 0.3);
}

/* Sidebar-Linkliste mit Pfeil */
.arrow-links li + li { margin-top: 0.625rem; }
.arrow-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s;
}
.arrow-links a:hover { color: hsl(var(--primary)); }
.arrow-links svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

/* Zwischen Burger-Menü und breitem Desktop wird die Navigation etwas kompakter,
   damit die Leiste auf 1280er-Bildschirmen nicht überläuft. */
@media (min-width: 1100px) and (max-width: 1365px) {
  .nav-links { gap: 0; }
  .nav-link { padding-inline: 0.5rem; font-size: 0.875rem; }
  .nav-phone { padding-right: 0.75rem; font-size: 0.75rem; }
  .nav-cta.btn--sm { padding-inline: 0.75rem; }
}
