/* ============================================================
   ROMBEY CAPITAL · main.css
   Design: tiefes Tinten-Navy, Champagner-Gold als Haarlinien,
   Inter als durchgängige Schrift (Font-Identität der Subdomains,
   z.B. termin.rombey.capital) – Display 800, UI 600/700, Body 400.
   Referenz: docs/DESIGN-SYSTEM.md
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --navy-deep: #0a1730;
  --navy: #0e1f3d;
  --navy-2: #17305c;
  --gold: #e3aa33;
  --gold-2: #a1751a;          /* dunkles Gold für Text auf hellem Grund (AA) */
  --gold-hover: #d09925;
  --hairline-gold: rgba(227, 170, 51, .35);
  --ink: #212529;
  --mute: #495057;
  --line: #e9ecef;
  --bg: #f7f8fa;
  --bg-2: #eef1f5;
  --white: #fff;

  /* Inter = Font-Identität der Subdomains (termin./anfrage.rombey.capital) */
  --display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(10, 23, 48, .04), 0 12px 40px -12px rgba(10, 23, 48, .10);
  --shadow-lg: 0 1px 2px rgba(10, 23, 48, .06), 0 40px 90px -30px rgba(10, 23, 48, .28);
  --container: 1200px;
  --pad-x: clamp(20px, 4vw, 48px); /* Mobile: nie unter 20px Randabstand */

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font: 400 17px/1.8 var(--sans);
  letter-spacing: -0.015em;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

/* Sicherheitsnetz gegen überlange (deutsche) Komposita auf schmalen Viewports:
   nie abschneiden – notfalls umbrechen. Gilt für alle textführenden Elemente. */
h1, h2, h3, h4, h5, h6, p, li, dt, dd, summary, blockquote, figcaption, a, span, strong, em {
  overflow-wrap: break-word;
}
/* Silbentrennung (nutzt das lang-Attribut der Seite) für große Typo und
   Fließtext – bricht „Finanzentscheidungen" & Co. sauber mit Trennstrich. */
.h1, .h2, .h3, .lead, .hero__lead, .post__standfirst, .post-card__title,
.flow h2, .flow h3, .flow p, .flow li, .faq__item summary, .faq__body,
.card p, .checklist li, .step p, .stat dd, .proof__item dd, .legal h2, .legal p {
  hyphens: auto;
  -webkit-hyphens: auto;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--navy); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px;
  font: 700 14px/1 var(--ui); border-radius: 0 0 8px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Typografie ---------- */
.h1, .h2 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.h1 { font-size: clamp(36px, 4.6vw, 54px); line-height: 1.06; }
.h2 { font-size: clamp(28px, 3.4vw, 41px); line-height: 1.14; }
.h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
}
.h1 em, .h2 em { font-style: normal; color: var(--gold); }

/* Eyebrow bewusst als Block mit Inline-Strich (KEIN Flex): In Flex wäre der
   Text ein eigenes Item, dessen min-content lange Wörter wie
   „Berufsunfähigkeitsversicherung" nicht bricht → Overflow auf 320px. */
.eyebrow {
  font: 700 13px/1.4 var(--ui);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: block;
  margin: 0 0 18px;
  min-width: 0;
  hyphens: auto; -webkit-hyphens: auto;
}
.eyebrow::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 28px; height: 1px; background: var(--gold); margin-right: 10px;
}
.eyebrow a { color: inherit; text-decoration: none; }
.eyebrow a:hover { text-decoration: underline; }
/* Schmale Viewports: Goldstrich kostet 38px – ohne ihn passt auch das
   längste Kompositum einzeilig in die 20px-Gutter. */
@media (max-width: 430px) { .eyebrow::before { display: none; } }

.lead {
  font-weight: 600;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 62ch;
  margin: 18px 0 0;
}
.small { font-size: 15px; line-height: 1.6; color: var(--mute); }

.numeral {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  color: var(--gold);
}

