/* =============================================
   VGR Koblenz – Stylesheet | CI-konform
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* CI Farben */
  --navy:        #121A46;
  --navy-mid:    #1e2d6b;
  --blue:        #2696F0;
  --blue-dark:   #1a78d4;
  --blue-light:  #deeefb;
  --yellow:      #6DC135;
  --yellow-dark: #4fa020;
  --teal:        #84C1B5;
  --teal-light:  #c5e2dc;
  --bg-light:    #E3EFEE;
  --bg:          #ffffff;
  --bg-soft:     #f7faf9;
  --text:        #121A46;
  --text-muted:  #5a6480;
  --border:      #e2e8f0;

  /* Layout */
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 20px rgba(18,26,70,.08);
  --shadow-lg:   0 8px 40px rgba(18,26,70,.14);
  --transition:  0.22s ease;
  --font:        'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', system-ui, sans-serif;
  --nav-h:       88px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(38,150,240,.3);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn--sm {
  padding: .6rem 1.25rem;
  font-size: .875rem;
}
.btn--white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--bg-light);
  border-color: var(--bg-light);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}
.btn--white-green {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  font-weight: 700;
}
.btn--white-green:hover {
  background: var(--bg-light);
  border-color: var(--bg-light);
}

/* --- Tags --- */
.tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid var(--teal-light);
}

/* --- Section headings --- */
.section-head { margin-bottom: 3rem; }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: .75rem; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* =============================================
   UTILITY BAR
   ============================================= */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar__phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition);
}
.topbar__phone:hover { color: var(--yellow); }
.topbar__items {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.topbar__item { color: rgba(255,255,255,.85); }
.topbar__sep  { color: rgba(255,255,255,.3); }

/* =============================================
   NAVIGATION
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 24px rgba(18,26,70,.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__list li {
  display: flex;
  align-items: center;
}
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: .01em;
}
.nav__link:hover { color: var(--navy); }
.nav__link--cta,
.nav__link--book {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1;
}
.nav__link--cta {
  background: var(--blue);
  color: #fff !important;
}
.nav__link--cta:hover { background: var(--blue-dark); }
.nav__link--book {
  border: 1.5px solid var(--blue);
  color: var(--blue) !important;
}
.nav__link--book:hover { background: var(--blue-light); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO – Split Layout (Text links | Foto rechts)
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - var(--nav-h));
}
.hero__left {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 20% 60%, rgba(38,150,240,.08) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__content {
  max-width: 580px;
  width: 100%;
  padding: 4.5rem 3rem 4.5rem 4rem;
}
.hero__right {
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(38,150,240,.18);
  color: var(--blue);
  border: 1px solid rgba(38,150,240,.35);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero__eyebrow {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 420px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__actions .btn:not(:last-child) { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero__actions .btn:last-child { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; text-align: center; }
.btn--blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat {
  flex: 1;
  padding: 0 1.5rem;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child  { padding-right: 0; }
.hero__stat__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero__stat span {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.hero__stat small {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  display: block;
  line-height: 1.45;
  letter-spacing: .02em;
}

/* =============================================
   KURSPLAN
   ============================================= */
.kursplan {
  padding: 6rem 0;
  background: var(--bg);
}
.kp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}
.kp-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: .9rem;
}
.kp-table thead th {
  background: var(--navy);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  padding: 1.1rem 1rem;
  border-right: 2px solid rgba(255,255,255,.1);
}
.kp-table thead th:last-child { border-right: none; }

