/* =========================================================================
   Übergabefertig — Wohnungsübergabe & Renovierung
   Design: the page is a Übergabeprotokoll. Services are checklist rows,
   not feature cards. Only the Ablauf is numbered, because only the Ablauf
   is a sequence.
   ========================================================================= */

/* ---------- Fonts (self-hosted: Google Fonts CDN is a GDPR violation in DE) */

@font-face {
  font-family: 'Plex Sans';
  src: url('../fonts/ibm-plex-sans-var.woff2') format('woff2');
  font-weight: 100 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Plex Condensed';
  src: url('../fonts/ibm-plex-sans-condensed-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Plex Condensed';
  src: url('../fonts/ibm-plex-sans-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/ibm-plex-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/ibm-plex-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

/* ---------- Tokens */

:root {
  --papier: #fbfbf9;
  --weiss: #ffffff;
  --tief: #0f1e33;
  --blaugrau: #3d5372;
  /* Greys are set at the lightest value that still clears WCAG AA (4.5:1)
     for small text on --papier and --weiss. Do not lighten them. */
  --grau: #5f666e;
  --grau-hell: #6d747c;
  /* Greys legible on --tief need to come from the other end of the scale. */
  --auf-tief: #b9c3cf;
  --linie: #e2e1dc;
  --linie-stark: #cfcec8;
  --signal: #f2b705;
  --mangel: #c0392b;
  --whatsapp: #25d366;

  --font-display: 'Plex Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --schritt: clamp(1rem, 0.8rem + 0.6vw, 1.125rem);

  --breite: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 3px;

  --schatten: 0 1px 2px rgba(15, 30, 51, 0.06), 0 8px 24px -12px rgba(15, 30, 51, 0.18);
  --schatten-blatt: 0 1px 0 var(--linie), 0 18px 50px -20px rgba(15, 30, 51, 0.35);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset */

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

/* Class-based display rules (.btn, .option …) outrank the UA sheet's
   [hidden] { display: none }. Restore the attribute's authority. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--tief);
  font-family: var(--font-body);
  font-size: var(--schritt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--tief);
  color: var(--weiss);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translate(-50%, 0);
}

/* ---------- Layout primitives */

.wrap {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.band--tief {
  background: var(--tief);
  color: var(--weiss);
}

.band--weiss {
  background: var(--weiss);
}

.band--linie {
  border-top: 1px solid var(--linie);
}

/* Section header: an eyebrow that behaves like a protocol field label */

.kopf {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grau);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--signal);
  flex: none;
}
.band--tief .eyebrow {
  color: var(--auf-tief);
}

.kopf h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
}

.kopf p {
  margin-top: 1.1rem;
  color: var(--blaugrau);
  font-size: 1.0625rem;
}
.band--tief .kopf p {
  color: var(--auf-tief);
}

/* ---------- Buttons */

.btn {
  --btn-bg: var(--tief);
  --btn-fg: var(--weiss);
  --btn-br: var(--tief);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-br);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--schatten);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn--geist {
  --btn-bg: transparent;
  --btn-fg: var(--tief);
  --btn-br: var(--linie-stark);
}
.btn--geist:hover {
  --btn-br: var(--tief);
}

.btn--whatsapp {
  --btn-bg: var(--whatsapp);
  --btn-fg: #06301a;
  --btn-br: var(--whatsapp);
}

.btn--hell {
  --btn-bg: var(--weiss);
  --btn-fg: var(--tief);
  --btn-br: var(--weiss);
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

/* Stroke icons from the sprite. Kept off `.btn svg` on purpose: the WhatsApp
   mark is a filled path and `fill: none` would erase it. */
.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Header */

.kopfzeile {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 249, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.kopfzeile[data-gescrollt='true'] {
  border-bottom-color: var(--linie);
}

.kopfzeile__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.marke {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
}
.marke__glyph {
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
  border: 1.5px solid var(--tief);
  border-radius: 2px;
  display: grid;
  place-items: center;
  background: var(--signal);
}
.marke__glyph svg {
  width: 1rem;
  height: 1rem;
}
.marke__wort span {
  color: var(--grau);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blaugrau);
  transition: color 0.15s var(--ease);
}
.nav a:not(.btn):hover {
  color: var(--tief);
}
.nav .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.95rem;
  color: var(--btn-fg);
  white-space: nowrap;
}

@media (max-width: 420px) {
  .nav .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: center;
}

/* Must follow .nav__links: same specificity, so source order decides. */
@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
}

