/* ============================================================
   Sodalo Design System
   Handgeschriebenes CSS – kein Framework-Runtime.
   Richtung: warmes Papier, Serif-Headlines (Fraunces),
   Inter für UI, Blau/Gold aus der bestehenden Marke,
   aber sparsam eingesetzt.
   ============================================================ */

:root {
  /* Flächen */
  --paper:      #FAF8F3;
  --white:      #FFFFFF;
  --blue-tint:  #EEF3FB;
  --gold-tint:  #FBF3E4;
  --navy:       #14274F;
  --navy-deep:  #0E1E42;

  /* Tinte */
  --ink:        #23282F;
  --ink-muted:  #5B6470;
  --ink-light:  #8B94A1;

  /* Marke */
  --blue:       #2456C8;
  --blue-deep:  #1A44A8;
  --gold:       #B45309;
  --gold-bright:#D97706;

  /* Linien */
  --border:     #E6E1D6;
  --border-blue:#C9D6F0;

  /* Typo */
  --serif: 'Fraunces', 'Georgia', serif;
  --sans:  'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Maße */
  --wrap: 1120px;
  --wrap-narrow: 720px;
  --radius: 14px;
  --radius-lg: 20px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
ul[class], ol[class] { list-style: none; }

::selection { background: #F3D9A8; color: var(--ink); }

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: #C9CFD8; border-radius: 5px; border: 2px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-light); }

/* ── Typografie ────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

.h-serif-accent { font-style: italic; color: var(--gold); font-weight: 400; }
.h-blue-accent  { color: var(--blue); }

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 36rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Handgezeichneter Unterstrich für Schlüsselwörter */
.u-squiggle {
  position: relative;
  white-space: nowrap;
}
.u-squiggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.12em;
  height: .28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 25 2 50 7 T 98 5' fill='none' stroke='%23D97706' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

/* ── Layout ────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-tint  { background: var(--blue-tint); }
.bg-navy  { background: var(--navy); color: #DCE6F7; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--ink-muted); }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split  { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5.5rem); align-items: center; }
  .split--wide-left  { grid-template-columns: 7fr 5fr; }
  .split--wide-right { grid-template-columns: 5fr 7fr; }
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold-bright);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(180, 83, 9, .25);
}
.btn--gold:hover { background: var(--gold); box-shadow: 0 6px 18px rgba(180, 83, 9, .3); color: var(--white); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); color: var(--white); }

.btn--ghost {
  border-color: var(--border);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--ink-light); background: var(--white); }

.btn--blue-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--blue-outline:hover { background: var(--blue-tint); }

.btn--light { border-color: rgba(255,255,255,.35); color: var(--white); background: transparent; }
.btn--light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn--sm { padding: .55rem 1.2rem; font-size: .85rem; }
.btn--block { width: 100%; border-radius: 12px; }

/* ── Karten & Panels ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.card--tint { background: var(--blue-tint); border-color: var(--border-blue); }
.card--gold { background: var(--gold-tint); border-color: #EED9B4; }
.card--hover { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card--hover:hover {
  transform: translateY(-3px);
  border-color: var(--border-blue);
  box-shadow: 0 12px 32px rgba(20, 39, 79, .08);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); }

/* ── Listen ────────────────────────────────────────────── */
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .8rem;
  color: var(--ink-muted);
  font-size: .95rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: .28em;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  background: var(--blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232456C8'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center / .7rem no-repeat;
}
.checklist strong { color: var(--ink); }

/* Nummerierte Schritte – Editorial-Stil */
.steps { counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
}
.steps li:last-child { border-bottom: 1px solid var(--border); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.2;
}
.steps h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; margin-bottom: .3rem; }
.steps p { color: var(--ink-muted); font-size: .92rem; }

/* ── Zitate ────────────────────────────────────────────── */
.quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
}
.quote::before {
  content: '“';
  display: block;
  font-size: 3.5rem;
  line-height: .6;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.quote-by {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink-muted);
}
.quote-by strong { color: var(--ink); display: block; font-size: .95rem; }

/* ── Statistiken ───────────────────────────────────────── */
.stat .stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--ink);
  line-height: 1;
}
.stat .stat-label {
  margin-top: .45rem;
  font-size: .78rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 12px rgba(20,39,79,.05); }

.nav-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo img { height: 2.1rem; width: auto; display: block; }

