

body, p, h1, h2, h3, h4, li, a, dd, dt, figcaption, blockquote, td, th {
  overflow-wrap: break-word;
}

:root {
  --color-bg: #ffffff;
  --color-surface: #F0F0F0;
  --color-surface-2: #FAFAFA;
  --color-text: #000000;
  --color-muted: #5B5755;
  --color-primary: #AC003A;
  --color-primary-dark: #8a002f;
  --color-accent: #FFCE00;
  --color-grey-band: #5C5A5D;
  --color-dark: #121212;
  --color-border: #e2e8f0;

  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 3px;
  --shadow: 0 4px 20px rgba(15, 23, 42, .08);

  --container: 1140px;
  --container-narrow: 760px;

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

@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

img, picture, video { max-width: 100%; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

*, *::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-text); }
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-text); }

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

.map-consent {
  margin-top: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.map-consent__inner { padding: var(--space-3); text-align: center; }
.map-consent__text { margin: 0 auto var(--space-2); max-width: 52ch; font-size: .95rem; color: var(--color-muted); }
.map-consent__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: 1024px) {
  .nav-toggle { display: block; }

  .site-nav .sub-menu { position: static; box-shadow: none; display: block;
                        background: transparent; padding-left: 1rem; }
  .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 (max-width: 719px) {
  .header-cta { padding: .5rem .7rem; font-size: .9rem; }
  .header-cta__label { display: none; }
}

@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%; }
}

.site-header { background: var(--color-bg); }
.header-inner { min-height: 141px; align-items: center; }
.logo img { display: block; width: 135px; height: 76px; object-fit: contain; }
.site-nav a { font-size: 18px; font-weight: 400; color: var(--color-text); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--color-primary); }

.site-nav .has-sub { position: relative; }
.site-nav .sub-caret::after { content: '▾'; font-size: .7em; margin-left: .35em; }
.site-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--color-bg); box-shadow: var(--shadow);
  border-radius: var(--radius-sm); padding: .5rem 0; margin: 0;
  list-style: none; display: none; z-index: 60;
}
.site-nav .sub-menu li { display: block; }
.site-nav .sub-menu a { display: block; padding: .45rem 1.1rem; font-size: 16px; }
.site-nav .has-sub:hover > .sub-menu,
.site-nav .has-sub:focus-within > .sub-menu { display: block; }

.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, var(--color-primary));
             opacity: var(--band-deckung, .46); }