/* =========================================================================
   HERO — the thesis: a handover protocol that comes back clean
   ========================================================================= */

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

/* faint engineering grid, like protocol paper */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--linie) 1px, transparent 1px),
    linear-gradient(90deg, var(--linie) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(120% 90% at 20% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (max-width: 940px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__ort {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blaugrau);
  border: 1px solid var(--linie-stark);
  background: var(--weiss);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
}
.hero__punkt {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.25);
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 1.3rem + 4.4vw, 4.4rem);
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  display: block;
  color: var(--blaugrau);
}

.hero__lead {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  color: var(--blaugrau);
}

.hero__leistungen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--grau);
}
.hero__leistungen li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero__leistungen li:not(:last-child)::after {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--linie-stark);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.hero__fuss {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--grau);
}

/* ---------- The protocol sheet (signature element) */

.protokoll {
  position: relative;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--schatten-blatt);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  transform: rotate(-0.5deg);
}

/* punched holes, like a sheet in a landlord's binder */
.protokoll::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 18%;
  bottom: 18%;
  width: 8px;
  background-image: radial-gradient(circle, var(--linie) 3.5px, transparent 3.6px);
  background-size: 8px 34%;
  background-repeat: repeat-y;
  opacity: 0.9;
}

.protokoll__inner {
  padding-left: 1.4rem;
}

.protokoll__kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--tief);
}

.protokoll__titel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.protokoll__nr {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--grau);
  letter-spacing: 0.08em;
}

.protokoll__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--linie);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--grau);
}
.protokoll__meta b {
  display: block;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--grau-hell);
}
.protokoll__meta span {
  color: var(--tief);
}

.protokoll__zeilen {
  padding-top: 0.35rem;
}

.zeile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-block: 0.62rem;
  border-bottom: 1px solid var(--linie);
  font-size: 0.95rem;
}
.zeile:last-child {
  border-bottom: 0;
}

.zeile__name {
  flex: 1;
  transition: color 0.3s var(--ease);
}

.zeile__status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grau-hell);
  transition: color 0.3s var(--ease);
}

/* the checkbox */
.haken {
  width: 20px;
  height: 20px;
  flex: none;
  border: 1.5px solid var(--linie-stark);
  border-radius: 2px;
  display: grid;
  place-items: center;
  background: var(--weiss);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.haken svg {
  width: 13px;
  height: 13px;
  stroke: var(--weiss);
  stroke-width: 2.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.34s var(--ease);
}

.zeile[data-erledigt='true'] .haken {
  background: var(--tief);
  border-color: var(--tief);
}
.zeile[data-erledigt='true'] .haken svg {
  stroke-dashoffset: 0;
}
.zeile[data-erledigt='true'] .zeile__status {
  color: var(--blaugrau);
}

.protokoll__fuss {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--tief);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.protokoll__unterschrift {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grau-hell);
}

/* the stamp — the single loudest moment on the page */
.stempel {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 2.5px solid var(--tief);
  border-radius: 3px;
  color: var(--tief);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.15;
  transform: rotate(-7deg) scale(0.6);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.2, 1.5, 0.4, 1), opacity 0.2s var(--ease);
  position: relative;
  background: rgba(242, 183, 5, 0.16);
}
.stempel small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--blaugrau);
  margin-top: 0.15rem;
}
.protokoll[data-fertig='true'] .stempel {
  transform: rotate(-7deg) scale(1);
  opacity: 1;
}

/* ---------- Trust strip */

.streifen {
  border-block: 1px solid var(--linie);
  background: var(--weiss);
}
.streifen__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.streifen__zelle {
  padding: 1.5rem var(--gutter);
  border-left: 1px solid var(--linie);
}
.streifen__zelle:first-child {
  border-left: 0;
}
.streifen__zelle b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.streifen__zelle span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grau);
}

/* =========================================================================
   LEISTUNGEN — checklist rows, not cards. Unordered on purpose.
   ========================================================================= */

.liste {
  border-top: 1px solid var(--linie);
}

