/* =========================================================================
   BAYRAK AUTOMOBILE – KFZ-ZULASSUNGSSERVICE
   Design-System & Layout
   =========================================================================
   Inhalt:
   01  Design-Tokens (Farben, Abstände, Typografie)
   02  Basis / Reset
   03  Typografie & Hilfsklassen
   04  Buttons
   05  Header & Navigation
   06  Hero
   07  Trust-Leiste
   08  Sektionen allgemein
   09  Leistungen
   10  Ablauf ("So funktioniert's")
   11  Preise
   12  Unterlagen-Checkliste
   13  Über uns / Region
   14  FAQ
   15  Anfrage & Kontakt
   16  Footer
   17  Mobile Sticky Contact Bar
   18  Rechtsseiten (Impressum/Datenschutz/Danke)
   19  Animationen & Reduced Motion
   ========================================================================= */

/* ------------------------------------------------------------------ 01 --
   DESIGN-TOKENS
--------------------------------------------------------------------------*/
:root {
  /* Farbwelt: dunkles Anthrazit, Off-White, rote Akzentfarbe */
  --bg-dark: #0b0c0e;
  --bg-dark-2: #101216;
  --panel: #16181d;
  --panel-2: #1c1f25;
  --border-dark: rgba(255, 255, 255, 0.09);
  --border-dark-strong: rgba(255, 255, 255, 0.16);

  --bg-light: #f6f5f2;
  --bg-light-2: #efede8;
  --card-light: #ffffff;
  --border-light: #e5e2db;

  --ink: #17191d;
  --ink-soft: #565b63;
  --text-on-dark: #f2f1ee;
  --text-soft-dark: #a8adb5;

  --accent: #d31c2b;
  --accent-hover: #b01322;
  --accent-soft: rgba(211, 28, 43, 0.12);
  --accent-on-dark: #ff4d5c;

  --wa-green: #25d366;
  --wa-green-dark: #16a34a;
  --wa-ink: #06301a;

  --ok: #1f9d55;
  --error: #c8102e;
  --error-on-dark: #ff8790;

  /* Typografie: System Font Stack (keine externen Requests) */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-plate: "Arial Narrow", "Helvetica Neue Condensed", Impact,
          "Arial Black", sans-serif;

  --fs-h1: clamp(2rem, 1.2rem + 4vw, 3.4rem);
  --fs-h2: clamp(1.55rem, 1.15rem + 1.9vw, 2.35rem);
  --fs-h3: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  --fs-body: clamp(0.98rem, 0.94rem + 0.2vw, 1.06rem);
  --fs-small: 0.875rem;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 2px rgba(20, 22, 26, 0.05), 0 10px 30px -12px rgba(20, 22, 26, 0.12);
  --shadow-card-hover: 0 2px 4px rgba(20, 22, 26, 0.06), 0 18px 44px -14px rgba(20, 22, 26, 0.2);

  --header-h: 72px;
  --stickybar-h: 64px;

  --container: 1160px;
  --pad-x: clamp(1.25rem, 4.5vw, 2.5rem);
  --sec-y: clamp(3.5rem, 3rem + 4vw, 6.5rem);
}

/* ------------------------------------------------------------------ 02 --
   BASIS / RESET
--------------------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-light);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.dark-section :focus-visible,
.site-header :focus-visible,
.hero :focus-visible {
  outline-color: #ffffff;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ------------------------------------------------------------------ 03 --
   TYPOGRAFIE & HILFSKLASSEN
--------------------------------------------------------------------------*/
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 750;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 650; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.dark-section .eyebrow {
  color: var(--accent-on-dark);
}

.dark-section .eyebrow::before {
  background: var(--accent-on-dark);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.25rem);
}

.section-head p {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.02em;
}

.dark-section .section-head p {
  color: var(--text-soft-dark);
}

.muted {
  color: var(--ink-soft);
}

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

