@import url("fonts.css");

/* ============================================================
   REGELRECHT. — Designsystem
   Farben: Kanzleiblau, Kanzleigrün, Creme, Signalrot (AT)
   ============================================================ */

:root {
  --creme: #fdfbf7;
  --creme-2: #f8f5ee;
  --creme-3: #f1ece1;
  --navy: #0f1e45;
  --navy-2: #16294f;
  --navy-tief: #0a1530;
  --gruen: #0e6e52;
  --gruen-hell: #12916c;
  --mint: #6ee7b7;
  --rot: #c8102e;
  --rand: #e5e1d8;
  --grau: #6b7280;
  --grau-2: #8b8f99;

  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max: 1180px;
  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;
  --r-xl: 40px;

  --schatten-s: 0 2px 8px rgba(15, 30, 69, .06);
  --schatten-m: 0 12px 32px -12px rgba(15, 30, 69, .16);
  --schatten-l: 0 40px 80px -32px rgba(15, 30, 69, .28);

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--creme);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }
.wrap--eng { max-width: 860px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 0 0 var(--r-s) 0; font-weight: 600;
}
.skip:focus { left: 0; }

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

/* ---------- Typo-Bausteine ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gruen); margin-bottom: 18px; display: block;
}
.eyebrow--hell { color: var(--mint); }

.display { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

.kursiv { font-style: italic; font-weight: 500; }
.gruen-text { color: var(--gruen); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: #3d4a68; line-height: 1.6; }
.klein { font-size: 14px; color: var(--grau); line-height: 1.6; }
.mini { font-size: 12.5px; color: var(--grau-2); line-height: 1.55; }

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

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 16px; font-weight: 600; text-decoration: none;
  padding: 16px 30px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primar { background: var(--navy); color: var(--creme); box-shadow: var(--schatten-m); }
.btn--primar:hover { background: var(--navy-2); box-shadow: 0 18px 40px -14px rgba(15, 30, 69, .5); }
.btn--gruen { background: var(--gruen); color: #fff; box-shadow: 0 12px 30px -14px rgba(14, 110, 82, .8); }
.btn--gruen:hover { background: var(--gruen-hell); }
.btn--geist { background: transparent; color: var(--navy); border-color: var(--rand); }
.btn--geist:hover { border-color: var(--navy); background: #fff; }
.btn--hell { background: var(--creme); color: var(--navy); }
.btn--hell:hover { background: #fff; }
.btn--gross { padding: 18px 32px; font-size: 17px; }
.btn__pfeil { transition: transform .25s var(--ease); }
.btn:hover .btn__pfeil { transform: translateX(4px); }

/* ---------- Icons ---------- */

.ico { width: 40px; height: 40px; color: var(--navy); flex: none; }
.ico--s { width: 22px; height: 22px; }
.ico--l { width: 52px; height: 52px; }

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

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 247, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.ist-gescrollt { border-bottom-color: var(--rand); box-shadow: 0 4px 24px -18px rgba(15, 30, 69, .5); }
.nav__innen { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.nav__logo img { height: 34px; width: auto; display: block; }
.nav__wort { font-size: 20px; font-weight: 700; letter-spacing: -.035em; }
.nav__wort span { color: var(--gruen); }
.nav__wort i { color: var(--rot); font-style: normal; }
.nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-size: 15px; font-weight: 500; color: #3d4a68;
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gruen); transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 12px 24px; font-size: 15px; }
.nav__burger {
  display: none; margin-left: auto; background: none; border: 1.5px solid var(--rand);
  border-radius: 100px; width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 18px; height: 1.8px; background: var(--navy); position: relative; transition: .25s var(--ease); }
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.8px; background: var(--navy); transition: .25s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobilmenu {
  display: none; border-top: 1px solid var(--rand); background: var(--creme);
  padding: 12px 24px 26px;
}
.mobilmenu.offen { display: block; }
.mobilmenu a {
  display: block; padding: 14px 0; text-decoration: none; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--rand);
}
.mobilmenu .btn { margin-top: 18px; width: 100%; }

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