.grau-band { background-color: var(--color-grey-band); color: #fff; }
.grau-band h2 { color: #fff; }

.partner-band { background-color: var(--color-grey-band); color: #fff;
                text-align: center; padding: 30px 1rem 10px; }
.partner-band h2 { color: #fff; font-size: 40px; font-weight: 600; margin: 0 0 20px; }
.partner-band p { font-size: 20px; font-weight: 400; line-height: 36px; margin: 0; }
.partner-band__logo { display: block; width: 231px; margin: 40px auto 0; }
.partner-band__logo img { width: 231px; height: 132px; object-fit: contain; }

.partner-band--slim { padding: 30px 1rem; }

.site-footer { background: var(--color-grey-band); color: #fff;
               border-top: 1px solid rgba(255,255,255,.15); padding: 2rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: start; }
.site-footer p { margin: 0 0 .5rem; font-size: 14px; line-height: 1.8; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.social { display: flex; gap: 20px; }
.social__link { display: inline-flex; align-items: center; justify-content: center;
                width: 36px; height: 36px; border-radius: 50%;
                background: var(--color-primary); color: #fff; }
.social__link:hover { background: var(--color-primary-dark); }

.ai-hinweis { display: flex; align-items: center; gap: .5rem;
              font-size: .8125rem; color: #EDEDED; margin: 1.25rem 0 0; }
.ai-hinweis img { flex: none; width: 18px; height: 18px; opacity: .8; }

.aktion-popup { position: fixed; inset: 0; z-index: 200;
                background: rgba(0, 0, 0, .85);
                display: flex; align-items: center; justify-content: center;
                padding: 1rem; overflow: auto; }
.aktion-popup[hidden] { display: none; }

.aktion-popup { align-items: flex-start; padding: 117px 1rem 1rem; }
.aktion-popup__karte { position: relative; width: 540px; max-width: 100%;
                       background: var(--color-dark); color: #fff;
                       border: 1px solid rgba(255,255,255,.2);
                       border-radius: 16px; padding: 0 0 36px;
                       overflow: hidden; text-align: center; }
.aktion-popup__karte > :not(.aktion-popup__bild):not(picture):not(.aktion-popup__schliessen) { margin-inline: 36px; }
.aktion-popup__bild { display: block; width: 100%; height: 180px; object-fit: cover; }
.aktion-popup__schliessen { position: absolute; top: .6rem; right: .8rem;
                            background: none; border: 0; color: #fff;
                            font-size: 1.6rem; cursor: pointer; line-height: 1; }
.aktion-popup__eyebrow { display: inline-block; width: 185px; font-size: 11px; font-weight: 800;
                         letter-spacing: .12em; text-transform: uppercase;
                         background: rgba(255,255,255,.06);
                         padding: 6px 0; margin: 25px 0 18px; }
.aktion-popup__titel { font-size: 30px; font-weight: 900; color: #fff; margin: 0; }
.aktion-popup__angebot { font-size: 30px; font-weight: 900; color: var(--color-accent);
                         margin: 2.5px 0 7px; }
.aktion-popup__satz { font-size: 14px; font-weight: 400; margin: 0 0 17px; }
.btn-aktion { display: block; background: var(--color-primary); color: #fff;
              font-size: 15px; font-weight: 900; padding: 17px 25px;
              border-radius: 8px; text-decoration: none; margin: 32px 0 0; }
.btn-aktion:hover { background: var(--color-primary-dark); }
.aktion-popup__badge { font-size: 12px; font-weight: 700; color: var(--color-accent); margin: 36px 0 5px; }
.aktion-popup__hinweis { font-size: 11px; color: #AAA; margin: 0; }

@media (max-width: 860px) {
  .header-inner { min-height: 80px; }
  .logo img { width: 89px; height: 50px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1rem; }

  .partner-band__logo { width: 175px; }
  .partner-band__logo img { width: 175px; height: 100px; }
}

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

.hero-video { position: relative; height: 765px; overflow: hidden; isolation: isolate; background: #000; }
.hero-video__medium { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-video::after { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(0,0,0,.25); }

.hero-video__inhalt { position: relative; padding-top: 259px; }
.hero-video h1 { color: #fff; font-size: 70px; font-weight: 400; line-height: 77px;
                 text-align: left; margin: 0 0 20px; }
.hero-video__inhalt p { color: #fff; font-size: 24px; font-weight: 400; line-height: 36px;
                        margin: 0 0 76px; }
.btn-rot.hero-video__cta { display: inline-flex; align-items: center; justify-content: center;
                           padding: 12px 28px; font-size: 15px; font-weight: 500;
                           line-height: 15px; }
.hero-video__social { position: absolute; left: 0; bottom: 38px; width: 72px; height: 186px;
                      background: var(--color-primary);
                      display: flex; flex-direction: column; justify-content: space-between;
                      padding: 15px 0; }
.hero-video__social a { display: flex; align-items: center; justify-content: center;
                        width: 52px; height: 52px; margin: 0 auto; color: #fff; }

.btn-rot { display: inline-block; background: var(--color-primary); color: #fff;
           font-size: 20px; font-weight: 500; padding: .7rem 1.6rem;
           border-radius: var(--radius-sm); text-decoration: none; }
.btn-rot:hover { background: var(--color-primary-dark); text-decoration: none; }
.btn-rot--gross { font-size: 22px; }

.beratung__text h2 { color: var(--color-primary); font-size: 40px; font-weight: 400;
                     line-height: 60px; text-align: left; margin: 0; }
.beratung__sub { color: #333; font-size: 18px; font-weight: 600; line-height: 25.2px; margin: 0 0 41px; }
.beratung__liste li { color: #5C5A5D; font-size: 18px; font-weight: 400; line-height: 32.4px;
                      margin-bottom: 3px; }
.beratung__text .btn-rot--gross { display: inline-flex; align-items: center; justify-content: center;
                                  padding: 12px 28px; font-size: 22px; font-weight: 400;
                                  line-height: 22px; }
.beratung__liste { margin: 0; }

.vm-kachel h2 { font-size: 40px; font-weight: 600; line-height: 40px; }
.vm-kachel__link { display: inline-flex; align-items: center; justify-content: center;
                   padding: 12px 24px; font-size: 22px; font-weight: 400; line-height: 22px; }

.beratung { padding: 4rem 0; background: var(--color-bg); }
.beratung__inner { display: grid; grid-template-columns: 556px 1fr; gap: 3rem; align-items: center; }
.beratung__bild img { border-radius: var(--radius-sm); }
.beratung__text h2 { font-size: 40px; font-weight: 400; margin: 0 0 .5rem; }
.beratung__sub { font-size: 18px; font-weight: 600; margin: 0 0 1rem; }
.beratung__liste { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.beratung__liste li { font-size: 18px; padding: .3rem 0 .3rem 1.8rem; position: relative; }
.beratung__liste li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; }

.vm-kachel { display: flex; flex-direction: column; align-items: center; justify-content: center;
             gap: 32px; min-height: 450px; padding: 10px; text-align: center; text-decoration: none; }
.vm-kachel--grau { background-color: var(--color-grey-band); }
.vm-kachel h2 { color: #fff; font-size: 40px; font-weight: 600; margin: 0; }
.vm-kachel__link { color: #fff; font-size: 22px; text-decoration: none;
                   background: var(--color-primary); border-radius: var(--radius-sm); }
.vm-kachel:hover { text-decoration: none; }
.vm-kachel:hover .vm-kachel__link { text-decoration: none; }

.intro-weiss { background: var(--color-bg); padding: 60px 0; text-align: center; }
.intro-weiss--breit { padding-bottom: 80px; }
.intro-weiss h2 { color: var(--color-primary); font-size: 40px; font-weight: 400;
                  line-height: 40px; margin: 0 0 20px; }
.intro-weiss p { color: #000; font-size: 18px; font-weight: 400; line-height: 27px; margin: 0; }

.band-fitness { color: #fff; padding: 80px 0 4rem; text-align: center; }
.band-fitness h2 { color: #fff; font-size: 60px; font-weight: 400; line-height: 60px; margin: 0 0 20px; }
.band-fitness__wir { font-size: 60px !important; }
.band-fitness p { color: #fff; font-size: 20px; font-weight: 400; line-height: 36px; }

.video-facade { max-width: 828px; margin: 1.5rem auto 0; }
.video-facade__start { position: relative; display: block; width: 100%; padding: 0; border: 0;
                       background: none; cursor: pointer; border-radius: var(--radius-sm); overflow: hidden; }
.video-facade__start img { width: 100%; height: auto; }
.video-facade__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
                      width: 84px; height: 84px; border-radius: 50%; background: rgba(172,0,58,.92); }
.video-facade__play::after { content: ''; position: absolute; top: 50%; left: 55%;
                             transform: translate(-50%, -50%);
                             border-style: solid; border-width: 16px 0 16px 26px;
                             border-color: transparent transparent transparent #fff; }
.video-facade__hinweis { position: absolute; left: 0; right: 0; bottom: 0;
                         background: rgba(0,0,0,.65); color: #fff; font-size: 13px; padding: .4rem; }
.video-facade iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius-sm); }

.band-studio { color: #fff; padding: 97px 0 283px; text-align: center; }
.band-studio h2 { color: #fff; font-size: 60px; font-weight: 400; line-height: 60px; margin: 0 0 1rem; }
.band-studio__angebot { font-size: 60px !important; margin-bottom: 2rem !important; }
.angebot-kacheln { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
                   margin-top: 22px; }

.angebot-kachel { background-image: var(--kachel-bild); background-size: cover;
                  background-position: center; border-radius: var(--radius-sm);
                  min-height: 400px; padding: 30px;
                  display: flex; flex-direction: column; justify-content: flex-end;
                  align-items: center; }
.angebot-kachel h3 { color: #fff; font-size: 30px; font-weight: 600; line-height: 42px; margin: 0 0 1.25rem; }
.angebot-kachel .btn-rot { font-size: 20px; font-weight: 500; line-height: 20px; padding: 14px 28px; }

.reviews-band { padding: 60px 0 160px; text-align: center; }
.reviews-band h2 { font-size: 60px; font-weight: 400; line-height: 60px; margin: 0 0 20px; }
.reviews-band p { color: #fff; font-size: 24px; font-weight: 400; line-height: 36px; max-width: 1140px; }
.reviews-liste { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.review { background: rgba(255,255,255,.95); color: var(--color-text); margin: 0;
          padding: 1.5rem; border-radius: var(--radius-sm); }
.review p { color: var(--color-text); font-size: 16px; }

@media (max-width: 960px) {

  .hero-video { height: 540px; }
  .hero-video__inhalt { padding-top: 261px; text-align: center; }
  .hero-video h1 { font-size: 45px; line-height: 49.5px; text-align: center; margin-bottom: 69px; }
  .hero-video__inhalt p { font-size: 14px; line-height: 21px; margin-bottom: 40px; }
  .hero-video__social { width: 44px; height: 130px; bottom: 10px; padding: 5px 0; }
  .hero-video__social a { width: 40px; height: 40px; }
  .beratung__inner { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .angebot-kacheln { grid-template-columns: 1fr; }
  .reviews-liste { grid-template-columns: 1fr; }

  .band-fitness__wir, .band-studio__angebot, .reviews-band h2,
  .band-fitness h2, .band-studio h2 { font-size: 40px !important; line-height: 40px; }
  .beratung__text h2 { font-size: 40px; line-height: 40px; }
  .intro-weiss p { font-size: 14px; line-height: 21px; }
  .reviews-band p { font-size: 14px; line-height: 21px; }
  .angebot-kachel h3 { font-size: 25px; line-height: 35px; }
  .band-fitness { padding-top: 70px; }
  .band-studio { padding-top: 49px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__medium { display: none; }
  .hero-video { background: url('/assets/img/quelle/gesamtesteam.jpg') center/cover; }
}

.karriere-hero { color: #fff; padding: 4rem 0; text-align: center; }
.karriere-hero h1 { color: #fff; font-size: 45px; font-weight: 600; line-height: 45px; margin: 0 0 1.5rem; }
.karriere-hero__bilder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.karriere-hero__bilder img { border-radius: var(--radius-sm); width: 100%; height: auto; }

.stellen-band { color: #fff; padding: 3.5rem 0; text-align: center; }
.stellen-band h2 { color: #fff; font-size: 48px; font-weight: 600; line-height: 52.8px; margin: 0 0 .75rem; }
.stellen-band p { color: #fff; font-size: 21px; margin: 0 0 1.25rem; }
.stellen-band__liste { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.stellen-band .btn-rot { font-size: 15px; font-weight: 500; line-height: 15px; border-radius: 5px; }

.karten-band { padding: 3.5rem 0; background: var(--color-bg); }
.karten-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; align-items: start; }
.info-karte { background: #fff; border-radius: 12px; box-shadow: var(--shadow);
              border: 1px solid var(--color-border); padding: 50px; }
.info-karte__icon { width: 115px; height: 115px; margin: 0 auto 1rem; }

.info-karte h3 { font-size: 28px; font-weight: 500; line-height: 44px; text-align: left;
                 letter-spacing: -1px; color: #000; margin: 0 0 1.25rem; }
.info-karte h4 { font-size: 16px; font-weight: 600; line-height: 24px; margin: 1.25rem 0 .25rem; }
.info-karte p, .info-karte li { font-size: 16px; font-weight: 300; line-height: 24px; }
.info-karte, .info-karte h4, .info-karte p, .info-karte li { color: #5B5755; }
.info-karte a { color: #333; }
.info-karte ul { padding-left: 1.2rem; margin: .25rem 0; }
.karten-band > .text-center { margin-top: 2.5rem; }
.karten-band .btn-rot { font-size: 18px; font-weight: 500; padding: 1rem 2.5rem; border-radius: 5px; }

@media (max-width: 960px) {
  .info-karte h3 { font-size: 26px; line-height: 28.6px; }
  .info-karte h4, .info-karte p, .info-karte li { font-size: 14px; }
}

.ansprech-band { color: #fff; padding: 4rem 0; }

.ansprech-band__inner { display: grid; grid-template-columns: minmax(0, 720px) minmax(0, 1fr); gap: 0; align-items: stretch; }
.ansprech-band__inner > * { min-width: 0; }
.ansprech-band__inner img { width: 100%; height: 100%; object-fit: cover; }
.ansprech-band__box { background: var(--color-primary); padding: 2.5rem 2rem; }
.ansprech-band__box { text-align: center; }
.ansprech-band__box h2 { color: #fff; font-size: 35px; font-weight: 600; line-height: 35px; margin: 0 0 1rem; }
.ansprech-band__box p { color: #fff; font-size: 18px; line-height: 32.4px; }
.ansprech-band .text-center { margin-top: 2.5rem; }

.prozess-band { background: var(--color-primary); color: #fff; padding: 3.5rem 0; text-align: center; }
.prozess-band__kicker { color: #fff; font-size: 20px; font-weight: 500; line-height: 24px;
                        letter-spacing: 3px; text-align: left; margin: 0 0 .25rem; }
.prozess-band h2 { color: #fff; font-size: 42px; font-weight: 500; line-height: 44px;
                   letter-spacing: -1px; text-align: left; margin: 0 0 2rem; }
.prozess-schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; }
.prozess-schritt h3 { color: #fff; font-size: 26px; font-weight: 400; line-height: 31.2px;
                      letter-spacing: -1px; margin: 0 0 .5rem; }
.prozess-schritt p { color: #fff; font-size: 16px; font-weight: 300; line-height: 28.8px; }
.prozess-band .btn-rot, .prozess-band .btn-grau { border-radius: 5px; }
.btn-grau { display: inline-block; background: var(--color-grey-band); color: #fff;
            font-size: 18px; font-weight: 500; padding: 1rem 2.2rem;
            border-radius: var(--radius-sm); text-decoration: none; border: 0; cursor: pointer; }
.btn-grau:hover { background: #4a484b; text-decoration: none; }
.prozess-band .text-center { margin-top: 2rem; }

.bereit-band { padding: 4rem 0; text-align: center; }
.bereit-band h2 { font-size: 52px; font-weight: 500; line-height: 44px; letter-spacing: -1px; margin: 0 0 1rem; }
.bereit-band p { color: #fff; font-size: 16px; font-weight: 300; margin: 0 0 1.5rem; }
.bereit-band .btn-rot { font-size: 18px; font-weight: 500; padding: 1rem 2.5rem; }

.karten-band .btn-rot, .bereit-band .btn-rot,
.ansprech-band .btn-rot, .prozess-band .btn-rot, .prozess-band .btn-grau {
  font-size: 18px; color: #F2FCFE; line-height: 14px; border-radius: 5px; }

.karriere-hero .btn-rot { font-size: 15px; font-weight: 500; line-height: 15px; border-radius: 5px; }
.funnel__weiter, .funnel__zurueck { font-size: 15px; font-weight: 500; line-height: 15px; border-radius: 5px; }
.ansprech-band__box strong { font-weight: 600; }
.bewerbung-band h2 { line-height: 70px; }
.bewerbung-band__hinweis { line-height: 70px; }
.bereit-band p { line-height: 28.8px; }

.bewerbung-band .feld label { color: #666; font-size: 20px; font-weight: 600; line-height: 36px; }

.bewerbung-band { padding: 4rem 0; background: var(--color-bg); }
.container--schmal { max-width: 820px; }
.bewerbung-band h2 { font-size: 42px; font-weight: 600; text-align: center; margin: 0 0 .5rem; }
.bewerbung-band__hinweis { font-size: 20px; font-weight: 300; text-align: center; margin: 0 0 2rem; }
.funnel__schritt { border: 1px solid var(--color-border); border-radius: 12px;
                   padding: 1.5rem; margin: 0 0 1.5rem; }
.funnel__anzeige { font-size: 15px; font-weight: 700; color: var(--color-primary); padding: 0 .5rem; }
.feld { margin-bottom: 1.1rem; }
.feld label { display: block; font-size: 20px; font-weight: 600; margin-bottom: .35rem; }
.feld input[type="text"], .feld input[type="tel"], .feld input[type="email"],
.feld select, .feld textarea {
  width: 100%; padding: .65rem .8rem; font: inherit; font-size: 16px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: #fff; color: var(--color-text);
}
.feld--check label { display: flex; gap: .6rem; align-items: flex-start; font-size: 15px; font-weight: 400; }
.feld--check input { margin-top: .25rem; }
.hp-feld { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-meldung { padding: 1rem; border-radius: var(--radius-sm); font-size: 16px; }
.form-meldung--ok { background: #e8f5e9; color: #1b5e20; }
.form-meldung--fehler { background: #fdecea; color: #8a1c12; }
.funnel__weiter, .funnel__zurueck { margin-top: .5rem; margin-right: .75rem; }

.funnel--js .funnel__schritt:not(.ist-aktiv) { display: none; }

@media (min-width: 700px) {
  .funnel__schritt { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
  .funnel__schritt > .feld, .funnel__schritt > button, .funnel__schritt > legend { grid-column: 1 / -1; }
  .funnel__schritt > .feld--halb { grid-column: auto; }
  .funnel__schritt > button { justify-self: start; }
  .funnel__schritt > .funnel__weiter:last-child { justify-self: end; }
}

.danke-hero { color: #fff; padding: 5rem 0; text-align: center; }
.danke-hero h1 { color: #fff; font-size: 45px; font-weight: 600; margin: 0 0 .75rem; }
.danke-hero p { color: #fff; font-size: 24px; }
.danke-anfahrt { padding: 3.5rem 0; }
.danke-anfahrt h2 { font-size: 40px; font-weight: 400; margin: 0 0 1rem; }
.danke-anfahrt p { font-size: 20px; font-weight: 300; line-height: 1.6; max-width: 820px; }

@media (max-width: 960px) {
  .karriere-hero__bilder, .karten-grid, .prozess-schritte { grid-template-columns: minmax(0, 1fr); }
  .ansprech-band__inner { grid-template-columns: minmax(0, 1fr); }
  .karriere-hero h1 { font-size: 32px; }
  .stellen-band h2, .bewerbung-band h2, .prozess-band h2 { font-size: 30px; }
  .bereit-band h2 { font-size: 34px; }
}

.kontakt-hero { color: #fff; padding: 4rem 0; }
.kontakt-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 614px); gap: 3rem; align-items: center; }
.kontakt-hero__inner > * { min-width: 0; }
.kontakt-hero__text h1 { color: #fff; font-size: 45px; font-weight: 600; margin: 0 0 1rem; }
.kontakt-hero__text p { color: #fff; font-size: 20px; }
.kontakt-karte { background: rgba(255, 255, 255, .88); border-radius: var(--radius-sm); padding: 1.75rem; }
.kontakt-karte .feld label { font-size: 16px; font-weight: 600; color: var(--color-text); }
.kontakt-karte__halb { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.kontakt-karte .feld--check label { color: var(--color-text); }

.kontakt-anfahrt { padding: 3.5rem 0; }
.kontakt-anfahrt__inner { display: grid; grid-template-columns: 547px 1fr; gap: 4rem; align-items: start; }
.kontakt-anfahrt h2 { font-size: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 1rem; }
.kontakt-anfahrt p { font-size: 20px; font-weight: 300; line-height: 1.5; }

.kontakt-daten { padding: 0 0 3.5rem; }
.kontakt-daten__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.kontakt-daten h2 { font-size: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 1rem; }
.kontakt-daten p { font-size: 20px; font-weight: 300; line-height: 1.8; }
.kontakt-daten a { color: var(--color-text); }

@media (max-width: 960px) {
  .kontakt-hero__inner, .kontakt-anfahrt__inner, .kontakt-daten__inner { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .kontakt-hero__text h1 { font-size: 32px; }
  .kontakt-anfahrt h2, .kontakt-daten h2 { font-size: 30px; }
}

.recht-hero { background: var(--color-primary); height: 360px; padding: 160px 6% 0; }
.recht-hero > .container { max-width: none; padding-inline: 0; }
.recht-hero h1 { color: #fff; font-size: 40px; font-weight: 400; line-height: 40px;
                 text-align: left; margin: 0; }
.recht-seite { padding: 60px 0; text-align: center; }
.recht-seite h2 { font-size: 20px; font-weight: 600; line-height: 28px; color: #333; margin: 0 0 20px; }
.recht-seite p { font-size: 20px; font-weight: 300; line-height: 30px; color: #000; margin: 0 0 20px; }
.recht-seite a { color: #333; }

@media (max-width: 960px) {
  .recht-hero { height: auto; padding: 39px 5%; text-align: center; }
  .recht-hero h1 { font-size: 30px; line-height: 30px; text-align: center; }
}

.trenner { border: 0; border-top: 4px solid var(--trenner-farbe, var(--color-grey-band));
           width: 100%; max-width: 570px; margin: 0 0 1.75rem; }
.trenner--mitte { margin-inline: auto; }

.leistung-hero { min-height: 900px; display: flex; align-items: center;
                 padding-block: 5rem; color: #fff; }
.leistung-hero .container { width: 100%; }
.leistung-hero h1 { font-size: 40px; font-weight: 400; line-height: 1.1; color: #fff;
                    margin: 0 0 1.75rem; max-width: 900px; }
.leistung-hero .trenner { --trenner-farbe: #fff; }
.leistung-hero p { font-size: 20px; font-weight: 300; line-height: 30px; color: #fff;
                   max-width: 660px; margin: 0 0 2.25rem; }
.leistung-hero .btn-rot { font-size: 22px; font-weight: 400; padding: 12px 24px; }

.leistung-text { padding-block: 4.5rem; }
.leistung-text h2 { font-size: 40px; font-weight: 400; line-height: 1.15;
                    color: var(--color-primary); text-align: center; margin: 0 0 1.5rem; }
.leistung-text p { font-size: 20px; font-weight: 300; line-height: 30px;
                   text-align: center; margin: 0 0 1.5rem; }
.leistung-text p:last-child { margin-bottom: 0; }
.leistung-text ul { font-size: 20px; font-weight: 300; line-height: 30px;
                    max-width: 900px; margin: 0 auto 1.5rem; padding-left: 1.4rem; }
.leistung-text--links h2, .leistung-text--links p { text-align: left; }
.leistung-text__bild { margin: 2.5rem auto 0; max-width: 900px; }
.leistung-text__bild img { width: 100%; height: auto; border-radius: var(--radius-sm); }

.grau-karten { display: grid; gap: 2rem; margin-top: 2.5rem; }
.grau-karten--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grau-karten--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grau-karte { background: var(--color-surface); padding: 30px; }
.grau-karte h2, .grau-karte h3 { font-size: 30px; font-weight: 400; color: var(--color-primary);
                                 margin: 0 0 1rem; text-align: left; }
.grau-karte p, .grau-karte li { font-size: 20px; font-weight: 300; line-height: 30px;
                                text-align: left; margin: 0 0 1rem; }
.grau-karte p:last-child, .grau-karte li:last-child { margin-bottom: 0; }
.grau-karte ul { padding-left: 1.3rem; margin: 0; }

.yt-band { padding-block: 4.5rem; }
.yt-band__inner { display: grid; grid-template-columns: 547px 1fr; gap: 4rem; align-items: center; }
.yt-band__bild img { width: 100%; height: auto; border-radius: var(--radius-sm); }
.yt-band h2 { font-size: 40px; font-weight: 400; line-height: 1.15;
              color: var(--color-primary); margin: 0 0 1.5rem; }
.yt-band .trenner { max-width: 370px; }
.yt-band p { font-size: 20px; font-weight: 300; line-height: 30px; margin: 0 0 1.25rem; }
.yt-band a { color: var(--color-muted); }
.btn-rot--pfeil { display: inline-flex; align-items: center; gap: .5rem;
                  font-size: 22px; font-weight: 400; padding: 12px 24px; }
.btn-rot--pfeil svg { flex: none; }

.knopf-mitte { text-align: center; margin-top: 2.5rem; }

@media (max-width: 960px) {
  .leistung-hero { min-height: 560px; padding-block: 3.5rem; }
  .leistung-hero h1 { font-size: 30px; }
  .leistung-text { padding-block: 3rem; }
  .leistung-text h2 { font-size: 30px; }
  .yt-band { padding-block: 3rem; }
  .yt-band__inner { grid-template-columns: 1fr; gap: 2rem; }
  .yt-band h2 { font-size: 30px; }
  .grau-karten--2, .grau-karten--3 { grid-template-columns: minmax(0, 1fr); }
  .trenner { max-width: 260px; }
}

.leistung-text__zwischen { font-size: 20px; font-weight: 600; line-height: 30px;
                           text-align: center; margin: 2rem 0 1rem; color: var(--color-text); }
.leistung-text--links .leistung-text__zwischen { text-align: left; }
.leistung-text__liste { font-size: 20px; font-weight: 300; line-height: 30px;
                        list-style-position: inside; text-align: center; margin: 0 0 1.5rem; padding: 0; }
.grau-karte--breit { grid-column: 1 / -1; }

.austattung { padding-block: 5rem; background-image: url('/assets/img/quelle/gesamtesteam-1-1.jpg');
              background-position: center right; background-repeat: no-repeat; background-size: 85% auto; }
.austattung__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.austattung__bild { min-height: 619px; background-size: cover; background-position: center; }
.austattung__text { display: flex; flex-direction: column; justify-content: center; }
.austattung h2 { font-size: 40px; font-weight: 400; line-height: 1; color: var(--color-primary); margin: 0 0 1.25rem; }
.austattung p { font-size: 20px; font-weight: 300; line-height: 1.5em; margin: 0 0 1.25rem; }
.austattung p:last-child { margin-bottom: 0; }

.fragen-band { padding-block: 60px; text-align: center;
               background-color: var(--color-primary); background-position: center;
               background-repeat: no-repeat; background-size: cover; }
.fragen-band h2 { font-size: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 1.25rem; }
.fragen-band p { font-size: 20px; font-weight: 300; line-height: 30px; color: #fff; margin: 0 0 1rem; }
.fragen-band .btn-rot { margin-top: 1rem; font-size: 22px; padding: 12px 24px; }

.angebote-band { padding-block: 4.5rem; }
.angebote-band h2 { font-size: 40px; font-weight: 400; color: var(--color-primary);
                    text-align: center; margin: 0 0 1.5rem; }
.angebot-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.angebot-karte { position: relative; isolation: isolate; min-height: 284px; display: flex;
                 align-items: flex-end; background-size: cover; background-position: center;
                 padding: 1.75rem 1.5rem; overflow: hidden; }
.angebot-karte::before { content: ''; position: absolute; inset: 0; z-index: -1;
                         background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 100%); }
.angebot-karte__inhalt { width: 100%; text-align: center; color: #fff; }
.angebot-karte h3 { font-size: 23px; font-weight: 600; line-height: 32.2px; color: #fff; margin: 0 0 .5rem; }
.angebot-karte p { font-size: 14px; font-weight: 400; line-height: 25.2px; color: #fff; margin: 0 0 1rem; }
.btn-rot--klein { font-size: 15px; font-weight: 500; padding: .55rem 1.1rem; }

@media (max-width: 960px) {
  .austattung { padding-block: 3rem; background-image: none; }
  .austattung__inner { grid-template-columns: 1fr; gap: 2rem; }
  .austattung__bild { min-height: 260px; }
  .austattung h2, .fragen-band h2, .angebote-band h2 { font-size: 30px; }
  .angebot-karten { grid-template-columns: 1fr; }
  .leistung-text__zwischen { text-align: left; }
}

.trainer-profil { padding-block: 30px 9px; }
.trainer-profil__name { font-size: 50px; font-weight: 500; line-height: 55px;
                        letter-spacing: -2px;
                        color: var(--color-primary); text-align: center; margin: 0 0 20px; }
.trainer-profil__rolle { font-size: 30px; font-weight: 500; line-height: 33px;
                         letter-spacing: -1.5px;
                         color: var(--color-grey-band); text-align: center; margin: 0 0 60px; }
.trainer-profil__inner { display: grid; grid-template-columns: 371px 1fr; gap: 4rem; align-items: start; }
.trainer-profil__bild img { width: 371px; height: 464px; object-fit: cover; border-radius: var(--radius-sm); }
.trainer-profil__text h2 { font-size: 30px; font-weight: 500; line-height: 33px;
                           color: var(--color-primary); margin: 0 0 35px; }
.trainer-profil__text h2 + ul { margin-bottom: 36px; }
.trainer-profil__text ul { list-style: disc; padding-left: 1.3rem; margin: 0; }
.trainer-profil__text li { font-size: 18px; font-weight: 400; line-height: 32.4px; }

.trainer-kontakt { background: var(--color-grey-band); color: #fff; padding-block: 60px; text-align: center; }
.trainer-kontakt h2 { font-size: 50px; font-weight: 500; line-height: 55px; letter-spacing: -2px;
                      color: #fff; margin: 0 0 50px; }

.trainer-kontakt > .container > p { font-size: 18px; font-weight: 400; line-height: 32.4px;
                                    color: inherit; margin: 0 0 20px; }
.trainer-kontakt > .container > p:last-of-type { margin-bottom: 0; }
.trainer-kontakt__karte { background: rgba(255,255,255,.88); color: var(--color-text); padding: 30px;
                          margin-top: 41px; text-align: left; border-radius: var(--radius-sm); }
.trainer-kontakt__karte a { color: inherit; }
.trainer-kontakt__halb { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.trainer-kontakt__karte label { font-size: 14px; font-weight: 400; line-height: 25.2px; }
.trainer-kontakt__karte .feld { margin-bottom: 18px; }
.trainer-kontakt__karte .feld > label { margin-bottom: 0; }
.trainer-kontakt__karte .feld input[type="text"],
.trainer-kontakt__karte .feld input[type="tel"],
.trainer-kontakt__karte .feld input[type="email"] { height: 40px; padding: 8px 12px; font-size: 14px; }

.trainer-kontakt__karte .feld textarea { display: block; height: 45px; padding: 8px 12px; font-size: 14px; }
.trainer-kontakt__karte .feld--check { margin-bottom: 0; }
.trainer-kontakt__karte .feld--check label { font-size: 14px; line-height: 25.2px; }

.trainer-kontakt__senden { display: flex; align-items: center; justify-content: center;
                           width: 100%; max-width: 533px; height: 40px; margin: 20px auto 0;
                           font-size: 12px; font-weight: 500; letter-spacing: 1.2px;
                           padding: 0 20px; border: 0; cursor: pointer; }
.btn-rot.trainer-kontakt__senden { line-height: 12px; }

@media (max-width: 960px) {
  .trainer-profil { padding-bottom: 39px; }
  .trainer-profil__name, .trainer-kontakt h2 { font-size: 40px; line-height: 48px; letter-spacing: 0; }
  .trainer-profil__rolle { font-size: 25px; line-height: 30px; letter-spacing: 0; margin-bottom: 60px; }
  .trainer-profil__text h2 { font-size: 25px; line-height: 30px; }
  .trainer-profil__inner { grid-template-columns: 1fr; gap: 2rem; justify-items: center; }
  .trainer-profil__bild img { width: 100%; max-width: 371px; height: auto; }
  .trainer-kontakt { padding-block: 30px 0; }

  .trainer-kontakt > .container { padding-inline: 0; }

  .trainer-kontakt__halb { grid-template-columns: 1fr; gap: 0; }
}

.pt-uebersicht { background: #000; padding-block: 3rem 4rem; }
.pt-uebersicht h1 { font-size: 60px; font-weight: 500; line-height: 66px;
                    color: #fff; text-align: center; margin: 0 0 2.5rem; }
.pt-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pt-karte { position: relative; min-height: 450px; display: flex; justify-content: center;
            align-items: flex-end; padding: 30px; overflow: hidden;
            background-size: cover; background-position: center top; }
.pt-karte .btn-rot { font-size: 22px; font-weight: 400; padding: 12px 24px; }

.geschichte { padding-block: 4.5rem; }
.geschichte h2 { font-size: 60px; font-weight: 500; line-height: 66px;
                 text-align: center; margin: 0 0 3.5rem; }
.zeitleiste { list-style: none; margin: 0 auto; padding: 0; max-width: 1000px; position: relative; }
.zeitleiste::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
                      width: 2px; margin-left: -1px; background: var(--color-border); }
.zeitleiste__punkt { position: relative; display: grid; grid-template-columns: 1fr 1fr;
                     column-gap: 5rem; margin-bottom: 2rem; }
.zeitleiste__jahr { position: absolute; left: 50%; top: 1.5rem; transform: translateX(-50%);
                    font-size: 30px; font-weight: 400; line-height: 54px; background: var(--color-bg);
                    padding: 0 .35rem; z-index: 1; }
.zeitleiste__karte { background: var(--color-surface); padding: 40px; }
.zeitleiste__karte h3 { font-size: 18px; font-weight: 600; line-height: 25.2px;
                        color: var(--color-primary); margin: 0 0 .5rem; }
.zeitleiste__karte p { font-size: 14px; font-weight: 400; line-height: 25.2px; margin: 0; }
.zeitleiste__punkt--rechts .zeitleiste__karte { grid-column: 1; text-align: right; }
.zeitleiste__punkt--links  .zeitleiste__karte { grid-column: 2; text-align: left; }

.philosophie { padding-block: 1rem 4.5rem; text-align: center; }
.philosophie h2 { font-size: 60px; font-weight: 500; line-height: 66px; margin: 2.5rem 0 1.5rem; }
.philosophie p { font-size: 20px; font-weight: 300; line-height: 36px; margin: 0 0 1.5rem; }

.yt-band--grau { background: var(--color-grey-band); color: #fff; }
.yt-band--grau h2 { color: #fff; }
.yt-band--grau a { color: #fff; }
.yt-band--grau .trenner { --trenner-farbe: #fff; }

.aktion-seite { background: var(--color-dark); color: #fff; padding-block: 3rem 4rem; }
.aktion-seite__bild img { width: 100%; height: 450px; object-fit: cover; object-position: center; }
.aktion-seite__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
                       align-items: center; padding: 50px 0 0; }
.aktion-seite__eyebrow { font-size: 13px; font-weight: 800; line-height: 23.4px;
                         letter-spacing: .06em; margin: 0 0 .75rem; }
.aktion-seite h1 { font-size: 46px; font-weight: 900; line-height: 50.6px; color: #fff; margin: 0 0 1.5rem; }
.aktion-seite__gelb { color: var(--color-accent); }
.aktion-seite__preis { font-size: 21px; font-weight: 800; line-height: 37.8px; margin: 0 0 1.5rem; }
.aktion-seite__fussnote { font-size: 13px; font-weight: 400; line-height: 19.5px;
                          color: #ccc; margin: 1rem 0 0; }
.aktion-seite__karten { display: grid; gap: 1.25rem; }
.aktion-karte { background: #fff; color: var(--color-text); border-radius: 12px; padding: 20px;
                font-size: 19px; font-weight: 500; line-height: 28.5px; margin: 0; }
.aktion-karte strong { font-weight: 900; color: var(--color-primary); }
.btn-aktion { display: inline-block; background: var(--color-primary); color: #fff;
              font-size: 19px; font-weight: 900; line-height: 34.2px; padding: 20px 35px;
              border-radius: 8px; text-decoration: none; }
.btn-aktion:hover { background: var(--color-primary-dark); text-decoration: none; }

.aktion-formular { background: var(--color-dark); padding-block: 0 4rem; }
.aktion-formular__karte { background: #fff; border-radius: 20px; padding: 30px; }
.aktion-formular__halb { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.aktion-formular__karte label { font-size: 20px; font-weight: 600; line-height: 36px; color: var(--color-muted); }
.aktion-formular__karte .feld--check label { font-size: 15px; font-weight: 400; line-height: 27px; }
.aktion-formular__senden { display: block; margin: 1.5rem auto 0; font-size: 12px; font-weight: 500;
                           padding: .8rem 30px; border: 0; cursor: pointer; }

@media (max-width: 960px) {
  .pt-uebersicht h1, .geschichte h2, .philosophie h2 { font-size: 32px; line-height: 1.2; }
  .pt-karten { grid-template-columns: 1fr; }
  .zeitleiste::before { left: 8px; }
  .zeitleiste__punkt { grid-template-columns: 1fr; column-gap: 0; padding-left: 2.5rem; }
  .zeitleiste__jahr { position: static; transform: none; display: block; text-align: left;
                      padding: 0 0 .25rem; line-height: 1.4; }
  .zeitleiste__punkt--rechts .zeitleiste__karte,
  .zeitleiste__punkt--links  .zeitleiste__karte { grid-column: 1; text-align: left; }
  .aktion-seite__inner, .aktion-formular__halb { grid-template-columns: 1fr; }
  .aktion-seite h1 { font-size: 30px; line-height: 34.5px; }
}

.partner-band p, .partner-band h2,
.site-footer p, .site-footer a, .grau-band p { color: #fff; }
.partner-band h2, .partner-band--slim h2 { line-height: 40px; }
.partner-band p { line-height: 36px; }

.site-nav a { line-height: 20px; display: inline-block; padding-block: 20px; }

body { font-size: 14px; }
.skip-link { font-size: 14px; }

.btn-rot, .btn-rot--gross, .btn-rot--pfeil { line-height: 22px; text-align: center; }
.leistung-hero .btn-rot { line-height: 22px; }

.leistung-hero { background-color: var(--color-primary);
                 padding-block: 0; padding-inline: 6%; }
.leistung-hero > .container { max-width: none; padding-inline: 0; }
.leistung-hero h1 { line-height: 40px; }
.leistung-hero p { margin-bottom: 52px; }
.leistung-hero .trenner { margin-bottom: 30px; }

.leistung-text h2, .yt-band h2, .fragen-band h2, .austattung h2,
.angebote-band h2 { line-height: 40px; }
.yt-band { padding-block: 3.5rem; }
.yt-band .trenner { margin-bottom: 54px; }
.yt-band p { margin-bottom: 1.5rem; }
.yt-band__text > p:last-of-type { margin-bottom: 62px; }
.yt-band a { color: #333; }
.yt-band .btn-rot { color: #fff; }

@media (max-width: 960px) {
  .leistung-hero { text-align: center; padding-inline: 5%; }
  .leistung-hero h1 { font-size: 30px; line-height: 30px; }
  .leistung-hero .trenner, .yt-band .trenner { margin-inline: auto; }
  .leistung-hero p { margin-bottom: 32px; }
  .leistung-text h2, .yt-band h2, .austattung h2,
  .fragen-band h2, .angebote-band h2 { font-size: 40px; line-height: 40px; }
  .yt-band__text { text-align: center; }
  .austattung__text { text-align: center; }
}

.skip-link { color: #333; line-height: 25.2px; }

.site-footer { padding-top: 1rem; }
.leistung-text { padding-block: 3.5rem 4.5rem; }
.yt-band { padding-block: 2.5rem 3.5rem; }

@media (max-width: 960px) {
  .leistung-hero { min-height: 650px; }
  .leistung-hero .trenner { margin-bottom: 48px; }
  .leistung-hero p { margin-bottom: 52px; }
  .yt-band .trenner { margin-bottom: 68px; }
}

.leistung-text { padding-block: 2.6rem 4.5rem; }
.yt-band { padding-bottom: 5rem; }

.site-footer { margin-top: 0; padding: 39px 0 18px; }

.site-footer p { margin-bottom: 4px; }

@media (max-width: 960px) {

  .site-footer { padding-top: 69px; }

  .site-footer .footer-inner { gap: 16px; }
  .site-footer .social { margin-bottom: 0; }
  .footer-col--social { padding-bottom: 25px; }
  .social__link { width: 32px; height: 32px; }
}

@media (max-width: 960px) {

  .yt-band__inner { display: flex; flex-direction: column; }
  .yt-band__bild { order: 2; }
  .yt-band__text { order: 1; }
  .yt-band { padding-bottom: 2rem; }
  .yt-band .trenner { margin-bottom: 40px; }
  .leistung-hero .trenner { margin-bottom: 16px; }
}

@media (max-width: 960px) {
  .yt-band { padding-top: 0; padding-bottom: 12px; }
  .yt-band p { margin-bottom: 20px; }
}

.partner-band       { padding: 30px 1rem 10px; }
.partner-band--slim { padding: 30px 1rem; }

.aktion-popup__karte { text-align: left; }
.aktion-popup__karte p { color: #fff; line-height: 19.6px; }

.aktion-popup__karte .aktion-popup__eyebrow { color: #fff; line-height: 19.8px; }
.aktion-popup__karte .aktion-popup__titel   { line-height: 34.5px; }
.aktion-popup__karte .aktion-popup__angebot { color: var(--color-accent); line-height: 34.5px; }
.aktion-popup__karte .aktion-popup__satz    { color: #fff; line-height: 19.6px; }
.aktion-popup__karte .aktion-popup__satz strong { color: var(--color-accent); font-weight: 800; }
.aktion-popup__karte .aktion-popup__badge   { color: var(--color-accent); font-size: 12px;
                                              font-weight: 700; line-height: 21.6px; }
.aktion-popup__karte .aktion-popup__hinweis { color: #AAA; font-size: 11px; line-height: 15.4px; }
.aktion-popup__karte .btn-aktion { display: flex; align-items: center; justify-content: center;
                                   font-size: 15px; font-weight: 900; line-height: 27px;
                                   text-align: center; color: #fff; }

@media (max-width: 960px) {
  .aktion-popup__karte .aktion-popup__titel { font-size: 22px; line-height: 25.3px; }
}
.aktion-popup__karte strong { color: var(--color-accent); font-weight: 800; }
.aktion-popup__eyebrow { color: #fff; }
.aktion-popup__marke { color: rgba(255,255,255,.55); }
.aktion-popup__beratung { color: #fff; line-height: 34.2px; }
.aktion-popup__hinweis { color: #ccc; line-height: 19.5px; }
.aktion-popup__badge { color: var(--color-accent); line-height: 21.6px; }

@media (max-width: 960px) {
  .karriere-hero h1 { font-size: 34px; line-height: 34px; }
  .stellen-band h2 { font-size: 34px; line-height: 37.4px; }
  .stellen-band p { font-size: 16px; }
  .ansprech-band__box h2 { font-size: 30px; line-height: 30px; }
  .prozess-band__kicker { font-size: 16px; text-align: center; }
  .prozess-band h2 { font-size: 26px; line-height: 28.6px; text-align: center; }
  .prozess-schritte { text-align: center; }
  .prozess-schritt p { font-size: 14px; line-height: 25.2px; }
  .bereit-band h2 { font-size: 28px; line-height: 33.6px; }
  .bereit-band p { font-size: 14px; line-height: 25.2px; }
  .bewerbung-band h2 { font-size: 26px; line-height: 50px; }
  .bewerbung-band__hinweis { line-height: 50px; }
  .bewerbung-band .feld label { font-size: 15px; line-height: 27px; }
}

@media (max-width: 1024px) {
  .ansprech-band__inner { grid-template-columns: minmax(0, 1fr); }
}

.kontakt-hero__text h1 { font-size: 40px; font-weight: 400; line-height: 40px; }
.kontakt-hero__text p { font-size: 20px; font-weight: 300; line-height: 30px; }
.kontakt-anfahrt h2, .kontakt-daten h2 { line-height: 40px; }
.kontakt-anfahrt strong, .kontakt-daten strong { font-weight: 600; }
.kontakt-anfahrt p { line-height: 30px; }
.kontakt-daten p { font-weight: 400; line-height: 36px; }
.kontakt-karte .feld label { font-size: 14px; font-weight: 400; line-height: 25.2px; }
.kontakt-karte .feld--check label { font-size: 14px; font-weight: 400; line-height: 25.2px; }
.kontakt-karte a { color: inherit; }
.btn-rot.kontakt-karte__senden { display: flex; align-items: center; justify-content: center;
                                 width: 269px; max-width: 100%; height: 40px; padding: 0 20px;
                                 font-size: 12px; font-weight: 500; line-height: 12px;
                                 letter-spacing: 1.2px; border: 0; cursor: pointer; }

@media (max-width: 960px) {
  .kontakt-hero__text h1 { font-size: 30px; line-height: 30px; text-align: center; }
  .kontakt-hero__text p { text-align: center; }
  .kontakt-anfahrt h2, .kontakt-daten h2 { font-size: 40px; line-height: 40px; text-align: center; }
  .kontakt-anfahrt__text, .kontakt-anfahrt p { text-align: center; }
}

.grau-karten--2 { grid-template-columns: repeat(2, minmax(0, 492px)); justify-content: space-between; }
.grau-karte h2, .grau-karte h3 { font-size: 40px; line-height: 40px; }

.leistung-text__zwischen { font-weight: 300; color: #000; }

@media (max-width: 960px) {
  .grau-karten--2 { grid-template-columns: minmax(0, 1fr); }
  .grau-karte, .grau-karte h2, .grau-karte h3, .grau-karte p, .grau-karte li { text-align: center; }
  .grau-karte ul { list-style-position: inside; padding-left: 0; }
}

.angebot-karte .btn-rot, .btn-rot--klein { font-size: 15px; font-weight: 500; line-height: 15px; }

.geschichte h2, .philosophie h2 { letter-spacing: -2px; }
.philosophie h2 { font-size: 60px; font-weight: 500; line-height: 66px; text-align: center; }
.philosophie p { font-size: 20px; font-weight: 300; line-height: 36px; text-align: center;
                 margin: 0 0 20px; }
.philosophie h2 { margin: 0 0 60px; }
.philosophie p + h2 { margin-top: 60px; }
.zeitleiste__jahr { line-height: 54px; text-align: center; }
.yt-band--grau p, .yt-band--grau .yt-band__text, .yt-band--grau a { color: #fff; }

.aktion-seite p, .aktion-seite__preis, .aktion-seite__fussnote { color: #fff; }
.aktion-seite__fussnote { color: #ccc; }
.aktion-seite p strong, .aktion-seite__preis strong { color: var(--color-accent); }
.aktion-karte strong { color: var(--color-accent); }
.aktion-formular__karte label { color: #666; }

@media (max-width: 960px) {
  .geschichte h2, .philosophie h2 { font-size: 30px; line-height: 36px; }
  .philosophie h2 { margin-bottom: 30px; }
  .zeitleiste__jahr { text-align: left; }
}

.leistung-text__zwischen--fett { font-weight: 600; }

.aktion-popup__karte .btn-aktion {
  background: linear-gradient(135deg, rgb(221,0,0) 0%, rgb(170,0,0) 100%);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 20px rgba(221,0,0,.35);
  padding: 16px 25px; margin: 5px 0 20px; border-radius: 8px; }
.aktion-popup__karte .btn-aktion:hover { background: linear-gradient(135deg, rgb(200,0,0) 0%, rgb(150,0,0) 100%); }

.kontakt-daten__inner > div:first-child p { margin: 0 0 5px; }
.kontakt-daten__inner > div:first-child h2 { margin: 0 0 89px; }
#oeffnungszeiten h2 { margin: 0 0 51px; }
#oeffnungszeiten p { font-weight: 300; line-height: 30px; margin: 0 0 7px; }
.kontakt-anfahrt h2 { margin: 0 0 44px; }
.kontakt-anfahrt p { margin: 0 0 7px; }
.kontakt-anfahrt p strong { display: block; margin-bottom: 24px; }
.kontakt-karte .feld { margin-bottom: 18px; }
.kontakt-karte .feld > label { margin-bottom: 0; }
.kontakt-karte .feld input[type="text"],
.kontakt-karte .feld input[type="tel"],
.kontakt-karte .feld input[type="email"] { height: 40px; padding: 8px 12px; font-size: 14px; }
.kontakt-karte .feld textarea { display: block; height: 45px; padding: 8px 12px; font-size: 14px; }

@media (max-width: 960px) {
  #oeffnungszeiten h2, #oeffnungszeiten p { text-align: center; }
  .kontakt-daten__inner > div:first-child h2 { margin-bottom: 73px; }
  #oeffnungszeiten h2 { margin-bottom: 35px; }
  .kontakt-karte__halb { grid-template-columns: 1fr; gap: 0; }
}

.beratung__sub { color: #333; font-size: 18px; font-weight: 600; line-height: 25.2px; margin: 0 0 41px; }
.beratung__liste { list-style: none; padding: 0; margin: 0 0 22px; }
.beratung__liste li { color: #5C5A5D; font-size: 18px; font-weight: 400; line-height: 32.4px;
                      padding: 0 0 0 1.8rem; margin: 0 0 3px; position: relative; }

@media (max-width: 960px) {

  .vm-kachel { min-height: 422px; }
}

.aktion-seite p.aktion-seite__fussnote { color: #ccc; }
.aktion-formular__senden { line-height: 12px; letter-spacing: 1.2px; }

@media (max-width: 960px) {
  .aktion-karte { font-size: 16px; line-height: 24px; }
  .aktion-formular__karte label { font-size: 15px; line-height: 27px; }
}