/* ------------------------------------------------------------------ 04 --
   BUTTONS
--------------------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 650;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(211, 28, 43, 0.55);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 30px -10px rgba(211, 28, 43, 0.6);
}

.btn-outline-dark {
  border-color: var(--border-dark-strong);
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light {
  border-color: #cfccc4;
  color: var(--ink);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--ink);
  background: rgba(23, 25, 29, 0.04);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--wa-ink);
}

.btn-whatsapp:hover {
  background: #1fbd5a;
}

.btn-ghost-phone {
  gap: 0.55rem;
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.btn-ghost-phone:hover {
  color: #fff;
}

.btn-ghost-phone svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------------------ 05 --
   HEADER & NAVIGATION
--------------------------------------------------------------------------*/
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 12, 14, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 12, 14, 0.94);
  border-bottom-color: var(--border-dark);
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Wortmarke – wird später durch das Original-Logo ersetzt (siehe README) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-on-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(145deg, #202329, #131519);
  border: 1px solid var(--border-dark-strong);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.brand-text span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft-dark);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.9rem);
}

.main-nav a {
  color: var(--text-soft-dark);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-cta .btn {
  min-height: 46px;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.header-phone:hover { color: #fff; }

.header-phone svg { width: 17px; height: 17px; }

/* Burger */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  place-items: center;
  border: 1px solid var(--border-dark-strong);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
  content: "";
  position: relative;
}

.nav-toggle .bars::before { position: absolute; top: -6px; }
.nav-toggle .bars::after { position: absolute; top: 6px; }

.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0b0c0e;
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.8);
    padding: 1rem var(--pad-x) 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.9rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-dark);
  }

  .main-nav li:last-child a { border-bottom: 0; }

  .nav-toggle { display: grid; }

  .header-cta .btn-primary { display: none; }
}

@media (max-width: 560px) {
  .header-phone span { display: none; }

  .header-phone {
    width: 48px;
    height: 48px;
    justify-content: center;
    border: 1px solid var(--border-dark-strong);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .header-phone svg { width: 20px; height: 20px; }
}

/* ------------------------------------------------------------------ 06 --
   HERO
--------------------------------------------------------------------------*/
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(211, 28, 43, 0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--text-on-dark);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 2rem + 3.5vw, 5.5rem));
  padding-bottom: clamp(3rem, 2.5rem + 3vw, 5.5rem);
  overflow: hidden;
}

.hero::after {
  /* dezente technische Linienstruktur */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(720px 460px at 75% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(720px 460px at 75% 20%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border-dark-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-soft-dark);
  margin-bottom: 1.4rem;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(211, 28, 43, 0.22);
}

.hero h1 {
  color: #fff;
}

.hero h1 .accent {
  color: var(--accent-on-dark);
}

.hero-sub {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 1rem + 0.3vw, 1.16rem);
  color: var(--text-soft-dark);
}

.hero-sub strong {
  color: var(--text-on-dark);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-phone-row {
  margin-top: 1.1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.4rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border-dark);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--text-soft-dark);
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  color: var(--accent-on-dark);
  flex: 0 0 auto;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  font-size: 0.88rem;
  color: var(--text-soft-dark);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.hero-rating:hover {
  border-color: var(--border-dark-strong);
}

.hero-rating .stars {
  color: #f5b301;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.hero-rating strong {
  color: var(--text-on-dark);
}

/* Hero-Visual: Dokument-Karte + Kennzeichen */
.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.doc-card {
  width: min(100%, 420px);
  background: linear-gradient(165deg, #1d2026 0%, #14161b 100%);
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
}

.doc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--border-dark-strong);
}

.doc-card-head .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft-dark);
}

.doc-card-head .status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: #6ee7a0;
}

.doc-card-head .status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d67b;
  box-shadow: 0 0 0 4px rgba(52, 214, 123, 0.18);
}

/* stilisiertes Kennzeichen (fiktiv, BB = Landkreis Böblingen) */
.plate {
  display: flex;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  margin: 1.4rem auto 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2.5px solid #0e0f11;
  background: #fdfdfb;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.plate-euro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  width: 34px;
  padding: 7px 0 6px;
  background: #003399;
  color: #fff;
}

.plate-euro .stars-ring {
  width: 16px;
  height: 16px;
}

.plate-euro .d {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.plate-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-plate);
  font-size: clamp(1.7rem, 5.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #101114;
  white-space: nowrap;
}

.plate-text .seal {
  width: 0.62em;
  height: 0.62em;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3b82f6, #1d4ed8 70%);
  border: 2px solid #c9a13b;
  flex: 0 0 auto;
}