.leistung {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1rem clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2.1rem);
  border-bottom: 1px solid var(--linie);
  position: relative;
  transition: background 0.2s var(--ease);
}
.leistung::before {
  content: '';
  position: absolute;
  left: calc(var(--gutter) * -1);
  top: 0;
  bottom: -1px;
  width: 3px;
  background: var(--signal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s var(--ease);
}
.leistung:hover::before {
  transform: scaleY(1);
}

@media (max-width: 800px) {
  .leistung {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .leistung__details {
    grid-column: 2;
  }
}

.leistung__haken {
  width: 22px;
  height: 22px;
  margin-top: 0.35rem;
  border: 1.5px solid var(--tief);
  border-radius: 2px;
  background: var(--tief);
  display: grid;
  place-items: center;
  flex: none;
}
.leistung__haken svg {
  width: 14px;
  height: 14px;
  stroke: var(--signal);
  stroke-width: 2.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leistung h3 {
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem);
}
.leistung__lead {
  margin-top: 0.5rem;
  color: var(--blaugrau);
  font-size: 0.98rem;
}

.leistung__details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.35rem 1.25rem;
  padding-top: 0.35rem;
}
.leistung__details li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--grau);
}
.leistung__details li::before {
  content: '';
  width: 5px;
  height: 5px;
  flex: none;
  border: 1px solid var(--linie-stark);
  transform: translateY(-2px);
}

/* =========================================================================
   VORHER / NACHHER
   ========================================================================= */

.vergleich {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.platte {
  position: relative;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--weiss);
}
/* height:auto is load-bearing: the width/height attributes would otherwise
   pin the height and aspect-ratio would never apply. */
.platte img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.platte__label {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  background: var(--weiss);
  border: 1px solid var(--linie);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.platte__label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mangel);
}
.platte--nachher .platte__label::before {
  background: var(--tief);
}

.platte__notiz {
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--linie);
  font-size: 0.9rem;
  color: var(--grau);
}
.platte__notiz b {
  color: var(--tief);
  font-weight: 500;
}

/* =========================================================================
   ABLAUF — genuinely a sequence, so genuinely numbered
   ========================================================================= */

.ablauf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  counter-reset: schritt;
}

.schritt {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin: -0.5px;
}

.schritt__nr {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--signal);
}

.schritt h3 {
  margin-top: 1.35rem;
  font-size: 1.3rem;
  color: var(--weiss);
}

.schritt p {
  margin-top: 0.7rem;
  color: #a9b4c2;
  font-size: 0.95rem;
}

/* =========================================================================
   ZIELGRUPPEN + WARUM
   ========================================================================= */

.zwei-spalten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.marken-liste li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--linie);
  font-size: 1rem;
}
.marken-liste li:first-child {
  border-top: 1px solid var(--linie);
}
.marken-liste svg {
  width: 18px;
  height: 18px;
  flex: none;
  stroke: var(--tief);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kunden {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.kunden li {
  padding: 0.55rem 1rem;
  border: 1px solid var(--linie-stark);
  border-radius: 100px;
  font-size: 0.92rem;
  background: var(--weiss);
}

/* =========================================================================
   BEWERTUNGEN
   ========================================================================= */

.stimmen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.stimme {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stimme__sterne {
  display: flex;
  gap: 0.15rem;
}
.stimme__sterne svg {
  width: 15px;
  height: 15px;
  fill: var(--signal);
}
.stimme blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--tief);
}
.stimme figcaption {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grau);
}

/* =========================================================================
   EINSATZGEBIET
   ========================================================================= */

.gebiet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) {
  .gebiet {
    grid-template-columns: 1fr;
  }
}

.gebiet__karte {
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--weiss);
  padding: 1rem;
}
.gebiet__karte svg {
  width: 100%;
  height: auto;
}

.orte {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.2rem 1rem;
  margin-top: 1.75rem;
}
.orte li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.4rem;
  font-size: 0.95rem;
  color: var(--blaugrau);
}
.orte li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex: none;
  background: var(--signal);
}

/* =========================================================================
   ANFRAGE — the multistep form

   The form speaks the same language as the hero: choosing an option stamps
   it, finishing the form stamps the whole request. Icons are tools from the
   trade, not generic glyphs.
   ========================================================================= */

