
@import url('../fonts/_fontface.css');

:root {
  --color-bg: #ffffff;
  --color-surface: #fafafa;
  --color-band: #ececec;
  --color-text: #303030;
  --color-text-nav: #222222;
  --color-text-card: #2d2d2b;

  --color-muted: #6a6a6a;
  --color-muted-2: #666666;
  --color-consent-text: #555555;
  --color-consent-btn: #0063e3;
  --color-consent-link: #2563eb;
  --color-social: #69727d;
  --color-primary: #be2820;
  --color-primary-dark: #9e1f18;
  --color-accent: #000000;
  --color-border: #e2e8f0;

  --verlauf-text: linear-gradient(90deg, #2d2d2d 0%, #828282 50%, #2d2d2d 100%);

  --verlauf-band: linear-gradient(90deg, #d9d9d9, #ececec, #d9d9d9, #d9d9d9);
  --verlauf-band-radial: radial-gradient(#ececec 0%, #d9d9d9 100%);

  --hero-overlay: radial-gradient(#828282 0%, #2d2d2b 100%);
  --hero-overlay-deckung: .85;

  --font-body: 'Poppins', sans-serif;
  --font-head: 'Oswald', sans-serif;

  --radius: 0px;
  --radius-sm: 4px;
  --shadow: 0 10px 20px rgba(0, 0, 0, .1);

  --container: 1296px;
  --container-narrow: 760px;

  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; color: var(--color-accent); }
h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 var(--space-2); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
p  { color: var(--color-muted); }

a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }

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

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.text-center { text-align: center; }

.announce {
  background: var(--color-accent);
  color: #fff;
  font-size: .95rem;
}
.announce__inner { display: flex; align-items: center; gap: var(--space-2); padding-block: .5rem; }
.announce p { margin: 0; color: #fff; flex: 1; }
.announce a { color: #fff; text-decoration: underline; }
.announce__close {
  background: none; border: 0; color: #fff;
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 .25rem;
}
.announce__close:hover { opacity: .8; }

.stats-section { padding-block: var(--space-4); background: var(--color-surface); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); text-align: center; }
.stat__value { display: block; font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.stat__label { display: block; color: var(--color-muted); font-size: .95rem; }

.badges { list-style: none; padding: 0; margin: var(--space-2) 0 var(--space-3); display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.badge { background: var(--color-surface); color: var(--color-primary); border: 1px solid var(--color-border); border-radius: 999px; padding: .35rem .8rem; font-size: .9rem; font-weight: 600; }
.badge--award { background: #fffbeb; color: #92400e; border-color: #fde68a; }

.whatsapp-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.whatsapp-fab:hover { background: #1ebe5a; }

.admin-bar { border-bottom: 2px solid var(--color-primary); }
.admin-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); flex-wrap: wrap;
  padding-top: .6rem; padding-bottom: .6rem;
}
.admin-nav { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .35rem; }
.admin-nav a {
  padding: .45rem .7rem; border-radius: var(--radius-sm, 6px);
  font-size: .9rem; font-weight: 500; color: var(--color-text); text-decoration: none;
  white-space: nowrap;
}
.admin-nav a:hover { background: var(--color-surface, #f1f5f9); }
.admin-nav a.is-active { background: var(--color-primary); color: #fff; }
.admin-nav__logout { color: var(--color-muted); }

.admin-nav__burger { display: none; }
.admin-nav__checkbox { display: none; }

@media (max-width: 720px) {
  .admin-bar__inner { flex-wrap: nowrap; }
  .admin-nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
    width: 42px; height: 42px; padding: 9px; cursor: pointer; flex: 0 0 auto;
    border: 1px solid var(--color-border); border-radius: var(--radius-sm, 6px);
  }
  .admin-nav__burger span {
    display: block; height: 2px; width: 100%; background: var(--color-text);
    border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
  }

  .admin-nav {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: .5rem -1rem -0.6rem; padding: .25rem 1rem .5rem;
    border-top: 1px solid var(--color-border);
  }
  .admin-nav a { padding: .75rem .25rem; border-bottom: 1px solid var(--color-border); border-radius: 0; font-size: 1rem; }
  .admin-nav a:last-child { border-bottom: 0; }
  .admin-nav a.is-active { background: transparent; color: var(--color-primary); font-weight: 700; }

  .admin-nav__checkbox:checked ~ .admin-nav { display: flex; }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(2) { opacity: 0; }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
@media (prefers-reduced-motion: reduce) { .admin-nav__burger span { transition: none; } }

.btn--sm { padding: .35rem .75rem; font-size: .8rem; }

.dash__progress { margin: var(--space-3) 0; }
.dash__bar { height: 10px; border-radius: 999px; background: var(--color-border); overflow: hidden; margin-bottom: .4rem; }
.dash__bar span { display: block; height: 100%; background: var(--color-primary); transition: width .3s ease; }

.dash__groups { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 760px) { .dash__groups { grid-template-columns: 1fr 1fr; align-items: start; } }
.dash__group { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.dash__group--done { border-color: #16a34a; }
.dash__group-head { display: flex; align-items: center; gap: .6rem; padding: .75rem var(--space-3); border-bottom: 1px solid var(--color-border); background: var(--color-surface, #f8fafc); }
.dash__group-head h2 { margin: 0; font-size: 1rem; flex: 1; }
.dash__count { font-size: .8rem; font-weight: 700; color: var(--color-muted); padding: .1rem .5rem; border-radius: 999px; background: #fff; border: 1px solid var(--color-border); }
.dash__count.is-done { color: #fff; background: #16a34a; border-color: #16a34a; }
.dash__list { list-style: none; margin: 0; padding: .35rem var(--space-3) var(--space-2); display: flex; flex-direction: column; }
.dash__item { display: flex; align-items: center; gap: .6rem; padding: .45rem 0; border-bottom: 1px solid var(--color-border); }
.dash__item:last-child { border-bottom: 0; }
.dash__mark { flex: 0 0 1.3rem; width: 1.3rem; height: 1.3rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: #fff; background: #cbd5e1; border: 1px solid #cbd5e1; }
.dash__item--done .dash__mark { background: #16a34a; border-color: #16a34a; }
.dash__item--todo .dash__mark { background: #fff; border-color: #cbd5e1; }
.dash__label { flex: 1; font-size: .9rem; }
.dash__item--todo .dash__label { color: var(--color-text); }
.dash__optional, .dash__manual { display: inline-block; margin-left: .4rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .03em; padding: .05rem .35rem; border-radius: 4px; vertical-align: middle; }
.dash__optional { color: var(--color-muted); background: var(--color-surface, #f1f5f9); }
.dash__manual { color: #b45309; background: #fef3c7; }
.dash__toggle { margin: 0; }

.trk__topbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; }
.trk__topbar h1 { margin: 0; }
.trk__ranges { display: flex; gap: .35rem; flex-wrap: wrap; }
.trk__intro { color: var(--color-muted); font-size: .9rem; }

.trk__controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin: .75rem 0 .25rem; }
.trk__daterange { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 0; font-size: .85rem; }
.trk__daterange input[type="date"] { padding: .35rem .5rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm, 6px); font: inherit; width: auto; }
.trk__daterange label { font-weight: 600; }
.trk__refresh { display: flex; align-items: center; gap: .6rem; font-size: .85rem; }
.trk__auto { display: inline-flex; align-items: center; gap: .35rem; color: var(--color-muted); white-space: nowrap; }
.trk__auto input { width: auto; margin: 0; }

.trk__realtime { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; padding: .65rem var(--space-2); margin: .75rem 0; border: 1px solid var(--color-border); border-left: 4px solid #16a34a; border-radius: var(--radius); background: #f0fdf4; font-size: .9rem; }
.trk__realtime__main { display: inline-flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.trk__realtime__pages { flex: 1 1 100%; }
.trk__realtime__time { margin-left: auto; font-variant-numeric: tabular-nums; }
.trk__sep { color: var(--color-muted); }
.trk__live { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; margin-right: .3rem; flex: 0 0 auto; animation: trkpulse 2s ease-in-out infinite; }
@keyframes trkpulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .trk__live { animation: none; } }
@media (max-width: 640px) {
  .trk__controls { flex-direction: column; align-items: stretch; }
  .trk__refresh { justify-content: space-between; }
  .trk__realtime__time { margin-left: 0; flex: 1 1 100%; }
  .trk__daterange input[type="date"] { flex: 1 1 8rem; min-width: 0; }
}
.trk__meta { color: var(--color-muted); font-size: .82rem !important; }
.trk__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin: var(--space-3) 0; }
@media (min-width: 520px) { .trk__kpis { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-2); } }
@media (max-width: 519px) {
  .trk__kpi { padding: .6rem .5rem; }
  .trk__kpi strong { font-size: 1.35rem; }
  .trk__topbar h1 { font-size: 1.5rem; }
  .trk__ranges { width: 100%; }
  .trk__ranges .btn { flex: 1 1 auto; text-align: center; }
}
.trk__kpi { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: var(--space-2) var(--space-3); text-align: center; }
.trk__kpi strong { display: block; font-size: 1.8rem; line-height: 1.1; color: var(--color-primary); }
.trk__kpi span { font-size: .8rem; color: var(--color-muted); }
.trk__trend { display: inline-block; margin-top: .35rem; font-size: .72rem; font-weight: 700; padding: .1rem .45rem; border-radius: 999px; white-space: nowrap; }
.trk__trend--up { color: #15803d; background: #dcfce7; }
.trk__trend--down { color: #b91c1c; background: #fee2e2; }
.trk__trend--flat { color: var(--color-muted); background: var(--color-surface, #f1f5f9); }

.trk__legend { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: .82rem; margin: .3rem 0 .6rem; color: var(--color-text); }
.trk__lg { display: inline-flex; align-items: center; }
.trk__lg::before { content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: .4rem; }
.trk__lg--pv::before { background: var(--color-primary); }
.trk__lg--app::before { background: #d97706; }
.trk__lg--visitors::before { width: 14px; height: 0; border-radius: 0; border-top: 3px solid #7c3aed; }
.trk__chartlabel { font-size: .78rem; color: var(--color-muted); margin: .5rem 0 .25rem; }
.trk__chart { position: relative; display: flex; align-items: flex-end; gap: 2px; height: 140px; padding: .5rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow-x: auto; }
.trk__chart--app { height: 64px; }

.trk__line { position: absolute; left: .5rem; top: .5rem; right: .5rem; bottom: .5rem; width: calc(100% - 1rem); height: calc(100% - 1rem); pointer-events: none; }
.trk__line polyline { fill: none; stroke: #7c3aed; stroke-width: 2px; vector-effect: non-scaling-stroke; stroke-linejoin: round; stroke-linecap: round; }
.trk__col { flex: 1 0 4px; min-width: 4px; height: 100%; display: flex; align-items: flex-end; }
.trk__colbar { display: block; width: 100%; background: var(--color-primary); border-radius: 2px 2px 0 0; min-height: 2px; }
.trk__col:hover .trk__colbar { background: var(--color-primary-dark, #0b5c55); }
.trk__chart--app .trk__colbar { background: #d97706; }
.trk__chart--app .trk__col:hover .trk__colbar { background: #b45309; }

.trk__cols { display: grid; grid-template-columns: 1fr; gap: var(--space-2); margin: .5rem 0 var(--space-3); }
@media (min-width: 760px) {
  .trk__cols { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .trk__cols--three { grid-template-columns: repeat(3, 1fr); }
  .trk__cols--wide { grid-template-columns: 1fr; }
}
.trk__panel { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: var(--space-2) var(--space-3); }
.trk__panel h3 { margin: 0 0 .5rem; font-size: 1rem; }
.trk__list { width: 100%; border-collapse: collapse; font-size: .88rem; }
.trk__list td { padding: .3rem 0; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.trk__list tr:last-child td { border-bottom: 0; }
.trk__k { word-break: break-word; padding-right: .5rem !important; }
.trk__v { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; width: 3rem; }
.trk__barcell { width: 40%; padding: 0 .5rem !important; }
.trk-mini { display: block; height: 7px; border-radius: 999px; background: var(--color-border); overflow: hidden; }
.trk-mini__fill { display: block; height: 100%; background: var(--color-primary); }
.trk__stats { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-2) 0; }
.trk__stat { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: .6rem 1rem; min-width: 8rem; }
.trk__stat strong { display: block; font-size: 1.5rem; color: var(--color-primary); }
.trk__stat span { font-size: .8rem; color: var(--color-muted); }
.trk__tablewrap { overflow-x: auto; }
.trk__table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.trk__table th, .trk__table td { text-align: left; padding: .55rem .6rem; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.trk__table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; color: var(--color-muted); }

.kmp__table th.num, .kmp__table td.num { text-align: right; white-space: nowrap; }
.kmp__table tbody tr:hover { background: var(--color-surface); }
.kmp__table td strong { color: var(--color-primary); }

.kmp__flag {
  display: inline-block; margin-left: .4rem; padding: .05rem .4rem;
  font-size: .68rem; font-weight: 700; border-radius: 999px;
  color: #92400e; background: #fef3c7; border: 1px solid #fde68a;
  cursor: help;
}

.kmp__hint {
  border: 1px solid var(--color-border); border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm); background: var(--color-surface);
  padding: var(--space-2) var(--space-3); margin: var(--space-3) 0;
}
.kmp__hint h3 { margin: 0 0 .4rem; font-size: 1rem; }
.kmp__hint p { margin: 0; font-size: .9rem; }
.kmp__hint code { font-size: .85em; background: #fff; padding: .05rem .3rem; border-radius: 4px; border: 1px solid var(--color-border); }
.kmp__hint--warn { border-left-color: #b45309; background: #fffbeb; }

.kmp__note { margin: var(--space-4) 0 var(--space-3); font-size: .88rem; }
.kmp__note h3 { font-size: 1rem; margin: 0 0 .5rem; }
.kmp__note ul { margin: 0; padding-left: 1.1rem; color: var(--color-muted); }
.kmp__note li { margin-bottom: .5rem; }
.kmp__note code { font-size: .85em; background: var(--color-surface); padding: .05rem .3rem; border-radius: 4px; }

.kmp__refresh { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-top: var(--space-2); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-2);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-5); }
.section--accent { background: var(--color-surface); }
.section__title { text-align: center; margin-bottom: var(--space-4); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-1) var(--space-2);
  z-index: 1000;
}
.skip-link:focus { left: var(--space-1); top: var(--space-1); text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 64px;
}
.logo { font-weight: 800; font-size: 1.15rem; color: var(--color-accent); margin-right: auto; }
.logo span { color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: var(--space-1); }
.header-cta { padding: .55rem 1rem; display: inline-flex; align-items: center; gap: .4rem; }

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 0; padding: 0;
}
.site-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: .875rem;
  white-space: nowrap;
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--color-accent);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top: 7px; }

.hero {
  padding-block: var(--space-5);
  background: linear-gradient(180deg, var(--color-surface), var(--color-bg));
  text-align: center;
}
.hero--compact { padding-block: var(--space-4); }
.hero__lead {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.15rem;
}
.hero__actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--ghost { border-color: var(--color-border); color: var(--color-accent); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }

.grid { display: grid; gap: var(--space-3); }
.grid--3 { grid-template-columns: 1fr; }

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}
.card__icon { font-size: 2rem; margin-bottom: var(--space-1); }
.card h3 { margin: 0 0 var(--space-1); }

.cta { text-align: center; }
.cta h2 { margin-bottom: var(--space-1); }

.job { display: flex; flex-direction: column; }
.job__meta { font-size: .9rem; color: var(--color-primary); font-weight: 600; margin: 0 0 var(--space-1); }
.job .btn { margin-top: auto; align-self: flex-start; }

.card__link {
  display: inline-block;
  margin-top: var(--space-1);
  font-weight: 600;
}
.card__link::after { content: " \2192"; }
.card__icon--large { font-size: 3rem; margin-bottom: var(--space-2); }
.breadcrumb { font-size: .9rem; color: var(--color-muted); margin: 0 0 var(--space-1); }
.lead { font-size: 1.15rem; color: var(--color-text); }
.cta--inline { display: flex; gap: var(--space-1); flex-wrap: wrap; margin-top: var(--space-3); text-align: left; }

.tel-link { font-weight: 700; white-space: nowrap; }

.booking-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-align: center;
  margin-bottom: var(--space-2);
}
.booking-box h2 { margin: 0 0 var(--space-1); }
.booking-box p { margin: 0 0 var(--space-2); }
.booking-or { text-align: center; color: var(--color-muted); margin: 0 0 var(--space-2); }

.praxis-info { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.praxis-info__col h3 { margin: 0 0 var(--space-1); }
.praxis-info__note { font-size: .9rem; color: var(--color-muted); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .4rem 0; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 600; color: var(--color-accent); width: 45%; }
.hours td { color: var(--color-muted); }

.social { display: flex; gap: var(--space-1); margin: 0 0 .5rem; }
.social__link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
}
.social__link:hover { background: var(--color-primary); color: #fff; }

.karten-schutz {
  margin-top: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.karten-schutz__inner { padding: var(--space-3); text-align: center; }
.karten-schutz__text { margin: 0 auto var(--space-2); max-width: 52ch; font-size: .95rem; color: var(--color-muted); }
.karten-schutz__frame { display: block; width: 100%; height: 360px; border: 0; }

.zone-title {
  margin: var(--space-4) 0 var(--space-2);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-primary);
}
.zone-title:first-child { margin-top: 0; }

.course { display: flex; flex-direction: column; }
.course__schedule { font-weight: 700; color: var(--color-primary); margin: 0 0 .25rem; }
.course__level { color: var(--color-muted); font-size: .9rem; margin: 0 0 var(--space-1); }
.course .btn { margin-top: auto; align-self: flex-start; }

.downloads__list { list-style: none; padding: 0; margin: var(--space-2) 0 0; display: grid; gap: var(--space-1); }
.downloads__item a {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-bg); color: var(--color-text);
}
.downloads__item a:hover { border-color: var(--color-primary); text-decoration: none; }
.downloads__icon { font-size: 1.5rem; }
.downloads__item small { display: block; color: var(--color-muted); font-weight: 400; }

.location { padding-bottom: var(--space-4); margin-bottom: var(--space-4); border-bottom: 1px solid var(--color-border); }
.location:last-child { border-bottom: 0; margin-bottom: 0; }
.location__name { margin: 0 0 var(--space-2); }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 1.75rem; margin-bottom: .5rem; }
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--color-primary); font-weight: 700;
}

.team__quals { list-style: none; padding: 0; margin: var(--space-1) 0 0; display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; }
.team__quals li {
  font-size: .8rem;
  background: var(--color-surface);
  color: var(--color-primary);
  padding: .2rem .6rem;
  border-radius: 999px;
}

.review {
  margin: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}
.review p { margin: 0 0 var(--space-1); color: var(--color-text); font-style: italic; }
.review__author { color: var(--color-muted); font-weight: 600; }

.faq { display: grid; gap: var(--space-1); }
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  padding: 0 var(--space-2);
}
.faq__q {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-accent);
  padding: var(--space-2) 0;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before { content: "+ "; color: var(--color-primary); font-weight: 700; }
.faq__item[open] .faq__q::before { content: "\2013 "; }
.faq__a { padding-bottom: var(--space-2); }
.faq__a p { margin: 0; }

.form { margin-top: var(--space-3); }
.form__hint { font-size: .9rem; margin-top: 0; }
.form__group { margin-bottom: var(--space-3); }
.form__group label { display: block; font-weight: 600; margin-bottom: var(--space-1); }
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: .75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--color-bg);
  color: var(--color-text);
}
.form__group input[type="file"] { padding: .5rem; background: var(--color-surface); }
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus { border-color: var(--color-primary); outline: none; }
.form__optional { font-weight: 400; color: var(--color-muted); font-size: .9rem; }
.form__group input[aria-invalid="true"],
.form__group textarea[aria-invalid="true"] { border-color: #dc2626; }
.form__group--check { display: flex; gap: var(--space-1); align-items: flex-start; }
.form__group--check label { font-weight: 400; margin: 0; }
.form__group--check input { width: auto; margin-top: .35rem; }
.req { color: #dc2626; }
.form__error { display: block; color: #dc2626; font-size: .9rem; margin-top: .35rem; }
.form__note { margin-top: var(--space-2); font-weight: 600; }
.form__note--ok { color: #15803d; }
.form__note--err { color: #dc2626; }

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

.legal h2 { margin-top: var(--space-4); }
.legal ul { color: var(--color-muted); }
.legal__hint {
  margin-top: var(--space-4);
  padding: var(--space-2);
  background: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-4);
  margin-top: var(--space-5);
}
.footer-inner {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.footer-brand__name { font-weight: 700; color: var(--color-accent); }
.site-footer p { margin: 0 0 .25rem; }
.footer-nav__title {
  font-size: .95rem;
  color: var(--color-accent);
  margin: 0 0 var(--space-1);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin: 0; padding: 0;
}
.footer-nav a { color: var(--color-muted); }
.footer-nav a:hover { color: var(--color-primary); }
.link-btn {
  background: none; border: 0; padding: 0;
  color: var(--color-muted); cursor: pointer;
  font: inherit;
}
.link-btn:hover { color: var(--color-primary); text-decoration: underline; }

.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: var(--space-2);
  max-width: 760px;
  margin-inline: auto;
}
.steps__item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-2);
}
.steps__item h3 { margin: 0 0 .25rem; }
.steps__item p { margin: 0; }
.steps__num {
  flex: 0 0 auto;
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.team { text-align: center; }
.team__avatar {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-1);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}
.team__role { margin: 0; font-size: .95rem; }
.team__photo {
  width: 140px; height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto var(--space-1);
}

@media (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .steps__item { padding: var(--space-3); }
  .praxis-info { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

@media (max-width: 719px) {
  .nav-toggle { display: block; }
  .header-cta { padding: .5rem .7rem; font-size: .9rem; }
  .header-cta__label { display: none; }
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: var(--space-1);
  }
  .site-nav a {
    display: block;
    padding: var(--space-1) var(--space-2);
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

.consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--color-bg);
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, .14);
}
.consent[hidden] { display: none; }
.consent__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-2) var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.consent__text { flex: 1 1 26rem; }
.consent__title { margin: 0 0 .35rem; font-size: 1.05rem; }
.consent__text p { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--color-muted); max-width: 75ch; }
.consent__actions {
  display: flex;
  gap: var(--space-1);
  flex: 0 0 auto;
  margin-left: auto;
}

.consent__actions .btn { min-width: 10rem; justify-content: center; }

body.has-consent-banner .whatsapp-fab { display: none; }

@media (max-width: 640px) {
  .consent__inner { padding: var(--space-2) var(--space-2) var(--space-3); }
  .consent__actions { width: 100%; margin-left: 0; }
  .consent__actions .btn { flex: 1 1 0; min-width: 0; }
}

.form__notice {
  margin: 0 0 var(--space-2);
  padding: .7rem var(--space-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: .92rem;
}
.form__notice--ok  { border-color: #047857; background: #ecfdf5; color: #065f46; }
.form__notice--err { border-color: #b91c1c; background: #fef2f2; color: #991b1b; }

.kmp__pixel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: var(--color-surface);
}
.kmp__pixel-status { margin: 0 0 var(--space-3); font-size: .95rem; }
.kmp__pixel-status code { font-size: .9em; background: #fff; padding: .05rem .35rem; border-radius: 4px; border: 1px solid var(--color-border); }

.kmp__badge {
  display: inline-block; margin-right: .5rem;
  padding: .1rem .55rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.kmp__badge--on  { background: #047857; color: #fff; }
.kmp__badge--off { background: var(--color-muted); color: #fff; }

.kmp__pixel-form { display: flex; align-items: flex-start; gap: var(--space-2); flex-wrap: wrap; }
.kmp__pixel-form .form__group { flex: 1 1 20rem; margin-bottom: 0; }
.kmp__pixel-form .form__hint { display: block; margin-top: .4rem; color: var(--color-muted); }
.kmp__pixel-form .btn { margin-top: 1.85rem; }

.kmp__pixel-conflict {
  margin: var(--space-2) 0 0;
  padding: .6rem var(--space-2);
  border-left: 4px solid #b45309; background: #fffbeb;
  border-radius: var(--radius-sm); font-size: .9rem;
}
.kmp__pixel-info { margin-top: var(--space-3); border-top: 1px solid var(--color-border); padding-top: var(--space-2); }
.kmp__pixel-info h3 { margin: 0 0 .5rem; font-size: 1rem; }
.kmp__pixel-info ul { margin: 0; padding-left: 1.1rem; font-size: .88rem; color: var(--color-muted); }
.kmp__pixel-info li { margin-bottom: .5rem; }
.kmp__pixel-info code { font-size: .85em; background: #fff; padding: .05rem .3rem; border-radius: 4px; border: 1px solid var(--color-border); }
.kmp__pixel-warn { margin: var(--space-2) 0 0; font-size: .88rem; color: var(--color-text); font-weight: 600; }

@media (max-width: 640px) {
  .kmp__pixel-form .btn { margin-top: 0; width: 100%; }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 1.08rem + .21vw, 1.1875rem);
  color: var(--color-text);
  line-height: 1.65;
}
p { color: inherit; }

:where(h1, h2, h3, h4, p, ul, ol, figure) { margin: 0; }

h1, h2, h3 { color: inherit; }
h1 { margin: 0; }

.h-hero {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.25rem, .93rem + 5.4vw, 4.0625rem);
  line-height: 1.15;
  text-transform: uppercase;
}
.h-display {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 1.18rem + 3.35vw, 3.125rem);
  line-height: 1.15;
}
.h-display--poppins { font-family: var(--font-body); }

.text-verlauf {
  background: var(--verlauf-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  padding-block: .125em;
  margin-block: -.125em;
}
.text-rot { color: var(--color-primary); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 0; }
@media (max-width: 1439px) { .container { padding-inline: 20px; } }
@media (max-width: 767px)  { .container { padding-inline: 30px; } }

.site-header {
  position: relative; z-index: 100;
  background: var(--color-bg);
  box-shadow: var(--shadow);
}
.site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 110px; gap: var(--space-2);
}
.logo { display: inline-flex; align-items: center; }
.logo img { width: 147px; height: auto; }

.site-nav ul { list-style: none; display: flex; align-items: center; gap: 50px; margin: 0; padding: 0; }
.site-nav a {
  display: inline-block; position: relative;
  font-family: var(--font-head); font-weight: 500; font-size: 19px;
  color: var(--color-text-nav); text-decoration: none;
  padding: 20px 0;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 12px; height: 2px; width: 100%;
  background: var(--color-primary); opacity: 0; transition: opacity .2s;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { text-decoration: none; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { opacity: 1; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ''; display: block; position: absolute; left: 8px; right: 8px; height: 3px;
  background: var(--color-text-nav); transition: transform .2s, opacity .2s;
}
.nav-toggle__bar { top: 50%; margin-top: -1.5px; }
.nav-toggle__bar::before { top: -9px; left: 0; right: 0; }
.nav-toggle__bar::after  { top:  9px; left: 0; right: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-bg); box-shadow: var(--shadow); padding: var(--space-2) 20px; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .site-nav a { padding: 12px 0; width: 100%; }
}

.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-family: var(--font-body); text-align: center;
  border-radius: var(--radius);
  background: var(--color-primary); color: #fff;
  font-size: 16px; font-weight: 700; padding: 16px 40px;
  line-height: 1.125;
  transition: background .2s;
}
.btn:hover, .btn:focus-visible { background: var(--color-primary-dark); color: #fff; text-decoration: none; }
.btn--gross { font-size: 18px; font-weight: 600; padding: 15px 30px; }
.btn--dunkel { background: var(--color-text); }
.btn--dunkel:hover, .btn--dunkel:focus-visible { background: #1c1c1c; }

.hero-video {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; align-content: center; justify-items: center;
  text-align: center; color: #fff;
  padding: var(--hero-pad, 200px 60px);
}
.hero-video > video, .hero-video > .hero-video__fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero-video::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--hero-overlay);
  opacity: var(--hero-overlay-deckung);
}
@media (prefers-reduced-motion: reduce) {
  .hero-video > video { display: none; }
}
@media (max-width: 767px) { .hero-video { padding: var(--hero-pad-mobil, 120px 20px); } }

.bild-band { position: relative; isolation: isolate;
             background-image: var(--band-bild, none); background-size: cover; background-position: center; }
.bild-band::before { content: ''; position: absolute; inset: 0; z-index: -1;
             background-color: var(--band-overlay, transparent);
             background-image: var(--band-ueberbild, none);
             opacity: var(--band-deckung, 1); }

.sektion { padding: 120px 60px; }
@media (max-width: 767px) { .sektion { padding: 60px 30px; } }
.sektion--band { background-color: var(--color-band); }
.sektion--verlauf { background-image: var(--verlauf-band); }
.sektion--verlauf-radial { background-image: var(--verlauf-band-radial); }

.standorte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 1024px) { .standorte { grid-template-columns: 1fr; } }
.standort { background: var(--color-bg); padding: 0 30px 40px; text-align: center; }
.standort__titel { font-family: var(--font-body); font-size: 22px; font-weight: 800; color: var(--color-text-card); }
.standort__strasse { font-size: 15px; font-weight: 500; color: var(--color-muted); }
.standort__label { font-size: 14px; font-weight: 600; color: var(--color-text-card); }
.standort__name { font-size: 14px; font-weight: 700; color: var(--color-primary); }
.standort__tel { font-size: 14px; font-weight: 700; color: var(--color-text); text-decoration: none; }
.standort__route { font-size: 13px; font-weight: 800; color: var(--color-primary); text-decoration: none; letter-spacing: .02em; }
@media (max-width: 767px) { .standort__titel { font-size: 19px; } }

.karten-platzhalter { background: var(--color-surface); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.karten-platzhalter .karten-schutz__inner { padding: 0; }
.karten-platzhalter p { font-size: 14px; color: var(--color-consent-text); line-height: 1.25; }
.karten-platzhalter strong { font-weight: 700; color: var(--color-consent-text); }
.karten-platzhalter .karten-platzhalter__btn {
  display: block; width: 100%; margin-top: 16px; padding: 12px 20px;
  background: var(--color-consent-btn); color: #fff;
  font-size: 14px; font-weight: 600; text-decoration: none; border: 0; cursor: pointer;
  border-radius: var(--radius-sm);
}
.karten-platzhalter .karten-platzhalter__info { display: block; font-size: 14px; color: var(--color-consent-link); }
.karten-platzhalter iframe { width: 100%; border: 0; min-height: 300px; }

.team-stimmen { text-align: center; color: #fff; }
.stimme blockquote { font-size: 20px; line-height: 1.5; margin: 0; }
.stimme__name { font-size: 14px; font-weight: 700; }
.stimme__rolle { font-size: 14px; font-weight: 400; }
.stimme img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-inline: auto; }

.swipe { display: grid; grid-auto-flow: column; grid-auto-columns: var(--swipe-spalte, 100%);
         gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.swipe::-webkit-scrollbar { display: none; }
.swipe > * { scroll-snap-align: center; }
.swipe-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.swipe-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #ffffff66; cursor: pointer; padding: 0; }
.swipe-dots button[aria-current="true"] { background: #fff; }

.faq-liste { max-width: 1296px; }
.faq-eintrag { border-bottom: 1px solid #d0d0d0; }
.faq-eintrag summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 18px; font-weight: 700; color: var(--color-text);
  padding: 39px 0 26px; line-height: 1.3;
}
.faq-eintrag summary::-webkit-details-marker { display: none; }
.faq-eintrag summary::after { content: '+'; font-size: 24px; color: var(--color-primary); }
.faq-eintrag[open] summary::after { content: '–'; }
.faq-eintrag p { font-size: 16px; line-height: 1.7; padding-bottom: 0; margin-bottom: 31px; }
@media (max-width: 767px) {
  .faq-eintrag summary { font-size: 16px; padding: 36px 0 20px; }
  .faq-eintrag p { margin-bottom: 25px; }
  .sektion--faq .faq-liste { margin-top: 25px; }
  .sektion--faq { padding-inline: 30px; padding-bottom: 74px; }
  .faq-eintrag { padding-inline: 21px; }
  .faq-frage { max-width: 260px; }
}

#faq-titel { font-size: clamp(1.875rem, 1.03rem + 3.46vw, 3rem); line-height: 1; letter-spacing: -.5px; }

.site-footer {
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, .12);
  background: var(--color-bg);
  padding-block: 0; margin-top: 0;
}
.site-footer .footer-band {
  background-image: url('../img/seite/footer-hintergrund.webp');
  background-size: cover; background-position: center;
  color: #fff; padding: 60px;
}
@media (max-width: 767px) { .site-footer .footer-band { padding: 60px 20px; } }
.footer-band__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }

.footer-marke { display: flex; flex-direction: column; align-items: flex-start; }
.footer-band p, .footer-band a { color: #fff; font-size: 19px; line-height: 1.65; text-decoration: none; }
.footer-band a:hover, .footer-band a:focus-visible { text-decoration: underline; }
.footer-band .social { display: flex; gap: 20px; margin: 0; }
.footer-band .social__link { color: var(--color-social); display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; }
.footer-band .footer-signet img { width: 192px; height: auto; }
@media (max-width: 767px) {

  .site-footer > .container { padding-inline: 0; }

  .footer-band__inner { flex-direction: column; text-align: center; gap: 0; }
  .footer-marke { align-items: center; }
  .footer-band .footer-signet { margin-top: 20px; }
  .footer-band .footer-signet img { width: 248px; }
  .footer-band__inner > div { margin-top: 20px; }
  .footer-band__inner > div:last-child { margin-top: 30px; }
  .footer-band p, .footer-band a { font-size: 18px; }
}

.funnel { max-width: 938px; margin-inline: auto; text-align: left; }
.funnel__schritte { display: flex; justify-content: center; gap: 8px; margin-bottom: 30px; }
.funnel__schritt-punkt { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: #e0e0e0; color: var(--color-text); font-size: 15px; font-weight: 600; }
.funnel__schritt-punkt[aria-current="step"] { background: var(--color-primary); color: #fff; }
.funnel fieldset { border: 0; padding: 0; margin: 0; }
.funnel--js [data-schritt] { display: none; }
.funnel--js [data-schritt].ist-aktiv { display: block; }
.funnel label, .funnel legend { display: block; font-size: 20px; font-weight: 600; color: var(--color-muted-2); margin-bottom: 10px; }
.funnel .feld { margin-bottom: 28px; }
.funnel input[type="text"], .funnel input[type="tel"], .funnel input[type="email"], .funnel select {
  width: 100%; padding: 12px 16px; font: inherit; font-size: 16px;
  border: 1px solid #cfcfcf; border-radius: var(--radius-sm); background: #fff; color: var(--color-text);
}
.funnel .optionen { display: grid; gap: 12px; }
.funnel .optionen label { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500;
  color: var(--color-text); background: #fff; border: 1px solid #cfcfcf; border-radius: var(--radius-sm);
  padding: 14px 16px; cursor: pointer; margin: 0; }
.funnel .optionen input { accent-color: var(--color-primary); width: 18px; height: 18px; }
.funnel__nav { display: flex; justify-content: center; gap: 16px; margin-top: 10px; }
.funnel .hinweis { font-size: 14px; color: var(--color-muted); }
.honigtopf { position: absolute; left: -9999px; }
.funnel .datenschutz-zeile { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--color-text); }
.funnel .datenschutz-zeile input { margin-top: 4px; accent-color: var(--color-primary); }

.tel-icon { display: inline-block; width: 14px; height: 14px; vertical-align: -1px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--color-primary);
  padding: 10px 16px; z-index: 999; font-size: inherit; }
.skip-link:focus { left: 0; }

.site-footer--minimal { border-top: 0; box-shadow: none; }
.footer-minimal { display: flex; justify-content: center; gap: 10px; padding: 28px 20px; }
.footer-minimal a { font-size: 20px; font-weight: 400; color: var(--color-primary); }

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

.btn--verlauf {
  background: var(--verlauf-text);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .45);
}
.btn--verlauf:hover, .btn--verlauf:focus-visible { background: var(--verlauf-text); filter: brightness(1.15); }

.vergleich { display: grid; grid-template-columns: 1fr 1fr; padding: 20px 40px; position: relative; }
.vergleich::after { content: ''; position: absolute; top: 20px; bottom: 20px; left: 50%; width: 1px; background: #d9d9d9; }
.vergleich__spalte { text-align: center; padding-inline: 40px; display: flex; flex-direction: column; align-items: center; gap: 0; }
.vergleich .riesen { font-family: var(--font-body); font-weight: 900;
  font-size: clamp(2.875rem, 2.06rem + 3.35vw, 4rem); line-height: 1.1; }
.vergleich .unterzeile { font-size: 18px; font-weight: 500; color: var(--color-muted); }
.vergleich h4 { font-size: 19px; font-weight: 700; color: var(--color-text); text-transform: uppercase; margin-top: 24px; }
.vergleich p { font-size: 15px; line-height: 1.7; margin-top: 24px; }
.vergleich .btn { margin-top: 40px; }
@media (max-width: 767px) {
  .vergleich { grid-template-columns: 1fr; padding: 20px 0; }
  .vergleich::after { display: none; }
  .vergleich__spalte + .vergleich__spalte { margin-top: 48px; }
}

.zweispalter { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 1024px) { .zweispalter { grid-template-columns: 1fr; gap: 32px; } }

.logo-reihe { display: flex; justify-content: center; gap: 180px; margin-bottom: 40px; }
.logo-reihe img { width: 99px; height: 99px; object-fit: contain; }
@media (max-width: 767px) { .logo-reihe { gap: 40px; } .logo-reihe img { width: 72px; height: 72px; } }

.video-band video { width: 100%; height: auto; display: block; aspect-ratio: 2560 / 1706; object-fit: cover; }

.hero-video--home { text-align: left; justify-items: stretch; --hero-pad: 200px 60px; }
.hero-home__inhalt { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.hero-home__text { max-width: 764px; }
.hero-home__intro { margin-bottom: 24px; }
.hero-home__aktionen { display: flex; gap: 30px; flex-wrap: wrap; }
@media (max-width: 767px) { .hero-home__inhalt { flex-direction: column; align-items: flex-start; } }

.sektion--kreise {
  background-image: url('../img/seite/webseite-texte-und-bilder-jk-2.webp'), var(--verlauf-band);
  background-position: center left, center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}

.sektion--foto-hell { position: relative; isolation: isolate; background: #fff; }
.sektion--foto-hell::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background: url('../img/seite/3.webp') center / cover no-repeat; opacity: .18; }
.recover-titel { text-align: center; font-family: var(--font-body); font-weight: 800;
  font-size: clamp(1.75rem, 1.32rem + 1.8vw, 2.375rem);
  margin-bottom: 60px; }

.bild-band--cta-rot {
  --band-bild: url('../img/seite/physiotherapie-schimpf-unsere-leistungen.webp');
  background-color: var(--color-band);
  color: #fff;
  background-position: left top;
}
.bild-band--cta-rot::before { background-color: var(--color-primary); opacity: .92; }
.cta-rot__inhalt { max-width: 600px; }
.cta-rot__inhalt > div { margin-top: 32px; }
.cta-rot__aktion { margin-top: 40px; display: flex; justify-content: flex-end; }

@media (min-width: 1025px) { .cta-rot__aktion { transform: translateX(clamp(0px, (100vw - 600px) / 2, 420px)); } }
@media (max-width: 1024px) { .cta-rot__aktion { justify-content: flex-start; } }

.sektion--team {
  background-image: url('../img/seite/logo.webp'), var(--verlauf-band);
  background-position: bottom right, center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.team-titel { font-family: var(--font-body); font-weight: 800;
  font-size: clamp(1.75rem, 1.02rem + 3vw, 2.625rem);
  line-height: 1.15; }
.team-einleitung { margin-top: 32px; font-size: 17px; font-weight: 700; color: var(--color-text-card); line-height: 1.55; }
.team-text { margin-top: 16px; font-size: 15px; line-height: 1.65; }
.sektion--team .btn { margin-top: 24px; }
.team-foto img { width: 505px; max-width: 100%; height: auto; }
.standort__cta { margin-top: 48px; }
.video-band { padding: 0; }

.hero-start { --hero-pad: 120px 60px; }
.hero-start__willkommen { font-size: 19px; margin-bottom: 24px; }
.hero-start__intro { font-size: 19px; margin-top: 32px; }
.hero-start__stellen { width: 100%; margin-top: 48px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.stellen-liste { list-style: none; padding: 0; margin: 0; text-align: left; }
.stellen-liste h2 {
  font-family: var(--font-head); font-weight: 400;
  font-size: clamp(1.75rem, 1.57rem + .74vw, 2rem);
  line-height: 1.15; margin: 0 0 18px; color: #fff; }
.hero-start__aktion .btn--gross { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .3); }
@media (max-width: 767px) { .hero-start__stellen { flex-direction: column; align-items: flex-start; } }

.upgrade-text { margin-top: 32px; }
.upgrade-logo { text-align: center; }
.upgrade-logo img { width: 516px; max-width: 100%; height: auto; margin-inline: auto; }
@media (max-width: 767px) { .upgrade-logo img { width: 297px; } }
.upgrade-logo p { margin-top: 32px; }

.bild-band--grow {
  --band-bild: url('../img/seite/webseite-hintergrund-bilder-format-2560-x-1707-4.webp');
  background-color: var(--color-band); color: #fff;

  background-position: left top;
}
.bild-band--grow::before { background-color: var(--color-primary); opacity: .9;
  background-image: url('../img/seite/webseite-texte-und-bilder-jk-2.webp');
  background-repeat: no-repeat; background-position: center left; background-size: contain; }

.sektion--kreise-start { background-image: url('../img/seite/webseite-texte-und-bilder-jk-2.webp'), var(--verlauf-band-radial);
  background-position: center left, center; background-repeat: no-repeat, no-repeat; background-size: contain, cover; }

.sektion--spitze-oben { position: relative; }
.sektion--spitze-oben::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 51.3px; height: 30px; background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none; z-index: 1;
}
.standorte-kopf { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.standorte-kopf p strong { font-size: 19px; font-weight: 700; color: var(--color-text); line-height: 1.65; }

.video-band--schmal { max-width: 1178px; }

.bild-band--team-rot {
  --band-bild: url('../img/seite/4.webp');
  background-color: var(--color-band); color: #fff;
  background-position: left top;
}
.bild-band--team-rot::before { background-color: var(--color-primary); opacity: .9; }
.bild-band--team-rot .h-display { margin-bottom: 48px; }
.team-stimmen .swipe { --swipe-spalte: 100%; }
.team-stimmen .stimme { display: grid; justify-items: center; gap: 20px; }
.team-stimmen .btn { margin-top: 48px; }

.funnel-kopf { text-align: center; margin-bottom: 48px; }
.funnel-kopf p { margin-top: 16px; }
.funnel { border: 1px solid var(--color-text); padding: 30px; position: relative; }
.funnel--erfolg { text-align: center; font-size: 19px; padding: 60px 30px; }
.feld-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 767px) { .feld-reihe { grid-template-columns: 1fr; gap: 0; } .funnel { padding: 20px; } }

.hero-unterseite { text-align: left; justify-items: start; --hero-pad: 200px 60px; --hero-pad-mobil: 60px 20px;  }
.hero-unterseite__intro { margin-top: 40px; max-width: 900px; }
.hero-unterseite__aktion { margin-top: 40px; }
.hero-unterseite .h-hero + .hero-unterseite__aktion { margin-top: 30px; }

:root { --verlauf-dunkel: linear-gradient(90deg, #2d2d2d, #828282, #2d2d2d, #2d2d2d); }

.riesen-titel { font-family: var(--font-body); font-weight: 900;
  font-size: clamp(2rem, .84rem + 4.76vw, 4rem);
  line-height: 1.05; margin-bottom: 80px; }
.riesen-titel--rechts { text-align: right; }
.riesen-titel .weiss { color: #fff; }

.leistungs-band { position: relative; isolation: isolate; }
.leistungs-band--perform, .leistungs-band--recover { background: #fff; }
.leistungs-band--perform::before, .leistungs-band--recover::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: var(--deko-bild, none), url('../img/seite/physiotherapie-schimpf-leistungen.webp');
  background-position: var(--deko-pos, center right), center;
  background-repeat: no-repeat, no-repeat;
  background-size: var(--deko-groesse, auto 100%), cover;
  opacity: .22;
}
.leistungs-band--perform { --deko-bild: url('../img/seite/perform-e1780920076453.webp'); --deko-pos: center right; }
.leistungs-band--recover { --deko-bild: url('../img/seite/recover-e1780921000225.webp'); --deko-pos: center left; }
.leistungs-band--relax {
  background-image: url('../img/seite/relax-e1780921664423.webp'), var(--verlauf-dunkel);
  background-position: center right, center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 92%, cover;
  color: #fff;
}

.karten-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; justify-items: center; }
@media (max-width: 1024px) { .karten-raster { grid-template-columns: 1fr; } }
.leistungs-karte { padding: 50px 25px; text-align: center; max-width: 320px; width: 100%; }
.leistungs-karte--dunkel { background-image: var(--verlauf-dunkel); color: #fff;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .4); }
.leistungs-karte--hell { background-image: var(--verlauf-band); color: var(--color-text);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .4); }
.leistungs-karte__icon svg { width: 42px; height: 42px; fill: currentColor; }
.leistungs-karte h3 { font-family: var(--font-body); font-size: 20px; font-weight: 800; line-height: 1.2; margin-top: 24px; text-transform: uppercase; }
.leistungs-karte--schmal h3 { font-size: 18px; line-height: 1.25; }
.leistungs-karte p { font-size: 14.4px; line-height: 1.6; margin-top: 24px; }
.leistungs-karte--hell p { font-weight: 500; }
.karten-cta { margin-top: 64px; }

.bild-band--erstliga { --band-bild: url('../img/seite/physiotherapie-schimpf-unsere-leistungen.webp');
  background-color: var(--color-band); color: #fff; padding: 200px 60px; }
@media (max-width: 767px) { .bild-band--erstliga { padding: 200px 60px; } }

.schmerz-bestleistung { position: relative; isolation: isolate; background: #fff; }
.schmerz-bestleistung::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: url('../img/seite/logo.webp'), url('../img/seite/physiotherapie-schimpf-in-halle-saale.webp');
  background-position: bottom right, center; background-repeat: no-repeat, no-repeat;
  background-size: contain, cover; opacity: .18; }
.schmerz-titel { font-family: var(--font-body); font-weight: 900;
  font-size: clamp(2.25rem, 1.55rem + 2.9vw, 3.5rem);
  line-height: 1.05; }
.schmerz-text { margin-top: 32px; font-size: 16.56px; line-height: 1.6; }
.schmerz-bestleistung .btn { margin-top: 32px; }
.schritte-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 40px; }
.schritte-liste h3 { font-family: var(--font-body); font-size: 30px; font-weight: 900; line-height: 1.1; }
.schritte-liste p { font-size: 16.56px; font-weight: 500; line-height: 1.6; margin-top: 8px; }

.ueberzeile { display: block; font-size: 14px; font-weight: 700; color: var(--color-muted); letter-spacing: .04em; margin-bottom: 12px; }
.ueber-unterzeile { font-family: var(--font-body); font-size: 21.6px; font-weight: 700; color: var(--color-text); line-height: 1.4; margin-top: 32px; }
.ueber-text { font-size: 16px; line-height: 1.7; margin-top: 24px; }
.philosophie .h-display { }
.philosophie__unterzeile { font-size: 18px; font-weight: 500; color: var(--color-muted); margin-top: 16px; }
.philosophie__karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 64px; }
@media (max-width: 1024px) { .philosophie__karten { grid-template-columns: 1fr; } }
.philosophie-karte { padding: 50px 35px; text-align: center; background: #fff; box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .12); }
.philosophie-karte__label { display: inline-block; font-size: 11px; font-weight: 800; color: var(--color-primary); letter-spacing: .12em; text-transform: uppercase; }
.philosophie-karte h3 { font-family: var(--font-body); font-size: 26px; font-weight: 900; margin-top: 16px; }
.philosophie-karte p { font-size: 15px; line-height: 1.7; margin-top: 40px; }
.karriere-teaser { background: var(--verlauf-band-radial); }
.karriere-teaser__titel { font-family: var(--font-body); font-weight: 900;
  font-size: clamp(2rem, 1.42rem + 2.4vw, 3.25rem); line-height: 1.05; }
.karriere-teaser__text { font-size: 15.84px; font-weight: 500; margin-top: 24px; }
.karriere-teaser .btn { margin-top: 32px; }

.zweispalter--linie { position: relative; }
@media (min-width: 1025px) {
  .zweispalter--linie::after { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: #c9c9c9; }
}
.warum-titel { font-family: var(--font-body); font-weight: 800;
  font-size: clamp(1.875rem, 1.25rem + 2.55vw, 3rem); line-height: 1.15; }
.warum-einleitung { margin-top: 40px; font-size: 16.5px; font-weight: 600; line-height: 1.6; }
.warum-text { margin-top: 24px; font-size: 16.5px; line-height: 1.6; }
.warum-logo { display: grid; place-items: center; }
.warum-logo img { width: 340px; max-width: 100%; height: auto; }

.bild-band--technik { --band-bild: url('../img/seite/physiotherapie-schimpf-unsere-leistungen.webp');
  background-color: var(--color-band); color: #fff; padding: 200px 60px; }
@media (max-width: 767px) { .bild-band--technik { padding: 100px 20px; } }
.bild-band--technik::before { background-color: var(--color-primary); opacity: .82; }
.technik-text { margin-top: 32px; max-width: 800px; }

.technik-karte { aspect-ratio: 1; max-width: 308px; padding: 50px 20px; display: grid; align-content: center; }
.technik-karte h3 { font-size: 24px; margin-top: 0; }
.technik-karte p { font-size: 17px; }

.bild-band--trainiert { --band-bild: url('../img/seite/physiotherapie-anne-schimpf-therapie.webp');
  background-color: var(--color-text); color: #fff; }
.bild-band--trainiert::before { background-color: #2d2d2b; opacity: .72; }
.trainiert-cta { margin-top: 40px; }
.trainiert-liste { margin: 0; padding-left: 20px; display: grid; gap: 24px; }
.trainiert-liste li { font-size: 19px; line-height: 1.65; }
.trainiert-liste strong { color: var(--color-primary); font-weight: 700; }

.riesen-titel--eng { margin-bottom: 24px; }
.schritte-unterzeile { font-size: 17.28px; font-weight: 500; }
.schritte-bild { margin-top: 40px; }
.schritte-bild img { width: 558px; max-width: 100%; height: auto; }
.schritte-liste--athletic h3 { font-size: 32px; }
.schritte-sektion .btn { margin-top: 40px; }

.hero-unterseite__aktion--doppel { display: flex; gap: 30px; flex-wrap: wrap; }
.kontakt-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 64px; }
@media (max-width: 1024px) { .kontakt-karten { grid-template-columns: 1fr; } }
.kontakt-karte { padding: 40px 30px; background: #fff; box-shadow: 0 15px 30px -5px rgba(0, 0, 0, .1); }
.kontakt-karte h3 { font-family: var(--font-body); font-size: 24px; font-weight: 900; margin-top: 12px; line-height: 1.1; letter-spacing: -.5px; }
.kontakt-karte__adresse { font-size: 14px; font-weight: 500; color: var(--color-muted); margin-top: 8px; }
.kontakt-karte__merkmale { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 8px; }
.kontakt-karte__merkmale li { font-size: 14px; font-weight: 500; padding-left: 22px; position: relative; }
.kontakt-karte__merkmale li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 800; }
.kontakt-karte__zeiten { background: #fff; padding: 15px; margin-top: 20px; }
.kontakt-karte__zeiten p { display: flex; justify-content: space-between; font-size: 13px; }
.kontakt-karte__zeiten span { color: var(--color-muted); font-weight: 500; }
.kontakt-karte__zeiten strong { color: var(--color-text); font-weight: 700; }
.kontakt-karte__tel { margin-top: 20px; }
.kontakt-karte__tel .btn { width: 100%; }
.kontakt-karte .karten-platzhalter { margin-bottom: 20px; }

.danke-kopf { background: var(--color-band); text-align: center; }
.danke-inner { max-width: 1020px; margin-inline: auto; }
.danke-adresse { font-size: 20px; font-weight: 500; }
.danke-titel { font-family: var(--font-head); font-weight: 900; text-transform: uppercase;
  line-height: 1.15; margin-top: 55px; }
.danke-titel__z1, .danke-titel__z2 { display: block; }
.danke-titel__z1 { font-size: clamp(2.0625rem, 1.668rem + 1.619vw, 3.125rem); }
.danke-titel__z2 { font-size: clamp(1.3125rem, .639rem + 2.762vw, 3.125rem); margin-top: 30px; }
.danke-feedback-titel { font-family: var(--font-head); font-weight: 400; color: var(--color-primary);
  font-size: clamp(1.3125rem, .639rem + 2.762vw, 3.125rem); line-height: 1.15; margin-top: 130px; }
.feedback-karte { max-width: 1020px; margin: 29px auto 0; background: #fff; border-radius: 15px;
  padding: 30px; text-align: left; }
.feedback-karte legend { font-size: 20px; font-weight: 600; color: var(--color-muted-2); margin-bottom: 12px; padding: 0; }
.feedback-karte fieldset { border: 0; padding: 0; margin: 0 0 32px; }
.feedback-optionen { display: flex; flex-direction: column; gap: 10px; }
.feedback-optionen label { font-size: 15px; font-weight: 500; color: var(--color-muted-2);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.feedback-optionen input { accent-color: var(--color-primary); }
.feedback-karte .datenschutz-zeile { font-size: 15px; font-weight: 500; color: var(--color-muted-2); }
.feedback-karte .datenschutz-zeile a { color: var(--color-primary); font-weight: 500; }
.feedback-absenden { display: flex; align-items: center; justify-content: center; width: 100%;
  margin-top: 29px; padding: 0 30px; height: 40px; }
.feedback-absenden span { font-size: 18px; line-height: 18px; font-weight: 600; }
.danke-arbeitsweg { background: #fff; }
.danke-arbeitsweg .h-display--poppins { color: var(--color-text-nav);
  font-size: clamp(1.875rem, 1.411rem + 1.905vw, 3.125rem); }
.danke-arbeitsweg__text { font-size: 20px; margin-top: 24px; }
.danke-arbeitsweg .karten-schutz { width: 445px; max-width: 100%; margin-left: auto; }
@media (max-width: 767px) { .danke-arbeitsweg .karten-schutz { width: 290px; margin-inline: auto; } }
.danke-schluss-band { background: #fff; padding-top: 50px; }
.danke-schluss { text-align: center; font-size: 20px; }
.danke-kopf { padding-bottom: 180px; }
.danke-arbeitsweg { padding-top: 220px; padding-bottom: 120px; }
@media (max-width: 767px) {
  .danke-kopf { padding-bottom: 120px; }
  .danke-arbeitsweg { padding-top: 120px; padding-bottom: 61px; }
  .danke-arbeitsweg .zweispalter { gap: 153px; }
  .danke-arbeitsweg .danke-inner { max-width: 290px; }
}

.faq-unterzeile { text-align: center; font-size: 16px; font-weight: 500; color: var(--color-muted); margin-top: 16px; }
.faq-liste { margin-top: 56px; }
.sektion--verlauf .h-display--poppins { font-weight: 900; }

.rechtstext { max-width: 1120px; }
.rechtstext h1 { font-family: var(--font-body); font-size: clamp(1.75rem, 1.02rem + 3vw, 2.625rem);  font-weight: 900; line-height: 1; color: var(--color-text); margin-bottom: 40px;  }
.rechtstext h2 { font-family: var(--font-body); font-size: 24px; font-weight: 800; color: var(--color-text); margin-top: 48px; }
.rechtstext p { font-size: 16px; line-height: 1.7; margin-top: 20px; }
.rechtstext ul { margin: 20px 0 0; padding-left: 22px; display: grid; gap: 16px; }
.rechtstext li { font-size: 16px; line-height: 1.6; }
.rechtstext strong { color: var(--color-primary); font-weight: 700; }
.rechtstext p strong { color: var(--color-text); }
.rechtstext a { color: var(--color-primary); font-weight: 600; word-break: break-word; }
.rechtstext-quelle { font-size: 13px; color: var(--color-muted); font-weight: 400; }
.rechtstext p:has(> .rechtstext-quelle) { margin-top: 68px; }

.funnel-fehler { text-align: center; color: var(--color-primary); font-weight: 600; margin-bottom: 24px; }

.btn { line-height: 1.125; text-transform: uppercase; }
.btn--gross { line-height: 1; text-transform: none; }
.h-display { text-transform: uppercase; }
.stellen-liste h2 { text-transform: uppercase; }
.hero-start__willkommen { line-height: 1.15; }
.footer-minimal { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-minimal a:first-child { text-align: right; }
.footer-minimal a:last-child { text-align: left; }
.bild-band--grow { text-align: center; }
.standorte-kopf .h-display { text-align: center; }
.stimme figcaption { text-align: left; }
.funnel .pflicht { color: inherit; }

.btn--gross { text-transform: uppercase; }
.karten-platzhalter__btn { font: inherit; font-size: 14px; font-weight: 600; line-height: 1.5; font-family: var(--font-body); }
.karten-platzhalter__info { line-height: 1.25; }
.karten-platzhalter p { line-height: 1.25; }

.standort__titel { text-transform: uppercase; letter-spacing: .3px; }
.standort__route { text-transform: uppercase; }

.stimme blockquote { font-style: italic; }
.stimme figcaption span { line-height: 1.5; }

.hero-start__intro { margin-top: 20px; }
.stellen-liste h2 { margin-bottom: 30px; }

.bild-band--grow h2 { max-width: 270px; margin-inline: auto; }

.funnel label, .funnel legend { line-height: 1; }
.funnel .feld { margin-bottom: 40px; }
.funnel__schritt-punkt { background: #fff; border: 1px solid #93001f; color: var(--color-text); }
.funnel__schritt-punkt[aria-current="step"] { background: var(--color-primary); border-color: #fff; color: #fff; }
.funnel-kopf p { margin-top: 30px; }
.funnel-kopf p + p { margin-top: 22px; }

.site-nav a { line-height: 20px; text-transform: uppercase; letter-spacing: .5px; }

.btn { letter-spacing: .5px; }
.h-display, .team-titel, .recover-titel, .riesen-titel, .warum-titel, .karriere-teaser__titel { letter-spacing: 0; }
.vergleich .riesen { letter-spacing: -.5px; }
.standort__titel { letter-spacing: .3px; }

.hero-video--home .btn { padding-block: 16px; }

.vergleich h4 { line-height: 1.3; }

.sektion--foto-hell::before { opacity: .35; }

.bild-band--cta-rot::before {
  background-image: url('../img/seite/webseite-texte-und-bilder-jk-2.webp');
  background-repeat: no-repeat; background-position: center left; background-size: contain;
  opacity: .7;
}

.standort { border: 1px solid var(--color-band); }
.karten-schutz { margin: 0; border: 0; border-radius: 0; background: transparent; overflow: visible; }
.karten-schutz__inner { padding: 0; }
.karten-platzhalter { background: var(--color-surface); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.karten-platzhalter__btn { display: block; width: 100%; margin-top: 12px; padding: 12px 20px;
  background: var(--color-consent-btn); color: #fff; border: 0; cursor: pointer; border-radius: var(--radius-sm); }

.vergleich .btn, .sektion--team .btn, .standort__cta .btn { min-width: 250px; }

.sektion--kreise .zweispalter div > p:last-child { margin-top: 67px; }
.sektion--team .btn { margin-top: 61px; }
.standorte { margin-top: 18px; }

.site-footer { background: transparent; }
.site-footer .footer-band { background-color: #fff; }
.footer-band__inner { align-items: flex-start; }
.footer-band .footer-signet { margin-top: 30px; }
.footer-band p, .footer-band a { text-transform: uppercase; }
.social__link .visually-hidden { font-size: 20px; line-height: 20px; text-align: center; }

.kontakt-standorte .h-display { font-size: clamp(1.875rem, 1.03rem + 3.46vw, 3rem); }
.kontakt-karte { background: transparent; box-shadow: none; padding: 40px 30px; }
.kontakt-karte__zeiten { min-height: 73px; }

.riesen-titel { line-height: 1; }
@media (max-width: 767px) { .riesen-titel { line-height: 1.05; } }
.leistungs-karte__icon svg { width: 60px; height: 60px; }
.leistungs-karte h3 { margin-top: 28px; }
.leistungs-karte p { margin-top: 28px; }

@media (max-width: 1024px) {
  .karten-raster { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 80%;
    overflow-x: auto; scroll-snap-type: x mandatory; justify-items: stretch;
    scrollbar-width: none; padding-bottom: 8px; }
  .karten-raster::-webkit-scrollbar { display: none; }
  .karten-raster > * { scroll-snap-align: center; max-width: none; }
}

.rechtstext h1 { font-family: var(--font-head); }
.rechtstext h2 { font-family: var(--font-head); }
@media (max-width: 767px) { .rechtstext h2 { font-size: 20px; line-height: 26px; } .rechtstext.sektion { padding-inline: 30px; }  }
.sektion--verlauf .h-display--poppins { font-family: var(--font-head); font-weight: 900; }
.danke-arbeitsweg .h-display--poppins { font-family: var(--font-head); }

.team-titel, .recover-titel, .riesen-titel, .warum-titel, .karriere-teaser__titel,
.danke-titel, .schmerz-titel, .kontakt-standorte .h-display { letter-spacing: -.5px; }
.kontakt-standorte .h-display { line-height: 1.1; }

.bild-band--technik { text-align: center; }
.bild-band--technik .technik-text { margin-inline: auto; }

.leistungs-band--perform .karten-raster { max-width: 780px; margin-right: auto; gap: 25px; }
.leistungs-band--recover .karten-raster { max-width: 785px; margin-left: auto; gap: 22px; }
.leistungs-band--relax .karten-raster { max-width: 780px; margin-right: auto; gap: 25px; }
.leistungs-karte { max-width: none; }

@media (max-width: 1024px) {
  .karten-raster { grid-auto-columns: 100%; }
  .leistungs-karte { padding: 40px 25px; }
  .leistungs-karte h3 { font-size: 16px; line-height: 1.2; }
  .leistungs-karte--schmal h3 { font-size: 16px; line-height: 1.25; }
  .leistungs-karte p { font-size: 13px; }
}

.feedback-optionen label, .feedback-karte .datenschutz-zeile { line-height: 20px; }

@media (max-width: 767px) {
  .zweispalter { text-align: center; }
  .zweispalter figure img { margin-inline: auto; }
  .trainiert-liste { text-align: left; }
}

.footer-band p, .footer-band a { font-size: inherit; }
.trainiert-liste li { font-size: inherit; }
.standorte-kopf p strong { font-size: inherit; }
.hero-start__willkommen, .hero-start__intro { font-size: inherit; }

.team-titel, .recover-titel, .karriere-teaser__titel { letter-spacing: .5px; }
.philosophie .h-display { letter-spacing: -.5px; }

.schritte-liste h3 { background: var(--verlauf-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.feedback-karte legend { line-height: 20px; }
@media (max-width: 767px) {
  .funnel label, .funnel legend, .feedback-karte legend { font-size: 15px; }
  .schritte-liste p { font-size: 15px; line-height: 24px; }
}

.standort .karten-schutz { margin: 0 -30px; }
.kontakt-karte .karten-schutz { margin: 0 -30px 20px; }

.site-footer .footer-band { min-height: 263px; }

@media (max-width: 1024px) {
  .standorte, .kontakt-karten { display: grid; grid-template-columns: none; grid-auto-flow: column;
    grid-auto-columns: 80%; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding-bottom: 8px; }
  .standorte::-webkit-scrollbar, .kontakt-karten::-webkit-scrollbar { display: none; }
  .standorte > *, .kontakt-karten > * { scroll-snap-align: center; }
}

.funnel label, .funnel legend { margin-bottom: 8px; }
.funnel input[type="text"], .funnel input[type="tel"], .funnel input[type="email"], .funnel select {
  padding: 8px 12px; }

.funnel input[type="text"], .funnel input[type="tel"], .funnel input[type="email"], .funnel select,
.funnel textarea { font-size: 16px; }
.funnel .feld { margin-bottom: 18px; }

.standort__titel { margin-top: 27px; }

.bild-band--team-rot::before { background-image: url('../img/seite/webseite-texte-und-bilder-jk-2.webp');
  background-repeat: no-repeat; background-position: center left; background-size: contain; }

.ueberzeile { color: var(--color-primary); font-weight: 800; letter-spacing: 1.5px; }
.philosophie .h-display { font-family: var(--font-body); }
.karriere-teaser__titel { letter-spacing: -.5px; }
.karriere-teaser .ueber-unterzeile { font-weight: 800; }
.philosophie-karte { background: transparent;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, .1); }
.philosophie-karte p { margin-top: 0; }

.philosophie-karte__icon { display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; margin: 34px auto 25px; padding: 12px;
  background: #fff; border-radius: 50%; box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
  color: var(--color-primary); }
.philosophie-karte__icon svg { width: 100%; height: 100%; }
.philosophie__karten { margin-top: 34px; }
.philosophie-karte h3 { letter-spacing: 0; }

.sektion .ueber-text + p .btn, .ueber-text ~ p .btn { margin-top: 0; }
.zweispalter .ueber-text + p:not(.ueber-text) { margin-top: 56px; }
.ueber-text + .ueber-text { margin-top: 20px; }

.kontakt-karte .karten-schutz { margin: -40px -30px 20px; }
.hero-kontakt .hero-unterseite__intro { margin-top: 14px; }
.kontakt-karte__merkmale { margin-top: 46px; }
.kontakt-karte__zeiten { margin-top: 35px; }
.kontakt-karte__tel { margin-top: 46px; }
.kontakt-karten { margin-top: 40px; }

.hero-home__text { max-width: 700px; flex: 1 1 auto; }
.hero-home__aktionen { flex: 0 0 auto; }

.zweispalter p + p { margin-top: 22px; }

@media (max-width: 1024px) {
  .karten-raster { margin-inline: -20px; padding-inline: 20px; }
  .standorte, .kontakt-karten { grid-auto-columns: 302px; }
}

@media (max-width: 1024px) {
  .vergleich { padding: 20px 0; }
  .vergleich__spalte { padding-inline: 0; min-width: 0; }
  .vergleich__spalte + .vergleich__spalte { margin-top: 48px; }
  .vergleich { grid-template-columns: 1fr; }
  .vergleich::after { display: none; }
}

.karten-platzhalter .karten-platzhalter__info { display: inline-block; padding: 13px 0; margin: 3px 0 -13px; line-height: 18px; }
@media (max-width: 767px) {
  .karten-platzhalter .karten-platzhalter__btn { margin-top: 8px; }
  .karten-platzhalter .karten-platzhalter__info { margin-top: -5px; }
}
.standort__tel, .standort__route { display: inline-block; padding-block: 12px; }

.footer-minimal a, .footer-band a { display: inline-block; padding-block: 10px; margin-block: -10px; }
.footer-band p { margin: 0; }

.swipe-dots button { width: 44px; height: 44px; padding: 17px; background-clip: content-box; border-radius: 50%; }

section[aria-labelledby="ueber-intro"] .ueberzeile { color: rgb(130,130,130); font-weight: 700; }
.schmerz-titel { margin-top: 14px; }
.h-hero--ueber { max-width: 764px; }
.ueber-unterzeile { font-size: clamp(1.125rem, 1.041rem + .343vw, 1.35rem); }
.philosophie .h-display { font-size: clamp(2rem, 1.629rem + 1.524vw, 3rem); line-height: 1.1; }
.philosophie-karte h3 { line-height: 1.1; }
.philosophie-karte h3 { font-size: clamp(1.375rem, 1.236rem + .571vw, 1.625rem); }
.philosophie__karten { margin-top: 79px; }
.karriere-teaser__titel { font-size: clamp(1.875rem, 1.364rem + 2.095vw, 3.25rem); line-height: 1.05; }
@media (max-width: 767px) {
  .ueber-text { font-size: 15px; }
  section[aria-labelledby="ueber-intro"] .zweispalter figure { display: none; }
  .karriere-teaser .zweispalter figure { order: -1; }
  .zweispalter .ueber-text + p:not(.ueber-text) { margin-top: 40px; }
  .bild-band--erstliga { padding: 200px 60px; }
  .philosophie__unterzeile { font-size: 16px; }
  .philosophie__karten { gap: 26px; }
  .philosophie-karte { padding: 40px 20px; }
  .philosophie .karten-cta { margin-top: 45px; }
}
section[aria-labelledby="ueber-intro"] { padding-bottom: 182px; }
.zweispalter .ueber-text + p:not(.ueber-text) { margin-top: 43px; }
.schmerz-titel { font-size: clamp(2.125rem, 1.614rem + 2.095vw, 3.5rem); }
@media (max-width: 767px) {
  section[aria-labelledby="ueber-intro"] { padding-bottom: 102px; }
  .philosophie__karten { margin-top: 49px; }
  .karriere-teaser { padding-bottom: 99px; }
}

.hero-kontakt .btn { padding: 16px 40px; max-width: 220px; }
.hero-kontakt .hero-unterseite__aktion--doppel { margin-top: 56px; }
.hero-kontakt .hero-unterseite__intro { max-width: 764px; }

.philosophie-karte__label { background: #f9e7e6; border-radius: 999px; padding: 4px 10px; }
.hero-kontakt .hero-unterseite__intro { margin-top: 30px; }
.kontakt-standorte .h-display { font-size: clamp(2rem, 1.629rem + 1.524vw, 3rem); }
.kontakt-karten { margin-top: 76px; }

.kontakt-karte { background-image: var(--verlauf-band); }
.kontakt-karte .karten-platzhalter { border-top: 3px solid var(--color-primary); }
@media (max-width: 1024px) {

  .kontakt-karten { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr;
    overflow: visible; margin-inline: 0; padding-inline: 0; }
}
@media (max-width: 767px) {
  .kontakt-standorte { padding-inline: 30px; }
  .kontakt-karte { padding: 30px 25px; }
  .kontakt-karte .karten-schutz { margin: -30px -20px 20px; }
  .kontakt-karte .karten-schutz > .karten-schutz__inner > p { margin-inline: 8px; }
  .kontakt-karten { margin-top: 47px; }
  .hero-kontakt { --hero-pad-mobil: 60px 30px; }
  .hero-kontakt .btn { max-width: none; }
  .kontakt-karte h3 { font-size: 20px; line-height: 1.1; }
  .kontakt-karte__tel { margin-top: 30px; }
  .kontakt-karte__adresse + .kontakt-karte__zeiten { margin-top: 25px; }
  .kontakt-standorte { padding-bottom: 42px; }
  .hero-kontakt .hero-unterseite__aktion--doppel { flex-direction: column; justify-self: stretch; }
  .hero-kontakt .hero-unterseite__aktion--doppel .btn { width: 100%; }
}

.warum-titel { letter-spacing: .3px; font-size: clamp(1.875rem, 1.457rem + 1.714vw, 3rem); }
.zweispalter--linie { padding: 60px 40px; }
.warum-titel { margin-top: 20px; }
@media (min-width: 768px) { .warum-text { margin-bottom: 19px; } }
.zweispalter--linie > div:first-child { max-width: 458px; }
.warum-einleitung { margin-top: 28px; }
.bild-band--trainiert .h-display { max-width: 250px; }
.trainiert-cta { margin-top: 97px; }
section[aria-label="Technik im Athletic Loft"] .karten-cta { margin-bottom: 42px; }
@media (min-width: 1025px) { .zweispalter--linie::after { background: rgb(48,48,48); opacity: .2; } }
.bild-band--technik .technik-text { text-align: left; }
.trainiert-liste { gap: 0; }

.bild-band--trainiert { background-color: #ececec; }
.bild-band--trainiert::before { background-color: rgba(255,255,255,0);
  background-image: url('../img/seite/hintergrund-ueberlagerung.webp');
  background-size: cover; background-position: center; opacity: .8; }

.technik-karte h3 { letter-spacing: .5px; line-height: 1.15; font-weight: 800; }
section[aria-label="Technik im Athletic Loft"] .karten-cta { margin-top: 44px; }

.schritte-sektion .riesen-titel { font-size: clamp(2.375rem, 1.771rem + 2.476vw, 4rem); line-height: 1; }
.schritte-sektion .schritte-bild { margin-top: 0; align-self: center; }
.schritte-liste--athletic h3 { letter-spacing: -.5px; }
.schritte-liste--athletic p { font-weight: 400; font-size: 15.84px; line-height: 25.3px; }
.schritte-liste--athletic { margin-top: 39px; }
@media (max-width: 767px) {
  .zweispalter--linie { padding: 40px 15px; }
  .zweispalter--linie figure { order: -1; }
  .warum-einleitung, .warum-text { font-size: 14.5px; line-height: 23.2px; }
  .bild-band--technik { padding: 200px 60px; }
  .technik-karte h3 { font-size: 20px; line-height: 23px; }
  section[aria-label="Technik im Athletic Loft"] .karten-cta { margin-top: 61px; }

  .bild-band--trainiert .zweispalter > div:first-child { display: contents; }
  .bild-band--trainiert .zweispalter > div:first-child > .h-display { order: 2; margin-top: 17px; max-width: none; text-align: left; }
  .bild-band--trainiert .trainiert-cta { order: 3; margin-top: 30px; }
  .bild-band--trainiert { padding-inline: 30px; }
  .trainiert-liste li { font-size: 18px; }
  section[aria-label="Technik im Athletic Loft"] { padding-bottom: 120px; }
  section[aria-label="Technik im Athletic Loft"] .karten-cta { margin-bottom: 60px; }
  .schritte-bild { margin-top: 0; }
  .schritte-sektion .riesen-titel { margin-top: 18px; }
  .trainiert-liste li { max-width: min(300px, 100%); }
  .warum-titel { margin-top: 0; }
  .bild-band--technik .technik-text { font-size: 18px; line-height: 29.7px; margin-top: 29px; }
  .bild-band--trainiert .trainiert-liste { order: 1; }
  section[aria-label="Technik im Athletic Loft"] { padding-bottom: 60px; }
  .schritte-sektion { padding-inline: 30px; }
  .schritte-liste--athletic h3 { font-size: 24px; }
  .schritte-liste--athletic p { font-size: 15px; line-height: 24px; }
  .schritte-sektion { padding-bottom: 20px; }
  .schritte-sektion .schritte-unterzeile { font-size: 16px; }
}

@media (max-width: 1024px) {
  section[aria-label="Technik im Athletic Loft"] .karten-raster {
    grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr;
    overflow: visible; justify-items: center; gap: 20px; margin-inline: 0; padding-inline: 0; }
  section[aria-label="Technik im Athletic Loft"] .technik-karte { max-width: 231px; padding: 40px 20px; }
}

.leistungs-karte__icon { display: block; height: 42px; }
.leistungs-karte__icon svg { display: block; width: 42px; height: 42px; margin-inline: auto; }
.leistungs-karte p { margin-top: 20px; }
.leistungs-band .karten-raster { margin-top: 0; }
.leistungs-band .riesen-titel { margin-bottom: 50px; }

.leistungs-band--recover .riesen-titel, .leistungs-band--relax .riesen-titel { line-height: 1.05; }
@media (max-width: 767px) {
  .leistungs-band .riesen-titel { text-align: center; }
  .leistungs-band .karten-raster { margin-top: 0; align-items: start; }
  .leistungs-band .riesen-titel { margin-bottom: 39px; }
  .leistungs-band--recover .riesen-titel, .leistungs-band--relax .riesen-titel { margin-bottom: 50px; }
  .schmerz-bestleistung { text-align: center; padding-top: 102px; }
  .schmerz-bestleistung .zweispalter { gap: 46px; }
  .schmerz-bestleistung .zweispalter ol { order: -1; }
  .schmerz-bestleistung .schritte-liste h3 { font-size: 22px; line-height: 1.1; }
  .schmerz-bestleistung .schritte-liste p { font-size: 15px; line-height: 24px; }
  .schmerz-text { font-size: 15px; line-height: 24px; }
}
@media (max-width: 1024px) {
  .leistungs-band .karten-raster { grid-auto-columns: 262px; }
  .leistungs-karte { padding: 40px 20px; }
}

.hero-video--home { --hero-pad-mobil: 60px 30px; }
.hero-video--home .btn { max-width: 220px; }

.standorte { grid-template-columns: repeat(3, 307px); justify-content: center; }
.standort { background: #fff; }
.standort .karten-platzhalter { background: transparent; border-radius: 0; padding: 0; }
.standort .karten-platzhalter .karten-schutz__inner { background: var(--color-surface); border-radius: var(--radius-sm); padding: 16px; }

.standort__tel { margin-top: 7px; margin-bottom: -12px; }
.standort__route { margin-top: 41px; margin-bottom: -12px; }
.standort__strasse { margin-top: 11px; }
.standort__label { margin-top: 8px; }
.standort .karten-schutz { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
.standorte { margin-top: 67px; }
.vergleich__spalte { max-width: 422px; margin-inline: auto; padding-inline: 0; }
.sektion--team { padding-top: 128px; }
.sektion--team .btn { margin-top: 23px; }
@media (max-width: 1024px) {

  .standorte { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr;
    overflow: visible; margin-inline: 0; padding-inline: 0; }
}
@media (max-width: 767px) {

  .sektion--kreise .zweispalter h2 { order: 2; }
  .sektion--kreise .zweispalter { text-align: left; }
  .hero-home__aktionen .btn { width: min(300px, 100%); max-width: none; }
  .cta-rot__aktion .btn { max-width: none; width: 310px; padding: 25px 40px; }
  .cta-rot__aktion { margin-top: 22px; }
  .logo-reihe { flex-direction: column; align-items: center; gap: 30px; }
  .logo-reihe img { width: 99px; height: 99px; }
  .sektion--kreise .btn { width: min(300px, 100%); }
  .sektion--kreise .zweispalter p:has(.btn) { margin-top: 8px; }
  .recover-titel + .vergleich { margin-top: -20px; }

  .standort { width: 264px; margin-inline: auto; padding: 0 30px 40px; }
  .standorte { margin-top: 49px; }
  .vergleich { padding: 10px 0; }
  .vergleich__spalte + .vergleich__spalte { margin-top: 103px; }
  section[aria-labelledby="standorte"] { padding-bottom: 32px; }
  .sektion--team { padding-top: 120px; padding-bottom: 44px; }
}

.bild-band--team-rot { max-width: 1058px; margin-inline: auto; }
#bewerben { padding-bottom: 2px; }
@media (max-width: 767px) {

  .sektion--kreise-start .standorte { margin-top: 41px; }
  .sektion--kreise-start .standort { width: 310px; margin-inline: auto; padding: 0 17px 40px; }
  .sektion--kreise-start { display: flex; flex-direction: column; }
  .sektion--kreise-start .standorte-kopf { display: contents; }
  .sektion--kreise-start .standorte-kopf h2 { order: 1; }
  .sektion--kreise-start .standorte { order: 2; }
  .sektion--kreise-start .standorte-kopf p { order: 3; margin-top: 146px; }
  .sektion--kreise-start .standorte-kopf p:last-child { order: 4; margin-top: 56px; }
  .sektion--kreise-start { padding-bottom: 2px; }
  .sektion--kreise-start .standort__label { margin-top: -16px; }
  .funnel-kopf h2 { margin-bottom: 71px; }
  .sektion--kreise-start .standort .karten-schutz { margin: 0 -17px; }
  section[aria-labelledby="upgrade"] { text-align: left; }
  .footer-minimal { flex-direction: column; align-items: center; gap: 0; }
  .hero-start__stellen { gap: 60px; }
  .hero-start__aktion { margin-top: 0; }
  .funnel label, .funnel legend { line-height: 20px; }
}

.ai-hinweis { display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .8125rem; margin: 0; padding: 14px 20px 18px; }
.ai-hinweis img { flex: none; width: 18px; height: 18px; opacity: .75; }
.footer-band .ai-hinweis { color: rgba(255, 255, 255, .85); text-transform: none; padding: 24px 0 0; }
.footer-band .ai-hinweis span { font-size: .8125rem; }
.site-footer--minimal .ai-hinweis { color: var(--color-muted); padding-top: 0; }

:root {
  --fs-xs: 13px;
  --fs-sm: 14.4px;
  --fs-md: 15px;
  --fs-lg: 16px;
  --fs-xl: 19px;
}
@media (max-width: 767px) {
  :root { --fs-xs: 13px; --fs-sm: 13px; --fs-md: 15px; --fs-lg: 16px; --fs-xl: 18px; }
}
@media (min-width: 1024px) {
  :root { --fs-xs: 15px; --fs-sm: 16px; --fs-md: 16.5px; --fs-lg: 17px; --fs-xl: 20px; }
}

.leistungs-karte p       { font-size: var(--fs-sm); }
.vergleich p             { font-size: var(--fs-md); }
.philosophie-karte p     { font-size: var(--fs-md); }
.kontakt-karte__zeiten p { font-size: var(--fs-xs); }
.rechtstext p            { font-size: var(--fs-lg); }
.faq-eintrag p           { font-size: var(--fs-lg); }
@media (min-width: 1024px) {

  .schritte-liste p      { font-size: 18px; }
  .standort__strasse,
  .standort__label       { font-size: 17px; }
}

@media (min-width: 1024px) {
  .logo-reihe     { gap: clamp(90px, 12vw, 170px); align-items: center; }
  .logo-reihe img { width: 132px; height: 132px; }
}

.leistungs-karte { display: flex; flex-direction: column; }
.leistungs-karte h3 { min-height: calc(2em * 1.2); display: flex; align-items: center;
  justify-content: center; text-align: center; }
.leistungs-karte--schmal h3 { min-height: calc(2em * 1.25); }
.leistungs-karte p { flex: 1 0 auto; }

.site-footer { border-top: 0; }

.footer-band__inner {
  display: grid;

  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px; align-items: start; justify-content: initial;
}

.footer-ort, .footer-band .footer-spalte a { overflow-wrap: anywhere; }
.footer-spalte__titel {
  font-family: var(--font-head); font-size: 20px; font-weight: 500; color: #fff;
  text-transform: uppercase; letter-spacing: .5px; margin: 0 0 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, .28);
}
.footer-band .footer-spalte p,
.footer-band .footer-spalte a { font-size: var(--fs-xl); line-height: 1.7; }
.footer-band .footer-spalte p { margin: 0 0 6px; }
.footer-ort { margin-bottom: 18px !important; text-transform: none; }
.footer-ort strong { text-transform: uppercase; font-weight: 700; }
.footer-copyright {
  margin: 40px 0 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .28);
  font-size: var(--fs-xl); color: #fff; text-transform: none;
}
.footer-band .footer-marke { align-items: flex-start; }
.footer-band .social { gap: 14px; }
@media (max-width: 1023px) {
  .footer-band__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 34px; }
}
@media (max-width: 767px) {

  .footer-band__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 26px 20px; text-align: center; }
  .footer-band__inner > .footer-marke,
  .footer-band__inner > .footer-spalte:nth-child(2) { grid-column: 1 / -1; }
  .footer-band .footer-spalte p,
  .footer-band .footer-spalte a { line-height: 1.55; }
  .footer-band .footer-marke { align-items: center; }
  .footer-band__inner > div { margin-top: 0; }
  .footer-band__inner > div:last-child { margin-top: 0; }
  .footer-spalte__titel { font-size: 18px; margin-bottom: 14px; }
  .footer-copyright { margin-top: 30px; text-align: center; }
}

.diagnostik-weiter { max-width: 760px; margin-inline: auto; text-align: center; }
.diagnostik-weiter p { font-size: var(--fs-xl); line-height: 1.7; margin-top: 24px; }
.diagnostik-weiter__aktionen { display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; margin-top: 40px; }

.social-schwebend {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  display: inline-flex; align-items: center; gap: 0;
  min-width: 56px; height: 56px; padding: 0 15px;
  background: var(--color-primary); color: #fff; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
  text-decoration: none; overflow: hidden;
  transition: gap .18s ease, background-color .18s ease;
}
.social-schwebend:hover, .social-schwebend:focus-visible {
  background: var(--color-primary-dark); text-decoration: none;
}
.social-schwebend svg { flex: none; }
.social-schwebend__text {
  font-family: var(--font-head); font-size: 16px; text-transform: uppercase;
  letter-spacing: .5px; white-space: nowrap;
  max-width: 0; opacity: 0; transition: max-width .18s ease, opacity .18s ease;
}
@media (min-width: 1024px) {
  .social-schwebend:hover .social-schwebend__text,
  .social-schwebend:focus-visible .social-schwebend__text { max-width: 130px; opacity: 1; }
  .social-schwebend:hover, .social-schwebend:focus-visible { gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .social-schwebend, .social-schwebend__text { transition: none; }
}

.standort__bild { margin: 0 0 16px; }
.standort__bild img { width: 100%; height: 190px; object-fit: cover; display: block; }
.kontakt-karte .standort__bild img { height: 210px; }

.site-footer .footer-band {
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
                    url('../img/seite/footer-hintergrund.webp');
}

.footer-band .footer-signet img { width: 240px; }
.footer-band .footer-marke { gap: 24px; }
@media (max-width: 767px) { .footer-band .footer-signet img { width: 248px; } }

.site-header .logo { display: inline-flex; align-items: center; min-height: 44px; }

.footer-copyright span + span::before { content: " \00b7 "; }
@media (max-width: 767px) {
  .footer-copyright span { display: block; }
  .footer-copyright span + span::before { content: none; }
}

.funnel fieldset { min-inline-size: 0; }
.funnel select, .funnel input, .funnel textarea { max-width: 100%; }

.kontakt-karte__tel .btn span,
.standort__tel { white-space: nowrap; }

@media (max-width: 359px) {

  .kontakt-karte { padding-inline: 20px; }
  .kontakt-karte__tel .btn { padding-inline: 12px; }

  .riesen-titel { font-size: 1.75rem; }

  .footer-ort, .footer-band .footer-spalte a { hyphens: auto; overflow-wrap: break-word; }
}

@media (max-width: 374px) {
  .funnel__nav { flex-wrap: wrap; }
  .funnel__nav > * { flex: 1 1 100%; min-width: 0; }
}

.nach-oben {
  position: fixed; right: 20px; bottom: 20px; z-index: 899;
  width: 48px; height: 48px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary); color: #fff;
  border: 0; border-radius: 999px; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}
.nach-oben[hidden] { display: none; }
.nach-oben.ist-sichtbar { opacity: 1; transform: none; pointer-events: auto; }
.nach-oben:hover, .nach-oben:focus-visible { background: var(--color-primary-dark); }

.nach-oben--ueber-social { bottom: 88px; }
@media (prefers-reduced-motion: reduce) {
  .nach-oben { transition: none; transform: none; }
}

@media print {

  :where(body, p, li, dd, dt, td, th, h1, h2, h3, h4, h5, h6, span, strong, em, a, .btn, .btn span) {
    color: #000 !important;
    background: transparent !important;
    text-shadow: none !important;
  }
  body { background: #fff !important; }

  .bild-band::before, .bild-band::after, .sektion--verlauf-radial::before,
  .hero::before, .hero::after, [class*="__overlay"] { display: none !important; }
  .bild-band, .hero, .footer-band, [class*="--dunkel"], [class*="--rot"] {
    background-image: none !important; background-color: transparent !important;
  }

  .text-verlauf { -webkit-text-fill-color: #000 !important; color: #000 !important; background: none !important; }

  .nach-oben, .social-schwebend, .nav-toggle, .site-nav, .skip-link,
  video, .karten-schutz, .funnel, iframe { display: none !important; }

  .btn { border: 1px solid #000 !important; }

  .rechtstext a[href^="http"]::after,
  .rechtstext a[href^="mailto"]::after { content: " (" attr(href) ")"; font-size: .85em; word-break: break-all; }

  h1, h2, h3 { break-after: avoid-page; }
  .standort, .kontakt-karte, .leistungs-karte { break-inside: avoid-page; }
}