.doc-steps {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.doc-steps li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--text-soft-dark);
}

.doc-steps .step-ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark-strong);
  background: var(--panel);
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft-dark);
}

.doc-steps li.done .step-ico {
  background: rgba(52, 214, 123, 0.14);
  border-color: rgba(52, 214, 123, 0.45);
  color: #4ade80;
}

.doc-steps li.done { color: var(--text-on-dark); }

.doc-steps li.active .step-ico {
  background: var(--accent-soft);
  border-color: rgba(255, 77, 92, 0.55);
  color: var(--accent-on-dark);
}

.doc-steps li.active {
  color: #fff;
}

.doc-steps svg {
  width: 14px;
  height: 14px;
}

.doc-card-foot {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--border-dark-strong);
  font-size: 0.82rem;
  color: var(--text-soft-dark);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.doc-card-foot svg {
  width: 16px;
  height: 16px;
  color: var(--accent-on-dark);
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 2;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }
}

/* ------------------------------------------------------------------ 07 --
   TRUST-LEISTE
--------------------------------------------------------------------------*/
.trust-strip {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  color: var(--text-soft-dark);
  padding: 1.1rem 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 550;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip svg {
  width: 16px;
  height: 16px;
  color: var(--accent-on-dark);
  flex: 0 0 auto;
}

/* ------------------------------------------------------------------ 08 --
   SEKTIONEN ALLGEMEIN
--------------------------------------------------------------------------*/
.section {
  padding-block: var(--sec-y);
}

.section-alt {
  background: var(--bg-light-2);
}

.dark-section {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(211, 28, 43, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--text-on-dark);
}

/* ------------------------------------------------------------------ 09 --
   LEISTUNGEN
--------------------------------------------------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.1rem;
}

.service-card {
  position: relative;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: #d8d4cb;
}

.service-card .ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.service-card .ico svg {
  width: 23px;
  height: 23px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.2rem;
  width: fit-content;
}

.service-card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.18s ease;
}

.service-card .card-link:hover svg {
  transform: translateX(3px);
}

/* ------------------------------------------------------------------ 10 --
   ABLAUF
--------------------------------------------------------------------------*/
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  border-color: var(--border-dark-strong);
  transform: translateY(-3px);
}

.step-card .num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 750;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px -8px rgba(211, 28, 43, 0.7);
}

.step-card h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-soft-dark);
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:last-child { grid-column: 1 / -1; }
}

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

.steps-note {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--text-soft-dark);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  max-width: 720px;
}

.steps-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--accent-on-dark);
}

/* ------------------------------------------------------------------ 11 --
   PREISE
--------------------------------------------------------------------------*/
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.1rem;
}

.price-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.price-card h3 {
  font-size: 1.05rem;
}

.price-card .price {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 0.4rem;
}

.price-card .price .ab {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-right: 0.3rem;
}

.price-card .price-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.price-card .card-link {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: none;
}

.price-card .card-link svg { width: 15px; height: 15px; }

.price-card.custom {
  background: linear-gradient(160deg, #1d2026, #14161b);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

.price-card.custom h3 { color: #fff; }
.price-card.custom .price { color: #fff; font-size: 1.35rem; margin-top: 0.6rem; }
.price-card.custom .price-note { color: var(--text-soft-dark); }
.price-card.custom .card-link { color: var(--accent-on-dark); }

.price-disclaimer {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 860px;
}

.price-disclaimer svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--accent);
  margin-top: 0.1rem;
}

/* ------------------------------------------------------------------ 12 --
   UNTERLAGEN-CHECKLISTE
--------------------------------------------------------------------------*/
.doc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.doc-tab {
  padding: 0.6rem 1.1rem;
  min-height: 46px;
  border-radius: 999px;
  border: 1.5px solid var(--border-light);
  background: var(--card-light);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.doc-tab:hover {
  border-color: #cfccc4;
  color: var(--ink);
}

.doc-tab[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.audience-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border-light);
  border-radius: 999px;
  background: var(--card-light);
  padding: 4px;
  margin-bottom: 1.6rem;
}

.audience-toggle button {
  padding: 0.5rem 1.15rem;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.audience-toggle button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.doc-panel {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-card);
}

.js .doc-panel[hidden] { display: none; }

.doc-panel h3 {
  margin-bottom: 0.35rem;
}

.doc-panel .panel-intro {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
  max-width: 640px;
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 0.55rem 1.6rem;
}

.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.96rem;
}

.doc-list li svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: var(--ok);
}

