/* ============================================================
   BECKMANN — Conversion-optimiert, 50+, Mobile-First
   Farben: Weiß / Teal #88CDCE / Anthrazit #2d3748
   ============================================================ */

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

:root {
  --teal:      #88CDCE;
  --teal-d:    #6ab8ba;
  --teal-dd:   #4a9fa1;
  --teal-bg:   #f0fafa;
  --teal-lt:   #e4f6f6;
  --ink:       #1a202c;
  --ink-2:     #2d3748;
  --body:      #4a5568;
  --muted:     #718096;
  --border:    #e2e8f0;
  --white:     #ffffff;
  --light:     #f7fafc;
  --gold:      #c9a555;
  --wa:        #25d366;
  --red:       #e53e3e;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Großzügige Größen für 50+ */
  --text-sm:   1rem;       /* 16px */
  --text-base: 1.125rem;   /* 18px */
  --text-lg:   1.25rem;    /* 20px */
  --text-xl:   1.5rem;     /* 24px */
  --text-2xl:  1.875rem;   /* 30px */
  --text-3xl:  2.25rem;    /* 36px */
  --text-4xl:  2.75rem;    /* 44px */

  --nav-h: 72px;
  --sticky-h: 68px;
  --r: 12px;
  --r-lg: 18px;
  --shadow: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Platz für sticky bar auf Mobile */
  padding-bottom: var(--sticky-h);
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Typo-Helfer ── */
.h2 {
  font-size: clamp(var(--text-2xl), 4.5vw, var(--text-4xl));
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.h2--white { color: var(--white); }

.big-text {
  font-size: var(--text-lg);
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.big-text--white { color: rgba(255,255,255,.92); }

.body-text {
  font-size: var(--text-base);
  color: var(--body);
  line-height: 1.8;
  margin-bottom: .875rem;
}

.intro-text {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.section-label {
  display: inline-block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dd);
  margin-bottom: .6rem;
}
.section-label--light { color: rgba(255,255,255,.75); }

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.check--white { background: rgba(255,255,255,.25); color: #fff; }

.star { font-size: 1.1rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 2rem;
  background: var(--teal);
  color: #fff;
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
  line-height: 1.3;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(136,205,206,.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary--full { width: 100%; border-radius: var(--r); font-size: var(--text-lg); padding: 1.1rem 2rem; }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--teal-dd);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .15s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.25rem;
  background: var(--teal);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 50px;
}

/* ── Image placeholders ── */
.img-ph {
  width: 100%; height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border-radius: var(--r-lg);
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
  line-height: 1.5;
}
.img-ph small { font-size: .8rem; opacity: .7; }
.img-ph--warm   { background: linear-gradient(135deg, #f5ede4 0%, #e8d8cc 100%); }
.img-ph--person { background: linear-gradient(135deg, var(--teal-lt) 0%, #d5eef0 100%); min-height: 340px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav__logo-svg {
  height: 105px;
  width: auto;
  display: block;
}
.nav__logo {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  flex-shrink: 0;
}
.nav__name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}
.nav__sub {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1;
}

/* Desktop nav links */
.nav__links {
  display: none;
  align-items: center;
  gap: .125rem;
  flex: 1;
  justify-content: center;
}
.nav__link {
  padding: .5rem .8rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 50px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--teal-dd);
  background: var(--teal-bg);
}

.nav__tel {
  display: none;
  align-items: center;
  gap: .4rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink-2);
  padding: .5rem .875rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__tel:hover { border-color: var(--teal); color: var(--teal-d); }

.nav__cta-mobile {
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
}

/* Burger button */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: .75rem clamp(1.25rem, 5vw, 2.5rem) 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .2s ease;
  z-index: 499;
}
.nav__drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer-link {
  display: block;
  padding: .9rem 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink-2);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav__drawer-link:last-of-type { border-bottom: none; }
.nav__drawer-link:hover { color: var(--teal-d); }
.nav__drawer-cta { margin-top: 1.25rem; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__tel { display: flex; }
  .nav__cta-mobile { display: none; }
  .nav__burger { display: none; }
  .nav__drawer { display: none !important; }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.section--teal  { background: var(--teal); }
.section--light { background: var(--light); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(160deg, var(--white) 55%, var(--teal-bg) 100%);
}
.hero__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .hero__image { margin-right: -4vw; }
}

.hero__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal-dd);
  background: var(--teal-lt);
  display: inline-block;
  padding: .3rem .875rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(136,205,206,.3);
}

.hero__h1 {
  font-size: clamp(var(--text-3xl), 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-bottom: 1.5rem;
}

/* Flip-Word Animation */
.hero__flip-word {
  display: inline-block;
  vertical-align: top;
  color: var(--teal);
  position: relative;
  overflow: hidden;
  transform-origin: center bottom;
}

.hero__flip-artikel,
.hero__flip-noun {
  display: inline;
}

.hero__flip-word::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.55) 50%,
    transparent 80%
  );
  pointer-events: none;
  opacity: 0;
}

