/* ---------------------------------------------------------------------------
   Berkdar Solutions – Landingpage und digitale Visitenkarte.

   Farb-Token 1:1 aus der App (apps/web/src/app/globals.css, DUNKEL-Thema),
   damit Website und Software zusammenpassen - der Betrieb nutzt die
   Software dunkel, die Website zeigt denselben Look. Bewusst EIN Thema.

   Schrift: Inter, selbst gehostet (fonts/inter-latin.woff2, Variable Font,
   ein File fuer alle Schnitte). NICHT von Google-Servern laden - deutsche
   Seiten, die Schriften von Google beziehen, verstossen nach gaengiger
   Rechtsprechung gegen die DSGVO (LG Muenchen 2022).
   --------------------------------------------------------------------------- */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --canvas: #121214;
  --surface: #1c1c1f;
  --surface-inverse: #fafaf8;
  --accent-lime: #c9f24e;
  --accent-blue: #2f6bff;
  --ink: #f5f5f3;
  --ink-muted: #8a8d91;
  --ink-inverse: #16181a;
  --ink-inverse-muted: #5f6368;
  --ink-on-lime: #16181a;
  --danger-text: #ff8a80;
  --positive-text: #5ec27f;
  --warning-text: #fbbf24;
  --border: #2e2e33;
  --border-strong: #72727a;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-card: 24px;
  --radius-inner: 16px;
  --radius-pill: 9999px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-schweben: 0 2px 4px rgba(0, 0, 0, 0.35), 0 18px 44px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html {
  /* Dunkles Thema auch fuer Browser-Bedienelemente (Rollbalken usw.). */
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anker-Ziele nicht unter der klebenden Leiste verstecken. */
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16.5px;
  font-feature-settings: "cv05", "cv11";
}

img, svg { display: block; }

.hülle { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { margin: 0; letter-spacing: -0.025em; line-height: 1.12; }

p { margin: 0; }

.gedämpft { color: var(--ink-muted); }

/* ------------------------------- Navigation ------------------------------ */

.leiste {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 18, 20, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.leiste-innen {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.marke {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.marke-zeichen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-lime);
  color: var(--ink-on-lime);
  font-weight: 800;
  font-size: 17px;
}

.leiste-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.leiste-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: color 0.15s, background-color 0.15s;
}

.leiste-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.07); }

@media (max-width: 860px) {
  .leiste-links { display: none; }
  .leiste-innen .knopf { margin-left: auto; }
}

/* -------------------------------- Knoepfe -------------------------------- */

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--accent-lime);
  color: var(--ink-on-lime);
  transition: transform 0.15s, filter 0.15s, background-color 0.15s;
  cursor: pointer;
}

.knopf:hover { filter: brightness(0.96); transform: translateY(-1px); }

.knopf.neben {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}

.knopf.neben:hover { background: rgba(255, 255, 255, 0.06); filter: none; }

.knopf.klein { padding: 9px 18px; font-size: 15px; }