.rule { display: block; width: 100%; height: 1px; background: var(--hairline-gold); border: 0; margin: 0; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad-x); }
.wrap--narrow { max-width: 820px; }
.section { padding-block: clamp(64px, 8.5vw, 120px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--tint { background: var(--bg); }
.section--navy { background: var(--navy-deep); color: rgba(255, 255, 255, .85); }
.section--navy::before { content: ""; position: absolute; inset: 0; background: var(--grain); pointer-events: none; }
.section--navy > * { position: relative; }
.section--navy .h2, .section--navy .h3 { color: #fff; }
.section--navy .lead { color: rgba(255, 255, 255, .72); }
.section--navy .eyebrow { color: var(--gold); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

.grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1020px) { .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Buttons & Links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 700 15px/1.2 var(--ui);
  letter-spacing: -0.005em;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden; /* für den Shine-Sweep der Gold-CTAs (Schatten bleiben sichtbar) */
}
/* Gold-CTA: Lichtstreif läuft beim Hover einmal über den Button */
.btn--gold::after {
  content: "";
  position: absolute; top: -6px; bottom: -6px; left: 0; width: 44%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .5) 50%, transparent 100%);
  transform: translateX(-140%) skewX(-18deg);
  transition: transform .6s ease;
  pointer-events: none;
}
.btn--gold:hover::after, .btn--gold:focus-visible::after { transform: translateX(330%) skewX(-18deg); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 8px 24px -8px rgba(10, 23, 48, .45); }
.btn--primary:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(10, 23, 48, .55); }
.btn--gold { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); box-shadow: 0 8px 24px -10px rgba(227, 170, 51, .55); }
.btn--gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(14, 31, 61, .22); }
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--ghost-light { color: #fff; border-color: rgba(255, 255, 255, .32); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn .arrow { transition: transform .25s ease; flex: none; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.link {
  font: 700 14.5px/1.3 var(--ui); color: var(--navy);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent; padding-bottom: 3px;
  transition: border-color .2s ease, color .2s ease;
}
.link:hover { border-color: var(--gold); color: var(--navy-2); }
.link--arrow svg { transition: transform .25s ease; }
.link--arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
/* Blur liegt auf dem Pseudo-Element: backdrop-filter direkt auf .header würde
   den Header zum Containing Block des fixed Mobile-Menüs machen (Menü könnte
   den Viewport nicht mehr füllen). */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -18px rgba(10, 23, 48, .25); }
.header__inner {
  max-width: var(--container); margin: 0 auto; padding-inline: var(--pad-x);
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.brand__logo { display: block; height: 32px; width: auto; }
@media (max-width: 480px) { .brand__logo { height: 27px; } }
.footer__logo { display: block; height: 40px; width: auto; margin-bottom: 4px; }
.hero__panel-logo { display: block; width: 190px; height: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__list > li > a, .nav__dropbtn {
  display: inline-flex; align-items: center; gap: 7px;
  font: 700 14.5px/1 var(--ui); color: var(--navy);
  text-decoration: none; padding: 11px 14px; border-radius: 999px;
  background: none; border: 0; cursor: pointer;
  transition: background .2s ease;
}
.nav__list > li > a:hover, .nav__dropbtn:hover { background: var(--bg-2); }
.nav__dropbtn svg { transition: transform .2s ease; }
.nav__dropdown.is-open .nav__dropbtn svg { transform: rotate(180deg); }

.nav__dropdown { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + 10px); left: -12px;
  min-width: 640px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav__dropdown.is-open .nav__panel { opacity: 1; visibility: visible; transform: none; }
.nav__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__grid a {
  display: block; padding: 12px 14px; border-radius: 10px; text-decoration: none;
  transition: background .15s ease;
}
.nav__grid a:hover { background: var(--bg); }
.nav__grid strong { display: block; font: 700 14.5px/1.35 var(--ui); color: var(--navy); }
.nav__grid span { display: block; font-size: 13.5px; line-height: 1.45; color: var(--mute); margin-top: 2px; }
.nav__grid li:last-child strong { color: var(--gold-2); }

.header__actions { display: flex; align-items: center; gap: 12px; flex: none; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 7px;
  font: 700 13px/1 var(--ui); color: var(--mute);
  text-decoration: none; padding: 9px 12px; border-radius: 999px;
  border: 1px solid var(--line);
  transition: color .2s ease, border-color .2s ease;
}
.lang-switch:hover { color: var(--navy); border-color: var(--navy); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer; border-radius: 10px;
}
.burger span { display: block; height: 2px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .burger { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
    background: #fff; overflow-y: auto;
    padding: 20px var(--pad-x) 120px;
    display: none;
  }
  body.nav-open .nav { display: block; }
  body.nav-open { overflow: hidden; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { border-bottom: 1px solid var(--line); }
  .nav__list > li > a, .nav__dropbtn { width: 100%; justify-content: space-between; padding: 18px 4px; font-size: 17px; border-radius: 0; }
  .nav__list > li > a:hover, .nav__dropbtn:hover { background: none; }
  .nav__panel {
    position: static; min-width: 0; border: 0; box-shadow: none; padding: 0 0 10px;
    opacity: 1; visibility: hidden; transform: none; display: none;
  }
  .nav__dropdown.is-open .nav__panel { display: block; visibility: visible; }
  .nav__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Hero (Startseite) ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-2) 130%);
  color: rgba(255, 255, 255, .88);
  position: relative;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grain); pointer-events: none; }