@keyframes flipWordOut {
  0%   { transform: rotateX(0deg);   opacity: 1; }
  100% { transform: rotateX(-90deg); opacity: 0; }
}

@keyframes flipWordIn {
  0%   { transform: rotateX(90deg);  opacity: 0; }
  100% { transform: rotateX(0deg);   opacity: 1; }
}

@keyframes shineSwipe {
  0%   { left: -75%; opacity: 1; }
  100% { left: 130%;  opacity: 1; }
}

.hero__flip-word.is-flipping-out {
  animation: flipWordOut .22s ease-in forwards;
}

.hero__flip-word.is-flipping-in {
  animation: flipWordIn .26s ease-out forwards;
}

.hero__flip-word.is-flipping-in::after {
  animation: shineSwipe .55s ease-out .2s forwards;
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
  font-size: var(--text-base);
  color: var(--ink-2);
  font-weight: 500;
}
.hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  line-height: 1.5;
}
.hero__star-li {
  margin-top: .25rem;
  padding: .75rem 1rem;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--r);
  font-size: var(--text-sm);
  color: var(--ink-2);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.btn-hero {
  font-size: var(--text-lg);
  padding: 1.1rem 2.25rem;
  width: 100%;
  max-width: 380px;
  margin-bottom: 0;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-wa:hover, .btn-wa:focus {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn-wa:active { transform: translateY(0); }

.hero__tel-display {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: var(--text-base);
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero__tel-link {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--ink);
  transition: color .2s;
}
.hero__tel-link:hover { color: var(--teal-d); }
.hero__tel-note {
  font-size: .875rem;
  color: var(--muted);
}

.hero__rating {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .5rem;
  font-size: var(--text-sm);
  color: var(--body);
  padding: .875rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  width: fit-content;
  max-width: 340px;
}
.hero__rating > .stars,
.hero__rating > span {
  display: block;
}
.hero__review-rotator {
  position: relative;
  height: 72px;
  width: 100%;
  overflow: hidden;
}
.hero__review-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.hero__review-slide.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.hero__review-text {
  display: block;
  font-size: .75rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
.hero__review-author {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: .2rem;
}
.stars { font-size: 1.1rem; color: #f59e0b; letter-spacing: .05em; }

.hero__mini-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-top: .75rem;
  max-width: 480px;
}
.mini-review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .55rem .7rem;
  box-shadow: var(--shadow);
}
.mini-review__stars { font-size: .7rem; color: #f59e0b; letter-spacing: .03em; margin-bottom: .25rem; }
.mini-review__text  { font-size: .7rem; color: var(--body); line-height: 1.4; margin: 0 0 .3rem; }
.mini-review__name  { font-size: .65rem; font-weight: 600; color: var(--muted); }

@media (max-width: 767px) {
  .hero__mini-reviews { grid-template-columns: 1fr; max-width: 100%; }
}

/* ============================================================
   FAQ
============================================================ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
  transition: background .15s;
}

.faq__question:hover { background: var(--bg); }

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .15s;
}

.faq__icon::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--teal);
  clip-path: polygon(50% 100%, 0 30%, 100% 30%);
  transition: transform .25s ease;
}

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--teal);
}

.faq__question[aria-expanded="true"] .faq__icon::before {
  background: #fff;
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq__answer > p {
  overflow: hidden;
  padding: 0 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__answer > p {
  padding: 0 1.4rem 1.2rem;
}

/* ============================================================
   REVIEW SLIDER
============================================================ */
.review-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1.75rem;
  padding-bottom: 2rem;
}

.review-slider__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.review-card-slide {
  min-width: 100%;
  padding: 1.1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}

.rcs__stars {
  color: #f59e0b;
  font-size: .85rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.rcs__body {
  flex: 1;
  min-width: 0;
}

.rcs__text {
  font-size: .82rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 .5rem;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rcs__author {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.rcs__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
}

.rcs__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.rcs__author strong {
  font-size: .78rem;
  color: var(--ink);
}

.rcs__source {
  font-size: .72rem;
  color: var(--muted);
}

.review-slider__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.review-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.review-slider__dot.is-active {
  background: var(--teal);
  transform: scale(1.3);
}

/* ============================================================
   QUOTE STRIPES
============================================================ */
.quote-stripe {
  background: var(--teal-lt);
  border-top: 1px solid rgba(57,182,174,.15);
  border-bottom: 1px solid rgba(57,182,174,.15);
  padding: 1.75rem 0;
}
.quote-stripe--alt {
  background: var(--teal-lt);
  border-color: rgba(57,182,174,.15);
}
.quote-stripe__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.quote-stripe__stars {
  font-size: 1rem;
  color: #f59e0b;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.quote-stripe__text {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--ink);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.quote-stripe__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .quote-stripe__inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .quote-stripe__name { white-space: normal; }
}

/* Hero image */
.hero__image { position: relative; }
.hero__img-real {
  width: 100%;
  aspect-ratio: 4/3.5;
  min-height: 260px;
  border-radius: var(--r-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}
.hero__img-ph {
  aspect-ratio: 4/3.5;
  min-height: 260px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-lt) 0%, #d0eef0 100%);
  box-shadow: var(--shadow-lg);
}

.hero__img-badge {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .875rem 1.1rem;
  box-shadow: var(--shadow-md);
}
.badge-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__img-badge strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--ink); }
.hero__img-badge span   { display: block; font-size: .8rem; color: var(--muted); }

@media (max-width: 767px) {
  .hero__img-badge {
    padding: .5rem .75rem;
    gap: .5rem;
    bottom: -.75rem;
  }
  .badge-icon {
    width: 26px; height: 26px;
    font-size: .75rem;
    border-radius: 6px;
  }
  .hero__img-badge strong { font-size: .78rem; }
  .hero__img-badge span   { font-size: .68rem; }
}

/* ============================================================
   PROBLEM / LÖSUNG
   ============================================================ */
.problem-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}
.problem-text {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.problem-text .btn-primary { align-self: flex-start; margin-top: .75rem; }
.problem-image .img-ph { aspect-ratio: 4/3; min-height: 260px; }
.problem-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); display: block; box-shadow: var(--shadow-lg); }