.knopf:focus-visible { outline: 3px solid #64748b; outline-offset: 2px; }

.knopf svg { flex: none; }

/* ---------------------------------- Hero --------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 56px 0 64px; gap: 44px; }
}

.hero-abzeichen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 26px;
}

.hero-abzeichen::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-lime);
  outline: 3px solid rgba(201, 242, 78, 0.35);
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 800;
}

/* Auf dunklem Grund leuchtet das markierte Wort in Lime - ein Farbbalken
   HINTER heller Schrift waere unlesbar. */
.marker { color: var(--accent-lime); }

.hero-sub {
  font-size: 19px;
  color: var(--ink-muted);
  max-width: 520px;
  margin-top: 22px;
  line-height: 1.65;
}

.hero-aktionen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-vertrauen {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Produkt-Attrappe: kleine Dashboard-Karte in der echten App-Optik -
   ehrlicher als ein Stockfoto und zeigt sofort, wie die Software aussieht. */

.mock {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-schweben);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.mock-kopf {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}

.mock-punkt { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }

.mock-adresse {
  margin-left: 10px;
  font-size: 12.5px;
  color: var(--ink-muted);
  background: var(--canvas);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
}

.mock-körper { padding: 20px; display: grid; gap: 14px; }

.mock-kacheln { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.mock-kachel {
  background: var(--canvas);
  border-radius: var(--radius-inner);
  padding: 14px;
}

.mock-kachel.invers { background: var(--surface-inverse); color: var(--ink-inverse); }

.mock-kachel.lime { background: var(--accent-lime); color: var(--ink-on-lime); }

.mock-wert { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }

.mock-label { font-size: 12px; margin-top: 2px; opacity: 0.75; }

.mock-zeile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--canvas);
  border-radius: var(--radius-inner);
  padding: 11px 14px;
  font-size: 13.5px;
}

.mock-zeile .ampel { width: 9px; height: 9px; border-radius: 50%; flex: none; }

.mock-zeile b { font-weight: 600; }

.mock-zeile .rechts { margin-left: auto; color: var(--ink-muted); font-size: 12.5px; }

/* ------------------------------- Abschnitte ------------------------------ */

.abschnitt { padding: 88px 0; }

.abschnitt.getönt { background: var(--surface); }

.vorzeile {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.abschnitt h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; max-width: 640px; }

.abschnitt-sub { margin-top: 16px; font-size: 17.5px; color: var(--ink-muted); max-width: 620px; }

.gitter { display: grid; gap: 18px; margin-top: 44px; }

.gitter.zwei { grid-template-columns: repeat(2, 1fr); }
.gitter.drei { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 860px) {
  .gitter.zwei, .gitter.drei { grid-template-columns: 1fr; }
  .abschnitt { padding: 64px 0; }
}

.zelle {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  transition: transform 0.18s, box-shadow 0.18s;
}

.zelle:hover { transform: translateY(-3px); box-shadow: var(--shadow-schweben); }

.abschnitt.getönt .zelle { background: var(--canvas); box-shadow: none; border-color: var(--border); }

.zelle h3 { font-size: 18.5px; font-weight: 700; margin: 16px 0 8px; }

.zelle p { font-size: 15.5px; color: var(--ink-muted); }

.symbol {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-lime);
  color: var(--ink-on-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Problem-Karten: bewusst ohne gruene Symbole - das ist die Schmerz-Seite. */
.zelle .problem-nr {
  font-size: 14px;
  font-weight: 700;
  color: var(--danger-text);
}

/* Nummerierte Schritte (01/02/03), Rhythmus wie beim Vorbild. */
.schritt-nr {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-strong);
}

/* ------------------------------ App-Abschnitt ---------------------------- */

.app-gitter {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: center;
  margin-top: 8px;
}

@media (max-width: 960px) { .app-gitter { grid-template-columns: 1fr; gap: 40px; } }

.telefon {
  width: min(290px, 80%);
  margin: 0 auto;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-schweben);
}

.telefon-schirm {
  background: var(--canvas);
  border-radius: 32px;
  padding: 18px 14px;
  display: grid;
  gap: 10px;
}

.telefon-kerbe {
  width: 86px;
  height: 22px;
  background: #000;
  border-radius: var(--radius-pill);
  margin: 0 auto 4px;
}

.telefon-gruß { font-size: 15px; font-weight: 700; padding: 0 4px; }

.telefon-kachel {
  background: var(--surface);
  border-radius: var(--radius-inner);
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.telefon-kachel span:last-child { margin-left: auto; font-weight: 500; color: var(--ink-muted); font-size: 12px; }

.telefon-kachel.lime { background: var(--accent-lime); }
.telefon-kachel.lime span:last-child { color: var(--ink-on-lime); opacity: 0.7; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }

.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 14.5px;
  font-weight: 500;
}

.abschnitt.getönt .chip { background: var(--canvas); }

.häkchenliste { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 13px; }

.häkchenliste li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; }

.häkchenliste .haken {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-lime);
  color: var(--ink-on-lime);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------- Dunkles Band ---------------------------- */

.band {
  background: var(--surface-inverse);
  color: var(--ink-inverse);
  border-radius: var(--radius-card);
  padding: clamp(36px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

.band h2 { color: var(--ink-inverse); }

.band p { color: var(--ink-inverse-muted); margin-top: 12px; max-width: 480px; }

.band .knopf.neben { color: var(--ink-inverse); border-color: rgba(22, 24, 26, 0.4); }
.band .knopf.neben:hover { background: rgba(22, 24, 26, 0.06); }

/* --------------------------------- Fusszeile ----------------------------- */

.fuß {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  margin-top: 96px;
  padding: 56px 0 40px;
  font-size: 15px;
}

.fuß-gitter {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

@media (max-width: 720px) { .fuß-gitter { grid-template-columns: 1fr; } }

.fuß .marke { color: var(--ink); }

.fuß h4 {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.fuß a { color: var(--ink-muted); text-decoration: none; }
.fuß a:hover { color: var(--ink); }

.fuß ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }

.fuß-unten {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13.5px;
}

/* ------------------------- Unterseiten (Impressum) ----------------------- */

.doku { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }

.doku .karte { background: var(--surface); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: clamp(24px, 5vw, 44px); }

.doku h1 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }

.doku h2 { font-size: 18px; font-weight: 700; margin: 26px 0 8px; }

.doku p { margin: 0 0 10px; color: var(--ink); }

a { color: var(--accent-blue); }

/* ------------------------- Visitenkarte (/karte) ------------------------- */

.vk-körper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 20px 36px;
  /* Sanfter Lime-Schein oben - gibt der Karte Buehne, bleibt seriös. */
  background:
    radial-gradient(560px 300px at 50% -80px, rgba(201, 242, 78, 0.14), transparent 70%),
    var(--canvas);
}

.vk { max-width: 400px; margin: 0 auto; width: 100%; }

.vk-karte {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow-schweben);
  border: 1px solid var(--border-subtle);
  padding: 30px 24px 24px;
  text-align: center;
}

