/* =========================================================================
   schwindeltherapeut.de — Schwindeltherapie Leipzig
   Statischer Nachbau der Manus-Seite. Keine externen Abhängigkeiten.
   ========================================================================= */

@import url("fonts.css");

/* ----------------------------------------------------------- Grundwerte */
:root {
  --gruen-dunkel: #003a2f;
  --gruen: #005549;
  --gruen-hell: #194d43;
  --creme: #f7f5f1;
  --creme-alt: #f4f2ee;
  --karte: #fdfcf9;
  --akzent: #c27b5b;
  --text: #3f3935;
  --text-leise: #6c6662;
  --linie: #e4e0d8;

  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --breite: 1240px;
  --radius: 14px;
  --radius-gross: 20px;
  --schatten: 0 1px 2px rgba(0, 58, 47, .04), 0 8px 28px rgba(0, 58, 47, .06);
  --schatten-stark: 0 2px 6px rgba(0, 58, 47, .06), 0 18px 48px rgba(0, 58, 47, .10);
  --kopfhoehe: 76px;
}

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

html {
  scroll-behavior: smooth;
  /* Sprungziele nicht unter den fixen Kopf schieben */
  scroll-padding-top: calc(var(--kopfhoehe) + 16px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gruen); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gruen-dunkel);
  line-height: 1.16;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 5.6vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.85rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.3rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- Bausteine */
.huelle {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: 24px;
}

.abschnitt { padding: clamp(64px, 9vw, 118px) 0; }
.abschnitt--creme { background: var(--creme); }
.abschnitt--alt { background: var(--creme-alt); }
.abschnitt--dunkel { background: var(--gruen-dunkel); color: rgba(255, 255, 255, .84); }
.abschnitt--dunkel h2, .abschnitt--dunkel h3 { color: #fff; }

.label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--akzent);
  margin-bottom: .9rem;
}

.fuehrung {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: var(--text-leise);
  max-width: 62ch;
}

.mitte { text-align: center; }
.mitte .fuehrung { margin-inline: auto; }

/* --------------------------------------------------------------- Buttons */
.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.05em 1.7em;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.knopf:hover { transform: translateY(-1px); }
.knopf svg { width: 1.15em; height: 1.15em; flex: none; }

.knopf--voll { background: var(--gruen); color: #fff; }
.knopf--voll:hover { background: var(--gruen-dunkel); }

.knopf--rand { background: rgba(255, 255, 255, .9); color: var(--gruen-dunkel); border-color: var(--gruen-dunkel); }
.knopf--rand:hover { background: var(--gruen-dunkel); color: #fff; }

.knopf--hell { background: var(--creme); color: var(--gruen-dunkel); }
.knopf--hell:hover { background: #fff; }

.knopf--geist { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.knopf--geist:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.knopf--klein { padding: .8em 1.25em; font-size: .93rem; }

/* Sichtbarer Tastaturfokus überall */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--akzent);
  outline-offset: 3px;
  border-radius: 6px;
}

.sprungmarke {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--gruen-dunkel);
  color: #fff;
  padding: .7em 1.2em;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .2s ease;
}
.sprungmarke:focus { top: 0; }

/* ------------------------------------------------------------------ Kopf */
.kopf {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--kopfhoehe);
  display: flex;
  align-items: center;
  background: rgba(247, 245, 241, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.kopf.ist-gescrollt {
  border-bottom-color: var(--linie);
  box-shadow: 0 4px 20px rgba(0, 58, 47, .05);
}
.kopf .huelle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.marke { text-decoration: none; display: block; line-height: 1.1; }
.marke__name {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--gruen-dunkel);
  display: block;
}
.marke__ort {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-leise);
  margin-top: 2px;
}