/* ============================================================
   BLOCK 3 – RISIKOFREI
   ============================================================ */
.risk-section { border-top: none; }
.risk-section .h2--white {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -.03em;
  text-shadow: 0 2px 24px rgba(0,0,0,.15);
  margin-bottom: 1.25rem;
}
.risk-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.risk-step {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: transform .2s, box-shadow .2s;
}
.risk-step:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.risk-step__deco {
  position: absolute;
  top: -.1rem;
  right: .75rem;
  font-size: 7rem;
  font-weight: 900;
  color: var(--teal-lt);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.risk-step__icon { font-size: 2.5rem; line-height: 1; margin-bottom: .5rem; }
.risk-step h3 { font-size: var(--text-lg); font-weight: 700; color: var(--ink); }
.risk-step p { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; }
.risk-step__arrow {
  display: none;
  color: rgba(255,255,255,.7);
  font-size: 1.75rem;
  line-height: 1;
}
.risk-cta { text-align: center; }
.risk-footnote-light { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.8); margin-top: .75rem; }
@media (min-width: 768px) {
  .risk-steps { flex-direction: row; align-items: stretch; }
  .risk-step { flex: 1; }
  .risk-step__arrow { display: flex; align-items: center; flex-shrink: 0; }
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: #1a2233;
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(201,165,85,.3);
}
.btn-gold:hover {
  background: #dbb96a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,165,85,.5);
}