.kp-table tbody tr:nth-child(odd)  { background: #ffffff; }
.kp-table tbody tr:nth-child(even) { background: #edf1f6; }

.kp-table td {
  padding: 1rem .75rem;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #dde3ea;
  min-width: 140px;
}
.kp-table td:last-child { border-right: none; }

.kp-entry {
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  font-size: .88rem;
}

.kp-notes {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.kp-note {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  padding: .7rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}
.kp-note svg { flex-shrink: 0; margin-top: 2px; stroke: var(--blue); }
.kp-scroll-hint { display: none; }

.kp-mobile { display: block; }

/* Offers extras – desktop: always visible, mobile: toggle */
.offers-more-btn { display: none; }
.offers-extra    { display: block; }

/* Kursplan day accordion */
.kp-day-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
}
.kp-day-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: #fff;
  padding: .65rem 1rem;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.kp-day-arrow {
  transition: transform .25s;
  flex-shrink: 0;
}
.kp-day-card.open .kp-day-arrow { transform: rotate(180deg); }
.kp-day-body {
  padding: .25rem 0;
  display: none;
}
.kp-day-card.open .kp-day-body { display: block; }
.kp-card-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.kp-card-item:last-child { border-bottom: none; }
.kp-card-zeit {
  font-weight: 700;
  color: var(--blue);
  font-size: .8rem;
  white-space: nowrap;
  min-width: 120px;
}
.kp-card-info { display: flex; flex-direction: column; gap: .1rem; }
.kp-card-kurs { font-weight: 600; font-size: .85rem; color: var(--navy); }
.kp-card-trainer { font-size: .78rem; color: var(--text-muted); }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq {
  padding: 5rem 0;
  background: var(--bg-soft);
}
.faq__inner { max-width: 800px; margin-inline: auto; }
.accordion { margin-top: .5rem; }
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-item:first-child { border-top: 1px solid var(--border); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.acc-trigger:hover { color: var(--blue-dark); }
.acc-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  stroke: currentColor;
}
.acc-trigger[aria-expanded="true"] .acc-chevron { transform: rotate(180deg); }
.acc-panel {
  display: none;
  padding: 0 0 1.25rem;
}
.acc-panel.open { display: block; }
.acc-panel p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   KONTAKT
   ============================================= */
.kontakt {
  padding: 6rem 0;
  background: var(--bg);
}
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}
.kontakt__info { display: flex; flex-direction: column; gap: 2rem; }
.kontakt__item { display: flex; gap: 1.25rem; align-items: flex-start; }
.kontakt__icon-wrap {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kontakt__item strong { display: block; font-weight: 700; font-size: .875rem; margin-bottom: .25rem; color: var(--navy); }
.kontakt__item a, .kontakt__item span { font-size: .95rem; color: var(--text-muted); }
.kontakt__item a:hover { color: var(--blue); }

.kontakt__form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form__group label { font-size: .875rem; font-weight: 600; color: var(--navy); }
.form__group input,
.form__group select,
.form__group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(38,150,240,.12);
}
.form__hint { font-size: .8rem; color: var(--text-muted); margin-top: .75rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.8); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer__logo {
  margin-bottom: .75rem;
}
.footer__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  /* Logo auf dunklem Hintergrund: Helligkeit reduzieren und aufhellen */
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer__brand p { font-size: .875rem; line-height: 1.65; opacity: .6; }
.footer__col { display: flex; flex-direction: column; gap: .55rem; }
.footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
}
.footer__col a, .footer__col span {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  line-height: 1.6;
}
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,.75); }

/* =============================================
   QUICK ACCESS CARDS
   ============================================= */
.quickcards {
  padding: 3rem 0 4rem;
  background: #fff;
}
.quickcards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.qc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.qc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.qc-card__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qc-card__image--blue  { background: #deeefb; }
.qc-card__image--teal  { background: #dff2ee; }
.qc-card__image--green { background: #eaf6d8; }
.qc-card__body {
  padding: 1.75rem 1.75rem 2rem;
  border-top: 1px solid var(--border);
}
.qc-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .6rem;
}
.qc-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

/* =============================================
   REHASPORT-STRIP (Leistungen)
   ============================================= */
.rehasport-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2.5rem;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 3rem;
}
.rs-fact {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--navy);
}

/* =============================================
   ANGEBOTE
   ============================================= */
.angebote {
  padding: 6rem 0;
  background: var(--bg-soft);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.offer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.offer-card--featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, #fff 60%, var(--blue-light) 100%);
}
.offer-card__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .65rem;
  border-radius: 100px;
}
.offer-card__icon { margin-bottom: .75rem; }
.offer-card__icon svg { width: 40px; height: 40px; }
.offer-card__level {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
}
.level-bars { display: flex; gap: 4px; }
.level-bar {
  width: 22px;
  height: 5px;
  border-radius: 3px;
  background: #dde3ee;
}
.level-bar.active { background: var(--blue); }
.level-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
}
.offer-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--navy); }
.offer-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   KRANKENKASSEN TRUST BAR
   ============================================= */