.anfrage {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .anfrage {
    grid-template-columns: 1fr;
  }
}

.formular {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  overflow: hidden;
}

/* ---------- Progress rail: five stations, each one stamped when passed */

.fortschritt {
  display: flex;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--linie);
  background: var(--papier);
}

.station {
  display: flex;
  align-items: center;
  min-width: 0;
}
.station:not(:last-child) {
  flex: 1;
}

.station__punkt {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--linie-stark);
  background: var(--weiss);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--grau);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.station__punkt svg {
  position: absolute;
  width: 14px;
  height: 14px;
  stroke: var(--tief);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.32s var(--ease);
}
.station__zahl {
  transition: opacity 0.2s var(--ease);
}

.station[data-stand='aktiv'] .station__punkt {
  border-color: var(--tief);
  background: var(--tief);
  color: var(--weiss);
  box-shadow: 0 0 0 4px rgba(15, 30, 51, 0.08);
}

.station[data-stand='fertig'] .station__punkt {
  border-color: var(--tief);
  background: var(--signal);
  color: var(--tief);
}
.station[data-stand='fertig'] .station__punkt svg {
  stroke-dashoffset: 0;
}
.station[data-stand='fertig'] .station__zahl {
  opacity: 0;
}

.station__label {
  margin-left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grau);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.station[data-stand='aktiv'] .station__label {
  color: var(--tief);
}

.station__strich {
  flex: 1;
  height: 1.5px;
  margin: 0 0.7rem;
  background: var(--linie);
  position: relative;
  overflow: hidden;
}
.station__strich::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tief);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--ease);
}
.station[data-stand='fertig'] .station__strich::after {
  transform: scaleX(1);
}

/* Labels cost too much room on small screens — only the active one earns it. */
@media (max-width: 720px) {
  .station__label {
    display: none;
  }
  .station[data-stand='aktiv'] .station__label {
    display: block;
  }
}
@media (max-width: 460px) {
  .station__label {
    display: none;
  }
  .station[data-stand='aktiv'] .station__label {
    display: none;
  }
}

/* ---------- Stage: steps slide, the card resizes to fit */

.formular__koerper {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.buehne {
  position: relative;
  transition: height 0.36s var(--ease);
}

.feld-gruppe {
  border: 0;
  padding: 0;
  margin: 0;
}

.js .feld-gruppe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(var(--weg, 28px));
  transition: opacity 0.26s var(--ease), transform 0.36s var(--ease), visibility 0.36s;
}
.js .feld-gruppe[data-aktiv='true'] {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.feld-gruppe > legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  padding: 0;
  margin-bottom: 0.4rem;
}
.feld-gruppe__hinweis {
  color: var(--grau);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.feld-gruppe__zwischen {
  margin: 1.75rem 0 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grau);
}

/* ---------- Option cards */

.optionen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 0.65rem;
}
.optionen--eng {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}

.option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem;
  border: 1.5px solid var(--linie);
  border-radius: var(--radius);
  background: var(--weiss);
  cursor: pointer;
  font-size: 0.94rem;
  line-height: 1.35;
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background 0.18s var(--ease);
}
.option:hover {
  border-color: var(--blaugrau);
  transform: translateY(-2px);
  box-shadow: var(--schatten);
}
.option:active {
  transform: translateY(0);
}
.option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.option:has(input:focus-visible),
.option[data-fokus='true'] {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

.option[data-gewaehlt='true'] {
  border-color: var(--tief);
  background: rgba(15, 30, 51, 0.025);
}

.option__icon {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 3px;
  background: rgba(15, 30, 51, 0.05);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blaugrau);
  transition: background 0.24s var(--ease), transform 0.4s var(--ease), color 0.24s var(--ease);
}
.option__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blaugrau);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.24s var(--ease);
}
.option[data-gewaehlt='true'] .option__icon {
  background: var(--signal);
  color: var(--tief);
  transform: rotate(-5deg);
}
.option[data-gewaehlt='true'] .option__icon svg {
  stroke: var(--tief);
}

