/* ============================================================
   ROUVEN TREPTOW — Finance Consulting Management
   Schwarz & Gold · Design: Nordic IT Motion
   Farbwelt lt. Gesprächsnotiz NIM-2026-GN01:
   #0C0B09 (Schwarz) · #C9A227 (Gold) · #F3EDE0 (Elfenbein)
   ============================================================ */

:root {
  --ink: #0C0B09;
  --ink-2: #100E0B;
  --ink-3: #16130F;
  --ink-4: #1D1914;
  --gold: #C9A227;
  --gold-light: #E3C766;
  --gold-deep: #9A7A1B;
  --ivory: #F3EDE0;
  --ivory-80: rgba(243, 237, 224, 0.8);
  --ivory-60: rgba(243, 237, 224, 0.6);
  --ivory-40: rgba(243, 237, 224, 0.62); /* AA-Kontrast auf Near-Black */
  --ivory-25: rgba(243, 237, 224, 0.52); /* Disclaimer bleiben lesbar */
  --line: rgba(201, 162, 39, 0.16);
  --line-strong: rgba(201, 162, 39, 0.35);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.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;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--gold); color: #171205;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  padding: 12px 22px; border-radius: 0 0 8px 8px;
  transition: top 0.25s;
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(201, 162, 39, 0.35); color: var(--ivory); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader .mono-ring {
  width: 96px; height: 96px;
  opacity: 0;
  animation: logoIn 1.1s var(--ease) 0.15s forwards;
}
@keyframes logoIn {
  from { opacity: 0; transform: scale(0.84); }
  to { opacity: 1; transform: scale(1); }
}
.preloader-name {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ivory);
  opacity: 0; animation: fadein 0.6s 0.8s var(--ease) forwards;
}
.preloader-powered {
  margin-top: 12px;
  font-size: 10.5px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--ivory-60);
  opacity: 0; animation: fadeup 0.7s 1.15s var(--ease) forwards;
}
.preloader-powered span { color: var(--gold); }
@keyframes ringdraw { to { stroke-dashoffset: 0; } }
@keyframes fadein { to { opacity: 1; } }
@keyframes fadeup { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Monogramm ---------- */
.monogram { display: inline-block; fill: var(--gold); fill: url(#tr-goldgrad); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 11, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-brand .monogram { width: 40px; height: 40px; flex: none; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.3;
}
.nav-brand-sub {
  display: block;
  font-family: var(--font-sans); font-size: 8.5px; font-weight: 400;
  letter-spacing: 0.32em; color: var(--gold);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
  color: var(--ivory-60); text-transform: uppercase;
  transition: color 0.3s;
  position: relative; padding: 4px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid var(--line-strong); border-radius: 99px;
  padding: 3px;
}
.lang-switch button {
  background: none; border: 0; border-radius: 99px;
  color: var(--ivory-40);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  padding: 4px 11px;
  transition: all 0.3s;
}
.lang-switch button.active { background: var(--gold); color: var(--ink); }
.lang-switch button:not(.active):hover { color: var(--ivory); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 4px;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #171205;
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.22);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(201, 162, 39, 0.34); }
.btn-gold:hover::before { transform: translateX(130%); }
.btn-ghost { border-color: var(--line-strong); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

.nav-burger {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  position: relative; z-index: 110;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ivory); margin: 6px auto;
  transition: 0.35s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  /* unter der .nav (100), damit der Burger/X klickbar bleibt */
  position: fixed; inset: 0; z-index: 99;
  background: rgba(12, 11, 9, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 21px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .lang-switch { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(201, 162, 39, 0.10), transparent 70%),
    radial-gradient(ellipse 45% 35% at 85% 90%, rgba(201, 162, 39, 0.05), transparent 70%);
  pointer-events: none;
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
}
.hero-lines::before, .hero-lines::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.hero-lines::before { left: max(28px, calc(50% - 590px)); }
.hero-lines::after { right: max(28px, calc(50% - 590px)); }

.hero-inner { position: relative; text-align: center; }

/* Hero-Entrance: startet, sobald der Preloader ausblendet (html.intro-done) */
.hero-inner > * { opacity: 0; }
html.intro-done .hero-inner > * { animation: heroIn 0.9s var(--ease) forwards; }
html.intro-done .hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
html.intro-done .hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
html.intro-done .hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
html.intro-done .hero-inner > *:nth-child(4) { animation-delay: 0.38s; }
html.intro-done .hero-inner > *:nth-child(5) { animation-delay: 0.5s; }
html.intro-done .hero-inner > *:nth-child(6) { animation-delay: 0.6s; }
html.intro-done .hero-inner > *:nth-child(7) { animation-delay: 0.72s; }
html.intro-done .hero-inner > *:nth-child(8) { animation-delay: 0.86s; }
html.intro-done .hero-inner > *:nth-child(9) { animation-delay: 1s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.hero .monogram { width: 108px; height: 108px; margin: 0 auto 34px; }
.hero-eyebrow {
  font-size: 12px; font-weight: 400; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.4vw, 88px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.06;
  color: var(--ivory);
  text-transform: uppercase;
}
.hero-role {
  font-size: clamp(11px, 1.6vw, 15px);
  letter-spacing: 0.52em; text-transform: uppercase;
  color: var(--gold);
  margin: 20px 0 0;
  font-weight: 400;
}
/* Partner-Badge im Hero */
.hero-partner-wrap { margin-top: 30px; }
.hero-partner {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: rgba(201, 162, 39, 0.06);
  padding: 10px 24px 10px 12px;
  font-size: 12px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-80);
  position: relative; overflow: hidden;
  transition: border-color 0.35s, color 0.35s, box-shadow 0.35s;
}
.hero-partner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(243, 237, 224, 0.08) 48%, transparent 62%);
  transform: translateX(-130%);
  animation: badgesheen 5s var(--ease) 2.2s infinite;
}
@keyframes badgesheen {
  0% { transform: translateX(-130%); }
  32%, 100% { transform: translateX(130%); }
}
.hero-partner:hover {
  border-color: var(--gold);
  color: var(--ivory);
  box-shadow: 0 6px 26px rgba(201, 162, 39, 0.18);
}
.hp-mark {
  flex: none;
  width: 26px; height: 26px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0;
}