.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a.nav-link {
  color: var(--ink-muted);
  font-size: .9rem;
  font-weight: 500;
  position: relative;
}
.nav-links a.nav-link:hover { color: var(--ink); text-decoration: none; }
.nav-links a.nav-link.is-active { color: var(--blue); }
.nav-links a.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 1px;
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

.nav-burger {
  background: none;
  border: none;
  padding: .4rem;
  color: var(--ink);
}
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.25rem;
  background: var(--paper);
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: .65rem 0;
  color: var(--ink-muted);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: .8rem; }

/* ── Hero ──────────────────────────────────────────────── */
.hero { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero h1 { max-width: 20ch; }
.hero .lead { margin-top: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.25rem; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero-facts .fact { font-size: .82rem; color: var(--ink-muted); }
.hero-facts .fact strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--ink); }

/* ── Browser-Mockup (Produkt-Vorschau ohne Screenshot) ── */
.browser {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 39, 79, .1);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.browser-bar .b-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-bar .b-dot:nth-child(1) { background: #E8A33D; }
.browser-bar .b-dot:nth-child(2) { background: #C9CFD8; }
.browser-bar .b-dot:nth-child(3) { background: #C9CFD8; }
.browser-bar .b-url {
  flex: 1;
  margin-left: .5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .7rem;
  color: var(--ink-light);
  padding: .28rem .7rem;
  font-family: var(--sans);
}
.browser-body { padding: 1.25rem; }

/* Mini-Hub-Mockup */
.mock { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; min-height: 300px; }
.mock-side { border-right: 1px solid var(--border); padding-right: 1rem; }
.mock-side .m-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.mock-side .m-item {
  height: .55rem;
  border-radius: 4px;
  background: var(--blue-tint);
  margin-bottom: .7rem;
}
.mock-side .m-item.is-active { background: var(--blue); opacity: .85; }
.mock-side .m-item.w60 { width: 60%; } .mock-side .m-item.w80 { width: 80%; }
.mock-main .m-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .25rem;
}
.mock-main .m-sub { font-size: .72rem; color: var(--ink-light); margin-bottom: 1.1rem; }
.mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .7rem .85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: .6rem;
  background: var(--paper);
}
.mock-row .m-name { height: .55rem; border-radius: 4px; background: #D8DEE8; width: 55%; }
.mock-row .m-meta { height: .4rem; border-radius: 4px; background: #E8EBF0; width: 35%; margin-top: .4rem; }
.mock-row .m-tag {
  font-size: .62rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.mock-row .m-tag--open { background: #DCF2E5; color: #1E7A45; }
.mock-row .m-tag--full { background: #FBE3E0; color: #B0342A; }
.mock-bar { height: .4rem; border-radius: 3px; background: #E8EBF0; margin-top: .5rem; overflow: hidden; }
.mock-bar i { display: block; height: 100%; background: var(--blue); border-radius: 3px; }

/* ── Bild-/Foto-Platzhalter ────────────────────────────── */
.media-frame {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.media-placeholder {
  position: relative;
  border: 1.5px dashed var(--border-blue);
  border-radius: var(--radius-lg);
  background: var(--blue-tint);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 3rem 1.5rem;
  text-align: center;
  min-height: 280px;
}
.media-placeholder .mp-icon { color: var(--blue); opacity: .55; }
.media-placeholder .mp-title { font-weight: 600; font-size: .9rem; color: var(--ink); }
.media-placeholder .mp-note { font-size: .75rem; color: var(--ink-muted); max-width: 24rem; }

/* Foto-Rahmen mit Klebeband-Detail */
.photo {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .75rem .75rem 2.75rem;
  box-shadow: 0 10px 30px rgba(20, 39, 79, .1);
  transform: rotate(-1.2deg);
}
.photo::before {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  width: 90px; height: 26px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(238, 220, 180, .75);
  border-left: 1px dashed rgba(0,0,0,.06);
  border-right: 1px dashed rgba(0,0,0,.06);
}
.photo figcaption {
  position: absolute;
  bottom: .6rem; left: 0; right: 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: .85rem;
  color: var(--ink-muted);
}

/* ── Referenz-/Praxis-Karten ───────────────────────────── */
.case-card { overflow: hidden; }
.case-card .case-body { padding: clamp(1.5rem, 3vw, 2.5rem); }
.case-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.case-meta span {
  font-size: .72rem;
  font-weight: 600;
  background: var(--blue-tint);
  color: var(--blue);
  padding: .3rem .7rem;
  border-radius: 999px;
}

/* ── Preise ────────────────────────────────────────────── */
.price-grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.price-card.is-featured {
  border: 2px solid var(--blue);
  position: relative;
  background: linear-gradient(180deg, #F5F8FE, var(--white) 60%);
}
.price-card .pc-flag {
  position: absolute;
  top: -0.85rem; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .pc-kicker { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .6rem; }
.price-card .pc-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin-bottom: .35rem; }
.price-card .pc-desc { font-size: .8rem; color: var(--ink-light); margin-bottom: 1.25rem; }
.price-card .pc-price { display: flex; align-items: baseline; gap: .3rem; }
.price-card .pc-price b { font-family: var(--serif); font-weight: 500; font-size: 2.4rem; color: var(--ink); }
.price-card .pc-price span { color: var(--ink-muted); font-size: .9rem; }
.price-card .pc-setup { font-size: .8rem; color: var(--ink-light); margin: .25rem 0 1.25rem; }
.price-card ul { flex-grow: 1; margin-bottom: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }

/* Vergleichstabelle */
.compare { width: 100%; border-collapse: collapse; font-size: .9rem; }
.compare th, .compare td { padding: .85rem 1rem; text-align: center; }
.compare th:first-child, .compare td:first-child { text-align: left; }
.compare thead th { background: var(--navy); color: var(--white); font-weight: 600; font-size: .8rem; }
.compare thead th:first-child { border-radius: 10px 0 0 0; }
.compare thead th:last-child { border-radius: 0 10px 0 0; }
.compare tbody tr:nth-child(even) { background: var(--paper); }
.compare tbody td { border-bottom: 1px solid var(--border); color: var(--ink-muted); }
.compare .yes { color: var(--blue); font-weight: 600; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: 12px; background: var(--white); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex-shrink: 0; color: var(--blue); transition: transform .25s; }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq .faq-body {
  margin: 0 1.4rem;
  padding: 1rem 0 1.25rem;
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── Formulare ─────────────────────────────────────────── */
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-muted);
  margin-bottom: .45rem;
}
.field label .req { color: var(--gold-bright); }
.input, .field input[type="text"], .field input[type="email"], .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-light); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 86, 200, .12);
}
.field textarea { resize: vertical; min-height: 7rem; }
.field-row { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .field-row { grid-template-columns: 1fr 1fr; } }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .8rem; color: var(--ink-muted); }
.consent input { margin-top: .2rem; width: 1rem; height: 1rem; accent-color: var(--blue); flex-shrink: 0; }

.form-status { display: none; padding: .8rem 1rem; border-radius: 10px; font-size: .88rem; margin-bottom: 1rem; }
.form-status.is-error { display: block; background: #FBEAE8; color: #A93329; border: 1px solid #F0C7C2; }
.form-status.is-ok { display: block; background: #E4F4EA; color: #1E7A45; border: 1px solid #BEE3CB; }

.form-success { text-align: center; padding: 3rem 1rem; }
.form-success .fs-check {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--blue);
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: #A8BBE0;
  padding-block: 3.5rem 2rem;
  font-size: .9rem;
}
.footer a { color: #A8BBE0; }
.footer a:hover { color: var(--white); }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1.2fr; } }
.footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: .55rem; }
.footer-brand img { height: 2.2rem; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { line-height: 1.7; }
.footer-sign {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #D8C49A;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
  color: #7285AB;
}
.footer-bottom nav { display: flex; gap: 1.25rem; }

/* ── Sonstiges ─────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin-block: 0; }

.note {
  font-size: .85rem;
  color: var(--ink-muted);
  padding-left: 1rem;
  border-left: 3px solid var(--gold-bright);
}

.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-row span {
  font-size: .75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .3rem .8rem;
  color: var(--ink-muted);
  background: var(--white);
}

.to-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 60;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: none;
  box-shadow: 0 6px 20px rgba(14, 30, 66, .3);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-deep); }

/* Reveal-Animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* Prose für Rechtstexte */
.prose h2 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2.25rem;
  margin-bottom: .6rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.prose h3 { font-family: var(--sans); font-size: .95rem; font-weight: 600; margin-top: 1.4rem; margin-bottom: .4rem; letter-spacing: 0; }
.prose p, .prose li { color: var(--ink-muted); font-size: .9rem; line-height: 1.8; }
.prose p { margin-bottom: .8rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: .8rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose code { background: var(--blue-tint); color: var(--blue); padding: .1rem .4rem; border-radius: 4px; font-size: .82rem; }