/* ============================================================
   BLOCK 4 – VERTRAUEN
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: box-shadow .2s, transform .2s;
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trust-card__icon { font-size: 2rem; line-height: 1; margin-bottom: .25rem; }
.trust-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--ink); }
.trust-card p  { font-size: var(--text-sm); color: var(--body); line-height: 1.6; }

/* ============================================================
   BLOCK 5 – PREISE
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.price-card--featured {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(136,205,206,.25);
  transform: scale(1.02);
}
.price-card__tag {
  position: absolute;
  top: -14px;
  background: var(--teal);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .25rem .875rem;
  border-radius: 50px;
}
.price-card__icon { font-size: 2.5rem; line-height: 1; }
.price-card h3 { font-size: var(--text-lg); font-weight: 700; color: var(--ink); }
.price { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; color: var(--teal-d); letter-spacing: -.02em; }
.price-card p { font-size: var(--text-sm); color: var(--muted); }

.price-example-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: .2rem .65rem;
  margin-top: -.25rem;
  margin-bottom: .25rem;
}

.price-note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: var(--text-sm);
  color: var(--muted);
  background: var(--light);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.price-note--prominent {
  background: #fff8ec;
  border: 1.5px solid #e8c97a;
  color: #6b4e1a;
  font-size: var(--text-sm);
}
.price-note--prominent svg { color: #c9a555; }
.price-note svg { flex-shrink: 0; margin-top: 2px; }

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

/* ============================================================
   BLOCK 6 – VORHER/NACHHER
   ============================================================ */
.ba-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .ba-grid { grid-template-columns: 1fr 1fr; } }

.ba-item { display: flex; flex-direction: column; gap: .75rem; }

.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { clip-path: inset(0 50% 0 0); }