.hero-sep {
  width: 90px; height: 1px; margin: 38px auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  position: relative;
}
.hero-sep::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-claim {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ivory-80);
  max-width: 780px;
  margin: 0 auto;
}
.hero-claim em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-ctas {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-top: 46px;
}
.hero-chips {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 42px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ivory-60);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 18px;
}
.chip svg { width: 13px; height: 13px; stroke: var(--gold); flex: none; }

.scroll-hint {
  margin: 70px auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ivory-25);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 640px) {
  .scroll-hint { display: none; }
}

/* ---------- Metrics band ---------- */
.metrics {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  padding: 54px 0 44px;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
  text-align: center;
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  animation: metricGlow 8s ease-in-out infinite;
}
.metric:nth-child(2) .metric-value { animation-delay: 2s; }
.metric:nth-child(3) .metric-value { animation-delay: 4s; }
.metric:nth-child(4) .metric-value { animation-delay: 6s; }
@keyframes metricGlow {
  0%, 100% { color: var(--gold); text-shadow: none; }
  50% { color: var(--gold-light); text-shadow: 0 0 22px rgba(227, 199, 102, 0.4); }
}
.metric-value .star { font-size: 0.62em; vertical-align: 12%; }
.metric-label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory-60);
  margin-top: 10px;
}
.metrics-note {
  text-align: center;
  font-size: 11px; color: var(--ivory-25);
  margin-top: 34px;
  letter-spacing: 0.02em;
}
.metrics-note a { color: var(--ivory-40); border-bottom: 1px solid var(--line-strong); }
.metrics-note a:hover { color: var(--gold-light); }