.hero__inner {
  max-width: var(--container); margin: 0 auto; padding: clamp(64px, 9vw, 130px) var(--pad-x);
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 72px);
  align-items: center; position: relative;
}
.hero .h1 { color: #fff; }
.hero .eyebrow { color: var(--gold); }
.hero__lead { font-size: 18px; font-weight: 500; line-height: 1.7; color: rgba(255, 255, 255, .78); max-width: 56ch; margin-top: 22px; }
.hero__meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(227, 170, 51, .28); }
.hero__meta strong { display: block; font: 700 14px/1.35 var(--ui); color: #fff; margin-bottom: 4px; }
.hero__meta div { font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, .62); }

.hero__visual { position: relative; min-height: 420px; }
.hero__arcs { position: absolute; inset: -40px -60px -40px 0; width: calc(100% + 60px); height: calc(100% + 80px); }
.hero__panel {
  position: absolute; right: 8%; top: 14%;
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  max-width: 300px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
}
.hero__monogram {
  width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold); font: 700 22px/1 var(--display);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__panel-rule { display: block; width: 100%; height: 1px; background: rgba(227, 170, 51, .4); }
.hero__panel-name { font: 700 16px/1.3 var(--ui); color: #fff; }
.hero__panel-sub { font-size: 12.5px; line-height: 1.55; color: rgba(255, 255, 255, .6); }
.hero__chip {
  position: absolute; left: 0; bottom: 10%;
  display: flex; align-items: center; gap: 14px;
  background: #fff; color: var(--navy);
  border-radius: 14px; padding: 16px 22px;
  box-shadow: var(--shadow-lg);
}
.hero__chip-num { font: 800 30px/1 var(--display); color: var(--gold-2); }
.hero__chip-label { font: 700 12.5px/1.4 var(--ui); max-width: 130px; }

/* ---------- Hero-Animation: ruhige Präzision statt Spielerei ----------
   Konzept „Uhrwerk": Die goldenen Bögen zeichnen sich beim Laden EINMAL
   ruhig ein (SVG pathLength=1 + dashoffset), die Inhalte treten über die
   reveal-Mechanik gestaffelt auf, danach steht alles still. Nur das
   Hintergrund-Licht atmet extrem langsam weiter. Keine Partikel, keine
   Maus-Interaktion, kein Dauerschweben. prefers-reduced-motion wird von
   der globalen Motion-Bremse abgedeckt (alles sofort sichtbar). */
.hero__glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: min(58vw, 760px); height: min(58vw, 760px);
  will-change: transform;
}
.hero__glow--a {
  top: -24%; right: -14%;
  background: radial-gradient(circle, rgba(227, 170, 51, .12) 0%, rgba(227, 170, 51, .04) 45%, transparent 68%);
  animation: hero-glow-a 32s ease-in-out infinite alternate;
}
.hero__glow--b {
  bottom: -32%; left: -16%;
  background: radial-gradient(circle, rgba(64, 106, 196, .11) 0%, rgba(23, 48, 92, .05) 48%, transparent 70%);
  animation: hero-glow-b 40s ease-in-out infinite alternate;
}
@keyframes hero-glow-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-6%, 7%, 0) scale(1.10); }
}
@keyframes hero-glow-b {
  from { transform: translate3d(0, 0, 0) scale(1.04); }
  to   { transform: translate3d(7%, -5%, 0) scale(.95); }
}
/* Bögen zeichnen sich einmal ein – von innen nach außen gestaffelt.
   Voraussetzung: pathLength="1" auf den <circle>-Elementen. */
