/* ==========================================================================
   Reinigungsdesk — Stylesheet
   Rezeptur: SOUVERÄN (web-design §0.6) + calm-editorial + award-dna/_PATTERNS §8
   Disziplin, die hier bewusst durchgehalten wird:
     · Flächen nie #fff/#000 — immer 2–4 Punkte Sättigung
     · EINE Tinte, über Alpha gestaffelt (statt Grau-Treppe)
     · EIN Akzent (--lime), höchstens 2× pro Bildschirmseite sichtbar
     · 3 Schriften mit getrennten Jobs: Display / Text / Mono für Labels
     · 3 Radien + eine Button-Form
     · Genau 2 Sektions-Abstände
     · Schatten nur im Hover, sonst Hairlines
     · Typo über clamp(), nicht über Breakpoints
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Flächen — gebrochen, warm */
  --paper:     #F4F2EC;
  --paper-2:   #FAF9F5;
  --forest:    #14331C;   /* Marken-Dunkelgrün, dunkler Anker */
  --forest-2:  #1C4227;   /* eine Stufe heller, Karten auf Forest */

  /* EINE Tinte, über Alpha gestaffelt */
  --ink:       #191C14;
  --ink-70:    rgba(25, 28, 20, .70);
  --ink-45:    rgba(25, 28, 20, .45);
  --ink-30:    rgba(25, 28, 20, .30);
  --ink-14:    rgba(25, 28, 20, .14);
  --ink-08:    rgba(25, 28, 20, .08);

  /* EIN Licht auf dunklem Grund, ebenfalls über Alpha */
  --lite:      #F1F5EC;
  --lite-70:   rgba(241, 245, 236, .70);
  --lite-45:   rgba(241, 245, 236, .45);
  --lite-18:   rgba(241, 245, 236, .18);
  --lite-10:   rgba(241, 245, 236, .10);

  /* DER Akzent — sparsam */
  --lime:      #7ED957;

  /* Schriften — drei Jobs */
  --f-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --f-text:    "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Radien — drei + Button-Form */
  --r-sm:      8px;
  --r-md:      16px;
  --r-lg:      24px;
  --r-pill:    999px;

  /* Genau zwei Sektions-Abstände */
  --sec:       clamp(80px, 9vw, 132px);
  --sec-sm:    clamp(48px, 5vw, 76px);

  --maxw:      1180px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-text);
  font-weight: 400;
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.65;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }   /* muss das img{display:block} oben schlagen */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--lime); color: var(--forest); }

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;              /* Serif 400 — nie Bold (SOUVERÄN) */
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);             /* Überschriften in Tinte, NIE in der Markenfarbe */
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.6vw, 74px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-family: var(--f-text); font-size: clamp(17px, 1.4vw, 19px); font-weight: 600; letter-spacing: -.005em; line-height: 1.35; }
h1 em, h2 em { font-style: italic; }   /* der einzige Display-Akzent — bleibt in Tinte */

p { text-wrap: pretty; }
.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--ink-70); max-width: 34em; }

/* Mono-Label — gedämpft, NICHT in der Akzentfarbe (sonst konkurriert es mit dem CTA) */
.label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-45);
  display: block;
  margin-bottom: 20px;
}
.on-dark .label { color: var(--lite-45); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
section { padding-block: var(--sec); }
.section-sm { padding-block: var(--sec-sm); }
.sec-head { max-width: 46rem; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head h2 { max-width: 13em; }                  /* relativ zur eigenen Größe, sonst bricht die Headline zu früh um */
.sec-head p { color: var(--ink-70); margin-top: 18px; font-size: clamp(16px, 1.2vw, 18px); max-width: 34em; }

.on-dark { background: var(--forest); color: var(--lite-70); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--lite); }
.on-dark .lead { color: var(--lite-70); }
.alt { background: var(--paper-2); }

/* ---------- Buttons — EINE Geometrie, Hover = Farbwechsel ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-text); font-size: 15px; font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-accent  { background: var(--lime);   color: var(--forest); }      /* DER Akzent */
.btn-accent:hover { background: var(--forest); color: var(--lite); }
.btn-solid   { background: var(--forest); color: var(--lite); }
.btn-solid:hover { background: var(--lime); color: var(--forest); }
.btn-ghost   { border-color: var(--ink-30); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.on-dark .btn-ghost { border-color: var(--lite-45); color: var(--lite); }
.on-dark .btn-ghost:hover { background: var(--lite); color: var(--forest); border-color: var(--lite); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--ink-14); background: color-mix(in srgb, var(--paper) 96%, transparent); }
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.wordmark { font-family: var(--f-display); font-size: 25px; letter-spacing: -.02em; line-height: 1; }
.wordmark span { font-style: italic; }
.nav-links { display: flex; gap: 30px; font-size: 15px; color: var(--ink-70); }
.nav-links a { transition: color .25s; }
.nav-links a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(56px, 7vw, 96px) clamp(48px, 6vw, 80px); }
/* Im Hero trägt das Label eine echte Aussage („mit KI-Assistent“) und darf
   deshalb größer und dunkler sein als die Labels der übrigen Abschnitte. */