.navi { display: flex; align-items: center; gap: 34px; }
.navi__liste {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navi__liste a {
  text-decoration: none;
  color: var(--text);
  font-size: .97rem;
  font-weight: 500;
  padding: .3em 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.navi__liste a:hover,
.navi__liste a.ist-aktiv { color: var(--gruen-dunkel); border-bottom-color: var(--akzent); }

.menue-knopf {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menue-knopf span {
  display: block;
  position: relative;
  width: 26px;
  height: 2px;
  background: var(--gruen-dunkel);
  transition: background-color .2s ease;
}
.menue-knopf span::before,
.menue-knopf span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--gruen-dunkel);
  transition: transform .25s ease, top .25s ease;
}
.menue-knopf span::before { top: -8px; }
.menue-knopf span::after { top: 8px; }
.menue-knopf[aria-expanded="true"] span { background: transparent; }
.menue-knopf[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menue-knopf[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* -------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: calc(var(--kopfhoehe) + 56px) 0 96px;
  overflow: hidden;
}
.hero__bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: 0;
}
.hero__schleier {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(247, 245, 241, .96) 0%, rgba(247, 245, 241, .90) 34%, rgba(247, 245, 241, .58) 58%, rgba(247, 245, 241, .30) 100%);
}
.hero .huelle { position: relative; z-index: 2; }
.hero__text { max-width: 610px; }

.hero__abzeichen {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 58, 47, .10);
  border-radius: 999px;
  padding: .55em 1.1em;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gruen-dunkel);
  margin-bottom: 1.6rem;
}
.hero__abzeichen svg { width: 1em; height: 1em; fill: var(--akzent); flex: none; }

.hero h1 { margin-bottom: .45em; }
.hero__einleitung {
  font-size: clamp(1.03rem, 1.6vw, 1.15rem);
  color: var(--text);
  max-width: 54ch;
  margin-bottom: 2rem;
}

.knopfreihe { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__vertrauen {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 2rem;
  font-size: .93rem;
  color: var(--text-leise);
}
.hero__vertrauen span { display: inline-flex; align-items: center; gap: .5em; }
.hero__vertrauen svg { width: 1.05em; height: 1.05em; stroke: var(--gruen); fill: none; stroke-width: 2; flex: none; }

.hero__weiter {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-leise);
  text-decoration: none;
}
.hero__weiter svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; animation: wippen 2.2s ease-in-out infinite; }
@keyframes wippen { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ------------------------------------------------- Zweispalter allgemein */
.raster-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

/* --------------------------------------------------------- Problem */
.problemliste { list-style: none; margin: 2rem 0 0; padding: 0; }
.problemliste li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 1.15em;
  color: var(--text);
}
.problemliste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--akzent);
}

.zitatkarte {
  background: var(--karte);
  border-radius: var(--radius-gross);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--schatten);
}
.zitatkarte blockquote {
  margin: 0 0 1.8rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--gruen-dunkel);
}
.person { display: flex; align-items: center; gap: .9rem; }
.person__kreis {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e3ece8;
  color: var(--gruen-dunkel);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: .95rem;
  flex: none;
}
.person__name { display: block; font-weight: 600; color: var(--gruen-dunkel); font-size: .95rem; line-height: 1.3; }
.person__rolle { display: block; font-size: .85rem; color: var(--text-leise); line-height: 1.3; }

/* ------------------------------------------------------- Bildrahmen */
.bildrahmen {
  border-radius: var(--radius-gross);
  overflow: hidden;
  box-shadow: var(--schatten-stark);
}
.bildrahmen img { width: 100%; }

/* ------------------------------------------------------- Merkmalkarten */
.merkmale {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2.2rem;
}
.merkmal {
  background: var(--karte);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.merkmal__kopf { display: flex; align-items: center; gap: .6em; margin-bottom: .45em; }
.merkmal__kopf svg { width: 1.15em; height: 1.15em; stroke: var(--gruen); fill: none; stroke-width: 1.8; flex: none; }
.merkmal__titel { font-weight: 600; color: var(--gruen-dunkel); font-size: 1rem; }
.merkmal p { font-size: .9rem; color: var(--text-leise); line-height: 1.55; margin: 0; }

/* ----------------------------------------------------------- Ablauf */
.ablauf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 3.2rem;
  counter-reset: schritt;
}
.schritt {
  position: relative;
  background: var(--karte);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  box-shadow: var(--schatten);
}
.schritt__nummer {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(0, 58, 47, .16);
  margin-bottom: .5rem;
  display: block;
}
.schritt h3 { margin-bottom: .55em; }
.schritt p { font-size: .93rem; color: var(--text-leise); line-height: 1.6; margin: 0; }
.schritt:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(0, 58, 47, .28);
  border-right: 1.5px solid rgba(0, 58, 47, .28);
  transform: translateY(-50%) rotate(45deg);
}