.hero__arcs circle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: arc-draw 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
}
.hero__arcs circle:nth-of-type(2) { animation-delay: .18s; }
.hero__arcs circle:nth-of-type(3) { animation-delay: .36s; }
.hero__arcs circle:nth-of-type(4) { animation-delay: .54s; }
.hero__arcs circle:nth-of-type(5) { animation-delay: .72s; }
@keyframes arc-draw {
  to { stroke-dashoffset: 0; }
}
/* Fünftes Hero-Element (Meta-Zeile) reiht sich in die Staffelung ein */
.reveal:nth-child(5) { transition-delay: .28s; }

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { display: none; }
  .hero__meta { grid-template-columns: minmax(0, 1fr); gap: 14px; }
}

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-2) 140%);
  color: rgba(255, 255, 255, .85);
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 7.5vw, 104px);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--grain); pointer-events: none; }
.page-hero::after {
  content: ""; position: absolute; right: -140px; top: -180px; width: 560px; height: 560px;
  border-radius: 50%; border: 1px solid rgba(227, 170, 51, .25);
  box-shadow: 0 0 0 80px rgba(227, 170, 51, .05), 0 0 0 160px rgba(227, 170, 51, .03);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .h1 { color: #fff; max-width: 21ch; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .lead { color: rgba(255, 255, 255, .75); }
.page-hero--compact { padding-block: clamp(44px, 5.5vw, 72px); }

/* ---------- Proof-Bar ---------- */
.proof { background: var(--white); border-bottom: 1px solid var(--line); }
.proof__grid {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
}
.proof__item { padding: 30px 26px 30px 0; }
.proof__item + .proof__item { border-left: 1px solid var(--hairline-gold); padding-left: 26px; }
.proof__item dt { font: 800 clamp(30px, 3vw, 42px)/1 var(--display); color: var(--gold-2); margin: 0 0 8px; }
.proof__item dd { margin: 0; font-size: 14px; line-height: 1.6; color: var(--mute); }
@media (max-width: 940px) {
  .proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof__item { padding: 22px 20px 22px 0; }
  .proof__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .proof__item:nth-child(n+3) { border-top: 1px solid var(--hairline-gold); }
}
@media (max-width: 480px) {
  .proof__grid { grid-template-columns: minmax(0, 1fr); }
  .proof__item { border-left: 0 !important; padding-left: 0 !important; }
  .proof__item + .proof__item { border-top: 1px solid var(--hairline-gold); }
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
a.card { text-decoration: none; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(227, 170, 51, .45); }
.card--flat:hover { transform: none; box-shadow: var(--shadow); border-color: var(--line); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-2));
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(227, 170, 51, .35);
}
.card p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--mute); }
.card .link { margin-top: auto; }
.card__kicker { font: 700 12px/1.4 var(--ui); letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); }