/* the little stamp that lands when an option is picked */
.option__stempel {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--tief);
  display: grid;
  place-items: center;
  transform: scale(0.2) rotate(-30deg);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.2, 1.6, 0.4, 1), opacity 0.16s var(--ease);
}
.option__stempel svg {
  width: 12px;
  height: 12px;
  stroke: var(--signal);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.option[data-gewaehlt='true'] .option__stempel {
  transform: scale(1) rotate(0);
  opacity: 1;
}

/* ---------- Text fields */

.feld {
  display: block;
  margin-bottom: 1.15rem;
}
.feld:last-child {
  margin-bottom: 0;
}
.feld > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grau);
  margin-bottom: 0.45rem;
}

.feld__wrap {
  position: relative;
  display: block;
}
.feld__wrap > svg {
  position: absolute;
  left: 0.95rem;
  top: 1.35rem;
  width: 18px;
  height: 18px;
  stroke: var(--grau-hell);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: stroke 0.2s var(--ease);
}
.feld__wrap:focus-within > svg {
  stroke: var(--tief);
}

.feld input,
.feld textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--linie);
  border-radius: var(--radius);
  background: var(--papier);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.feld__wrap input {
  padding-left: 2.85rem;
}
.feld input:focus,
.feld textarea:focus {
  background: var(--weiss);
  border-color: var(--tief);
  box-shadow: 0 0 0 3px rgba(15, 30, 51, 0.06);
  outline-offset: 1px;
}
.feld textarea {
  resize: vertical;
  min-height: 6rem;
}

.paar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .paar {
    grid-template-columns: 1fr;
  }
}

/* ---------- Photo drop zone + previews */

.ablage {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  padding: 2.1rem 1rem;
  border: 1.5px dashed var(--linie-stark);
  border-radius: var(--radius);
  background: var(--papier);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.ablage:hover {
  border-color: var(--blaugrau);
}
.ablage[data-ueber='true'] {
  border-color: var(--tief);
  background: var(--weiss);
  transform: scale(1.012);
}
.ablage input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.ablage__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--weiss);
  border: 1px solid var(--linie);
  display: grid;
  place-items: center;
  transition: transform 0.28s var(--ease), border-color 0.2s var(--ease);
}
.ablage[data-ueber='true'] .ablage__icon {
  transform: translateY(-3px) scale(1.06);
  border-color: var(--tief);
}
.ablage__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blaugrau);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ablage b {
  font-weight: 500;
}
.ablage small {
  color: var(--grau);
  font-size: 0.82rem;
}

.dateien {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
.dateien:empty {
  margin-top: 0;
}

.datei {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--linie);
  background: var(--papier);
  animation: einblenden 0.32s var(--ease) both;
}
.datei img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.datei button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 30, 51, 0.82);
  color: var(--weiss);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.16s var(--ease), transform 0.16s var(--ease);
}
.datei button:hover {
  background: var(--mangel);
  transform: scale(1.08);
}
.datei button svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
}
.datei[data-weg='true'] {
  animation: ausblenden 0.22s var(--ease) forwards;
}

/* ---------- Consent + navigation */

.zustimmung {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--grau);
  line-height: 1.55;
  cursor: pointer;
}
.zustimmung input {
  margin-top: 0.25rem;
  flex: none;
  width: 17px;
  height: 17px;
  accent-color: var(--tief);
}
.zustimmung a {
  color: var(--tief);
}

.formular__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linie);
}
.formular__nav .btn {
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  color: var(--btn-fg);
}
.formular__nav .btn svg {
  transition: transform 0.22s var(--ease);
}
.formular__nav .btn:hover svg {
  transform: translateX(3px);
}

.zurueck {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grau);
  padding: 0.5rem 0;
  transition: color 0.16s var(--ease);
}
.zurueck svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s var(--ease);
}
.zurueck:hover {
  color: var(--tief);
}
.zurueck:hover svg {
  transform: translateX(-3px);
}
/* Keeps its slot so "Weiter" never shifts sideways between steps. */
.zurueck[hidden] {
  display: inline-flex !important;
  visibility: hidden;
}

/* spinner while sending */
.btn[data-laedt='true'] {
  pointer-events: none;
}
.btn__spinner {
  width: 1.05em;
  height: 1.05em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--weiss);
  border-radius: 50%;
  animation: drehen 0.7s linear infinite;
}

/* ---------- Error */