/* ------------------------------------------------------- Therapeutin */
.therapeutin__text { color: rgba(255, 255, 255, .82); }
.therapeutin__rolle { color: var(--akzent); font-weight: 500; margin-bottom: 1.5rem; }
.zahlen { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.4rem; }
.zahl {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 16px 22px;
  min-width: 118px;
}
.zahl__wert {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: .25em;
}
.zahl__wert svg { width: .72em; height: .72em; fill: var(--akzent); }
.zahl__was { display: block; font-size: .82rem; color: rgba(255, 255, 255, .66); margin-top: 2px; }

/* ------------------------------------------------------ Erfahrungen */
.berichte {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 3.2rem;
}
.bericht {
  background: var(--karte);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--schatten);
  display: flex;
  flex-direction: column;
}
.sterne { display: flex; gap: 3px; margin-bottom: 1.1rem; }
.sterne svg { width: 15px; height: 15px; fill: var(--akzent); }
.bericht blockquote {
  margin: 0 0 1.6rem;
  font-style: italic;
  font-size: .95rem;
  line-height: 1.72;
  color: var(--text);
  flex: 1;
}
.bericht .person { border-top: 1px solid var(--linie); padding-top: 1.2rem; }

.berichte__fuss { text-align: center; margin-top: 2.6rem; }
.textlink {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  color: var(--gruen);
  font-weight: 600;
  text-decoration: none;
}
.textlink:hover { text-decoration: underline; }
.textlink svg { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; }

.kleingedruckt {
  margin-top: 1.6rem;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--text-leise);
  max-width: 68ch;
  margin-inline: auto;
  text-align: center;
}

/* ------------------------------------------------------------- FAQ */
.faq { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 76px); align-items: start; }
.faq__telefon {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-top: 1.6rem;
  color: var(--gruen);
  font-weight: 600;
  text-decoration: none;
}
.faq__telefon svg { width: 1.1em; height: 1.1em; stroke: currentColor; fill: none; stroke-width: 1.8; }

.frage {
  background: var(--karte);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.frage > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 26px;
  position: relative;
  font-weight: 500;
  color: var(--gruen-dunkel);
}
.frage > summary::-webkit-details-marker { display: none; }
.frage > summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-bottom: 1.8px solid var(--gruen-dunkel);
  border-right: 1.8px solid var(--gruen-dunkel);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.frage[open] > summary::after { transform: translateY(-25%) rotate(-135deg); }
.frage__antwort { padding: 0 26px 22px; color: var(--text-leise); font-size: .95rem; }
.frage__antwort p { margin: 0; }

/* --------------------------------------------------------- Kontakt */
.kontakt { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 68px); align-items: start; }

.kontaktweg {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
}
.kontaktweg__symbol {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e3ece8;
  display: grid;
  place-items: center;
  flex: none;
}
.kontaktweg__symbol svg { width: 20px; height: 20px; stroke: var(--gruen); fill: none; stroke-width: 1.8; }
.kontaktweg__was { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--akzent); text-transform: uppercase; }
.kontaktweg__wert { display: block; font-weight: 500; color: var(--gruen-dunkel); line-height: 1.4; }
a.kontaktweg:hover .kontaktweg__wert { text-decoration: underline; }
.kontaktweg__zusatz { display: block; font-size: .85rem; color: var(--text-leise); line-height: 1.4; }