.vk-monogramm {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--surface-inverse);
  color: var(--ink-inverse);
  font-size: 27px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.vk-name { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; }

.vk-rolle { color: var(--ink-muted); margin-top: 3px; font-size: 15.5px; }

.vk-firma {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  background: var(--canvas);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.vk-firma .marke-zeichen { width: 20px; height: 20px; border-radius: 6px; font-size: 12px; }

.vk-speichern { width: 100%; margin-top: 22px; padding: 16px 22px; font-size: 16.5px; }

.vk-reihe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }

.vk-aktion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-inner);
  padding: 14px 8px 11px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.15s, background-color 0.15s;
}

.vk-aktion:hover { transform: translateY(-2px); background: #26262a; }

.vk-fuß { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--ink-muted); }
.vk-fuß a { color: var(--ink-muted); }

/* ------------------------------- Animationen ----------------------------- */

@keyframes auftauchen {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.auftauchen { animation: auftauchen 0.6s ease-out both; }
.auftauchen.spät { animation-delay: 0.15s; }
.auftauchen.später { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .auftauchen, .auftauchen.spät, .auftauchen.später { animation: none; }
  .zelle, .knopf, .vk-aktion { transition: none; }
}

/* ----------------------------- Sprachwahl ------------------------------- */
/* Bewusst ausserhalb von .leiste-links: die Linkleiste verschwindet unter
   860px, die Sprachwahl muss auch auf dem Handy erreichbar bleiben. */
.sprachwahl {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.leiste-links + .sprachwahl { margin-left: 12px; }
.sprachwahl span[aria-current],
.sprachwahl a {
  padding: 5px 7px;
  border-radius: 7px;
  text-decoration: none;
}
.sprachwahl span[aria-current] { color: var(--ink); }
.sprachwahl a { color: var(--ink-muted); }
.sprachwahl a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.07); }
@media (max-width: 860px) {
  /* .leiste-links ist hier ausgeblendet - die Sprachwahl rueckt nach. */
  .sprachwahl { margin-left: auto; }
  .leiste-innen .knopf { margin-left: 0; }
}

/* ------------------------------ Burger-Menue ----------------------------- */
/* Auf schmalen Schirmen ersetzt der Burger die Linkleiste - Links, die
   einfach verschwinden, sind kein Menue. Panel unter der Leiste, grosse
   Tippflaechen, Demo-Knopf inklusive. */