.hero .label {
  font-size: clamp(12px, 1vw, 13.5px);
  color: var(--ink-70);
  letter-spacing: .18em;
  margin-bottom: clamp(26px, 3vw, 36px);
}
.hero h1 { max-width: 15em; }
.hero .lead { margin-top: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
/* Die drei Nutzen-Punkte — für alle, die nur überfliegen. */
.hero-wins {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--ink-14);
  font-size: clamp(15px, 1.2vw, 17px); font-weight: 500;
}
.hero-wins li { display: flex; align-items: center; gap: 10px; }
/* Punkte bewusst NICHT in der Akzentfarbe — der Akzent gehört dem CTA,
   sonst konkurrieren vier grüne Elemente auf dem ersten Bildschirm. */
.hero-wins li::before {
  content: ""; flex: none; width: 7px; height: 7px;
  border-radius: var(--r-pill); background: var(--ink-30);
}
.hero-meta {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em;
  color: var(--ink-45); margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
}

/* Foto-Bänder — voll präsent, kein Schleier, kein Text darüber.
   Oben der Kunde (wie er sich fühlt), weiter unten das Team (wie gearbeitet wird). */
.band { height: clamp(240px, 36vw, 460px); overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; }
/* Das Hero-Bild läuft ungeschnitten — sonst fällt die untere Bildhälfte weg,
   und genau da sitzt die Hand mit der Uhr. */
.band--hero { height: auto; aspect-ratio: 16 / 9; }
.band--hero img { object-position: center; }
@media (max-width: 700px) {
  .band--hero { aspect-ratio: auto; height: 360px; }
  .band--hero img { object-position: 44% center; }
}

/* ---------- Signature: der Morgen ---------- */
.morning { max-width: 940px; }
.morning-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--ink-14); }
.on-dark .morning-head { border-bottom-color: var(--lite-18); }
.morning-head h3 { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-45); }
.on-dark .morning-head h3 { color: var(--lite-45); }
.morning-head .tot { font-family: var(--f-display); font-size: clamp(28px, 3.4vw, 42px); line-height: 1; color: var(--ink); }
.on-dark .morning-head .tot { color: var(--lite); }

.tl { list-style: none; }
.tl li {
  display: grid; grid-template-columns: 68px 1fr; gap: 20px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--ink-08);
  font-size: clamp(15px, 1.15vw, 17px);
}
.on-dark .tl li { border-bottom-color: var(--lite-10); color: var(--lite-70); }
.tl li:last-child { border-bottom: 0; }
.tl time { font-family: var(--f-mono); font-size: 13px; color: var(--ink-45); font-variant-numeric: tabular-nums; }
.on-dark .tl time { color: var(--lite-45); }
.morning-foot { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--ink-14); color: var(--ink-70); font-size: 15px; }
.on-dark .morning-foot { border-top-color: var(--lite-18); color: var(--lite-70); }