/* ---------- Sections base ---------- */
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-head.center .section-label { justify-content: center; }
.section-label::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s var(--ease) 0.25s;
}
.section-head.center .section-label::after {
  content: ""; width: 36px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.8s var(--ease) 0.25s;
}
.visible .section-label::before, .visible .section-label::after,
.section-label.visible::before, .section-label.visible::after {
  transform: scaleX(1);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 400;
  line-height: 1.16;
  color: var(--ivory);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-intro {
  margin-top: 22px;
  font-size: 17px; color: var(--ivory-60);
  line-height: 1.75;
}

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.45s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--ink-4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 12px;
  margin-bottom: 24px;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.07);
  transform: translateY(-2px);
}
.service-icon { transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease); }

/* ---------- Leistungs-Szenen (animierte Gold-Dioramen) ---------- */
.service-scene {
  height: 168px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 90% at 50% 0%, rgba(201, 162, 39, 0.07), transparent 75%),
    var(--ink-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s;
}
.service-card:hover .service-scene { border-color: var(--line-strong); }
.service-scene svg { width: 100%; height: 100%; }

/* Einflug der Szenen-Ebenen */
.service-card .fly {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--d, 0s);
}
.service-card.visible .fly { opacity: 1; transform: none; }

/* Balken wachsen von unten */
.service-card .grow {
  transform: scaleY(0);
  transform-origin: bottom;
  transform-box: fill-box;
  transition: transform 0.9s var(--ease) var(--d, 0s);
}
.service-card.visible .grow { transform: scaleY(1); }

/* Ambient-Loops — laufen erst, wenn die Karte sichtbar ist */
.service-card .float, .service-card .float2, .service-card .sweep,
.service-card .heart, .service-card .rise, .service-card .dropCoin,
.service-card .dropline, .service-card .coinDrop, .service-card .glowfill,
.service-card .glowfill2, .service-card .pulse {
  transform-box: fill-box;
}
.service-card.visible .float { animation: scFloat 5.5s ease-in-out 1.2s infinite; }
.service-card.visible .float2 { animation: scFloat 6.5s ease-in-out 2s infinite; }
.service-card.visible .sweep { animation: scSweep 7s ease-in-out 1.4s infinite; }
.service-card.visible .heart { animation: scHeart 3.2s ease-in-out 1.2s infinite; }
.service-card.visible .dropline { animation: scRain var(--t, 3s) linear var(--dd, 0s) infinite; }
.service-card.visible .coinDrop { animation: scCoinRain var(--t, 3.6s) linear var(--dd, 0s) infinite; }
.service-card.visible .dropCoin { animation: scCoinLand 4.5s ease-in 1.2s infinite; }
.service-card.visible .rise { animation: scRise 5.5s ease-out var(--dd, 0s) infinite; }
.service-card.visible .glowfill { animation: scGlow 4s ease-in-out 1.5s infinite; }
.service-card.visible .glowfill2 { animation: scGlow 4s ease-in-out 3s infinite; }
.service-card.visible .pulse { animation: scPulse 3.8s ease-in-out var(--dd, 0s) infinite; }
.service-card .spinH {
  transform-origin: 70px 62px;
  transform-box: view-box;
  animation: spinSlow 16s linear infinite;
}

@keyframes scFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes scSweep { 0%, 100% { transform: translateX(-9px); } 50% { transform: translateX(10px); } }
@keyframes scHeart { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.09); } 24% { transform: scale(1); } 36% { transform: scale(1.07); } 48% { transform: scale(1); } }
@keyframes scRain {
  0% { transform: translateY(-26px); opacity: 0; }
  14% { opacity: 0.55; }
  78% { opacity: 0.55; }
  100% { transform: translateY(64px); opacity: 0; }
}
@keyframes scCoinRain {
  0% { transform: translateY(-52px); opacity: 0; }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translateY(58px); opacity: 0; }
}
@keyframes scCoinLand {
  0% { transform: translateY(-30px); opacity: 0; }
  30% { opacity: 1; }
  55% { transform: translateY(0); opacity: 1; }
  75% { opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes scRise {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 0.9; }
  80% { opacity: 0.2; }
  100% { transform: translateY(-42px); opacity: 0; }
}
@keyframes scGlow { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
@keyframes scPulse { 0%, 100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.75; transform: scale(1.08); } }

/* Icon-Zeichnungsanimation (Königswege-Prinzip, Gold-Linien-Stil) */
.service-card .draw {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.1s var(--ease);
  transition-delay: var(--d, 0s);
  fill: none;
}
.service-card.visible .draw { stroke-dashoffset: 0; }
.service-card .ekg {
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-dasharray: 16 84;
  stroke-dashoffset: 100;
  opacity: 0;
  fill: none;
}
.service-card.visible .ekg {
  opacity: 0.85;
  animation: ekgTravel 4.5s linear 1.4s infinite;
}
@keyframes ekgTravel { to { stroke-dashoffset: -100; } }
.service-card .spin {
  transform-origin: 12px 12px;
  transform-box: view-box;
  animation: spinSlow 18s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--ivory);
  margin-bottom: 12px;
}
.service-card p { font-size: 14.5px; color: var(--ivory-60); line-height: 1.7; }