/* ------------------------------------------------------- Formular */
.formularkarte {
  background: var(--karte);
  border-radius: var(--radius-gross);
  padding: clamp(26px, 3.6vw, 42px);
  box-shadow: var(--schatten-stark);
}
.formularkarte h3 { margin-bottom: 1.6rem; }

.feldreihe { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feld { margin-bottom: 18px; }
.feld > label,
.feldgruppe > legend {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gruen-dunkel);
  margin-bottom: .5em;
  padding: 0;
}
.feld input,
.feld textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--linie);
  border-radius: 10px;
  padding: .85em 1em;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.feld textarea { min-height: 130px; resize: vertical; }
.feld input::placeholder,
.feld textarea::placeholder { color: #a8a29a; }
.feld input:focus,
.feld textarea:focus {
  outline: none;
  border-color: var(--gruen);
  box-shadow: 0 0 0 3px rgba(0, 85, 73, .12);
}

.feldgruppe { border: 0; padding: 0; margin: 0 0 18px; }
.wahlreihe { display: flex; flex-wrap: wrap; gap: 8px 16px; }
/* Tippziel mindestens 44 px hoch — auch am Handy sicher zu treffen */
.wahl {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  min-height: 44px;
  padding: 0 .2em;
  font-size: .95rem;
  cursor: pointer;
}
.wahl input { accent-color: var(--gruen); width: 20px; height: 20px; flex: none; cursor: pointer; }

.einwilligung {
  display: flex;
  align-items: flex-start;
  gap: .7em;
  min-height: 44px;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--text-leise);
  margin-bottom: 22px;
  cursor: pointer;
}
.einwilligung input { accent-color: var(--gruen); width: 20px; height: 20px; margin-top: .1em; flex: none; cursor: pointer; }

.formularkarte .knopf { width: 100%; }
.formular__hinweis {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--text-leise);
  text-align: center;
}