.menue-knopf {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.menue-knopf:focus-visible { outline: 3px solid #64748b; outline-offset: 2px; }
.menue-knopf[aria-expanded="true"] { background: var(--accent-lime); color: var(--ink-on-lime); border-color: transparent; }

.handymenue {
  display: grid;
  gap: 4px;
  padding: 10px 24px 18px;
  border-top: 1px solid var(--border-subtle);
}
/* Ohne diese Regel schluege display:grid das hidden-Attribut - die
   Browser-Vorgabe [hidden]{display:none} verliert gegen Autorenstile. */
.handymenue[hidden] { display: none; }
.handymenue a:not(.knopf) {
  display: block;
  padding: 13px 12px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}
.handymenue a:not(.knopf):hover { background: rgba(255, 255, 255, 0.06); }
.handymenue .knopf { margin-top: 10px; width: 100%; }

@media (min-width: 861px) {
  /* Desktop hat die Linkleiste - Burger und Panel existieren dort nicht. */
  .handymenue { display: none !important; }
}
@media (max-width: 860px) {
  .menue-knopf { display: inline-flex; }
  /* Der Demo-Knopf zieht ins Menue um; in der Leiste bleiben Marke,
     Sprachwahl und Burger - das passt bis 320 px. */
  .leiste-innen > .knopf { display: none; }
}

/* --------------------------- Feinschliff Handy ---------------------------
   Gemessen bei echten 360 px (Puppeteer): der Demo-Knopf sprengte die
   Kopfleiste (33 px Ueberlauf), die Dashboard-Attrappe war gequetscht,
   Ueberschrift und Abstaende zu wuchtig fuer schmale Schirme.
   Leitbild fuers Gefuehl: dicircular.de - zentrierter Hero, weicher
   Farbschein, grosse Tippflaechen, ruhiger Ein-Spalten-Fluss. */

@media (max-width: 560px) {
  /* Kopfleiste: Markenname nicht umbrechen, alles enger setzen. */
  .leiste-innen { gap: 12px; height: 60px; }
  .marke { font-size: 16px; gap: 8px; white-space: nowrap; }
  .marke-zeichen { width: 28px; height: 28px; font-size: 15px; }
  .sprachwahl { margin-right: 2px; }
  html { scroll-padding-top: 72px; }

  /* Weicher Lime-Schein hinter dem Einstieg - gibt der dunklen Flaeche
     Tiefe, wie der Schein auf der Visitenkarte. */
  body {
    background:
      radial-gradient(420px 320px at 50% -60px, rgba(201, 242, 78, 0.09), transparent 70%),
      var(--canvas);
  }

  /* Hero: zentriert, mit Luft, Knoepfe in voller Breite untereinander. */
  .hero { padding: 44px 0 56px; gap: 40px; }
  .hero > div:first-child { text-align: center; }
  .hero h1 { font-size: clamp(31px, 9.4vw, 40px); }
  .hero-sub { font-size: 17px; margin-top: 16px; margin-inline: auto; }
  .hero-abzeichen { margin-bottom: 20px; font-size: 13px; }
  .hero-aktionen { margin-top: 28px; flex-direction: column; }
  .hero-aktionen .knopf { width: 100%; padding: 15px 24px; }
  .hero-vertrauen { justify-content: center; text-align: center; }

  /* Dashboard-Attrappe: kleinere Innenmasse statt gequetschter Inhalte. */
  .mock-kopf { padding: 10px 12px; }
  .mock-adresse { font-size: 11px; padding: 3px 10px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mock-körper { padding: 13px; gap: 10px; }
  .mock-kacheln { gap: 8px; }
  .mock-kachel { padding: 11px 10px; }
  .mock-wert { font-size: 21px; }
  .mock-label { font-size: 10.5px; }
  .mock-zeile { font-size: 12.5px; padding: 10px 12px; gap: 8px; }

  /* Abschnitte: Kopf zentriert (Vorzeile, Ueberschrift, Untertitel),
     die Karten selbst bleiben linksbuendig lesbar. */
  .abschnitt { padding: 60px 0; }
  .abschnitt .vorzeile { display: block; text-align: center; }
  .abschnitt h2 { font-size: clamp(25px, 7.2vw, 30px); text-align: center; margin-inline: auto; text-wrap: balance; }
  .abschnitt-sub { font-size: 16px; margin-top: 12px; text-align: center; margin-inline: auto; }
  .gitter { gap: 16px; margin-top: 32px; }
  .zelle { padding: 24px 20px; border-radius: 20px; }
  .zelle h3 { font-size: 17.5px; margin-top: 13px; }
  .schritt-nr { font-size: 36px; }
  .chips { justify-content: center; }

  /* Kontakt-Band und Fusszeile: weniger Leerlauf auf kleiner Flaeche. */
  .band { padding: 32px 22px; border-radius: 20px; text-align: center; }
  .band p { margin-inline: auto; }
  .band > div:last-child { width: 100%; }
  .fuß { margin-top: 64px; padding: 44px 0 32px; }
  .fuß-gitter { gap: 28px; }
  .fuß-unten { margin-top: 32px; }

  .telefon { border-radius: 36px; }
  .app-gitter { gap: 36px; }
}

@media (max-width: 420px) {
  /* Kategorie-Etikett rechts in den Attrappen-Zeilen ist Dekor - der Platz
     gehoert dem Inhalt. */
  .mock-zeile .rechts { display: none; }
}

@media (max-width: 360px) {
  /* Kleinste Geraete (320 px): Leiste noch einen Tick enger, sonst ragt
     der Burger 7 px hinaus (gemessen). */
  .leiste-innen { gap: 8px; }
  .marke { font-size: 15px; }
  .sprachwahl { font-size: 12.5px; }
  .sprachwahl span[aria-current], .sprachwahl a { padding: 4px 5px; }
  .menue-knopf { width: 38px; height: 38px; }
}