.card--navy { background: linear-gradient(150deg, var(--navy-deep), var(--navy-2)); border-color: rgba(227, 170, 51, .35); }
.card--navy .h3, .card--navy strong { color: #fff; }
.card--navy p { color: rgba(255, 255, 255, .72); }
.card--navy .link { color: var(--gold); }
.card--navy .link:hover { color: var(--gold-hover); border-color: var(--gold); }

/* ---------- Checkliste / Feature-Liste ---------- */
/* WICHTIG: li ist bewusst KEIN Flex-Container. In Flexbox würden <strong>/<a>
   und nachfolgender Text zu getrennten Flex-Items nebeneinander – Text
   „überlappt" optisch. Icon daher absolut, Inhalt fließt normal. */
.checklist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 13px; }
.checklist li { position: relative; padding-left: 35px; font-size: 16px; line-height: 1.65; min-width: 0; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e3aa33' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checklist strong { color: var(--navy); }
.checklist--light li { color: rgba(255,255,255,.8); }
.checklist--light strong { color: #fff; }

/* ---------- Prozess-Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.step { position: relative; padding-top: 18px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font: 800 clamp(40px, 4.5vw, 56px)/1 var(--display); color: var(--gold);
  display: block; margin-bottom: 14px;
}
.step::after { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 1px; background: var(--gold); }
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--mute); }
.section--navy .step p { color: rgba(255, 255, 255, .68); }
@media (max-width: 1020px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .steps { grid-template-columns: minmax(0, 1fr); } }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 940px) { .faq__grid { grid-template-columns: minmax(0, 1fr); } }
.faq__list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] { border-color: rgba(227, 170, 51, .5); box-shadow: var(--shadow); }
/* Summary bewusst KEIN Flex (lange Komposita würden als Flex-Item nicht
   brechen → Overflow auf schmalen Viewports). Icon absolut positioniert. */
.faq__item summary {
  display: block; position: relative;
  padding: 19px 64px 19px 22px;
  font: 700 16px/1.45 var(--ui); color: var(--navy);
  cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; margin-top: -14px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--hairline-gold);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1751a' stroke-width='2.4' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/13px no-repeat;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e3aa33' stroke-width='2.4' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-color: var(--navy); border-color: var(--navy);
}
.faq__body {
  padding: 0 22px 22px;
  font-size: 15.5px; line-height: 1.75; color: var(--mute);
  border-left: 2px solid var(--gold);
  margin-left: 22px; padding-left: 18px; margin-bottom: 20px; padding-bottom: 0;
}
@media (max-width: 480px) {
  .faq__item summary { padding: 16px 54px 16px 16px; }
  .faq__item summary::after { right: 14px; }
  .faq__body { margin-left: 16px; padding-left: 12px; padding-right: 14px; }
}
.faq__body p { margin: 0 0 10px; } .faq__body p:last-child { margin-bottom: 0; }
.faq__body a { color: var(--navy); font-weight: 700; }

/* ---------- Panels / CTA ---------- */
.panel {
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between;
}
.panel > div:first-child { max-width: 60ch; }
.panel p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.7; }
.panel--navy {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-2));
  color: rgba(255, 255, 255, .78);
  position: relative; overflow: hidden;
}
.panel--navy::before { content: ""; position: absolute; inset: 0; background: var(--grain); pointer-events: none; }
.panel--navy > * { position: relative; }
.panel__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.final-cta { text-align: center; }
.final-cta .h2 { color: #fff; max-width: 24ch; margin-inline: auto; }
.final-cta .lead { margin-inline: auto; }
.final-cta .btn-row { justify-content: center; }
.final-cta__note { margin-top: 26px; font-size: 13.5px; color: rgba(255, 255, 255, .55); }
.final-cta__note a { color: rgba(255, 255, 255, .75); }

/* ---------- Badge-Row (Trust) ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font: 700 12.5px/1.3 var(--ui);
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--hairline-gold);
  color: var(--navy);
  background: rgba(227, 170, 51, .06);
}
.badge svg { color: var(--gold-2); flex: none; }
.page-hero .badge, .hero .badge { color: rgba(255, 255, 255, .85); background: rgba(255, 255, 255, .06); border-color: rgba(227, 170, 51, .4); }
.page-hero .badge svg, .hero .badge svg { color: var(--gold); }

/* ---------- Vergleichstabelle ---------- */
.table-wrap { overflow-x: auto; margin: 28px 0; border: 1px solid var(--line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 15px; line-height: 1.6; }
thead th {
  background: var(--navy); color: #fff;
  font: 700 13.5px/1.4 var(--ui); text-align: left;
  padding: 14px 18px; white-space: nowrap;
}
tbody td { padding: 14px 18px; border-top: 1px solid var(--line); vertical-align: top; color: var(--ink); }
tbody tr:nth-child(even) { background: var(--bg); }
tbody td:first-child { font-weight: 700; color: var(--navy); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 40px); }
.stat { border-top: 1px solid var(--hairline-gold); padding-top: 18px; }
.stat dt { font: 800 clamp(34px, 4vw, 54px)/1 var(--display); color: var(--gold); margin-bottom: 8px; }
.stat dd { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--mute); }
.section--navy .stat dd { color: rgba(255, 255, 255, .65); }
@media (max-width: 640px) { .stats { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Split (Text + Visual) ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: minmax(0, 1fr); } }
.split__visual { position: relative; }
.figure {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-2));
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--portrait { aspect-ratio: 4 / 5; }
.figure__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