.doc-list li .sub {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.doc-list li.gewerbe-only {
  border-radius: 8px;
}

.js body:not(.show-gewerbe) .doc-list li.gewerbe-only { display: none; }

.doc-note {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border-light);
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.doc-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--accent);
}

/* ------------------------------------------------------------------ 13 --
   ÜBER UNS / REGION
--------------------------------------------------------------------------*/
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 2rem + 2vw, 4rem);
  align-items: center;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy p {
  color: var(--ink-soft);
}

.about-copy p strong {
  color: var(--ink);
}

.about-points {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.about-points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-weight: 550;
}

.about-points svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--accent);
  margin-top: 0.15rem;
}

.region-line {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Bild-Platzhalter: später durch echtes Foto ersetzen (siehe README) */
.img-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px 260px at 70% 20%, rgba(211, 28, 43, 0.18), transparent 60%),
    linear-gradient(160deg, #1d2026 0%, #101216 100%);
  border: 1px solid var(--border-dark-strong);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card-hover);
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.img-placeholder .ph-inner {
  position: relative;
  text-align: center;
  color: var(--text-soft-dark);
  padding: 1.5rem;
}

.img-placeholder .ph-inner svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.9rem;
  color: rgba(255, 255, 255, 0.35);
}

.img-placeholder .ph-inner p {
  font-size: 0.85rem;
  max-width: 260px;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
}

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

/* ------------------------------------------------------------------ 14 --
   FAQ
--------------------------------------------------------------------------*/
.faq-list {
  max-width: 820px;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: #d4d0c7;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 650;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--accent); }

.faq-item .chev {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-light-2);
  transition: transform 0.25s ease, background-color 0.2s ease;
}

.faq-item .chev svg {
  width: 15px;
  height: 15px;
  color: var(--ink);
}

.faq-item[open] .chev {
  transform: rotate(180deg);
  background: var(--accent-soft);
}

.faq-item[open] .chev svg { color: var(--accent); }

.faq-answer {
  padding: 0 1.3rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 68ch;
}

.faq-answer p + p { margin-top: 0.7rem; }

/* ------------------------------------------------------------------ 15 --
   ANFRAGE & KONTAKT
--------------------------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 2rem + 2vw, 4rem);
  align-items: start;
}

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

.contact-info h2 { color: #fff; }

.contact-address {
  font-style: normal;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.35rem;
  color: var(--text-soft-dark);
}

.contact-address strong {
  color: #fff;
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.6rem;
  max-width: 440px;
}

.contact-actions .btn {
  justify-content: flex-start;
  padding-inline: 1.15rem;
  font-size: 0.95rem;
}

@media (max-width: 430px) {
  .contact-actions { grid-template-columns: 1fr; }
}

.hours-box {
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  max-width: 440px;
}

.hours-box h3 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hours-box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-box td {
  padding: 0.3rem 0;
  color: var(--text-soft-dark);
}

.hours-box td:last-child {
  text-align: right;
  color: var(--text-on-dark);
  font-weight: 550;
}

.hours-box .hours-hint {
  margin-top: 0.8rem;
  font-size: 0.83rem;
  color: var(--text-soft-dark);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.hours-box .hours-hint svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: var(--accent-on-dark);
}

/* Formular */
.form-card {
  background: var(--panel);
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

.form-card > p.form-intro {
  color: var(--text-soft-dark);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field { grid-column: auto; }
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.form-field label .opt {
  font-weight: 400;
  color: var(--text-soft-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  border: 1.5px solid var(--border-dark-strong);
  background: var(--panel-2);
  color: var(--text-on-dark);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a8adb5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.6rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b7078;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
  background: #22262d;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: var(--error-on-dark);
}

.field-error {
  display: none;
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--error-on-dark);
}

.field-error.is-visible {
  display: block;
}

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.2rem;
}

.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.87rem;
  color: var(--text-soft-dark);
  cursor: pointer;
}