.kassen-bar {
  background: var(--bg-soft);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kassen-bar__head {
  text-align: center;
  margin-bottom: 2rem;
}
.kassen-bar__head .tag { margin-bottom: .75rem; }
.kassen-bar__head p {
  color: var(--text-muted);
  font-size: .92rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.kassen-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .75rem;
}
.kassen-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s;
}
.kassen-logo:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(38,150,240,.15);
}
.kassen-logo__img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(.75);
  transition: filter .25s;
}
.kassen-logo:hover .kassen-logo__img {
  filter: grayscale(0%) opacity(1);
}
.kassen-extra { display: none; }
.kassen-extra.visible { display: inline-flex; }
.kassen-more-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 1.5rem auto 0;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.kassen-more-btn:hover { border-color: var(--blue); color: var(--blue); }
.kassen-more-btn svg { transition: transform .3s; }
.kassen-more-btn.open svg { transform: rotate(180deg); }
@media (max-width: 600px) {
  .kassen-logo { padding: .65rem 1.1rem; }
  .kassen-logo__img { height: 30px; max-width: 110px; }
}

/* =============================================
   PROBLEM / REHASPORT INFO
   ============================================= */
.problem {
  padding: 5.5rem 0;
  background: var(--bg-light);
}
.problem__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}
.problem__lead .tag { display: inline-block; margin-bottom: 1.25rem; }
.problem__lead h2 { margin-bottom: 1.25rem; }
.problem__lead p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.problem__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plist-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.plist-item:first-child { padding-top: 0; }
.plist-item:last-child  { border-bottom: none; padding-bottom: 0; }
.plist-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.plist-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.plist-item p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   ABLAUF / STEPS
   ============================================= */
.ablauf {
  padding: 6rem 0;
  background: var(--bg);
}
.steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0;
  align-items: start;
}
.step {
  text-align: center;
  padding: 0 1.5rem;
}
.step__circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 10px var(--bg-light);
  letter-spacing: .02em;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
}
.step p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step__connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.6rem;
  flex-shrink: 0;
}

.steps--three {
  max-width: 860px;
  margin: 3.5rem auto 0;
}
.steps--four {
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
  max-width: 1100px;
  margin: 3.5rem auto 0;
}
.ablauf__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  font-size: .95rem;
  color: var(--text-muted);
}

/* =============================================
   FINALER CTA
   ============================================= */
.final-cta {
  background: var(--bg-light);
  padding: 6rem 0;
}
.tag--light {
  background: var(--blue-light);
  color: var(--blue-dark);
  border: 1px solid rgba(38,150,240,.2);
}
.final-cta__heading {
  margin-bottom: 2.5rem;
}
.final-cta__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .75rem;
  margin-top: .75rem;
}
.final-cta__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: stretch;
}
.final-cta__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.final-cta__info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.final-cta__contact h3,
.final-cta__hours h3,
.final-cta__standorte h3 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .9rem;
}
.final-cta__info .kontakt__item {
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.final-cta__info .kontakt__item:last-child { border-bottom: none; }
.final-cta__info .kontakt__icon-wrap {
  width: 2.25rem;
  height: 2.25rem;
}
.final-cta__info .kontakt__item strong {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .04em;
}
.final-cta__info .kontakt__item a,
.final-cta__info .kontakt__item span {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
}
.final-cta__info .kontakt__item a:hover { color: var(--blue); }

.times-table--light tr { border-bottom-color: var(--border); }
.times-table--light td {
  color: var(--navy);
  font-size: .88rem;
  padding: .55rem .25rem;
}
.times-table--light td strong {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .85rem;
}
.final-cta__hours-note {
  margin-top: .6rem;
  font-size: .78rem;
  color: var(--text-muted);
}

.final-cta__book-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s;
}
.final-cta__book-btn:hover { background: var(--navy-mid); }
.final-cta__book-btn svg { flex-shrink: 0; opacity: .85; }
.final-cta__book-btn span { display: flex; flex-direction: column; gap: .15rem; }
.final-cta__book-btn strong { font-size: .95rem; font-weight: 700; }
.final-cta__book-btn small { font-size: .78rem; opacity: .7; font-weight: 400; }