/* ---------- Ohne / Mit — kurze Listen, wie im Original ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
.col-head {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-45);
  padding-bottom: 14px; border-bottom: 1px solid var(--ink-14); margin-bottom: 4px;
}
.plain { list-style: none; }
.plain li {
  padding: 14px 0 14px 26px; border-bottom: 1px solid var(--ink-08);
  font-size: clamp(15.5px, 1.2vw, 17px); color: var(--ink-70); position: relative;
}
.plain li::before {
  content: ""; position: absolute; left: 2px; top: 22px;
  width: 10px; height: 1.5px; background: var(--ink-30); border-radius: 2px;
}
.plain.good li { color: var(--ink); }
.plain.good li::before { background: var(--lime); width: 10px; height: 10px; top: 18px; border-radius: 50%; }

/* ---------- Der Morgen — zwei kurze Zeitleisten nebeneinander ---------- */
.two-tl { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-top: 28px; }
.tl-cap {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lite-45); display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px;
}
.tl-cap b { font-family: var(--f-display); font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.02em; text-transform: none; color: var(--lite); }

/* ---------- Modul-Liste — Hairlines statt Karten-Suppe ---------- */
.mods { border-top: 1px solid var(--ink-14); }
.mod {
  display: grid; grid-template-columns: minmax(180px, 1fr) 2fr; gap: 8px 40px;
  padding: 26px 0; border-bottom: 1px solid var(--ink-14);
  transition: padding-left .4s var(--ease);
}
.mod:hover { padding-left: 12px; }
.mod h3 { align-self: start; }
.mod p { color: var(--ink-70); font-size: clamp(15px, 1.15vw, 16.5px); }
.mod .soon {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-45); border: 1px solid var(--ink-30); border-radius: var(--r-pill);
  padding: 3px 9px; margin-left: 10px; white-space: nowrap; display: inline-block; vertical-align: 2px;
}

/* ---------- Screenshots ---------- */
/* Die Produkt-Screenshots stehen direkt im Hero — sie sind der Beweis,
   dass es die Software wirklich gibt, und brauchen keinen eigenen Abschnitt. */
.hero-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(48px, 6vw, 80px); }
.shot { border: 1px solid var(--ink-14); border-radius: var(--r-md); overflow: hidden; background: var(--paper); transition: box-shadow .4s var(--ease); }

.shot:hover { box-shadow: 0 22px 60px -24px rgba(25, 28, 20, .32); }   /* Schatten NUR im Hover */
/* Produkt-Screenshots werden VOLLSTÄNDIG gezeigt (contain, nicht cover) —
   ein angeschnittener Screenshot widerspricht dem Versprechen „kein Mockup“. */
.shot .frame { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); display: grid; place-items: center; padding: 10px; }
.shot .frame img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--r-sm); }
.shot .cap { padding: 16px 20px 18px; border-top: 1px solid var(--ink-14); }
.shot .cap p { color: var(--ink-70); font-size: 14.5px; margin-top: 3px; }
/* Screenshot-Platzhalter: zeigt sich nur, wenn die Datei noch fehlt.
   Sobald das Bild unter dem angegebenen Pfad liegt, verschwindet er von selbst. */
.shot .ph { display: none; }
.shot .frame.pending {
  border: 1px dashed var(--ink-30);
  background: repeating-linear-gradient(-45deg, transparent 0 9px, var(--ink-08) 9px 10px);
}
.shot .frame.pending .ph {
  display: block; padding: 24px; text-align: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--ink-45); line-height: 2;
}
.shot .frame.pending .ph::after {
  content: "Screenshot hier ablegen"; display: block;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-30);
}

/* Handy-Aufnahmen: Hochformat, oben ausgerichtet. Muss NACH `.shot .frame` stehen —
   gleiche Spezifität, sonst gewinnt das Querformat oben. */
.shot--phone .frame { aspect-ratio: 10 / 16; padding: 0; background: var(--paper-2); }
.shot--phone .frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 0; }
.shot--phone .cap { padding: 13px 18px 15px; }
.shot--phone .cap h3 { font-size: 15px; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.step { padding-top: 22px; border-top: 2px solid var(--ink); }
.step:last-child { border-top-color: var(--lime); }   /* Akzent als Zielmarke — eine Nennung */
.step .when { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-45); }
.step h3 { margin: 12px 0 8px; }
.step p { color: var(--ink-70); font-size: 15.5px; }