/* ---------- Unabhängigkeit ---------- */
.indep-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px;
  align-items: start;
}
.compare-table {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-3);
}
.compare-row {
  display: grid; grid-template-columns: 1.1fr 1fr 1.25fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div {
  padding: 17px 20px;
  font-size: 13.5px;
  display: flex; align-items: center;
}
.compare-row .c-dim { color: var(--ivory-40); }
.compare-row .c-label { color: var(--ivory-60); font-weight: 400; letter-spacing: 0.04em; font-size: 12px; text-transform: uppercase; }
.compare-row .c-gold { color: var(--gold-light); border-left: 1px solid var(--line); background: rgba(201, 162, 39, 0.05); font-weight: 400; }
.compare-head > div {
  font-size: 12px !important; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 500;
  padding-top: 20px; padding-bottom: 20px;
}
.compare-head .c-gold { color: var(--gold) !important; }

.pillars { display: flex; flex-direction: column; gap: 18px; }
.pillar {
  display: flex; gap: 22px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px;
  background: var(--ink-3);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.pillar:hover { border-color: var(--line-strong); transform: translateX(6px); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500; color: var(--gold);
  line-height: 1.15;
  white-space: nowrap;
}
.pillar h3 { font-size: 16px; font-weight: 500; color: var(--ivory); margin-bottom: 6px; }
.pillar p { font-size: 14px; color: var(--ivory-60); }

.motto {
  margin-top: 60px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* ---------- Einsparpotenzial ---------- */
.savings-strip {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  flex-wrap: wrap;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 130% at 50% -20%, rgba(201, 162, 39, 0.12), transparent 70%),
    var(--ink-3);
  padding: 42px 40px;
  margin-bottom: 56px;
  text-align: center;
}
.savings-strip .big {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 500; color: var(--gold);
  line-height: 1;
}
.savings-strip .desc {
  max-width: 380px; text-align: left;
  font-size: 15.5px; color: var(--ivory-80); line-height: 1.65;
}
.savings-strip .desc strong { color: var(--ivory); font-weight: 500; }

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ink-3);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.case-tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.case-result {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 500; color: var(--ivory);
  line-height: 1;
  margin-bottom: 6px;
}
.case-result span { color: var(--gold); }
.case-sub { font-size: 12.5px; color: var(--ivory-40); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.case-card p { font-size: 14px; color: var(--ivory-60); line-height: 1.7; }
.cases-disclaimer {
  margin-top: 30px;
  font-size: 11.5px; color: var(--ivory-25);
  text-align: center;
}

/* ---------- Prozess ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
  counter-reset: step;
}
.process-grid::before {
  content: ""; position: absolute; top: 27px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong) 15%, var(--line-strong) 85%, transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s var(--ease) 0.3s;
}
.process-grid.visible::before { transform: scaleX(1); }
.process-step { padding: 0 22px; position: relative; text-align: center; }
.process-dot {
  width: 54px; height: 54px; margin: 0 auto 24px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; color: var(--gold);
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 16px; font-weight: 500; color: var(--ivory); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: var(--ivory-60); }

/* ---------- Über mich ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 80px;
  align-items: center;
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(201, 162, 39, 0.09), transparent 75%),
    var(--ink-3);
  box-shadow: var(--shadow);
}
.portrait::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  pointer-events: none;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.portrait .portrait-fallback { display: none; }
.portrait.no-photo img { display: none; }
.portrait.no-photo .portrait-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: absolute; inset: 0;
  gap: 26px;
}
.portrait-fallback .monogram { width: 120px; height: 120px; }
.portrait-fallback .pf-name {
  font-family: var(--font-display);
  font-size: 19px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-80);
  text-align: center; line-height: 1.6;
}
.portrait-fallback .pf-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 9.5px; letter-spacing: 0.4em;
  color: var(--gold); margin-top: 8px;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.4;
  margin-bottom: 28px;
}
.about-text p { color: var(--ivory-60); margin-bottom: 18px; font-size: 15.5px; }
.about-text strong { color: var(--ivory); font-weight: 500; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; list-style: none; }
.about-values li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px; color: var(--ivory-80);
}
.about-values svg { width: 17px; height: 17px; stroke: var(--gold); flex: none; margin-top: 4px; }

/* ---------- Qualifikationen ---------- */
.quals { margin-top: 34px; }
.quals-title {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.qual-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qual-card {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: rgba(201, 162, 39, 0.05);
  padding: 14px 16px;
}
.qual-card svg {
  width: 20px; height: 20px; flex: none; margin-top: 2px;
  stroke: var(--gold); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.qual-card strong { display: block; font-size: 13.5px; font-weight: 500; color: var(--ivory); line-height: 1.4; }
.qual-card span { display: block; font-size: 12px; color: var(--ivory-60); margin-top: 3px; }
.qual-reg { margin-top: 12px; font-size: 12.5px; color: var(--ivory-60); }
.qual-reg strong { color: var(--gold-light); font-weight: 500; letter-spacing: 0.04em; }
.qual-reg a { border-bottom: 1px solid var(--line-strong); }
.qual-reg a:hover { color: var(--gold-light); }
@media (max-width: 640px) { .qual-cards { grid-template-columns: 1fr; } }

/* ---------- Kennzahlen-Credential-Zeile ---------- */
.metrics-cred {
  text-align: center;
  margin-top: 30px;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory-40);
}

/* ---------- Visitenkarte ---------- */
.card-stage {
  margin-top: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
  perspective: 1200px;
}
.biz-card {
  width: min(430px, 88vw);
  aspect-ratio: 1.66;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 120% 90% at 30% 0%, #201c15 0%, #12100c 55%, #0a0908 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(243, 237, 224, 0.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
  position: relative;
  overflow: hidden;
}
.biz-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(243, 237, 224, 0.05) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
}
.card-stage:hover .biz-card::before { transform: translateX(120%); }
.biz-card .monogram { width: 74px; height: 74px; margin-bottom: 16px; }
.biz-card-name {
  font-family: var(--font-display);
  font-size: clamp(19px, 4.4vw, 25px);
  font-weight: 500; letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.biz-card-role {
  font-size: clamp(7.5px, 1.8vw, 9.5px); letter-spacing: 0.42em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.85;
}
.card-stage-caption {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory-25);
}

/* ---------- Königswege ---------- */
.kw-panel {
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(ellipse 65% 100% at 85% 0%, rgba(201, 162, 39, 0.08), transparent 70%),
    var(--ink-3);
  padding: 70px 64px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.kw-panel::before {
  content: "K";
  position: absolute; right: -40px; bottom: -90px;
  font-family: var(--font-display);
  font-size: 430px; line-height: 1;
  color: rgba(201, 162, 39, 0.04);
  pointer-events: none;
}
.kw-kicker {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.kw-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18; color: var(--ivory);
  margin-bottom: 22px;
}
.kw-title em { font-style: italic; color: var(--gold-light); }
.kw-text { color: var(--ivory-60); font-size: 15.5px; margin-bottom: 16px; }
.kw-facts { list-style: none; display: flex; flex-direction: column; gap: 16px; position: relative; }
.kw-facts li {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line);
  background: rgba(12, 11, 9, 0.55);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px; color: var(--ivory-80);
}
.kw-facts svg { width: 17px; height: 17px; stroke: var(--gold); flex: none; margin-top: 4px; }
.kw-source {
  margin-top: 26px;
  font-size: 11px; color: var(--ivory-25);
}
.kw-source a { color: var(--ivory-40); border-bottom: 1px solid var(--line-strong); }
.kw-source a:hover { color: var(--gold-light); }
.kw-rating {
  display: inline-flex; align-items: baseline; gap: 12px;
  margin: 6px 0 24px;
}
.kw-rating .score {
  font-family: var(--font-display);
  font-size: 44px; color: var(--gold);
}
.kw-rating .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.kw-rating .of { font-size: 12.5px; color: var(--ivory-40); }

/* ---------- Beratungsgebiet ---------- */
.region-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.map-wrap { position: relative; display: flex; justify-content: center; }
.map-wrap svg { width: 100%; max-width: 470px; height: auto; }
.de-map .map-others path {
  fill: rgba(243, 237, 224, 0.025);
  stroke: rgba(243, 237, 224, 0.10);
  stroke-width: 1;
}
.de-map .map-glow path { fill: rgba(201, 162, 39, 0.35); }
.de-map .map-focus path {
  fill: url(#goldFill);
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linejoin: round;
}
.map-wrap.visible .de-map .map-focus path {
  stroke-dasharray: 100 100;
  animation: mapdraw 1.8s var(--ease) 0.2s both;
}
@keyframes mapdraw { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
.de-map .city-dot { fill: var(--gold-light); }
.de-map .city-halo { animation: halopulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes halopulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.de-map .city-label {
  fill: var(--ivory);
  font-family: var(--font-sans);
  font-size: 14.5px;
  letter-spacing: 0.04em;
  paint-order: stroke;
  stroke: rgba(12, 11, 9, 0.9);
  stroke-width: 3.5px;
}
.region-cards { display: flex; flex-direction: column; gap: 20px; }
.region-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ink-3);
  padding: 30px 32px;
  display: flex; gap: 22px; align-items: flex-start;
}
.region-card .service-icon { margin-bottom: 0; flex: none; }
.region-card h3 { font-size: 16.5px; font-weight: 500; color: var(--ivory); margin-bottom: 8px; }
.region-card p { font-size: 14.5px; color: var(--ivory-60); }
.region-cities {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}
.region-cities .chip { font-size: 11.5px; padding: 6px 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list h3 { margin: 0; font-size: inherit; font-weight: inherit; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  text-align: left;
  padding: 26px 6px;
  color: var(--ivory);
  font-size: 16.5px; font-weight: 400;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q .faq-icon {
  flex: none; width: 30px; height: 30px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--gold); transform: translate(-50%, -50%);
}
.faq-q .faq-icon::before { width: 11px; height: 1px; }
.faq-q .faq-icon::after { width: 1px; height: 11px; transition: opacity 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); border-color: var(--gold); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner {
  padding: 0 6px 28px;
  color: var(--ivory-60);
  font-size: 15px;
  max-width: 660px;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px;
  align-items: start;
}
.contact-expect { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.contact-expect li { display: flex; gap: 15px; align-items: flex-start; color: var(--ivory-80); font-size: 15px; }
.contact-expect svg { width: 18px; height: 18px; stroke: var(--gold); flex: none; margin-top: 4px; }
.contact-side-note {
  margin-top: 40px;
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ivory-60);
}

.form {
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  background: var(--ink-3);
  padding: 46px 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory-40);
  margin-bottom: 9px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 300;
  padding: 14px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.form-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 12.5px; color: var(--ivory-40);
  margin: 6px 0 26px;
}
.form-consent input {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px; height: 16px; flex: none;
}
.form-consent a { color: var(--ivory-60); border-bottom: 1px solid var(--line-strong); }
.form-status {
  display: none;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.07);
  color: var(--ivory-80);
  font-size: 13.5px;
  padding: 14px 18px;
}
.form-status.show { display: block; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px;
  margin-bottom: 54px;
}
.footer-brand .monogram { width: 52px; height: 52px; margin-bottom: 20px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory);
}
.footer-brand-sub { font-size: 12.5px; color: var(--ivory-40); margin-top: 10px; max-width: 300px; }
.footer h4 {
  font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--ivory-60); transition: color 0.3s; }
.footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: 12px; color: var(--ivory-25);
}
.footer-bottom a { color: var(--ivory-40); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 170px 0 100px; max-width: 820px; }
.legal-page h1 { font-family: var(--font-serif); font-size: 42px; margin-bottom: 40px; }
.legal-page h2 { font-size: 18px; font-weight: 500; color: var(--gold-light); margin: 38px 0 12px; }
.legal-page p, .legal-page li { color: var(--ivory-60); font-size: 15px; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; }
.legal-todo {
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.05);
  color: var(--gold-light);
  font-size: 13.5px;
  padding: 16px 20px;
  margin: 14px 0;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- Druck ---------- */
@media print {
  body { background: #fff; color: #111; }
  * { color: #111 !important; background: transparent !important; box-shadow: none !important; }
  .section-label, .metric-value, .pillar-num, .case-result, .savings-strip .big,
  .kw-kicker, .kw-rating .score { color: #7a6210 !important; }
  .preloader, .nav, .nav-mobile, .scroll-hint, .hero-lines, .skip-link,
  .form button[type="submit"], .lang-switch { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  a::after { content: none !important; }
}

/* Deterministischer Screenshot-/Test-Modus (?static=1) */
html.static-mode *, html.static-mode *::before, html.static-mode *::after {
  animation: none !important; transition: none !important;
}
html.static-mode .preloader { display: none; }
html.static-mode .reveal { opacity: 1; transform: none; }
html.static-mode .hero { min-height: 940px; }
html.static-mode .hero-inner > * { opacity: 1 !important; animation: none !important; }
html.static-mode .service-card .draw { stroke-dashoffset: 0; }
html.static-mode .service-card .ekg { display: none; }
html.static-mode .service-card .fly { opacity: 1 !important; transform: none !important; }
html.static-mode .service-card .grow { transform: scaleY(1) !important; }
html.static-mode .service-card .dropline, html.static-mode .service-card .coinDrop,
html.static-mode .service-card .dropCoin, html.static-mode .service-card .rise { opacity: 0.5; }
html.static-mode .process-grid::before { transform: none; }
html.static-mode .section-label::before, html.static-mode .section-label::after { transform: none; }
html.static-mode .map-wrap .de-map .map-focus path { animation: none; stroke-dasharray: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .preloader { display: none; }
  .hero-inner > * { opacity: 1 !important; }
  .service-card .draw { stroke-dashoffset: 0 !important; }
  .service-card .ekg { display: none; }
  .service-card .fly { opacity: 1 !important; transform: none !important; }
  .service-card .grow { transform: scaleY(1) !important; }
  .service-card .dropline, .service-card .coinDrop,
  .service-card .dropCoin, .service-card .rise { opacity: 0.5; }
  .process-grid::before { transform: none !important; }
  .section-label::before, .section-label::after { transform: none !important; }
  .hero-partner::before { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .indep-grid, .about-grid, .region-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .kw-panel { grid-template-columns: 1fr; padding: 54px 44px; gap: 46px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 0; }
  .process-grid::before { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid .portrait { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 1120px) {
  /* Nav-Links + CTA brauchen bis ~1100px Platz — darunter Burger-Menü */
  .nav-links, .nav .btn-cta { display: none; }
  .nav-burger { display: block; }
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .nav-brand-name { font-size: 13px; }
}

@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .container { padding: 0 20px; }
  .services-grid, .cases-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .metrics-grid { gap: 26px; }
  .form { padding: 34px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .kw-panel { padding: 44px 26px; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .c-gold { border-left: 0; border-top: 1px solid var(--line); }
  .compare-row > div { padding: 13px 18px; }
  .compare-head { display: none; }
  .compare-row .c-label { padding-bottom: 4px; }
  .compare-row .c-dim::before { content: "✕  "; color: var(--ivory-25); }
  .compare-row .c-gold::before { content: "✓  "; color: var(--gold); }
  .hero .monogram { width: 84px; height: 84px; }
  .savings-strip { flex-direction: column; }
  .savings-strip .desc { text-align: center; }
  .hero-ctas .btn { width: 100%; }
}