.hero__book-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.hero__book-link:hover { color: #fff; }
.hero__book-link svg { opacity: .7; }

.final-cta__micro {
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.7;
}
.final-cta__micro a {
  color: var(--blue);
  font-weight: 700;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookieBanner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 1.25rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .35s ease;
}
#cookieBanner.visible {
  transform: translateY(0);
}
.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie__text {
  flex: 1;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.cookie__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie__btn {
  padding: .6rem 1.35rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.cookie__btn:hover { opacity: .85; }
.cookie__btn--accept {
  background: var(--blue);
  color: #fff;
}
.cookie__btn--decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.3) !important;
}

/* =============================================
   ANIMATIONEN
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

@media (min-width: 769px) {
  .kp-mobile { display: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__left { justify-content: center; }
  .hero__content { padding: 4rem 2rem; max-width: 100%; }
  .hero__right { min-height: 320px; }
  .about__inner,
  .rehasport__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__stat-box { position: static; margin-top: 1rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .step { padding: 0; }
  .step__connector { display: none; }
  .problem__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .final-cta__grid { grid-template-columns: 1fr; }
  .final-cta__info { height: auto; }
  .rehasport-strip { flex-direction: column; gap: .6rem; }
  .quickcards__grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  :root { --nav-h: 72px; }
  .nav__logo-img { height: 58px; }
  .topbar { display: none; }

  .nav__list {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    border-bottom: 2px solid var(--border);
    transform: translateY(-150%);
    transition: transform var(--transition);
    z-index: 998;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__list.open { transform: translateY(0); }
  .nav__list li { width: 100%; display: block; }
  .nav__link {
    display: block;
    width: 100%;
    padding: .9rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text-muted);
    box-sizing: border-box;
  }
  .nav__link--cta {
    display: block;
    margin: 1rem 1.5rem .25rem;
    border-radius: 6px;
    text-align: center;
    border-bottom: none;
    width: calc(100% - 3rem);
  }
  .nav__link--book {
    display: block;
    margin: .5rem 1.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    border-bottom: none !important;
    width: calc(100% - 3rem);
    justify-content: center;
  }
  .nav__burger { display: flex; }

  .topbar__items { display: none; }

  .hero__right { order: -1; min-height: 240px; }
  .hero__content { padding: 2rem 1.25rem; }
  .hero__stats { flex-direction: row; flex-wrap: nowrap; gap: 0; padding-top: 1.25rem; justify-content: space-between; }
  .hero__stat { flex: 1; padding: 0 .5rem; text-align: center; }
  .hero__stat span { font-size: 1.6rem; }
  .hero__stat small { font-size: .75rem; }
  .hero__stat__divider { display: none; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: .6rem; }
  .hero__actions .btn { flex: 1 1 45%; justify-content: center; }
  .hero__actions .btn--ghost:last-child { display: none; }

  .quickcards__grid { grid-template-columns: 1fr; }

  .offers-grid { grid-template-columns: 1fr; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .kp-desktop { display: none !important; }

  /* Leistungen – Extras aufklappbar */
  .offers-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    grid-column: 1 / -1;
    width: 100%;
    padding: .85rem 1rem;
    background: var(--blue);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .875rem;
    color: #fff;
    cursor: pointer;
    margin-top: .25rem;
  }
  .offers-more-btn.open svg { transform: rotate(180deg); }
  .offers-more-btn svg { transition: transform .25s; }
  .offers-extra          { display: none; }
  .offers-extra.visible  { display: block; }

  .final-cta__form { padding: 1.75rem 1.25rem; }
  .section-head { padding: 0 .25rem; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .cookie__inner { flex-direction: column; gap: 1rem; }
  .cookie__actions { width: 100%; }
  .cookie__btn { flex: 1; text-align: center; }
  .hero__stat span { font-size: 1.2rem; }
  .hero__stat small { font-size: .65rem; }
  .rehasport-strip { padding: 1rem; }
  .final-cta__form { padding: 1.25rem 1rem; }
  .step__circle { width: 52px; height: 52px; font-size: 1.1rem; }
}