.fehler {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--mangel);
  background: rgba(192, 57, 43, 0.06);
  color: #8e2a20;
  font-size: 0.9rem;
}
.fehler svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 0.12rem;
  stroke: var(--mangel);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fehler[data-ruckeln='true'] {
  animation: ruckeln 0.36s var(--ease);
}

/* ---------- Success: the request itself gets stamped */

.erfolg {
  text-align: center;
  padding: clamp(2.25rem, 5vw, 3.5rem) 1.5rem;
}
.erfolg__stempel {
  display: inline-grid;
  place-items: center;
  gap: 0.15rem;
  padding: 0.85rem 1.5rem;
  margin-bottom: 1.75rem;
  border: 2.5px solid var(--tief);
  border-radius: 3px;
  background: rgba(242, 183, 5, 0.16);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tief);
  animation: stempeln 0.52s cubic-bezier(0.2, 1.4, 0.35, 1) both;
}
.erfolg__stempel small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--blaugrau);
}
.erfolg h3 {
  font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  animation: einblenden 0.4s 0.24s var(--ease) both;
}
.erfolg p {
  margin-top: 0.85rem;
  color: var(--blaugrau);
  max-width: 42ch;
  margin-inline: auto;
  animation: einblenden 0.4s 0.34s var(--ease) both;
}
.erfolg__kontakt {
  margin-top: 1.75rem;
  animation: einblenden 0.4s 0.44s var(--ease) both;
}

/* ---------- Aside next to the form */

.anfrage__text h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
}
.kontakt-liste {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}
.kontakt-liste a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--tief);
}
.kontakt-liste a:hover .kontakt-liste__icon {
  border-color: var(--tief);
  transform: translateY(-2px);
}
.kontakt-liste__icon {
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid var(--linie);
  border-radius: 3px;
  background: var(--weiss);
  display: grid;
  place-items: center;
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.kontakt-liste svg {
  width: 19px;
  height: 19px;
  stroke: var(--blaugrau);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kontakt-liste b {
  display: block;
  font-weight: 500;
}
.kontakt-liste small {
  color: var(--grau);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ---------- Keyframes */

@keyframes einblenden {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ausblenden {
  to {
    opacity: 0;
    transform: scale(0.85);
  }
}
@keyframes drehen {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ruckeln {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
}
@keyframes stempeln {
  from {
    opacity: 0;
    transform: scale(1.7) rotate(-14deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(-3deg);
  }
}

/* =========================================================================
   FOOTER + floating WhatsApp
   ========================================================================= */

.fuss {
  background: var(--tief);
  color: #a9b4c2;
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
  font-size: 0.9rem;
}
.fuss__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.fuss .marke {
  color: var(--weiss);
}
.fuss .marke__wort span {
  color: #7e8b9b;
}
.fuss h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7e8b9b;
  margin-bottom: 1rem;
}
.fuss li {
  padding-block: 0.3rem;
}
.fuss a {
  color: #a9b4c2;
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
.fuss a:hover {
  color: var(--weiss);
}
.fuss__unten {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #7e8b9b;
}

.wa-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #06301a;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px -6px rgba(37, 211, 102, 0.7), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s var(--ease);
}
.wa-fab:hover {
  transform: scale(1.06);
}
.wa-fab svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ---------- Legal pages */

.rechtstext {
  max-width: 72ch;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.rechtstext h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  margin-bottom: 2rem;
}
.rechtstext h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.rechtstext h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.rechtstext p,
.rechtstext li {
  color: var(--blaugrau);
  margin-bottom: 0.85rem;
}
.rechtstext ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.rechtstext a {
  color: var(--tief);
}
.platzhalter {
  background: rgba(242, 183, 5, 0.28);
  padding: 0 0.25rem;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--tief);
}

/* ---------- Scroll reveal + motion */

/* Only hide what JavaScript can bring back. Without JS the content stays
   visible — an invisible service list would be worse than an unanimated one. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js [data-reveal][data-sichtbar='true'] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    /* Without this an infinite animation (the send spinner) turns into a
       strobe instead of stopping. */
    animation-iteration-count: 1 !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .protokoll {
    transform: none;
  }
  .stempel {
    opacity: 1;
    transform: rotate(-7deg);
  }
}