.ba-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  font-size: .875rem; font-weight: 500;
  color: var(--muted);
}
.ba-ph--before { background: linear-gradient(135deg, #d6cdc4 0%, #c4b9ae 100%); }
.ba-ph--after  { background: linear-gradient(135deg, var(--teal-lt) 0%, #c8e8ea 100%); }

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.ba-line { position: absolute; inset: 0; width: 3px; background: #fff; box-shadow: 0 0 6px rgba(0,0,0,.3); }
.ba-btn {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 2px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: 3px solid #fff;
  cursor: col-resize;
  pointer-events: auto;
  box-shadow: var(--shadow-md);
}

.ba-tag {
  position: absolute; bottom: .875rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 50px;
}
.ba-tag--l { left: .875rem; background: rgba(0,0,0,.45); color: #fff; }
.ba-tag--r { right: .875rem; background: var(--teal); color: #fff; }

.ba-cap  { font-size: var(--text-sm); color: var(--muted); font-weight: 500; }
.ba-note { font-size: .875rem; color: var(--muted); text-align: center; font-style: italic; }

/* ============================================================
   BLOCK 7 – GOOGLE BEWERTUNGEN
   ============================================================ */
.google-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  width: fit-content;
}
.google-summary__score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.google-summary__stars { font-size: 1.5rem; color: #f59e0b; margin-bottom: .2rem; }
.google-summary__count { font-size: .9rem; color: var(--muted); margin-bottom: .35rem; }
.google-link { font-size: .875rem; font-weight: 600; color: var(--teal-d); text-decoration: underline; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.review-stars { font-size: 1rem; color: #f59e0b; }
.review-text {
  font-size: var(--text-base);
  color: var(--body);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-avatar {
  width: 38px; height: 38px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--ink); }
.review-author span   { font-size: .8rem; color: var(--muted); }

/* ============================================================
   BLOCK 8 – ÜBER UNS
   ============================================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; }
}
.about-image { border-radius: var(--r-lg); overflow: hidden; }
.about-text { display: flex; flex-direction: column; gap: .75rem; }
.about-text .btn-primary { align-self: flex-start; margin-top: .5rem; }

/* ============================================================
   BLOCK 9 – ABLAUF
   ============================================================ */
.steps {
  display: grid;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.step__num {
  width: 32px; height: 32px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  font-weight: 800;
  margin-bottom: .25rem;
}
.step__icon { font-size: 2rem; line-height: 1; }
.step h3 { font-size: var(--text-base); font-weight: 700; color: var(--ink); }
.step p  { font-size: var(--text-sm); color: var(--body); line-height: 1.6; }

.step__arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--teal);
  align-self: center;
  padding: 0 .5rem;
  font-weight: 700;
}
@media (min-width: 768px) { .step__arrow { display: block; } }

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

/* ============================================================
   BLOCK 10 – KONTAKT
   ============================================================ */
.contact-wrap {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr 1.1fr; }
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-tel, .contact-wa {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: border-color .2s, transform .15s;
}
.contact-tel:hover { border-color: var(--teal); transform: translateX(4px); }
.contact-wa:hover  { border-color: var(--wa);   transform: translateX(4px); }

.contact-tel__icon, .contact-wa__icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-tel__icon { background: var(--teal-lt); color: var(--teal-dd); }
.contact-wa__icon  { background: #f0fdf4; color: var(--wa); }

.contact-tel__label, .contact-wa__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.contact-tel__num { font-size: var(--text-xl); font-weight: 800; color: var(--ink); }
.contact-wa__num  { font-size: var(--text-base); font-weight: 700; color: var(--ink); }

.contact-hours {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 500;
  padding: .75rem 1rem;
  background: var(--light);
  border-radius: var(--r);
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .25rem;
}
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink-2);
}
.form-field input,
.form-field textarea {
  font-family: var(--font);
  font-size: var(--text-base);
  padding: .9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--light);
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a0aec0; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(136,205,206,.2);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-dsgvo {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-dsgvo input { width: 18px; height: 18px; margin-top: .1rem; flex-shrink: 0; accent-color: var(--teal); }
.form-dsgvo a { color: var(--teal-d); text-decoration: underline; }

.form-note {
  font-size: .875rem;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-2);
  color: rgba(255,255,255,.75);
  padding-top: 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer__col h4 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .25rem;
}
.footer__col a, .footer__col span {
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--teal); }

.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .25rem;
}
.footer__brand .nav__logo { background: var(--teal); }
.footer__brand strong { font-size: 1rem; font-weight: 700; color: #fff; }
.footer__logo-svg { height: 130px; width: auto; display: block; }
.footer__tagline { font-size: .9rem; color: var(--teal); font-style: italic; }
.footer__stars { font-size: .875rem; color: rgba(255,255,255,.6); }
.footer__stars span { margin-left: .25rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.25rem;
}
.footer__bottom span { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
/* FAB group — stacks phone + WhatsApp buttons */
.fab-group {
  position: fixed;
  bottom: calc(var(--sticky-h) + 1rem);
  right: 1.25rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
}
.wa-float, .tel-float {
  width: 58px; height: 58px;
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
  position: relative;
}
.wa-float {
  background: var(--wa);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
}
.tel-float {
  background: var(--teal-d);
  box-shadow: 0 4px 20px rgba(106,184,186,.45);
}
.wa-float:hover, .tel-float:hover { transform: scale(1.1); }
.wa-float__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2.5px solid var(--wa);
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0%   { opacity: .5; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.7); }
}

@media (min-width: 768px) {
  .fab-group { bottom: 1.75rem; right: 1.75rem; }
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  display: flex;
  height: var(--sticky-h);
  box-shadow: 0 -2px 16px rgba(0,0,0,.12);
}
.sticky-bar__call, .sticky-bar__wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  transition: opacity .2s;
}
.sticky-bar__call { background: var(--teal-d); }
.sticky-bar__call:hover { opacity: .92; }
.sticky-bar__wa   { background: var(--wa); }
.sticky-bar__wa:hover { opacity: .92; }

@media (min-width: 768px) { .sticky-bar { display: none; } }

/* ============================================================
   UNTERSEITEN — Page Hero
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  background: var(--teal);
}
.page-hero__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .5rem;
}
.page-hero__h1 {
  font-size: clamp(var(--text-3xl), 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.page-hero__lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  line-height: 1.7;
}
.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.page-hero__text { width: 100%; }
.page-hero__logo { align-self: center; }
.page-hero__logo-img {
  height: clamp(120px, 25vw, 220px);
  width: auto;
  display: block;
}

/* Services grid (Leistungen) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__img-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--teal-lt) 0%, #d0eef0 100%);
  flex-shrink: 0;
}
.service-card__img-ph img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.service-card__icon { font-size: 1.75rem; line-height: 1; }
.service-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
}
.service-card__text {
  font-size: var(--text-base);
  color: var(--body);
  line-height: 1.7;
}

/* Values grid (Über uns) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.value-card__icon { font-size: 1.75rem; }
.value-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
}
.value-card__text { font-size: var(--text-base); color: var(--body); line-height: 1.7; }

/* About split */
.about-split {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .about-split { grid-template-columns: 300px 1fr; } }
.about-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}

/* Prose (Impressum / Datenschutz) */
.prose { max-width: 760px; }
.prose h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: .625rem;
}
.prose h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.prose p { font-size: var(--text-base); color: var(--body); line-height: 1.8; margin-bottom: 1rem; }
.prose a { color: var(--teal-d); text-decoration: underline; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { font-size: var(--text-base); color: var(--body); line-height: 1.7; margin-bottom: .25rem; }

/* CTA band (subpages) */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-band__title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-band__text { font-size: var(--text-lg); color: rgba(255,255,255,.9); margin-bottom: 2rem; max-width: 540px; margin-inline: auto; }
.cta-band__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: var(--sticky-h);
  left: 0; right: 0;
  z-index: 800;
  background: var(--ink-2);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  padding: 1.25rem clamp(1.25rem, 5vw, 2.5rem);
}
@media (min-width: 768px) { .cookie-banner { bottom: 0; } }

.cookie-banner__inner {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: .3rem;
}
.cookie-banner__text p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__text a { color: var(--teal); text-decoration: underline; }
.cookie-banner__btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner__reject {
  padding: .7rem 1.25rem;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.cookie-banner__reject:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.cookie-banner__accept {
  padding: .7rem 1.5rem;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.cookie-banner__accept:hover { background: var(--teal-d); }

/* ============================================================
   ANNAHMESTELLEN
   ============================================================ */
.annahme-hinweis {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: #fff8e6;
  border: 1.5px solid #f59e0b;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.6;
}
.annahme-hinweis svg { color: #f59e0b; margin-top: .1rem; }

.annnahme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.annahme-region__title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dd);
  margin-bottom: .75rem;
}
.annahme-cards { display: flex; flex-direction: column; gap: .75rem; }
.annahme-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  box-shadow: var(--shadow);
}
.annahme-card__name { font-weight: 700; font-size: var(--text-sm); color: var(--ink); }
.annahme-card__addr { font-size: var(--text-sm); color: var(--muted); }