/* ---------- Branchen ---------- */
.branches { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.branch { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3 / 4; }
.branch img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.branch:hover img { transform: scale(1.05); }
.branch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 51, 28, .82), rgba(20, 51, 28, .1) 55%, transparent); }
.branch figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 1; color: var(--lite); font-family: var(--f-display); font-size: clamp(18px, 1.6vw, 22px); }

/* ---------- Angebot / Garantie ---------- */
.offer { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.incl { list-style: none; border-top: 1px solid var(--lite-18); }
.incl li { padding: 13px 0; border-bottom: 1px solid var(--lite-18); font-size: 15.5px; color: var(--lite-70); display: flex; gap: 14px; }
.incl li::before { content: "—"; color: var(--lite-45); }
.guarantee { border: 1px solid var(--lite-18); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); background: var(--forest-2); }
.guarantee p { font-family: var(--f-display); font-size: clamp(20px, 2vw, 27px); line-height: 1.25; color: var(--lite); }
.guarantee .label { margin-bottom: 16px; }
/* Der Akzent gehört dem Button — die Kapazitätszeile bekommt nur den Punkt, nicht die Farbe. */
.capacity { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .04em; color: var(--lite-70); margin-top: 26px; display: flex; align-items: center; gap: 10px; }
.capacity::before { content: ""; width: 7px; height: 7px; border-radius: var(--r-pill); background: var(--lime); flex: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; border-top: 1px solid var(--ink-14); }
.qa { border-bottom: 1px solid var(--ink-14); }
.qa summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; cursor: pointer; font-family: var(--f-display); font-size: clamp(19px, 1.7vw, 23px); line-height: 1.3; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; flex: none; width: 11px; height: 11px; border-right: 1.5px solid var(--ink-45); border-bottom: 1.5px solid var(--ink-45); transform: rotate(45deg) translate(-3px, -3px); transition: transform .35s var(--ease); }
.qa[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.qa .ans { padding-bottom: 26px; color: var(--ink-70); max-width: 60ch; }

/* ---------- Footer ---------- */
footer { background: var(--forest); color: var(--lite-45); padding-block: var(--sec-sm) 32px; }
footer .wordmark { color: var(--lite); }
.f-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--lite-18); }
.f-grid p { font-size: 14.5px; color: var(--lite-45); max-width: 26em; margin-top: 16px; }
.f-grid h4 { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--lite-45); margin-bottom: 16px; }
.f-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.f-grid ul a { color: var(--lite-70); transition: color .25s; }
.f-grid ul a:hover { color: var(--lite); }
.f-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .04em; }

/* ---------- Sticky-CTA (mobil) ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  display: none; gap: 10px; align-items: center; justify-content: space-between;
  background: var(--forest); color: var(--lite); border-radius: var(--r-pill);
  padding: 10px 10px 10px 22px;
  box-shadow: 0 16px 40px -14px rgba(20, 51, 28, .55);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.sticky-cta.in { transform: none; }
.sticky-cta span { font-size: 14px; font-weight: 500; }
.sticky-cta .btn { padding: 11px 20px; font-size: 14px; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(22px, 2.2vw, 30px); margin: 44px 0 14px; }
.legal h3 { margin: 28px 0 10px; }
.legal p, .legal li { color: var(--ink-70); margin-bottom: 12px; font-size: 15.5px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 16px; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--ink-14); color: var(--ink-70); }
.legal th { color: var(--ink); font-weight: 600; }

/* Die aus dem Bestand übernommenen Rechtstexte bringen eigene Klassen mit.
   Hier werden sie auf die Tokens dieser Seite gemappt, statt sie umzuschreiben —
   der juristische Text bleibt dadurch unangetastet. */
.legal section { padding-block: 0; }              /* sonst greift der globale Sektions-Abstand */
.legal section + section { margin-top: 40px; }
.legal .intro { font-size: 17px; color: var(--ink-70); margin-bottom: 28px; }
.legal .num { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; color: var(--ink-45); margin-right: 10px; }
.legal .link, .legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--ink-30); }
.legal .link:hover, .legal a:hover { text-decoration-color: var(--ink); }
.legal address { font-style: normal; color: var(--ink-70); margin-bottom: 14px; }