/* ---------- Monogramm-Medaillon (Über uns) ---------- */
.monogram-ring {
  width: 96px; height: 96px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 34px/1 var(--display); color: var(--gold);
}

/* ---------- Blog ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.chip {
  font: 700 13px/1 var(--ui); color: var(--mute);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 1020px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .post-grid { grid-template-columns: minmax(0, 1fr); } }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(227, 170, 51, .45); }
.post-card.is-hidden { display: none; }
.post-card__link { display: flex; flex-direction: column; gap: 12px; padding: clamp(22px, 2.6vw, 30px); text-decoration: none; height: 100%; }
.post-card__meta { display: flex; gap: 8px; font: 700 12.5px/1.4 var(--ui); color: var(--gold-2); text-transform: uppercase; letter-spacing: .06em; }
.post-card__title { font: 700 19px/1.4 var(--sans); letter-spacing: -0.015em; color: var(--navy); margin: 0; }
.post-card__excerpt { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--mute); }
.post-card__foot { margin-top: auto; padding-top: 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 12px; }
.post-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font: 700 11px/1 var(--ui); letter-spacing: .06em; text-transform: uppercase; color: var(--mute); background: var(--bg-2); border-radius: 999px; padding: 6px 10px; }

.post__hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-2) 140%);
  padding-block: clamp(52px, 7vw, 92px);
  color: rgba(255, 255, 255, .85);
  position: relative; overflow: hidden;
}
.post__hero::before { content: ""; position: absolute; inset: 0; background: var(--grain); pointer-events: none; }
.post__hero .wrap { position: relative; }
.post__hero .h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.post__hero .eyebrow { color: var(--gold); }
.post__standfirst { font-size: 17.5px; font-weight: 600; line-height: 1.65; color: rgba(255, 255, 255, .75); max-width: 62ch; margin: 18px 0 0; }
.post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 26px; font: 600 13.5px/1.4 var(--ui); color: rgba(255, 255, 255, .6); }
.post__author { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.post__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  border: 1px solid var(--gold); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 13px/1 var(--display);
}

.post__toc {
  margin: clamp(32px, 4vw, 48px) 0 0;
  border: 1px solid var(--line); border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--bg); padding: 20px 24px;
  font-size: 14.5px;
}
.post__toc strong { font: 700 13px/1 var(--ui); letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.post__toc ol { margin: 12px 0 0; padding-left: 18px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; }
.post__toc a { color: var(--mute); text-decoration: none; }
.post__toc a:hover { color: var(--navy); text-decoration: underline; }

.post__body { padding-block: clamp(32px, 4vw, 48px); }
.flow h2 { font: 700 clamp(25px, 2.8vw, 32px)/1.25 var(--display); color: var(--navy); margin: 1.6em 0 .6em; letter-spacing: -0.01em; }
.flow h3 { font: 700 20px/1.4 var(--sans); color: var(--navy); margin: 1.5em 0 .5em; }
.flow p { margin: 0 0 1.1em; }
.flow ul, .flow ol { margin: 0 0 1.2em; padding-left: 24px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; }
.flow li::marker { color: var(--gold-2); font-weight: 700; }
.flow a { color: var(--navy); font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.flow blockquote {
  margin: 1.6em 0; padding: 18px 26px;
  border-left: 2px solid var(--gold);
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px; color: var(--navy);
}
.flow blockquote p { margin: 0; }
.flow code { font-size: .9em; background: var(--bg-2); padding: 2px 7px; border-radius: 6px; }
.flow pre { background: var(--navy-deep); color: #e8ecf3; padding: 20px 24px; border-radius: var(--radius); overflow-x: auto; font-size: 14px; line-height: 1.7; }
.flow pre code { background: none; padding: 0; }
.flow hr { border: 0; height: 1px; background: var(--hairline-gold); margin: 2.2em 0; }
.flow img { border-radius: var(--radius); box-shadow: var(--shadow); }

.post__cta { margin-block: clamp(24px, 3vw, 40px); }
.post__related { padding-block: clamp(24px, 3vw, 40px) clamp(48px, 6vw, 72px); }
.post__related .h3 { margin-bottom: 22px; }
.post-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1020px) { .post-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .post-grid--related { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Kontakt ---------- */
.contact-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 940px) { .contact-tiles { grid-template-columns: minmax(0, 1fr); } }
.contact-info { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; font-size: 16px; }
.contact-info a { color: var(--navy); font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* ---------- Legal-Seiten ---------- */
.legal { padding-block: clamp(40px, 5vw, 72px); }
.legal h2 { font: 700 21px/1.4 var(--sans); color: var(--navy); margin: 2em 0 .6em; }
.legal h3 { font: 700 17px/1.5 var(--sans); color: var(--navy); margin: 1.6em 0 .4em; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.75; color: var(--ink); }
.legal ul { padding-left: 22px; }
.legal a { color: var(--navy); font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, .72); position: relative; margin-top: auto; }
.footer::before { content: ""; position: absolute; inset: 0; background: var(--grain); pointer-events: none; }
.footer__inner {
  max-width: var(--container); margin: 0 auto; padding: clamp(52px, 7vw, 84px) var(--pad-x) clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.4fr); gap: clamp(32px, 5vw, 72px);
  position: relative;
}
.footer__tagline { font-size: 14.5px; line-height: 1.75; margin: 18px 0 22px; max-width: 40ch; }
.footer__contact { font-size: 14.5px; line-height: 2; margin: 0; }
.footer__contact a { color: #fff; text-decoration: none; font-weight: 700; }
.footer__contact a:hover { color: var(--gold); }
.footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
@media (max-width: 1020px) { .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer__inner { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 520px) { .footer__cols { grid-template-columns: minmax(0, 1fr); } }
.footer__col h2 { font: 700 12.5px/1.4 var(--ui); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.footer__col a { color: rgba(255, 255, 255, .72); text-decoration: none; font-size: 14.5px; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(227, 170, 51, .22); position: relative; }
.footer__legal-inner {
  max-width: var(--container); margin: 0 auto; padding: 22px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: space-between;
}
.footer__legal p { margin: 0; font-size: 12.5px; line-height: 1.7; color: rgba(255, 255, 255, .45); }

/* ---------- Mobile CTA-Bar ---------- */
.ctabar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  grid-template-columns: minmax(0,1fr) minmax(0,1.2fr) minmax(0,1fr);
  background: rgba(10, 23, 48, .97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(227, 170, 51, .35);
  padding-bottom: env(safe-area-inset-bottom);
}
.ctabar a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 8px;
  font: 700 13.5px/1 var(--ui); color: #fff; text-decoration: none;
}
.ctabar__mid { background: var(--gold); color: var(--navy-deep) !important; }
@media (max-width: 900px) {
  .ctabar { display: grid; }
  body { padding-bottom: 54px; }
  body.nav-open .ctabar { display: none; }
}

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* Ohne JS: alles sichtbar */
.no-observer .reveal { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.u-mt { margin-top: 26px; }
.u-mb { margin-bottom: 18px; }
.figure__placeholder svg { width: 100%; height: 100%; }
.final-cta .eyebrow { justify-content: center; }
.panel--navy .h3 { color: #fff; }

/* ---------- 404 ---------- */
.notfound { min-height: 55vh; display: flex; align-items: center; }
.notfound .numeral { font-size: clamp(72px, 10vw, 120px); }

/* ---------- Print ---------- */
@media print {
  .header, .footer, .ctabar, .btn, .chip-row { display: none !important; }
  body { padding: 0; }
}

/* Echtes Bild im Figure-Slot: Placeholder weicht, Bild füllt den Container.
   .figure ist selbst 4:3 (bzw. 4:5 als --portrait) mit overflow:hidden –
   height:100% + cover croppt jedes Seitenverhältnis passgenau. */
.figure img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.figure__placeholder--hidden { display: none; }