.form-consent a {
  color: var(--text-on-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover { color: #fff; }

/* Honeypot – für Menschen unsichtbar */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-submit-row .btn {
  min-width: 240px;
}

.form-mode-hint {
  font-size: 0.83rem;
  color: var(--text-soft-dark);
  flex: 1 1 240px;
}

.form-status {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 550;
  display: none;
}

.form-status.is-visible { display: block; }

.form-status.success {
  background: rgba(52, 214, 123, 0.12);
  border: 1px solid rgba(52, 214, 123, 0.4);
  color: #7ee6a8;
}

.form-status.error {
  background: rgba(255, 135, 144, 0.1);
  border: 1px solid rgba(255, 135, 144, 0.4);
  color: var(--error-on-dark);
}

/* ------------------------------------------------------------------ 16 --
   FOOTER
--------------------------------------------------------------------------*/
.site-footer {
  background: var(--bg-dark);
  color: var(--text-soft-dark);
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.2rem;
  padding-bottom: 2.6rem;
}

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

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 30ch;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer address {
  font-style: normal;
  font-size: 0.93rem;
  display: grid;
  gap: 0.25rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-soft-dark);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.15s ease;
}

.footer-links a:hover { color: #fff; }

.footer-contact {
  display: grid;
  gap: 0.6rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-soft-dark);
  text-decoration: none;
  font-size: 0.93rem;
}

.footer-contact a:hover { color: #fff; }

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 1.3rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1.5rem;
  font-size: 0.84rem;
}

.footer-bottom nav {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom a {
  color: var(--text-soft-dark);
  text-decoration: none;
}

.footer-bottom a:hover { color: #fff; }

/* ------------------------------------------------------------------ 17 --
   MOBILE STICKY CONTACT BAR
--------------------------------------------------------------------------*/
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  background: rgba(13, 14, 17, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-dark-strong);
  padding: 0.55rem var(--pad-x) calc(0.55rem + env(safe-area-inset-bottom, 0px));
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-bar.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.sticky-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 0.55rem;
  max-width: 560px;
  margin-inline: auto;
}

.sticky-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.sticky-bar svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.sticky-call {
  border: 1.5px solid var(--border-dark-strong);
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.05);
}

.sticky-wa {
  background: var(--wa-green);
  color: var(--wa-ink);
}

.sticky-cta {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 900px) {
  .sticky-bar { display: block; }

  body {
    padding-bottom: calc(var(--stickybar-h) + env(safe-area-inset-bottom, 0px));
  }
}

/* ------------------------------------------------------------------ 18 --
   RECHTSSEITEN (Impressum / Datenschutz / Danke)
--------------------------------------------------------------------------*/
.legal-main {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: var(--sec-y);
}

.legal-main .container {
  max-width: 820px;
}

.legal-main h1 {
  margin-bottom: 1.5rem;
}

.legal-main h2 {
  font-size: 1.35rem;
  margin: 2.2rem 0 0.7rem;
}

.legal-main h3 {
  font-size: 1.08rem;
  margin: 1.6rem 0 0.5rem;
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
}

.legal-main p + p { margin-top: 0.8rem; }

.legal-main ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0.6rem 0;
}

.legal-main a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-note {
  margin: 1.5rem 0 2rem;
  padding: 1.1rem 1.3rem;
  background: #fdf6e8;
  border: 1px solid #f0e2c0;
  border-left: 4px solid #d99b16;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #6b5416;
}

.legal-address {
  font-style: normal;
  color: var(--ink);
  line-height: 1.7;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--accent) !important;
  text-decoration: none !important;
}

.back-home svg { width: 16px; height: 16px; }

/* Danke-Seite */
.thanks-hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 3rem) var(--pad-x) 4rem;
}

.thanks-hero .ok-badge {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(52, 214, 123, 0.14);
  border: 1.5px solid rgba(52, 214, 123, 0.45);
  margin: 0 auto 1.5rem;
}

.thanks-hero .ok-badge svg {
  width: 34px;
  height: 34px;
  color: #4ade80;
}

.thanks-hero p {
  max-width: 46ch;
  margin: 1rem auto 2rem;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------------ 19 --
   ANIMATIONEN & REDUCED MOTION
--------------------------------------------------------------------------*/
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