.hero { position: relative; padding: clamp(48px, 7vw, 86px) 0 clamp(40px, 5vw, 64px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -30% auto auto; width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(14, 110, 82, .11), transparent 66%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; }

.pille {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--rand); border-radius: 100px;
  padding: 8px 18px 8px 10px; font-size: 13.5px; font-weight: 600; color: #3d4a68;
  box-shadow: var(--schatten-s); margin-bottom: 26px;
}
.pille__flagge { display: flex; flex-direction: column; width: 20px; height: 14px; border-radius: 3px; overflow: hidden; flex: none; }
.pille__flagge i { flex: 1; }
.pille__flagge i:nth-child(odd) { background: var(--rot); }
.pille__flagge i:nth-child(2) { background: #fff; }

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gruen); }
.hero__sub { max-width: 33ch; margin-bottom: 30px; }
.hero__aktionen { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }
.hero__belege { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero__beleg { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--grau); }
.hero__beleg .ico { color: var(--gruen); }

.hero__bild { position: relative; }
.hero__bild img { display: block; width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(15, 30, 69, .12)); }
.hero__marke {
  position: absolute; right: -6px; bottom: 6%; background: var(--navy); color: var(--creme);
  border-radius: var(--r-m); padding: 16px 22px; box-shadow: var(--schatten-l); max-width: 250px;
}
.hero__marke b { display: block; font-size: 26px; font-family: var(--serif); line-height: 1.1; }
.hero__marke span { font-size: 12.5px; color: #b9c2d6; }

/* ---------- Preiskarte ---------- */

.preiskarte {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--r-l);
  padding: 34px; box-shadow: var(--schatten-m);
}
.preiskarte__kopf { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.preiskarte__preis { font-family: var(--serif); font-size: 56px; font-weight: 700; line-height: 1; }
.preiskarte__note { font-size: 14px; color: var(--grau); }
.preiskarte ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.preiskarte li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.preiskarte li svg { width: 20px; height: 20px; color: var(--gruen); flex: none; margin-top: 3px; }
.preiskarte__fuss {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--rand);
  display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--grau);
}

/* ---------- Kennzahlenband ---------- */