.legal .data-card { border: 1px solid var(--ink-14); border-radius: var(--r-md); overflow: hidden; margin-bottom: 22px; }
.legal .data-row { display: grid; grid-template-columns: minmax(140px, 1fr) 2fr; gap: 8px 22px; padding: 13px 18px; border-bottom: 1px solid var(--ink-14); font-size: 15px; }
.legal .data-row:last-child { border-bottom: 0; }
.legal .data-row .k { color: var(--ink-45); font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; align-self: center; }
.legal .data-row .v { color: var(--ink); }

.legal .note { border-left: 2px solid var(--lime); background: var(--paper-2); padding: 14px 18px; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: 15px; color: var(--ink-70); margin-bottom: 20px; }
.legal .card { border: 1px solid var(--ink-14); border-radius: var(--r-md); padding: 20px; margin-bottom: 18px; }
.legal .card.success { border-color: var(--lime); }
.legal .contact-list { list-style: none; padding-left: 0; }
.legal .contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.legal .ico { flex: none; color: var(--ink-45); }
.legal .eyebrow { display: none; }                 /* Seitenkopf bringt das Label schon mit */

/* Kontaktformular aus dem Bestand */
.legal .field { margin-bottom: 18px; }
.legal .field label { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.legal input[type="text"], .legal input[type="email"], .legal input[type="tel"], .legal textarea, .legal select {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--ink-14); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color .25s;
}
.legal input:focus, .legal textarea:focus, .legal select:focus { outline: none; border-color: var(--ink); }
.legal textarea { min-height: 140px; resize: vertical; }
.legal .consent, .legal .check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-70); margin-bottom: 18px; }
.legal .consent input, .legal .check input { margin-top: 4px; flex: none; }
.legal .form-note { font-size: 13px; color: var(--ink-45); margin-top: 14px; }
.legal .feedback { font-size: 14.5px; padding: 12px 16px; border-radius: var(--r-sm); margin-top: 14px; }
.legal .feedback.err { border: 1px solid var(--ink-30); color: var(--ink); }
.legal .grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .legal .grid { grid-template-columns: 1.2fr .8fr; } }
@media (max-width: 560px) { .legal .data-row { grid-template-columns: 1fr; } }

/* Alt-Klasse aus dem Bestand auf den aktuellen Akzent-Button mappen */
.btn-green { background: var(--lime); color: var(--forest); }
.btn-green:hover { background: var(--forest); color: var(--lite); }

/* ---------- Cookie-Banner ---------- */
.ck {
  position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 460px; margin-inline: auto;
  z-index: 90; display: none;
  background: var(--forest); color: var(--lite-70);
  border-radius: var(--r-lg); padding: 22px;
  font-size: 14px; line-height: 1.55;
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, .5);
}
.ck.in { display: block; }
.ck a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.ck-row { display: flex; gap: 10px; margin-top: 16px; }
.ck-row .btn { flex: 1; justify-content: center; padding: 11px 16px; font-size: 14px; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: .07s; }
.rv[data-d="2"] { transition-delay: .14s; }
.rv[data-d="3"] { transition-delay: .21s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .offer { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .split, .two-tl { grid-template-columns: 1fr; gap: 34px; }
  .branches { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .mod { grid-template-columns: 1fr; gap: 6px; }
  .mod:hover { padding-left: 0; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 78px; }   /* damit der Sticky-CTA nichts dauerhaft verdeckt */
}
/* Auf dem Handy laufen die drei Screenshots als wischbare Reihe —
   drei nebeneinander wären auf 390 px unlesbar klein. */
@media (max-width: 760px) {
  .hero-shots {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    margin-inline: calc(clamp(20px, 5vw, 40px) * -1);
    padding-inline: clamp(20px, 5vw, 40px);
  }
  .hero-shots::-webkit-scrollbar { display: none; }
  .hero-shots .shot { flex: 0 0 68%; scroll-snap-align: start; }
}
@media (max-width: 520px) {
  .branches { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; gap: 32px; }
  .tl li { grid-template-columns: 56px 1fr; gap: 14px; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .rv { opacity: 1; transform: none; }
  .sticky-cta { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .sticky-cta, .ck, footer { display: none; }
  body { background: #fff; }
}