/* Honigtopf — für Menschen unsichtbar, für Bots ein Köder */
.honigtopf {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* -------------------------------------------------------- Schlussruf */
.schlussruf { background: var(--gruen); color: #fff; text-align: center; }
.schlussruf h2 { color: #fff; }
.schlussruf p { color: rgba(255, 255, 255, .84); max-width: 56ch; margin-inline: auto; }
.schlussruf .knopfreihe { justify-content: center; margin-top: 2.2rem; }

/* ------------------------------------------------------------- Fuß */
.fuss { background: var(--gruen-dunkel); color: rgba(255, 255, 255, .72); padding: clamp(52px, 6vw, 76px) 0 34px; font-size: .93rem; }
.fuss__raster { display: grid; grid-template-columns: 2fr 1.3fr 1.3fr; gap: 40px; }
.fuss .marke__name { color: #fff; }
.fuss .marke__ort { color: rgba(255, 255, 255, .5); }
.fuss__ueber { margin-top: 1.4rem; max-width: 42ch; line-height: 1.65; }
.fuss h2 { font-size: 1.02rem; color: #fff; margin-bottom: 1.1rem; }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: .35em; }
.fuss a { color: rgba(255, 255, 255, .72); text-decoration: none; display: inline-flex; align-items: flex-start; gap: .6em; padding: .55em 0; }
.fuss a:hover { color: #fff; text-decoration: underline; }
.fuss svg { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.7; flex: none; margin-top: .35em; }
.fuss__unten {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

/* ------------------------------------------------- Rechtstext-Seiten */
.rechtstext { padding: calc(var(--kopfhoehe) + 60px) 0 90px; }
.rechtstext .huelle { max-width: 820px; }
.rechtstext h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 1.2rem; }
.rechtstext h2 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); margin: 2.6rem 0 .8rem; }
.rechtstext h3 { font-size: 1.05rem; margin: 1.8rem 0 .5rem; font-family: var(--sans); font-weight: 600; }
.rechtstext p, .rechtstext li { color: var(--text); }
.rechtstext ul { padding-left: 1.3em; }
.rechtstext li { margin-bottom: .5em; }
.rechtstext address { font-style: normal; line-height: 1.8; }
.zurueck { display: inline-flex; align-items: center; gap: .5em; margin-bottom: 2rem; color: var(--gruen); text-decoration: none; font-weight: 500; }
.zurueck:hover { text-decoration: underline; }

.pruefkasten {
  background: #fdf3ec;
  border: 1px solid var(--akzent);
  border-left-width: 5px;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 1.8rem 0;
  font-size: .93rem;
  line-height: 1.65;
}
.pruefkasten strong { color: #8f4a29; }
.pruefkasten ul { margin: .7em 0 0; padding-left: 1.2em; }

.luecke {
  background: #fdecec;
  color: #9b2c2c;
  border-radius: 5px;
  padding: .1em .45em;
  font-weight: 600;
  font-size: .93em;
}

/* -------------------------------------------------- Statusseiten */
.status { min-height: 78vh; display: grid; place-items: center; padding: calc(var(--kopfhoehe) + 60px) 0 80px; text-align: center; }
.status .huelle { max-width: 620px; }
.status__symbol {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.8rem;
  background: #e3ece8;
}
.status__symbol svg { width: 34px; height: 34px; stroke: var(--gruen); fill: none; stroke-width: 2; }
.status__symbol--warn { background: #fdf0e8; }
.status__symbol--warn svg { stroke: var(--akzent); }
.status .knopfreihe { justify-content: center; margin-top: 2.2rem; }

/* ====================================================================
   Mobil / Tablet
   ==================================================================== */

@media (max-width: 1000px) {
  .ablauf { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .schritt:not(:last-child)::after { display: none; }
  .faq, .kontakt { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --kopfhoehe: 70px; }

  .menue-knopf { display: inline-flex; }

  .navi {
    position: fixed;
    inset: var(--kopfhoehe) 0 auto 0;
    display: block;
    background: var(--creme);
    border-bottom: 1px solid var(--linie);
    box-shadow: 0 18px 40px rgba(0, 58, 47, .12);
    padding: 10px 24px 26px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    max-height: calc(100dvh - var(--kopfhoehe));
    overflow-y: auto;
  }
  .navi.ist-offen { transform: translateY(0); opacity: 1; visibility: visible; }
  .navi__liste { display: block; }
  .navi__liste li { border-bottom: 1px solid var(--linie); }
  .navi__liste a {
    display: block;
    padding: 1.05em 0;
    font-size: 1.05rem;
    border-bottom: 0;
  }
  .navi > .knopf { width: 100%; margin-top: 20px; }

  .raster-2 { grid-template-columns: 1fr; }
  /* Bild im Abschnitt "Was ist Schwindeltherapie" unter den Text */
  .raster-2--bild-zuerst .raster-2__bild { order: 2; }

  .hero { min-height: 0; padding: calc(var(--kopfhoehe) + 44px) 0 84px; }
  .hero__bild { object-position: 68% center; }
  .hero__schleier {
    background: linear-gradient(180deg, rgba(247, 245, 241, .95) 0%, rgba(247, 245, 241, .90) 55%, rgba(247, 245, 241, .82) 100%);
  }
  .hero__weiter { display: none; }
  .knopfreihe .knopf { width: 100%; }

  .berichte { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr; gap: 34px; }
  .fuss__unten { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .huelle { padding-inline: 20px; }
  .ablauf { grid-template-columns: 1fr; }
  .merkmale { grid-template-columns: 1fr; }
  .feldreihe { grid-template-columns: 1fr; gap: 0; }
  .zahlen { gap: 10px; }
  .zahl { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 14px 16px; }
  .hero__abzeichen { font-size: .82rem; align-items: flex-start; }
}

/* Sehr schmale Geräte (ab 320 px) */
@media (max-width: 380px) {
  .huelle { padding-inline: 16px; }
  h1 { font-size: 1.8rem; }
  .zahl { flex: 1 1 100%; }
  .hero__vertrauen { gap: 8px 18px; font-size: .87rem; }
}

@media print {
  .kopf, .hero__weiter, .menue-knopf, .schlussruf, .formularkarte { display: none; }
  body { background: #fff; }
}