.band { background: var(--navy); color: var(--creme); padding: clamp(44px, 5vw, 70px) 0; }
.band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.band__zelle { text-align: center; padding: 0 10px; }
.band__zelle + .band__zelle { border-left: 1px solid rgba(253, 251, 247, .14); }
.band__zahl { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1; }
.band__zahl sup { font-size: .45em; vertical-align: super; margin-left: 2px; font-family: var(--sans); font-weight: 600; }
.band__label { font-size: 13.5px; color: #b9c2d6; margin-top: 12px; display: block; line-height: 1.45; }

/* ---------- Sektionen ---------- */

.sek { padding: clamp(64px, 8vw, 112px) 0; }
.sek--creme { background: var(--creme-2); }
.sek--navy { background: var(--navy); color: var(--creme); }
.sek--navy .lead { color: #b9c2d6; }
.sek__kopf { max-width: 780px; margin-bottom: clamp(36px, 4.5vw, 58px); }
.sek__kopf--zentriert { margin-inline: auto; text-align: center; }
.sek__kopf h2 { margin-bottom: 20px; }

/* ---------- Fallkacheln ---------- */

.faelle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fall {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--r-l); padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.fall::after {
  content: ""; position: absolute; inset: auto -40px -40px auto; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 110, 82, .09), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.fall:hover { transform: translateY(-5px); box-shadow: var(--schatten-m); border-color: #d5cfc0; }
.fall:hover::after { opacity: 1; }
.fall .ico { margin-bottom: 20px; color: var(--navy); }
.fall h3 { font-size: 20px; margin-bottom: 10px; }
.fall p { font-size: 15px; color: #4a5670; margin-bottom: 16px; }
.fall__norm {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600;
  background: rgba(14, 110, 82, .09); color: var(--gruen); padding: 6px 13px; border-radius: 100px;
  position: relative; z-index: 1;
}

/* ---------- Zitatblock ---------- */

.zitat { text-align: center; max-width: 900px; margin-inline: auto; }
.zitat blockquote {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.2; margin: 0 0 26px;
  font-weight: 500; font-style: italic;
}
.zitat blockquote span { font-style: normal; font-weight: 700; }

/* ---------- Schritte ---------- */

.schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.schritt {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--r-l); padding: 34px 30px 30px;
  position: relative;
}
.schritt__nr {
  font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--gruen);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; display: block;
}
.schritt .ico { margin-bottom: 18px; }
.schritt h3 { font-size: 22px; margin-bottom: 12px; }
.schritt p { font-size: 15px; color: #4a5670; }
.schritt__zeit {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--rand);
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--navy);
  width: 100%;
}
.schritt__zeit b { color: var(--gruen); }

/* ---------- Warum-Karten (auf navy) ---------- */

.warum { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.warum__karte {
  background: rgba(253, 251, 247, .05); border: 1px solid rgba(253, 251, 247, .12);
  border-radius: var(--r-l); padding: 32px; transition: background .3s, border-color .3s, transform .35s var(--ease);
}
.warum__karte:hover { background: rgba(253, 251, 247, .08); border-color: rgba(110, 231, 183, .4); transform: translateY(-4px); }
.warum__karte .ico { color: var(--mint); margin-bottom: 20px; }
.warum__karte h3 { font-size: 21px; margin-bottom: 12px; color: var(--creme); }
.warum__karte p { font-size: 15px; color: #b9c2d6; }
.warum__karte code {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--mint);
  background: rgba(110, 231, 183, .1); padding: 3px 9px; border-radius: 100px; white-space: nowrap;
}

/* ---------- Kanzlei / Portrait ---------- */

.kanzlei { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.kanzlei__bild { position: relative; }
.kanzlei__bild img {
  display: block; width: 100%; height: auto; border-radius: var(--r-l); box-shadow: var(--schatten-m); border: 1px solid var(--rand);
}
.kanzlei__signatur {
  position: absolute; left: -20px; bottom: 28px; background: #fff; border: 1px solid var(--rand);
  border-radius: var(--r-m); padding: 14px 20px; box-shadow: var(--schatten-l);
}
.kanzlei__signatur b { display: block; font-size: 16px; }
.kanzlei__signatur span { font-size: 12.5px; color: var(--grau); }
.kanzlei h2 { margin-bottom: 22px; }
.kanzlei__liste { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.kanzlei__liste li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; }
.kanzlei__liste svg { width: 21px; height: 21px; color: var(--gruen); flex: none; margin-top: 3px; }

.warnbox {
  background: rgba(200, 16, 46, .05); border: 1px solid rgba(200, 16, 46, .22);
  border-left: 4px solid var(--rot); border-radius: var(--r-m); padding: 22px 24px; margin-top: 28px;
}
.warnbox b { color: var(--rot); }
.warnbox p { font-size: 14.5px; color: #4a5670; }

/* ---------- Bereiche ---------- */

.bereiche { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bereich {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--r-m); padding: 26px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bereich:hover { transform: translateY(-4px); box-shadow: var(--schatten-m); }
.bereich .ico { width: 34px; height: 34px; margin-bottom: 16px; color: var(--gruen); }
.bereich h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; margin-bottom: 7px; letter-spacing: 0; }
.bereich p { font-size: 13.5px; color: var(--grau); line-height: 1.5; }
.bereich em { display: block; margin-top: 10px; font-style: normal; font-size: 12px; font-weight: 600; color: var(--gruen); }

/* ---------- Honorar ---------- */

.honorar { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.honorar__karte { background: #fff; border: 1px solid var(--rand); border-radius: var(--r-l); padding: 32px; }
.honorar__karte h3 { font-size: 21px; margin-bottom: 14px; }
.honorar__karte p { font-size: 15px; color: #4a5670; }
.honorar__tabelle { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 14.5px; }
.honorar__tabelle th, .honorar__tabelle td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--rand); }
.honorar__tabelle th { font-weight: 600; color: #4a5670; }
.honorar__tabelle td { text-align: right; font-weight: 700; white-space: nowrap; }
.honorar__tabelle tr:last-child th, .honorar__tabelle tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */

.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--rand); }
.faq details { border-bottom: 1px solid var(--rand); }
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 48px 26px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 14px; margin-top: -7px;
  border-right: 2px solid var(--gruen); border-bottom: 2px solid var(--gruen);
  transform: rotate(45deg) translateY(-3px); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq__antwort { padding: 0 40px 28px 0; }
.faq__antwort p { font-size: 15.5px; color: #4a5670; }
.faq__antwort p + p { margin-top: 12px; }

/* ---------- Abschluss-CTA ---------- */

.abschluss { background: var(--navy); color: var(--creme); text-align: center; padding: clamp(72px, 9vw, 130px) 0; position: relative; overflow: hidden; }
.abschluss::before {
  content: ""; position: absolute; inset: auto 50% -260px auto; transform: translateX(50%);
  width: 900px; height: 520px; background: radial-gradient(ellipse, rgba(14, 110, 82, .45), transparent 68%);
}
.abschluss__innen { position: relative; }
.abschluss h2 { margin-bottom: 20px; }
.abschluss .lead { max-width: 620px; margin: 0 auto 34px; }
.abschluss__marken { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 30px; font-size: 13.5px; color: #b9c2d6; }

/* ---------- Footer ---------- */

.fuss { background: var(--navy-tief); color: #b9c2d6; padding: 68px 0 34px; font-size: 14.5px; }
.fuss__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(253, 251, 247, .12); }
.fuss__wort { font-size: 24px; font-weight: 700; letter-spacing: -.035em; color: var(--creme); margin-bottom: 12px; }
.fuss__wort span { color: var(--mint); }
.fuss__wort i { color: var(--rot); font-style: normal; }
.fuss h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--creme); margin-bottom: 16px; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.fuss a { text-decoration: none; transition: color .2s; }
.fuss a:hover { color: var(--mint); }
.fuss__recht { padding-top: 28px; display: grid; gap: 16px; }
.fuss__recht p { font-size: 12.5px; line-height: 1.65; color: #8b93a8; }
.fuss__unten { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 12px; font-size: 12.5px; }

/* ---------- Rechtsseiten (Impressum, DSGVO, AGB) ---------- */

.rechtsseite { padding: clamp(48px, 6vw, 84px) 0 clamp(64px, 8vw, 100px); }
.rechtsseite h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin-bottom: 14px; }
.rechtsseite h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin: 44px 0 14px; }
.rechtsseite h3 { font-family: var(--sans); font-size: 16.5px; font-weight: 700; margin: 26px 0 8px; letter-spacing: 0; }
.rechtsseite p, .rechtsseite li { font-size: 15.5px; color: #3d4a68; }
.rechtsseite p + p { margin-top: 12px; }
.rechtsseite ul, .rechtsseite ol { margin: 12px 0; padding-left: 22px; display: grid; gap: 8px; }
.rechtsseite dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 26px; margin: 16px 0; font-size: 15.5px; }
.rechtsseite dt { font-weight: 700; }
.rechtsseite dd { margin: 0; color: #3d4a68; }
.rechtsseite table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
.rechtsseite th, .rechtsseite td { text-align: left; padding: 12px 14px; border: 1px solid var(--rand); vertical-align: top; }
.rechtsseite th { background: var(--creme-2); font-weight: 700; }
.rechtsseite a { color: var(--gruen); }
.platzhalter-hinweis {
  background: #fff6d8; border: 1px solid #e8d38a; border-left: 4px solid #d9a441;
  border-radius: var(--r-m); padding: 20px 24px; margin-bottom: 34px; font-size: 14.5px; color: #6b5310;
}
.zurueck { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--gruen); margin-bottom: 26px; }

/* ---------- Scroll-Reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.sichtbar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .fall:hover, .bereich:hover, .warum__karte:hover { transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__bild { max-width: 520px; margin-inline: auto; }
  .hero__sub { max-width: 46ch; }
  .kanzlei { grid-template-columns: 1fr; }
  .kanzlei__bild { max-width: 400px; }
  .bereiche { grid-template-columns: repeat(2, 1fr); }
  .faelle, .schritte { grid-template-columns: repeat(2, 1fr); }
  .fuss__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav__links, .nav > .wrap .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .band__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
  .band__zelle:nth-child(3) { border-left: 0; }
  .warum, .honorar { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .faelle, .schritte, .bereiche, .fuss__grid { grid-template-columns: 1fr; }
  .band__zelle + .band__zelle { border-left: 0; }
  .hero__marke { right: 0; bottom: -12px; }
  .kanzlei__signatur { left: 12px; }
  .btn { width: 100%; }
  .hero__aktionen { flex-direction: column; align-items: stretch; }
  .rechtsseite dl { grid-template-columns: 1fr; gap: 2px 0; }
  .rechtsseite dd { margin-bottom: 12px; }
}

@media print {
  .nav, .abschluss, .phone, .mobilmenu { display: none; }
  body { background: #fff; }
}

/* ============================================================
   Kasse: Mandatsformular, Zahlung, Rückkehrseite
   ============================================================ */

.kasse { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(32px, 4vw, 60px); align-items: start; }
.kasse__form h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }

.feldgruppe { border: 0; padding: 0; margin: 0 0 38px; }
.feldgruppe legend {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gruen); padding: 0 0 16px;
  border-bottom: 1px solid var(--rand); width: 100%; margin-bottom: 22px;
}
.feldreihe { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

.formfeld { margin: 0 0 20px; display: flex; flex-direction: column; }
.formfeld label { font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.formfeld label span[aria-hidden] { color: var(--rot); }
.optional { font-weight: 400; color: var(--grau-2); font-size: 12.5px; }

.formfeld input, .formfeld select, .formfeld textarea {
  font-family: var(--sans); font-size: 16px; color: var(--navy); background: #fff;
  border: 1.5px solid var(--rand); border-radius: var(--r-s); padding: 13px 15px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.formfeld textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.formfeld select { appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f1e45' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.formfeld input:focus, .formfeld select:focus, .formfeld textarea:focus {
  outline: none; border-color: var(--gruen); box-shadow: 0 0 0 3px rgba(14, 110, 82, .14);
}
.formfeld input.ist-fehlerhaft, .formfeld select.ist-fehlerhaft, .formfeld textarea.ist-fehlerhaft {
  border-color: var(--rot); box-shadow: 0 0 0 3px rgba(200, 16, 46, .1);
}
.feldhilfe { font-size: 12.5px; color: var(--grau-2); margin-top: 6px; line-height: 1.5; }
.feldfehler { font-size: 13px; color: var(--rot); font-weight: 500; margin-top: 6px; display: block; }
.feldfehler:empty { display: none; }

.haken { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; cursor: pointer; margin-bottom: 4px; }
.haken input[type="checkbox"] {
  appearance: none; flex: none; width: 21px; height: 21px; margin: 1px 0 0;
  border: 1.5px solid var(--rand); border-radius: 6px; background: #fff; cursor: pointer;
  transition: background .18s, border-color .18s;
}
.haken input[type="checkbox"]:checked { background: var(--gruen); border-color: var(--gruen); }
.haken input[type="checkbox"]:checked::after {
  content: ""; display: block; width: 5px; height: 10px; margin: 2.5px auto 0;
  border: solid #fff; border-width: 0 2.4px 2.4px 0; transform: rotate(45deg);
}
.haken input[type="checkbox"]:focus-visible { outline: 3px solid var(--gruen-hell); outline-offset: 2px; }
.haken__folge { margin: 14px 0 0 33px; padding-left: 16px; border-left: 2px solid var(--rand); }

.faggbox { background: var(--creme-2); border: 1px solid var(--rand); border-radius: var(--r-m); padding: 24px; margin-top: 24px; }
.faggbox__titel { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.faggbox .haken { margin-top: 16px; }
.faggbox .mini { margin-top: 12px; }

.meldung { border-radius: var(--r-m); padding: 16px 20px; font-size: 14.5px; margin-bottom: 26px; line-height: 1.55; }
.meldung--fehler { background: rgba(200, 16, 46, .06); border: 1px solid rgba(200, 16, 46, .25); color: #8e0c21; }

.kasse__absenden { width: 100%; margin-top: 8px; }
.kasse__absenden:disabled { opacity: .68; cursor: progress; transform: none; }
.kasse__spinner {
  width: 17px; height: 17px; border-radius: 50%; flex: none;
  border: 2.2px solid rgba(253, 251, 247, .35); border-top-color: var(--creme);
  animation: kreisel .7s linear infinite;
}
@keyframes kreisel { to { transform: rotate(360deg); } }

.kasse__summe { position: sticky; top: 100px; }
.kasse__karte { background: #fff; border: 1px solid var(--rand); border-radius: var(--r-l); padding: 30px; box-shadow: var(--schatten-m); }
.kasse__liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.kasse__liste li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.kasse__liste svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--gruen); }
.kasse__methoden { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--rand); display: flex; flex-wrap: wrap; gap: 8px; }
.kasse__methoden .eyebrow { width: 100%; margin: 0; }
.methode { font-size: 12.5px; font-weight: 600; color: #4a5670; background: var(--creme-2); border: 1px solid var(--rand); border-radius: 100px; padding: 6px 13px; }

/* ---- Rückkehrseite ---- */

.ergebnisseite { max-width: 640px; }
.ergebnisseite h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 14px; }
.ergebnisseite__kreis {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 26px;
}
.ergebnisseite__kreis--gut { background: rgba(14, 110, 82, .1); color: var(--gruen); }
.ergebnisseite__kreis--schlecht { background: rgba(200, 16, 46, .09); color: var(--rot); }
.ergebnisseite__kreis--warten { background: var(--creme-2); color: var(--grau); }
.ergebnisseite__kreis--warten .kasse__spinner { border-color: var(--rand); border-top-color: var(--gruen); width: 24px; height: 24px; }
.ergebnisseite__karte { background: #fff; border: 1px solid var(--rand); border-radius: var(--r-l); padding: 30px; margin-top: 30px; }
.ergebnisseite__daten { display: grid; grid-template-columns: max-content 1fr; gap: 10px 26px; margin: 24px 0 0; font-size: 14.5px; }
.ergebnisseite__daten dt { font-weight: 700; }
.ergebnisseite__daten dd { margin: 0; color: #3d4a68; }
.ergebnisseite__daten code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13.5px; background: var(--creme-2); padding: 3px 9px; border-radius: 6px; letter-spacing: .06em; }
.schrittliste { margin: 16px 0 0; padding-left: 20px; display: grid; gap: 11px; }
.schrittliste li { font-size: 15px; color: #3d4a68; line-height: 1.55; }

@media (max-width: 1000px) {
  .kasse { grid-template-columns: 1fr; }
  .kasse__summe { position: static; order: -1; }
}
@media (max-width: 620px) {
  .feldreihe { grid-template-columns: 1fr; }
  .haken__folge { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .kasse__spinner { animation-duration: 2s; }
}

/* Lange deutsche Komposita dürfen die Karte nicht sprengen. */
.kasse__karte h2, .ergebnisseite h1, .kasse__form h1 { overflow-wrap: break-word; hyphens: auto; }
