/* PrimoCheck — Webseite
   Brand kit: PrimoCheck Design System (lime + forest, Plus Jakarta Sans)
   Layout structure: airy centered hero w/ pill nav, mockup below (after Bankyz reference)
   ============================================================ */

html, body, #root { margin: 0; padding: 0; min-height: 100%; }

/* ============================================================
   BRAND PALETTE OVERRIDE — Navy / Gold / Off-White
   Re-points design tokens so the whole cascade follows.
   ============================================================ */
:root {
  /* Navy scale */
  --navy-deep: #0D1B35;
  --navy:      #14274E;
  --navy-mid:  #1C3464;

  /* Gold scale */
  --gold:      #C4922A;
  --gold-dark: #A67820;
  --gold-pale: #F5EDD8;

  /* Neutrals */
  --white:     #FFFFFF;
  --off-white: #F3F5F2;
  --line:      #E5E7EB;
  --gray:      #6B7280;
  --text-body: #374151;
  --near-black:#191919;

  /* Re-point existing tokens so the whole site updates */
  --forest-900: var(--navy-deep);
  --forest-800: var(--navy);
  --forest-700: var(--navy-mid);
  --forest-600: var(--navy-mid);

  --lime-500: var(--gold);
  --lime-400: var(--gold-dark);
  --lime-700: var(--gold-dark);

  --paper-50:  var(--off-white);
  --paper-100: var(--gold-pale);

  --ink-900: var(--near-black);
  --ink-800: var(--text-body);
  --ink-700: var(--text-body);
  --ink-600: var(--text-body);
  --ink-500: var(--gray);
  --ink-400: #9CA3AF;
  --ink-300: var(--line);
  --ink-200: var(--line);
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
* { box-sizing: border-box; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }

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

/* ============================================================
   STICKY PILL NAV
   ============================================================ */
.nav-wrap {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center;
  padding: 0 24px;
  transition: top 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-wrap.nav-wrap-hidden { /* deprecated */ }
.nav {
  width: 100%; max-width: 1240px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 22px;
  background: rgba(246, 244, 239, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  transition: box-shadow 240ms var(--ease-out), background 240ms var(--ease-out);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px -16px rgba(13, 27, 53, 0.18), 0 2px 6px rgba(13, 27, 53, 0.04);
}

.nav-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; letter-spacing: -0.015em; color: var(--ink-900); }
.nav-brand .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--forest-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-brand .mark img { width: 22px; height: 22px; }
.brand-logo {
  height: 76px; width: 76px; display: block;
  background: transparent;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #000000;
}
.footer-brand .brand-name { color: var(--white); }

.nav-center {
  display: flex; justify-content: center;
}
.nav-links {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(10,10,10,0.04);
}
.nav-links a {
  font-size: 15.5px; font-weight: 500; color: var(--ink-700);
  padding: 9px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
}
.nav-links a:hover { background: rgba(13, 27, 53, 0.06); color: var(--ink-900); }
.nav-links a.active { background: var(--ink-900); color: var(--paper-50); }

.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-login {
  font-size: 14.5px; font-weight: 500; color: var(--ink-700);
  padding: 10px 16px; border-radius: 999px;
  transition: color 200ms var(--ease-out);
}
.nav-login:hover { color: var(--ink-900); }

/* ============================================================
   BUTTONS — Liquid Glass
   Translucent + backdrop-blur + top-edge highlight + soft shadow
   ============================================================ */

/* Primary — Gold liquid glass */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 12px 12px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.08) 100%),
    rgba(196, 146, 42, 0.86);
  color: #FFFFFF;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 8px 22px -8px rgba(196, 146, 42, 0.50),
    0 2px 6px rgba(13, 27, 53, 0.08);
  transition: all 0.22s var(--ease-out);
  overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 1px 1px auto 1px; height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 9999px 9999px 50% 50% / 9999px 9999px 100% 100%;
  pointer-events: none;
}
.btn-primary .chip {
  position: relative; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: #C4922A;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 260ms var(--ease-out), color 260ms var(--ease-out);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(0, 0, 0, 0.10) 100%),
    rgba(166, 120, 32, 0.92);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 12px 28px -8px rgba(196, 146, 42, 0.65),
    0 4px 10px rgba(13, 27, 53, 0.12);
  transform: translateY(-1px);
}
.btn-primary:hover .chip { transform: rotate(45deg); color: #A67820; }
.btn-primary:active { transform: scale(0.97); }
.btn-primary.lg { padding: 14px 14px 14px 28px; font-size: 16px; }
.btn-primary.lg .chip { width: 36px; height: 36px; }

/* Ghost — white-tinted glass (for dark sections) */
.btn-ghost {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 6px 18px -8px rgba(0, 0, 0, 0.35);
  transition: all 0.22s var(--ease-out);
  overflow: hidden;
}
.btn-ghost:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.06) 100%),
    rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: scale(0.97); }
.btn-ghost.lg { padding: 14px 28px; font-size: 16px; }

/* Outline — clear glass (for light sections) */
.btn-outline {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.55) 100%),
    rgba(255, 255, 255, 0.45);
  color: #000000;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: 9999px;
  border: 1px solid rgba(13, 27, 53, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(13, 27, 53, 0.04),
    0 6px 18px -10px rgba(13, 27, 53, 0.15),
    0 1px 3px rgba(13, 27, 53, 0.05);
  transition: all 0.22s var(--ease-out);
  overflow: hidden;
}
.btn-outline:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.70) 100%),
    rgba(255, 255, 255, 0.55);
  border-color: rgba(13, 27, 53, 0.20);
  color: #000000;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(13, 27, 53, 0.06),
    0 10px 24px -10px rgba(13, 27, 53, 0.22),
    0 2px 6px rgba(13, 27, 53, 0.08);
}
.btn-outline:active { transform: scale(0.97); }
.btn-outline.lg { padding: 14px 28px; font-size: 16px; }

/* ============================================================
   HERO BUTTONS — only the SECONDARY (So funktioniert's) is Apple-white.
   The primary (Pre-Check starten) keeps its gold liquid-glass look.
   ============================================================ */
.hero-actions .btn-outline {
  background: #FFFFFF;
  color: #0A0A0A;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 24px -10px rgba(0, 0, 0, 0.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms cubic-bezier(.2,.7,.2,1), background 220ms;
}
.hero-actions .btn-outline:hover {
  background: #F7F7F7;
  border-color: rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 14px 36px -12px rgba(0, 0, 0, 0.18);
}
.hero-actions .btn-outline:active { transform: scale(0.97); }

/* Nav CTA — Navy glass */
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  background: rgba(20, 39, 78, 0.86);
  color: #FFFFFF;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 6px 18px -8px rgba(13, 27, 53, 0.40);
  transition: all 0.22s var(--ease-out);
}
.btn-nav:hover { background: rgba(14, 27, 56, 0.92); border-color: rgba(255, 255, 255, 0.28); }
.btn-nav:active { transform: scale(0.97); }

/* Legacy alias — .btn-lime acts as gold liquid glass */
.btn-lime {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 12px 12px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.08) 100%),
    rgba(196, 146, 42, 0.86);
  color: #FFFFFF;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 8px 22px -8px rgba(196, 146, 42, 0.50);
  transition: all 0.22s var(--ease-out);
  overflow: hidden;
}
.btn-lime .chip {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: #C4922A;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: transform 260ms var(--ease-out), color 260ms var(--ease-out);
}
.btn-lime:hover { background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(0, 0, 0, 0.10) 100%),
    rgba(166, 120, 32, 0.92);
  transform: translateY(-1px);
}
.btn-lime:hover .chip { transform: rotate(45deg); color: #A67820; }
.btn-lime:active { transform: scale(0.97); }
.btn-lime.lg { padding: 14px 14px 14px 28px; font-size: 16px; }
.btn-lime.lg .chip { width: 36px; height: 36px; }

.nav-mobile-toggle { display: none; }
.mobile-drawer { display: none; }

/* ============================================================
   HERO — light, centered, w/ rolling-hill silhouettes
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 32px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(196, 146, 42, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 10%, rgba(255, 255, 255, 0.8), transparent 70%),
    linear-gradient(180deg, #FBF6E8 0%, #F3F5F2 55%, #F3F5F2 100%);
}
.hero-inner { position: relative; z-index: 3; max-width: 980px; margin: 0 auto; padding-bottom: 160px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-800);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime-500);
  box-shadow: 0 0 0 4px rgba(196, 146, 42, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196, 146, 42, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(196, 146, 42, 0.10); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 78px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  margin: 22px auto 0;
  max-width: 880px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: ""; position: absolute;
  left: -2%; right: -2%; bottom: 0.08em; height: 0.42em;
  background: linear-gradient(90deg, #C4922A 0%, #E6BF65 50%, #C4922A 100%);
  background-size: 200% 100%;
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg) scaleX(0);
  transform-origin: left center;
  animation:
    underline-sweep 0.7s cubic-bezier(.2,.7,.2,1) 1.2s forwards,
    underline-shimmer 3.6s ease-in-out 2.4s infinite;
}
@keyframes underline-sweep {
  from { transform: skewX(-6deg) scaleX(0); }
  to   { transform: skewX(-6deg) scaleX(1); }
}
@keyframes underline-shimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
.hero h1 em > .hero-word {
  display: inline-block;
  animation:
    hero-fade-up 0.6s ease-out forwards,
    word-pop 0.5s cubic-bezier(.34,1.56,.64,1) 1.2s;
}
@keyframes word-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 em::after { animation: none; transform: skewX(-6deg) scaleX(1); }
  .hero h1 em > .hero-word { animation: none; }
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 560px; margin: 22px auto 0;
  text-wrap: pretty;
}
.hero-actions {
  display: flex; justify-content: center; gap: 12px;
  margin: 28px 0 0;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  margin: 24px 0 0;
  font-size: 13px; color: var(--ink-500);
}
.hero-trust .stars { color: var(--forest-700); letter-spacing: 0.06em; font-weight: 700; }
.hero-trust .divider { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300); }

/* Hills silhouette at bottom of hero */
.hero-hills {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 340px;
  z-index: 1; pointer-events: none;
}
.hero-hills svg { width: 100%; height: 100%; display: block; }
.hero-hills .hill {
  will-change: transform;
  transform-origin: 50% 100%;
}
.hero-hills .hill { animation: none; }

@keyframes hill-wave-a {
  0%, 100% { transform: translateX(0) scaleY(1) skewX(0); }
  25%      { transform: translateX(-14px) scaleY(1.015) skewX(-0.5deg); }
  50%      { transform: translateX(0) scaleY(0.99) skewX(0); }
  75%      { transform: translateX(14px) scaleY(1.015) skewX(0.5deg); }
}
@keyframes hill-wave-b {
  0%, 100% { transform: translateX(0) scaleY(1) skewX(0); }
  25%      { transform: translateX(12px) scaleY(1.025) skewX(0.8deg); }
  50%      { transform: translateX(0) scaleY(0.985) skewX(0); }
  75%      { transform: translateX(-12px) scaleY(1.025) skewX(-0.8deg); }
}
@keyframes hill-wave-c {
  0%, 100% { transform: translateX(0) scaleY(1) skewX(0); }
  20%      { transform: translateX(-16px) scaleY(1.04) skewX(-1deg); }
  45%      { transform: translateX(6px) scaleY(0.98) skewX(0.4deg); }
  70%      { transform: translateX(16px) scaleY(1.04) skewX(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-hills .hill { animation: none !important; }
}
  25%  { transform: translate(10px, -1.5px); }
  50%  { transform: translate(0, 0); }
  75%  { transform: translate(-10px, -1px); }
  100% { transform: translate(0, 0); }
}
  50%  { transform: translateX(6px)   translateY(-2px); }
  100% { transform: translateX(30px)  translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-hills .hill { animation: none; }
}

/* Centered showcase mockup */
.hero-mockup-wrap {
  position: relative; z-index: 4;
  margin: 64px auto -120px;
  max-width: 760px;
  padding: 0 32px;
}
.mockup-seal img {
  width: 168px; height: 168px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
}
.hero-mockup {
  background: #FFFFFF;
  border-radius: 28px;
  border: 1px solid rgba(10,10,10,0.08);
  box-shadow:
    0 1px 2px rgba(13, 27, 53, 0.04),
    0 24px 56px -16px rgba(13, 27, 53, 0.18),
    0 60px 120px -40px rgba(13, 27, 53, 0.20);
  overflow: hidden;
  text-align: left;
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--paper-100);
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.mockup-bar .dots { display: flex; gap: 6px; }
.mockup-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(10,10,10,0.12); }
.mockup-bar .url {
  flex: 1; text-align: center;
  font-size: 12px; color: var(--ink-500);
  background: #FFFFFF;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(10,10,10,0.05);
}
.mockup-body {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0;
}
.mockup-seal {
  background: var(--forest-900);
  padding: 36px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--paper-50);
}
.mockup-seal .label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime-500); }
.mockup-seal .name { font-size: 14px; font-weight: 600; color: var(--paper-50); }

.mockup-info { padding: 26px 28px; }
.mockup-info .row { display: flex; justify-content: space-between; align-items: baseline; }
.mockup-info h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  margin: 0; color: var(--ink-900);
}
.mockup-info .score {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--forest-700);
}
.mockup-info .score small { font-size: 14px; color: var(--ink-400); font-weight: 500; }
.mockup-info .sub { font-size: 13px; color: var(--ink-500); margin: 4px 0 18px; }
.mockup-cats { display: flex; flex-direction: column; gap: 10px; }
.mockup-cat { display: grid; grid-template-columns: 110px 1fr 36px; align-items: center; gap: 12px; font-size: 13px; }
.mockup-cat .name { color: var(--ink-700); font-weight: 500; }
.mockup-cat .bar { height: 6px; background: var(--paper-100); border-radius: 999px; overflow: hidden; }
.mockup-cat .bar i { display: block; height: 100%; background: var(--forest-700); border-radius: 999px; }
.mockup-cat:nth-child(1) .bar i { background: #14274E; }
.mockup-cat:nth-child(2) .bar i { background: #C4922A; }
.mockup-cat:nth-child(3) .bar i { background: #5C7A6A; }
.mockup-cat:nth-child(4) .bar i { background: #D9B470; }
.mockup-cat:nth-child(5) .bar i { background: #0D1B35; }
.mockup-cat .pts { text-align: right; color: var(--ink-500); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: 96px 32px;
  position: relative;
}
.section.alt { background: var(--off-white); }
.section.paper { background: var(--off-white); }
.section.dark { background: var(--navy-deep); color: var(--white); }
.section.deep { background: var(--navy); color: var(--white); }

.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-500);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: var(--ink-700); display: inline-block;
}
.dark .eyebrow, .deep .eyebrow { color: var(--lime-500); }
.dark .eyebrow::before, .deep .eyebrow::before { background: var(--lime-500); }

.section-h {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 18px 0 0;
  max-width: 880px;
  text-wrap: balance;
}
.section-h em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 64%, var(--lime-500) 64%, var(--lime-500) 92%, transparent 92%);
}
.section-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-600);
  max-width: 560px; margin: 20px 0 0;
}
.dark .section-sub, .deep .section-sub { color: rgba(246, 244, 239, 0.74); }

.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
  margin-bottom: 64px;
}
.section-head.center { grid-template-columns: 1fr; text-align: center; margin-bottom: 64px; }
.section-head.center .section-h { margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after { display: none; }
.section-head.center .eyebrow::before {
  content: ""; width: 24px; height: 2px;
  display: inline-block;
  background: var(--ink-700);
}
.dark .section-head.center .eyebrow::before { background: var(--lime-500); }

/* ============================================================
   VORTEILE — 3 card grid
   ============================================================ */
.vorteile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 0;
  align-items: stretch;
}
.vorteile-grid > .reveal { display: flex; height: 100%; }

.vcard {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 24px;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(13, 27, 53, 0.03);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms;
}
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(13, 27, 53, 0.18);
  border-color: rgba(10, 10, 10, 0.08);
}
.vcard p { flex: 1; margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-600); }
.vcard .accent-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--lime-500);
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 360ms var(--ease-out);
}
.vcard:hover .accent-bar { transform: scaleX(1); }

.vcard-back-head { display: flex; flex-direction: column; gap: 4px; }
.vcard-back-head .num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-400);
}
.vcard-back-category {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  color: var(--ink-900);
}
.vcard-back-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 4px 0 0;
  color: var(--ink-900);
}
.vcard .icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lime-500); color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 280ms var(--ease-out);
}
.vcard:hover .icon-circle { transform: none; }
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
  border-color: rgba(10,10,10,0.10);
}
.vcard .num {
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase;
  color: var(--ink-400);
}
.vcard .icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lime-500); color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 280ms var(--ease-out);
}
.vcard:hover .icon-circle {
  transform: none;
}
.vcard .icon-circle svg {
  transition: transform 280ms var(--ease-out);
}
.vcard:hover .icon-circle svg {
  transform: scale(1.18);
}
.vcard h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 4px 0 0;
}
.vcard p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}
.vcard .accent-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--lime-500);
  transform: scaleX(0.18); transform-origin: left center;
  transition: transform 360ms var(--ease-out);
}
.vcard:hover .accent-bar { transform: scaleX(1); }

/* ============================================================
   DAS SIEGEL — split with bento grid
   ============================================================ */
.siegel-row {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px;
  align-items: center;
}
.siegel-row > *:last-child { margin-top: 0; }
.siegel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.siegel-head .section-h {
  margin: 12px 0 0;
}
.siegel-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.siegel-cta-wrap {
  display: flex;
  justify-content: center;
}
.siegel-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.siegel-paragraphs p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
}
.siegel-paragraphs p:first-child {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-900);
}
.siegel-paragraphs p strong { color: var(--ink-900); font-weight: 600; }
@media (max-width: 720px) {
  .siegel-head { flex-direction: column; align-items: stretch; }
  .siegel-cta { margin-top: 4px; align-self: flex-start; }
  .siegel-paragraphs { padding-left: 18px; }
}
.siegel-intro {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 36px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.siegel-intro strong { color: var(--ink-900); font-weight: 700; }

.siegel-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  counter-reset: step;
}
.siegel-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(13, 27, 53, 0.08);
  align-items: flex-start;
}
.siegel-steps li:last-child { border-bottom: none; }
.siegel-steps .step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.siegel-steps h4 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink-900);
}
.siegel-steps p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}
.siegel-steps p strong { color: var(--ink-900); font-weight: 600; }

/* ---------- Siegel Showcase ---------- */
.siegel-showcase {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  perspective: 1600px;
  cursor: zoom-in;
}
.siegel-showcase-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transform-style: preserve-3d;
}
.siegel-showcase-img {
  width: 100%;
  height: 100%;
  max-width: 720px;
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(13, 27, 53, 0.25));
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), filter 320ms;
  transform-origin: center center;
  will-change: transform;
}
.siegel-showcase.is-hover .siegel-showcase-img {
  filter: drop-shadow(0 32px 64px rgba(13, 27, 53, 0.35));
}

@media (max-width: 720px) {
  .siegel-showcase { aspect-ratio: 1 / 1; cursor: default; }
  .siegel-showcase-img { transform: none !important; max-width: 100%; max-height: 100%; }
  .siegel-showcase-stage { padding: 4%; }
}

.siegel-copy p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-600);
  margin: 0 0 18px;
}
.siegel-copy p strong { color: var(--ink-900); font-weight: 600; }

.bento {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1 / 0.95;
}
.bento-tile {
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.bento-tile.image { background: var(--forest-700); color: var(--paper-50); padding: 0; }
.bento-tile.image .placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(196, 146, 42, 0.22), transparent 60%),
    linear-gradient(135deg, var(--forest-700) 0%, var(--forest-900) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246, 244, 239, 0.5);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.bento-tile.image.warm .placeholder {
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(180, 120, 60, 0.5), transparent 60%),
    linear-gradient(135deg, #2a1810 0%, #14110a 100%);
}
.bento-tile.navy { background: var(--forest-900); color: var(--paper-50); }
.bento-tile.lime { background: var(--lime-500); color: var(--ink-900); }
.bento-tile .label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.bento-tile.navy .label { color: var(--lime-500); }
.bento-tile h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0;
}
.bento-tile .big-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
}
.bento-tile .seal-mini {
  align-self: flex-end;
  width: 56px; height: 56px;
}

/* ============================================================
   VERTRAUEN — dark section
   ============================================================ */
.vertrauen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 56px;
}
.fcard {
  background: var(--forest-800);
  border: 1px solid rgba(246, 244, 239, 0.08);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 240ms var(--ease-out), border-color 240ms;
}
.fcard:hover { background: var(--forest-700); border-color: rgba(196, 146, 42, 0.32); }
.fcard .icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--lime-500); color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
}
.fcard h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 0; color: var(--paper-50);
}
.fcard p {
  font-size: 14px; line-height: 1.55;
  color: rgba(246, 244, 239, 0.7);
  margin: 0;
}

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(246, 244, 239, 0.10);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--paper-50);
  display: flex; align-items: baseline; gap: 4px;
}
.stat .num .accent { color: var(--lime-500); }
.stat .label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246, 244, 239, 0.6);
  margin-top: 10px;
}

/* ============================================================
   UMSATZ — split copy + aside
   ============================================================ */
.umsatz-row {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.umsatz-copy p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-600);
  margin: 0 0 20px;
}
.umsatz-aside {
  background: var(--forest-900);
  color: var(--paper-50);
  border-radius: 28px;
  padding: 40px 36px;
  position: relative; overflow: hidden;
}
.umsatz-aside::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(196, 146, 42, 0.14);
}
.umsatz-aside h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.2;
  color: var(--paper-50);
  margin: 0 0 24px;
  max-width: 280px;
  position: relative; z-index: 2;
}
.umsatz-aside .uglist {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 2;
}
.umsatz-aside .uglist li {
  display: grid; grid-template-columns: 28px 1fr auto;
  align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246, 244, 239, 0.10);
  font-size: 15px; font-weight: 500;
}
.umsatz-aside .uglist li:last-child { border-bottom: none; }
.umsatz-aside .uglist li .chk {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lime-500); color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
}
.umsatz-aside .uglist li .pts {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--lime-500);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   PRE-CHECK FORM
   ============================================================ */
.precheck-row {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: stretch;
}
.precheck-card {
  background: #FFFFFF;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.precheck-card h3 {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 0 0 12px;
}
.precheck-card .lead {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-600);
  margin: 0 0 24px;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-500);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(10,10,10,0.10);
  background: var(--paper-50);
  font-family: inherit; font-size: 15px;
  color: var(--ink-900);
  outline: none;
  transition: border-color 200ms, box-shadow 200ms, background 200ms;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest-700);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(196, 146, 42, 0.22);
}
.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: var(--danger);
}
.form-field .err-msg {
  font-size: 12px; color: var(--danger);
}
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--ink-500); margin-top: 16px; }
.form-note .dot { color: var(--lime-700); font-weight: 700; margin: 0 6px; }

.precheck-visual {
  display: flex; flex-direction: column; gap: 20px;
}
.precheck-photo {
  flex: 1;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 50% at 60% 30%, rgba(196, 146, 42, 0.22), transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 80%);
  position: relative; overflow: hidden;
  min-height: 280px;
  display: flex; align-items: flex-end;
  padding: 32px;
  color: var(--paper-50);
}
.precheck-photo .quote {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.25;
  max-width: 320px;
}
.precheck-photo .quote-by { font-size: 13px; opacity: 0.7; margin-top: 12px; }
.precheck-seal-floating {
  position: absolute; top: 24px; right: 24px;
  width: 96px; height: 96px;
  transition: transform 600ms var(--ease-out);
}
.precheck-photo:hover .precheck-seal-floating { transform: rotate(12deg) scale(1.04); }

.precheck-mini-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.precheck-mini-stat {
  background: var(--paper-50);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 16px;
  padding: 20px;
}
.precheck-mini-stat .v {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.precheck-mini-stat .l {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
}

/* Success state for form */
.form-success {
  text-align: center; padding: 24px 0;
  animation: fadeUp 400ms var(--ease-out);
}
.form-success img { width: 96px; height: 96px; margin: 0 auto 16px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.form-success p { color: var(--ink-600); font-size: 15px; margin: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   PREISE
   ============================================================ */
.pricing-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px;
  margin: 24px auto 0;
  white-space: nowrap;
}
.pricing-toggle button {
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 200ms, color 200ms;
}
.pricing-toggle button.active { background: var(--gold); color: var(--white); }
.pricing-toggle .save {
  font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: var(--white); color: var(--navy);
  font-weight: 700;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.price-card {
  border-radius: 28px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform 280ms var(--ease-out);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.starter {
  background: var(--forest-800);
  border: 1px solid rgba(246, 244, 239, 0.10);
}
.price-card.pro {
  background: var(--lime-500);
  color: var(--ink-900);
  box-shadow: 0 24px 60px -20px rgba(196, 146, 42, 0.40);
  transform: translateY(-12px);
}
.price-card.pro:hover { transform: translateY(-16px); }
.price-card.enterprise {
  background: var(--forest-800);
  border: 1px solid rgba(246, 244, 239, 0.10);
}
.price-tier {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime-500);
}
.price-card.pro .price-tier { color: var(--forest-900); }
.price-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--paper-50);
}
.price-card.pro .price-name { color: var(--ink-900); }
.price-amount {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 700;
  letter-spacing: -0.035em; line-height: 1;
  color: var(--paper-50);
  display: flex; align-items: baseline; gap: 4px;
}
.price-amount .currency { font-size: 28px; font-weight: 500; opacity: 0.8; }
.price-amount small {
  font-size: 13px; font-weight: 500;
  color: rgba(246, 244, 239, 0.6);
  margin-left: 4px;
}
.price-card.pro .price-amount { color: var(--ink-900); }
.price-card.pro .price-amount small { color: rgba(10,10,10,0.55); }
.price-desc {
  font-size: 14px; line-height: 1.5;
  color: rgba(246, 244, 239, 0.7);
}
.price-card.pro .price-desc { color: rgba(10,10,10,0.7); }
.price-list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.price-list li {
  display: grid; grid-template-columns: 20px 1fr;
  gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.4;
  color: rgba(246, 244, 239, 0.85);
}
.price-card.pro .price-list li { color: var(--ink-800); }
.price-list li svg { margin-top: 3px; color: var(--lime-500); }
.price-card.pro .price-list li svg { color: var(--forest-900); }
.price-action {
  margin-top: 16px;
  width: 100%;
}
.price-action.dark-on-lime {
  background: var(--forest-900); color: var(--paper-50);
}
.price-action.dark-on-lime .chip {
  background: var(--lime-500); color: var(--ink-900);
}
.price-action.lime-on-dark {
  background: var(--lime-500); color: var(--ink-900);
}
.price-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--forest-900); color: var(--lime-500);
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.price-card.pro .price-tier-divider {
  height: 1px; background: rgba(10,10,10,0.12); margin: 4px 0;
}
.price-card .price-tier-divider {
  height: 1px; background: rgba(246, 244, 239, 0.10); margin: 4px 0;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
}
.about-copy p {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-600);
  margin: 0 0 28px;
  max-width: 560px;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.value-card {
  background: #FFFFFF;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.value-card .icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper-100); color: var(--forest-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em; margin: 0;
}
.value-card p {
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-500);
  margin: 0;
}

.team-side { display: flex; flex-direction: column; gap: 20px; }
.team-photo {
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(196, 146, 42, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(28, 52, 100, 0.6), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 28px;
  min-height: 320px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 28px;
}
.team-photo .badge {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 27, 53, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(246, 244, 239, 0.18);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime-500);
}
.team-photo .quote {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.25;
  color: var(--paper-50);
  max-width: 420px;
  text-wrap: balance;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 24px;
  padding: 24px;
  display: flex; gap: 16px; align-items: center;
}
.team-member {
  display: flex; gap: 12px; align-items: center;
  flex: 1; min-width: 0;
}
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest-700); color: var(--lime-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.team-member.b .team-avatar { background: var(--lime-500); color: var(--forest-900); }
.team-member .name { font-weight: 600; font-size: 15px; color: var(--ink-900); }
.team-member .role { font-size: 12px; color: var(--ink-500); letter-spacing: 0.04em; }
.team-divider { width: 1px; background: rgba(10,10,10,0.08); align-self: stretch; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: 80px 32px;
  background: var(--forest-900);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 146, 42, 0.20) 0%, transparent 70%);
}
.cta-strip-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: 48px;
  position: relative; z-index: 2;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em; line-height: 1.05;
  color: var(--paper-50);
  margin: 0 0 12px;
  max-width: 720px;
}
.cta-strip p {
  font-size: 17px; line-height: 1.5;
  color: rgba(246, 244, 239, 0.72);
  margin: 0;
  max-width: 540px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest-900);
  color: var(--paper-50);
  padding: 80px 32px 32px;
  border-top: 1px solid rgba(246, 244, 239, 0.08);
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .nav-brand {
  color: var(--paper-50);
  font-size: 22px; margin-bottom: 18px;
}
.footer-tagline {
  font-size: 15px; line-height: 1.55;
  color: rgba(246, 244, 239, 0.7);
  max-width: 320px;
}
.footer h5 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime-500);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-size: 14px;
  color: rgba(246, 244, 239, 0.72);
  transition: color 200ms;
  cursor: pointer;
}
.footer ul a:hover { color: var(--lime-500); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 244, 239, 0.1);
  font-size: 13px; color: rgba(246, 244, 239, 0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { transition: color 200ms; cursor: pointer; }
.footer-bottom-links a:hover { color: var(--lime-500); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Hero entrance choreography — vanilla CSS, triggers on page load */
.anim-fade-up,
.hero-word {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-up 0.6s ease-out forwards;
}
.hero-word {
  display: inline-block;
  will-change: transform, opacity;
}
.anim-scale-in {
  opacity: 0;
  transform: scale(0.85);
  animation: hero-scale-in 0.8s ease-out forwards;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-scale-in {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-scale-in, .hero-word {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .nav-center { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-mobile-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.7); color: var(--ink-900);
    border: 1px solid rgba(10,10,10,0.06);
    margin-left: 4px;
    transition: background 200ms var(--ease-out);
  }
  .nav-mobile-toggle:hover { background: #FFFFFF; }

  .mobile-drawer {
    display: block;
    position: fixed; inset: 0; z-index: 60;
    background: rgba(13, 27, 53, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none;
    transition: opacity 240ms var(--ease-out);
  }
  .mobile-drawer.open { opacity: 1; pointer-events: auto; }
  .mobile-drawer-panel {
    position: absolute; top: 20px; left: 20px; right: 20px;
    background: var(--paper-50);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow-pop);
    transform: translateY(-12px);
    transition: transform 280ms var(--ease-out);
  }
  .mobile-drawer.open .mobile-drawer-panel { transform: translateY(0); }
  .mobile-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px 16px;
    border-bottom: 1px solid rgba(10,10,10,0.06);
    margin-bottom: 12px;
  }
  .mobile-drawer .close {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--paper-100); color: var(--ink-900);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .mobile-drawer nav { display: flex; flex-direction: column; }
  .mobile-drawer nav a {
    padding: 14px 12px;
    font-size: 17px; font-weight: 600;
    color: var(--ink-900);
    border-radius: 12px;
    transition: background 160ms var(--ease-out);
  }
  .mobile-drawer nav a:hover { background: var(--paper-100); }
  .mobile-drawer .drawer-actions {
    display: flex; flex-direction: column; gap: 10px;
    padding: 14px 4px 4px;
    border-top: 1px solid rgba(10,10,10,0.06);
    margin-top: 8px;
  }
  .mobile-drawer .drawer-actions .btn-primary { justify-content: space-between; }

  .vorteile-grid, .vertrauen-grid, .stats-row, .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .siegel-row, .umsatz-row, .precheck-row, .about-row { grid-template-columns: 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-seal { padding: 28px 24px; }
  .mockup-seal img { width: 128px; height: 128px; }
  .cta-strip-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nav-login { display: none; }
  .hero { padding: 140px 20px 0; }
  .hero h1 { font-size: clamp(40px, 12vw, 64px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; }
  .section { padding: 64px 20px; }
  .cta-strip { padding: 56px 20px; }
  .footer { padding: 56px 20px 24px; }
  .vorteile-grid, .vertrauen-grid, .pricing-grid, .stats-row,
  .form-grid, .bento, .precheck-mini-stats, .about-values, .footer-grid { grid-template-columns: 1fr; }
  .price-card.pro { transform: none; }
  .price-card.pro:hover { transform: translateY(-4px); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .precheck-card { padding: 32px 24px; }
}


/* ============================================================
   THEME TOGGLE BUTTON + DARK MODE
   ============================================================ */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-900);
  border: 1px solid rgba(13, 27, 53, 0.06);
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
}
.theme-toggle:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(13, 27, 53, 0.15);
}
.theme-toggle:active { transform: scale(0.94); }
.theme-toggle svg { transition: transform 0.5s cubic-bezier(.34,1.56,.64,1); }
.theme-toggle:hover svg { transform: rotate(20deg); }

/* ============================================================
   DARK MODE — re-points tokens when [data-theme="dark"] is on <html>
   ============================================================ */
[data-theme="dark"] {
  --navy-deep: #050912;
  --navy:      #0B1530;
  --navy-mid:  #14274E;
  --gold:      #E0A93C;
  --gold-dark: #C4922A;
  --gold-pale: #2A2316;

  --white:     #0E1525;
  --off-white: #0B1024;
  --line:      rgba(255, 255, 255, 0.10);
  --gray:      #B0B7C2;
  --text-body: #D4D9E0;
  --near-black:#F5F6F7;

  --paper-50:  #0B1024;
  --paper-100: #11182C;

  --ink-900: #F5F6F7;
  --ink-800: #D4D9E0;
  --ink-700: #B0B7C2;
  --ink-600: #9098A3;
  --ink-500: #7E8593;
  --ink-400: #5D6373;
  --ink-300: rgba(255, 255, 255, 0.10);
  --ink-200: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] body { background: var(--off-white); color: var(--text-body); }

[data-theme="dark"] .vcard {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .vcard:hover {
  background: linear-gradient(180deg, #18203A 0%, #131B33 100%);
  border-color: rgba(196, 146, 42, 0.30);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .section.alt,
[data-theme="dark"] .section.paper { background: var(--off-white); }
[data-theme="dark"] .hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(196, 146, 42, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 10%, rgba(11, 21, 48, 0.6), transparent 70%),
    linear-gradient(180deg, #0E1525 0%, #0B1024 100%);
}
[data-theme="dark"] .hero h1 { color: var(--ink-900); }
[data-theme="dark"] .hero-badge {
  background: rgba(20, 32, 56, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--ink-800);
}
[data-theme="dark"] .nav {
  background: rgba(14, 21, 37, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .nav.scrolled {
  background: rgba(14, 21, 37, 0.92);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .nav-links {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .nav-links a { color: var(--ink-700); }
[data-theme="dark"] .nav-links a:hover { background: rgba(255, 255, 255, 0.06); color: var(--ink-900); }
[data-theme="dark"] .nav-links a.active { background: var(--gold); color: #0E1525; }
[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-800);
  border-color: rgba(255, 255, 255, 0.10);
}
[data-theme="dark"] .theme-toggle:hover { background: rgba(255, 255, 255, 0.10); }

[data-theme="dark"] .hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-900);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}

[data-theme="dark"] .siegel-paragraphs p { color: var(--ink-700); }
[data-theme="dark"] .siegel-paragraphs p:first-child { color: var(--ink-900); }
[data-theme="dark"] .siegel-paragraphs p strong { color: var(--ink-900); }

[data-theme="dark"] .siegel-showcase {
  background: transparent;
  box-shadow: none;
  border: none;
}
[data-theme="dark"] .siegel-showcase-img {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}

[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field select,
[data-theme="dark"] .form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-900);
  border-color: rgba(255, 255, 255, 0.10);
}
[data-theme="dark"] .form-field input:focus,
[data-theme="dark"] .form-field select:focus,
[data-theme="dark"] .form-field textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}
[data-theme="dark"] .precheck-card,
[data-theme="dark"] .precheck-mini-stat,
[data-theme="dark"] .value-card {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .price-card.starter,
[data-theme="dark"] .price-card.enterprise {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .footer { background: #050912; border-top-color: rgba(255, 255, 255, 0.06); }
[data-theme="dark"] .cta-strip { background: #050912; }
[data-theme="dark"] .brand-name { color: var(--ink-900); }
[data-theme="dark"] .precheck-card h3,
[data-theme="dark"] .vcard h3,
[data-theme="dark"] .vcard h4,
[data-theme="dark"] .value-card h4 { color: var(--ink-900); }

/* Smooth color transitions when toggling */
body, .nav, .vcard, .footer, .section, .siegel-showcase,
.btn-primary, .btn-outline, .theme-toggle, .nav-links a, .form-field input,
.precheck-card, .value-card, .price-card {
  transition-property: background, color, border-color, box-shadow;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(.2,.7,.2,1);
}


/* ============================================================
   DARK MODE — Feintuning
   ============================================================ */

/* Dark Sections (Vertrauen, Preise, CTA-Strip) — anders als Body */
[data-theme="dark"] .section.dark {
  background: #050912;
}
[data-theme="dark"] .section.dark .fcard {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .section.dark .fcard:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 146, 42, 0.3);
}
[data-theme="dark"] .section.dark .fcard h3 { color: var(--ink-900); }
[data-theme="dark"] .section.dark .fcard p { color: var(--ink-700); }
[data-theme="dark"] .section.dark .stat .num { color: var(--ink-900); }
[data-theme="dark"] .section.dark .section-sub { color: var(--ink-700); }

/* Umsatz aside dark */
[data-theme="dark"] .umsatz-aside {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Bento tiles (Siegel section, not used anymore but safe) */
[data-theme="dark"] .bento-tile.lime { color: var(--ink-900); }

/* Pre-Check Photo + Mini Stats */
[data-theme="dark"] .precheck-photo {
  background:
    radial-gradient(ellipse 70% 50% at 60% 30%, rgba(196, 146, 42, 0.18), transparent 70%),
    linear-gradient(180deg, #14274E 0%, #050912 80%);
}

/* Team / About cards */
[data-theme="dark"] .team-card {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .team-avatar { background: var(--gold); color: var(--navy-deep); }
[data-theme="dark"] .team-member .name { color: var(--ink-900); }

/* Pricing cards */
[data-theme="dark"] .price-card.starter,
[data-theme="dark"] .price-card.enterprise {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
}
[data-theme="dark"] .price-name,
[data-theme="dark"] .price-amount { color: var(--ink-900); }
[data-theme="dark"] .price-amount small { color: var(--ink-600); }
[data-theme="dark"] .price-desc,
[data-theme="dark"] .price-list li { color: var(--ink-700); }
[data-theme="dark"] .price-card.pro .price-tier { color: var(--navy-deep); }
[data-theme="dark"] .price-card.pro .price-name,
[data-theme="dark"] .price-card.pro .price-amount,
[data-theme="dark"] .price-card.pro .price-desc,
[data-theme="dark"] .price-card.pro .price-list li,
[data-theme="dark"] .price-card.pro .price-list svg { color: var(--navy-deep); }

/* Mockup-Cats (Hero seal mini bars) */
[data-theme="dark"] .mockup-info { background: transparent; }

/* Footer */
[data-theme="dark"] .footer ul a { color: var(--ink-700); }
[data-theme="dark"] .footer h5 { color: var(--gold); }
[data-theme="dark"] .footer-bottom { color: var(--ink-500); border-top-color: rgba(255, 255, 255, 0.06); }
[data-theme="dark"] .footer-bottom-links a { color: var(--ink-500); }
[data-theme="dark"] .footer-bottom-links a:hover { color: var(--gold); }

/* Eyebrow */
[data-theme="dark"] .eyebrow::before { background: var(--gold); }
[data-theme="dark"] .eyebrow::after { background: var(--gold); }
[data-theme="dark"] .eyebrow { color: var(--gold); }
[data-theme="dark"] .section.dark .eyebrow { color: var(--gold); }

/* Section-H em underline contrast */
[data-theme="dark"] .section-h em {
  background: linear-gradient(180deg, transparent 64%, rgba(224, 169, 60, 0.55) 64%, rgba(224, 169, 60, 0.55) 92%, transparent 92%);
}
[data-theme="dark"] .hero h1 em::after {
  background: linear-gradient(90deg, var(--gold) 0%, #E0A93C 50%, var(--gold) 100%);
  background-size: 200% 100%;
}

/* Headings on body sections */
[data-theme="dark"] .section-h { color: var(--ink-900); }
[data-theme="dark"] .siegel-copy h2.section-h { color: var(--ink-900); }
[data-theme="dark"] .vcard-back-category { color: var(--ink-900); }
[data-theme="dark"] .vcard-back-title { color: var(--ink-900); }

/* About values */
[data-theme="dark"] .value-card .icon-circle {
  background: rgba(196, 146, 42, 0.18);
  color: var(--gold);
}
[data-theme="dark"] .value-card h4 { color: var(--ink-900); }
[data-theme="dark"] .value-card p { color: var(--ink-700); }

/* Mobile drawer */
[data-theme="dark"] .mobile-drawer-panel {
  background: #0E1525;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .mobile-drawer nav a { color: var(--ink-900); }
[data-theme="dark"] .mobile-drawer nav a:hover { background: rgba(255, 255, 255, 0.06); }
[data-theme="dark"] .mobile-drawer .close { background: rgba(255, 255, 255, 0.06); color: var(--ink-900); }

/* Form labels & success */
[data-theme="dark"] .form-field label { color: var(--gold); }
[data-theme="dark"] .precheck-card h3 { color: var(--ink-900); }
[data-theme="dark"] .precheck-card .lead { color: var(--ink-700); }
[data-theme="dark"] .precheck-mini-stat .v { color: var(--ink-900); }
[data-theme="dark"] .precheck-mini-stat .l { color: var(--ink-700); }
[data-theme="dark"] .form-note { color: var(--ink-600); }


/* Stack mehrerer section-sub Absätze (z.B. Tue-Gutes Section) */
.section-sub-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-sub-stack .section-sub {
  margin: 0;
  max-width: none;
}
.section-sub-stack .section-sub:first-child {
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.section-sub-stack .section-sub strong {
  color: var(--paper-50);
  font-weight: 600;
}
.section.dark .section-sub-stack .section-sub strong { color: var(--paper-50); }
[data-theme="dark"] .section-sub-stack .section-sub strong { color: var(--ink-900); }


/* ============================================================
   VERTRAUEN — Headline volle Breite + Text links + 2×2 Karten rechts
   ============================================================ */
.vertrauen-head {
  margin: 0 auto 64px;
  max-width: 1100px;
  text-align: center;
}
.vertrauen-head .eyebrow {
  display: inline-flex;
}
.vertrauen-headline {
  font-size: clamp(36px, 4.4vw, 64px);
  margin: 18px auto 0;
  max-width: none;
  text-wrap: balance;
  text-align: center;
}
.vertrauen-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.vertrauen-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.vertrauen-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(246, 244, 239, 0.85);
}
.vertrauen-copy p:first-child {
  font-size: 18px;
  font-weight: 500;
  color: var(--paper-50);
}
.vertrauen-copy p strong { color: var(--paper-50); font-weight: 600; }
[data-theme="dark"] .vertrauen-copy p { color: var(--ink-700); }
[data-theme="dark"] .vertrauen-copy p:first-child { color: var(--ink-900); }
[data-theme="dark"] .vertrauen-copy p strong { color: var(--ink-900); }

.vertrauen-grid-square {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 0;
}

@media (max-width: 920px) {
  .vertrauen-copy { grid-template-columns: 1fr; gap: 32px; }
  .vertrauen-grid-square { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .vertrauen-grid-square { grid-template-columns: 1fr; }
}


/* Vertrauen — text vertikal mittig zum 2×2 Grid + Karten gleich groß */
.vertrauen-split { align-items: center; }
.vertrauen-grid-square { align-items: stretch; }
.vertrauen-grid-square > .reveal { display: flex; height: 100%; }
.vertrauen-grid-square .fcard {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.vertrauen-grid-square .fcard p { flex: 1; }


/* ============================================================
   THEME SWITCH — Sun + Moon side-by-side
   ============================================================ */
.theme-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(13, 27, 53, 0.06);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.theme-switch-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.2,.7,.2,1);
}
.theme-switch-btn:hover { color: var(--ink-900); }
.theme-switch-btn.active {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 2px 6px -2px rgba(196, 146, 42, 0.5);
}
[data-theme="dark"] .theme-switch {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}
[data-theme="dark"] .theme-switch-btn { color: var(--ink-600); }
[data-theme="dark"] .theme-switch-btn:hover { color: var(--ink-900); }
[data-theme="dark"] .theme-switch-btn.active {
  background: var(--gold);
  color: var(--navy-deep);
}




/* ============================================================
   SIEGEL — Apple-style Magnifier Cursor
   ============================================================ */
.siegel-showcase { cursor: none; }
@media (max-width: 720px) {
  .siegel-showcase { cursor: default; }
}


/* Dark mode bleibt mit selben Flaggenfarben sichtbar */
[data-theme="dark"] .vorteile-grid > .reveal:nth-child(1) .vcard .accent-bar { background: #1a1a1a; }


/* ============================================================
   VORTEILE — Deutschland-Flagge als leuchtender Rahmen on hover
   Karte 1 schwarz · Karte 2 rot · Karte 3 gold
   ============================================================ */
.vorteile-grid .vcard {
  transition: transform 320ms var(--ease-out), box-shadow 380ms var(--ease-out), border-color 320ms;
}

.vorteile-grid > .reveal:nth-child(1) .vcard:hover {
  border-color: #0A0A0A;
  box-shadow:
    0 0 0 2px #0A0A0A,
    0 0 24px rgba(10, 10, 10, 0.35),
    0 0 60px rgba(10, 10, 10, 0.25),
    0 24px 60px -24px rgba(13, 27, 53, 0.30);
}
.vorteile-grid > .reveal:nth-child(2) .vcard:hover {
  border-color: #DD0000;
  box-shadow:
    0 0 0 2px #DD0000,
    0 0 24px rgba(221, 0, 0, 0.45),
    0 0 60px rgba(221, 0, 0, 0.30),
    0 24px 60px -24px rgba(221, 0, 0, 0.25);
}
.vorteile-grid > .reveal:nth-child(3) .vcard:hover {
  border-color: #FFCE00;
  box-shadow:
    0 0 0 2px #FFCE00,
    0 0 24px rgba(255, 206, 0, 0.55),
    0 0 60px rgba(255, 206, 0, 0.35),
    0 24px 60px -24px rgba(255, 206, 0, 0.30);
}

/* Verstecke die alte untere accent-bar in den Vorteile-Karten */
.vorteile-grid .vcard .accent-bar { display: none; }


/* Vorteile-Icons in Flaggenfarben */
.vorteile-grid > .reveal:nth-child(1) .vcard .icon-circle {
  background: #0A0A0A;
  color: #FFFFFF;
}
.vorteile-grid > .reveal:nth-child(2) .vcard .icon-circle {
  background: #DD0000;
  color: #FFFFFF;
}
.vorteile-grid > .reveal:nth-child(3) .vcard .icon-circle {
  background: #FFCE00;
  color: #0A0A0A;
}


/* Vertrauen-Karten — Icons vergrößern sich beim Hover (analog zu Vorteile) */
.fcard .icon-circle svg {
  transition: transform 280ms var(--ease-out);
}
.fcard:hover .icon-circle svg {
  transform: scale(1.18);
}


/* ============================================================
   VERTRAUEN COPY — editorial numbered layout
   ============================================================ */
.vertrauen-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.vertrauen-item { position: relative; }
.vertrauen-item:not(:last-child)::after { display: none; }
.vertrauen-item { display: block; }
.vertrauen-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.10), transparent 60%),
    linear-gradient(155deg, rgba(196, 146, 42, 0.20) 0%, rgba(196, 146, 42, 0.06) 100%);
  border: 1px solid rgba(196, 146, 42, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 6px 18px -10px rgba(196, 146, 42, 0.35);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.vertrauen-item:hover .vertrauen-num {
  transform: scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 10px 24px -10px rgba(196, 146, 42, 0.55);
}
[data-theme="dark"] .vertrauen-num { background: rgba(196, 146, 42, 0.18); border-color: rgba(196, 146, 42, 0.5); }
.vertrauen-body { display: flex; flex-direction: column; gap: 10px; }
.vertrauen-lead {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--paper-50);
  text-wrap: balance;
}
[data-theme="dark"] .vertrauen-lead { color: var(--ink-900); }
.vertrauen-body p {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(246, 244, 239, 0.82);
}
.vertrauen-body p strong { color: var(--paper-50); font-weight: 600; }
[data-theme="dark"] .vertrauen-body p { color: var(--ink-700); }
[data-theme="dark"] .vertrauen-body p strong { color: var(--ink-900); }

@media (max-width: 720px) {
  .vertrauen-copy::before { left: 26px; }
  .vertrauen-item { grid-template-columns: 52px 1fr; gap: 18px; }
  .vertrauen-num { width: 52px; height: 52px; font-size: 15px; }
}


/* Wider container for sections like Vertrauen that need horizontal room */
.container.container-wide { max-width: 1440px; }

/* Vertrauen text — center the two-column block, with breathing room */
.vertrauen-copy {
  max-width: 1000px;
  margin: 0 auto;
}
.vertrauen-item .vertrauen-body {
  text-align: left;
}
@media (max-width: 920px) {
  .vertrauen-copy { max-width: 640px; }
}


/* Vertrauen-Items als symmetrische Karten (links + rechts) */
.vertrauen-copy { align-items: stretch; }
.vertrauen-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 32px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 280ms var(--ease-out), background 280ms;
}
.vertrauen-item::before { display: none !important; }
.vertrauen-item:hover {
  border-color: rgba(196, 146, 42, 0.30);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
}
.vertrauen-body { gap: 12px; }
[data-theme="dark"] .vertrauen-item {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .vertrauen-item:hover {
  background: linear-gradient(180deg, #18203A 0%, #131B33 100%);
  border-color: rgba(196, 146, 42, 0.30);
}


/* Vertrauen Headline — Deutschland-Flaggen-Wellen-Underline (animiert) */
.vertrauen-headline em {
  position: relative;
  font-style: normal;
  background: none !important;
  display: inline-block;
  isolation: isolate;
}
.vertrauen-headline em::after { display: none; }
@keyframes flag-flow {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .vertrauen-headline em::after { animation: none; }
}


/* Vertrauen-Items — sauber & ordentlich */
.vertrauen-copy { gap: 24px; }
.vertrauen-item {
  justify-content: center;
  padding: 36px 36px 40px;
}
.vertrauen-body { gap: 14px; }
.vertrauen-lead {
  text-wrap: balance;
  max-width: 26ch;
}
.vertrauen-body p {
  margin: 0;
  text-wrap: pretty;
}


/* ====================================================
   VERTRAUEN — restore split layout (text left + 2×2 cards right)
   ==================================================== */
.vertrauen-split {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  gap: 64px !important;
  align-items: stretch !important;
  flex-direction: unset !important;
}
.vertrauen-copy {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 24px !important;
  max-width: none !important;
  margin: 0 !important;
  align-items: center !important;
}
.vertrauen-grid-square {
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 16px !important;
}

/* Re-introduce circle + body grid inside each item */
.vertrauen-item {
  display: grid !important;
  grid-template-columns: 72px 1fr !important;
  gap: 22px !important;
  align-items: center !important;
  padding: 28px 32px !important;
  justify-content: flex-start;
}
.vertrauen-item::before { display: none; } /* hide the gold left strip */

.vertrauen-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.10), transparent 60%),
    linear-gradient(155deg, rgba(196, 146, 42, 0.22) 0%, rgba(196, 146, 42, 0.06) 100%);
  border: 1px solid rgba(196, 146, 42, 0.50);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 8px 22px -10px rgba(196, 146, 42, 0.40);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 320ms var(--ease-out);
}
.vertrauen-item:hover .vertrauen-num { transform: scale(1.06); }

@media (max-width: 960px) {
  .vertrauen-split { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 720px) {
  .vertrauen-grid-square { grid-template-columns: 1fr !important; }
  .vertrauen-item { grid-template-columns: 56px 1fr !important; padding: 24px !important; }
  .vertrauen-num { width: 56px; height: 56px; font-size: 26px; }
}


/* Vertrauen Headline — static gold underline (no animation) */
.vertrauen-headline em {
  background: linear-gradient(180deg, transparent 64%, var(--gold) 64%, var(--gold) 92%, transparent 92%) !important;
  isolation: auto;
}


/* ====================================================
   VERTRAUEN — 2 Karten nebeneinander + Foto pro Karte
   ==================================================== */
.vertrauen-split {
  display: grid !important;
  grid-template-columns: 1fr !important;
  flex-direction: unset !important;
}
.vertrauen-copy {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto !important;
  gap: 24px !important;
  max-width: none !important;
  margin: 0 !important;
  align-items: stretch !important;
}
.vertrauen-item {
  display: grid !important;
  grid-template-columns: 72px 1fr !important;
  grid-template-areas:
    "photo  photo"
    "num    body" !important;
  gap: 22px !important;
  align-items: center !important;
  padding: 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
}
.vertrauen-item .vertrauen-num { grid-area: num; margin: 0 0 28px 28px; }
.vertrauen-item .vertrauen-body { grid-area: body; padding: 0 28px 28px 0; }
.vertrauen-photo {
  grid-area: photo;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-deep);
}
.vertrauen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
}
.vertrauen-item:hover .vertrauen-photo img { transform: scale(1.04); }

[data-theme="dark"] .vertrauen-item {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 880px) {
  .vertrauen-copy { grid-template-columns: 1fr !important; }
}


/* Vertrauen-Items ohne Nummern: Body über volle Breite */
.vertrauen-item {
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "photo"
    "body" !important;
}
.vertrauen-item .vertrauen-body { padding: 28px !important; }
.vertrauen-item .vertrauen-num { display: none !important; }


/* Vertrauen-Karten — Bilder + Texte identisch groß; alle Gold-Linksstreifen weg */
.vertrauen-photo {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
}
.vertrauen-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vertrauen-item .vertrauen-body {
  display: flex; flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.vertrauen-item .vertrauen-lead {
  font-size: 22px !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  max-width: 32ch;
}
.vertrauen-item .vertrauen-body p {
  font-size: 15.5px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Sicher alle Gold-Linksstreifen entfernt */
.vertrauen-item,
.vertrauen-copy,
.vertrauen-paragraphs,
.siegel-paragraphs {
  border-left: none !important;
  padding-left: 0 !important;
}
.vertrauen-item::before,
.vertrauen-copy::before,
.section-sub-stack .section-sub:first-child {
  border-left: none !important;
  padding-left: 0 !important;
  background: none !important;
  display: none !important;
}
/* Restore items' default block flow */
.section-sub-stack .section-sub:first-child {
  display: block !important;
}


/* Bigger Vertrauen text */
.vertrauen-item .vertrauen-lead {
  font-size: 26px !important;
  line-height: 1.18 !important;
}
.vertrauen-item .vertrauen-body p {
  font-size: 17px !important;
  line-height: 1.6 !important;
}

/* Profil-Preview Mockup */
.profil-preview-wrap {
  background: linear-gradient(155deg, #14274E 0%, #0D1B35 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profil-preview {
  width: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
  color: #0A0A0A;
}
.pp-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: #F3F5F2;
  border-bottom: 1px solid rgba(13, 27, 53, 0.06);
}
.pp-dots { display: flex; gap: 4px; }
.pp-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(13, 27, 53, 0.18); }
.pp-url {
  flex: 1; text-align: center;
  font-size: 10px; color: var(--ink-500);
  background: #FFFFFF;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(13, 27, 53, 0.05);
}
.pp-body { padding: 16px; }
.pp-head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(13, 27, 53, 0.08);
}
.pp-seal { width: 56px; height: 56px; object-fit: contain; }
.pp-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pp-eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark);
}
.pp-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pp-loc { font-size: 11px; color: var(--ink-500); }
.pp-score {
  font-family: var(--font-display);
  display: flex; align-items: baseline; gap: 2px;
}
.pp-score-num {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.pp-score-max { font-size: 11px; color: var(--ink-500); font-weight: 500; }
.pp-cats {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 7px;
}
.pp-cat {
  display: grid; grid-template-columns: 80px 1fr 28px;
  gap: 10px; align-items: center;
  font-size: 11px;
}
.pp-cat-name { color: var(--ink-700); }
.pp-cat-bar { height: 4px; background: rgba(13, 27, 53, 0.08); border-radius: 999px; overflow: hidden; }
.pp-cat-bar i { display: block; height: 100%; background: var(--gold); border-radius: 999px; }
.pp-cat:nth-child(3) .pp-cat-bar i { background: var(--navy); }
.pp-cat-pts { text-align: right; font-weight: 700; color: var(--ink-900); font-variant-numeric: tabular-nums; }


/* Profil-Preview score — refine the /100 suffix */
.pp-score { gap: 4px; align-items: flex-end; }
.pp-score-num {
  font-size: 32px !important;
  font-weight: 700;
  line-height: 0.9;
}
.pp-score-max {
  font-family: var(--font-display);
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  color: var(--ink-400) !important;
  padding-bottom: 4px;
}


/* Profil-Preview — jede Kategorie eigene Farbe */
.pp-cat:nth-child(1) .pp-cat-bar i { background: #14274E !important; }   /* Qualität — Navy */
.pp-cat:nth-child(2) .pp-cat-bar i { background: #C4922A !important; }   /* Service — Gold */
.pp-cat:nth-child(3) .pp-cat-bar i { background: #5C7A6A !important; }   /* Expertise — Sage */
.pp-cat:nth-child(4) .pp-cat-bar i { background: #D9A841 !important; }   /* Weiterbildung — Hellgold */
.pp-cat:nth-child(5) .pp-cat-bar i { background: #0D1B35 !important; }   /* Zertifizierung — Deep Navy */


/* Score-Anzeige — 94 und /100 gleiche Größe */
.pp-score { align-items: baseline !important; gap: 2px !important; }
.pp-score-num { font-size: 28px !important; line-height: 1 !important; }
.pp-score-max {
  font-size: 28px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: var(--ink-400) !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}


/* Badge größer + Bars in deutlich unterschiedlichen Farben */
.pp-head { grid-template-columns: 88px 1fr auto !important; }
.pp-seal { width: 88px !important; height: 88px !important; }

.pp-cat:nth-child(1) .pp-cat-bar i { background: #14274E !important; }   /* Qualität — Navy */
.pp-cat:nth-child(2) .pp-cat-bar i { background: #C4922A !important; }   /* Service — Gold */
.pp-cat:nth-child(3) .pp-cat-bar i { background: #5C7A6A !important; }   /* Expertise — Sage Grün */
.pp-cat:nth-child(4) .pp-cat-bar i { background: #DD6A2E !important; }   /* Weiterbildung — Terrakotta */
.pp-cat:nth-child(5) .pp-cat-bar i { background: #8B3A3A !important; }   /* Zertifizierung — Bordeaux */


/* Kompetenzprofil als eigenständige Section unter Umsatz */
.umsatz-row.umsatz-row-single { grid-template-columns: 1fr !important; }
.umsatz-aside-standalone {
  max-width: 720px;
  margin: 0 auto;
}


/* Badge im Profil-Preview noch größer */
.pp-head { grid-template-columns: 120px 1fr auto !important; gap: 16px !important; }
.pp-seal { width: 120px !important; height: 120px !important; }


/* Profil-Preview Head — größerer Text */
.pp-eyebrow { font-size: 11px !important; }
.pp-name { font-size: 22px !important; }
.pp-score-num { font-size: 40px !important; }
.pp-score-max { font-size: 16px !important; }


/* ====================================================
   UMSATZ — 4 Punkte mit farbigem Icon-Kreis (Editorial-Layout)
   ==================================================== */
.umsatz-points {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.umsatz-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.umsatz-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.umsatz-point p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-800);
  text-wrap: pretty;
}
.umsatz-point p strong { color: var(--ink-900); font-weight: 700; }
[data-theme="dark"] .umsatz-point p { color: var(--ink-700); }
[data-theme="dark"] .umsatz-point p strong { color: var(--ink-900); }

/* Farben pro Punkt */
.umsatz-point--shield .umsatz-icon { background: #E7EAFB; color: #3B4EA0; }
.umsatz-point--globe  .umsatz-icon { background: #FBF1DA; color: #C4922A; }
.umsatz-point--trend  .umsatz-icon { background: #DCF0E1; color: #3B8B5A; }
.umsatz-point--user   .umsatz-icon { background: #FCE0DC; color: #C25B4E; }

[data-theme="dark"] .umsatz-point--shield .umsatz-icon { background: rgba(99, 119, 211, 0.18); color: #A6B3E8; }
[data-theme="dark"] .umsatz-point--globe  .umsatz-icon { background: rgba(196, 146, 42, 0.22); color: #E0B45F; }
[data-theme="dark"] .umsatz-point--trend  .umsatz-icon { background: rgba(70, 160, 110, 0.20); color: #7CC99A; }
[data-theme="dark"] .umsatz-point--user   .umsatz-icon { background: rgba(220, 100, 90, 0.20); color: #E89189; }

@media (max-width: 560px) {
  .umsatz-point { grid-template-columns: 44px 1fr; gap: 18px; }
  .umsatz-icon { width: 38px; height: 38px; }
  .umsatz-point p { font-size: 16px; }
}


/* Umsatz Eyebrow — Linie links statt rechts */
#profil .section-head.center { margin-bottom: 8px; }
#profil .section-head.center .eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--ink-700);
}
#profil .section-head.center .eyebrow::after { display: none !important; }
[data-theme="dark"] #profil .section-head.center .eyebrow::before { background: var(--gold); }


/* ====================================================
   KOMPETENZPROFIL — Vollvorschau Profilseite
   ==================================================== */
.profil-full {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(13, 27, 53, 0.04),
    0 24px 56px -20px rgba(13, 27, 53, 0.18),
    0 60px 120px -40px rgba(13, 27, 53, 0.20);
  margin: 32px auto 0;
  max-width: 1000px;
}
[data-theme="dark"] .profil-full {
  background: #FFFFFF;
  color: #0A0A0A;
}

.pf-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #F3F5F2;
  border-bottom: 1px solid rgba(13, 27, 53, 0.06);
}
.pf-dots { display: flex; gap: 6px; }
.pf-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(13, 27, 53, 0.15); }
.pf-url {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #6B7280;
  background: #FFFFFF;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 53, 0.05);
  max-width: 480px;
  margin: 0 auto;
}

.pf-body { padding: 40px; color: #0A0A0A; font-family: var(--font-body); }

.pf-header {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(13, 27, 53, 0.08);
  margin-bottom: 32px;
}
.pf-seal { width: 128px; height: 128px; object-fit: contain; }
.pf-headline { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pf-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C4922A;
}
.pf-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #0A0A0A;
  margin: 0;
}
.pf-meta {
  font-size: 14px;
  color: #6B7280;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pf-meta a { color: #C4922A; text-decoration: none; }
.pf-meta a:hover { text-decoration: underline; }
.pf-sep { color: #C4C9D2; }

.pf-score {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px;
}
.pf-score-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #14274E;
  display: flex; align-items: baseline; gap: 2px;
}
.pf-score-num .pf-score-max {
  font-size: 20px;
  color: #C4C9D2;
  font-weight: 500;
  margin-left: 2px;
}
.pf-score-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7280;
}

.pf-block { margin-top: 28px; }
.pf-block-h {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 12px;
}
.pf-block-p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #374151;
}

.pf-cats { display: flex; flex-direction: column; gap: 16px; }
.pf-cat {
  background: #F3F5F2;
  border-radius: 12px;
  padding: 18px 20px;
}
.pf-cat-row {
  display: grid;
  grid-template-columns: 140px 1fr 50px;
  gap: 18px;
  align-items: center;
}
.pf-cat-name { font-size: 15px; font-weight: 600; color: #0A0A0A; }
.pf-cat-bar {
  height: 8px;
  background: #E5E7EB;
  border-radius: 999px;
  overflow: hidden;
}
.pf-cat-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
}
.pf-cat:nth-child(1) .pf-cat-bar i { background: #14274E; }
.pf-cat:nth-child(2) .pf-cat-bar i { background: #C4922A; }
.pf-cat:nth-child(3) .pf-cat-bar i { background: #5C7A6A; }
.pf-cat:nth-child(4) .pf-cat-bar i { background: #DD6A2E; }
.pf-cat:nth-child(5) .pf-cat-bar i { background: #8B3A3A; }
.pf-cat-pts {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pf-cat-note {
  margin: 10px 0 0 156px;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.45;
}

.pf-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 27, 53, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pf-foot-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 4px;
}
.pf-foot-v {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #0A0A0A;
}

.kp-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 720px) {
  .pf-body { padding: 24px; }
  .pf-header { grid-template-columns: 80px 1fr; gap: 18px; }
  .pf-seal { width: 80px; height: 80px; }
  .pf-score { grid-column: 1 / -1; align-items: flex-start; }
  .pf-cat-row { grid-template-columns: 100px 1fr 40px; gap: 12px; }
  .pf-cat-name { font-size: 13px; }
  .pf-cat-note { margin-left: 0; margin-top: 8px; }
  .pf-footer { grid-template-columns: 1fr; gap: 12px; }
}


/* Kompetenzprofil Eyebrow — Linie links */
#kompetenzprofil .section-head.center { margin-bottom: 28px; }
#kompetenzprofil .section-head.center .eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--ink-700);
}
#kompetenzprofil .section-head.center .eyebrow::after { display: none !important; }
[data-theme="dark"] #kompetenzprofil .section-head.center .eyebrow::before { background: var(--gold); }


.pf-meta-l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C4922A;
  margin-right: 4px;
}


/* Profilseite Vollvorschau — /100 gleich groß wie 94 */
.pf-score-num .pf-score-max {
  font-size: 56px !important;
  color: #C4C9D2 !important;
  font-weight: 500 !important;
  margin-left: 2px;
  line-height: 1;
}


/* ====================================================
   PROFIL REVEAL — Brief mit Wachssiegel öffnet sich
   ==================================================== */
.profil-reveal {
  position: relative;
  max-width: 1000px;
  margin: 32px auto 0;
  min-height: 720px;          /* Reserves space so layout doesn't shift */
  perspective: 1600px;
}

/* Envelope (closed letter look) */
.envelope {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  max-width: 90%;
  aspect-ratio: 16 / 10;
  pointer-events: none;
  z-index: 2;
  transform-style: preserve-3d;
  transition:
    opacity 0.55s cubic-bezier(.2,.7,.2,1),
    transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.envelope-back {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #E8D7B0 0%, #C9AE7C 100%);
  border-radius: 10px;
  border: 1px solid rgba(196, 146, 42, 0.30);
  box-shadow:
    0 1px 2px rgba(13, 27, 53, 0.06),
    0 24px 48px -16px rgba(13, 27, 53, 0.25),
    0 60px 100px -40px rgba(13, 27, 53, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -1px 0 rgba(139, 90, 26, 0.10);
}
.envelope-front {
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 60%;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 255, 255, 0.30), transparent 70%),
    linear-gradient(180deg, #EFDFB6 0%, #D7BC85 100%);
  clip-path: polygon(0 0, 50% 70%, 100% 0, 100% 100%, 0 100%);
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid rgba(196, 146, 42, 0.30);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
}
.envelope-flap {
  position: absolute;
  left: 0; right: 0; top: 0; height: 60%;
  background:
    linear-gradient(180deg, #E0CFA0 0%, #B69A66 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-radius: 10px 10px 0 0;
  transform-origin: top center;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(.4,0,.2,1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    inset 0 -2px 4px rgba(139, 90, 26, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  z-index: 1;
}

/* Wax seal — the primocheck logo */
.wax-seal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.30), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.20), transparent 55%),
    linear-gradient(135deg, #C4922A 0%, #8B5A1A 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 6px 16px -4px rgba(139, 90, 26, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  z-index: 5;
  transition:
    transform 0.85s cubic-bezier(.55, -0.2, .7, .25),
    opacity 0.7s ease-in 0.15s;
}
.wax-seal img {
  width: 64%; height: 64%;
  filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0,0,0,0.20));
  opacity: 0.95;
}

/* Profile stage — sits behind/below envelope, animates in last */
.profil-stage {
  position: relative;
  opacity: 0;
  transform: translateY(64px) scale(0.86);
  transform-origin: center 30%;
  filter: blur(8px);
  transition:
    opacity 0.95s cubic-bezier(.2,.7,.2,1),
    transform 1.05s cubic-bezier(.2,.7,.2,1),
    filter 0.9s ease-out;
  pointer-events: none;
}

/* ----- Phases ----- */
/* Phase 1: Wax seal tears off & flies away */
.phase-1 .wax-seal {
  transform: translate(40px, -160px) rotate(38deg);
  opacity: 0;
}

/* Phase 2: flap opens to expose interior */
.phase-2 .wax-seal { transform: translate(80px, -260px) rotate(70deg); opacity: 0; }
.phase-2 .envelope-flap { transform: rotateX(170deg); }

/* Phase 3: profile materializes */
.phase-3 .wax-seal { opacity: 0; }
.phase-3 .envelope-flap { transform: rotateX(170deg); }
.phase-3 .envelope { opacity: 0; transform: translateX(-50%) scale(1.04) translateY(-12px); }
.phase-3 .profil-stage {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

/* Phase 4: cleanup */
.phase-4 .envelope { display: none; }
.phase-4 .profil-stage { opacity: 1; transform: none; filter: none; pointer-events: auto; }

@media (prefers-reduced-motion: reduce) {
  .profil-reveal { min-height: auto; }
  .envelope { display: none; }
  .profil-stage { opacity: 1; transform: none; filter: none; pointer-events: auto; }
}
@media (max-width: 720px) {
  .profil-reveal { min-height: 560px; }
  .envelope { top: 48px; width: 320px; }
  .wax-seal { width: 72px; height: 72px; }
}


/* Envelope als Button — klickbar, mit Hover */
button.envelope {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  font-family: inherit;
  transition:
    opacity 0.55s cubic-bezier(.2,.7,.2,1),
    transform 0.7s cubic-bezier(.2,.7,.2,1);
}
button.envelope:hover {
  transform: translateX(-50%) scale(1.015) translateY(-2px);
}
button.envelope:hover .wax-seal {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow:
    0 10px 24px -6px rgba(139, 90, 26, 0.65),
    0 4px 8px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
button.envelope:disabled { cursor: default; }

/* Wax seal — using full color sicher-geprueft-badge (no white-out filter) */
.wax-seal {
  width: 120px !important;
  height: 120px !important;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #C4922A 0%, #8B5A1A 100%);
  padding: 8px;
}
.wax-seal img {
  width: 100% !important;
  height: 100% !important;
  filter: none !important;
  opacity: 1 !important;
  border-radius: 50%;
  background: #F5EDD8;
}

/* Hint label below the envelope */
.envelope-hint {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  white-space: nowrap;
  opacity: 0;
  animation: hint-bounce 2s ease-in-out 0.6s infinite;
  pointer-events: none;
}
.envelope-hint::before {
  content: "↑";
  display: block;
  font-size: 18px;
  margin: 0 0 4px 0;
  letter-spacing: 0;
}
@keyframes hint-bounce {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;    transform: translateX(-50%) translateY(-4px); }
}
/* Hide hint once any phase > 0 */
.phase-1 .envelope-hint,
.phase-2 .envelope-hint,
.phase-3 .envelope-hint,
.phase-4 .envelope-hint { display: none; }

/* primocheck Logo gedruckt auf der Briefkuvert-Vorderseite */
.envelope-logo {
  width: 110px;
  height: auto;
  opacity: 0.34;
  filter: brightness(0) saturate(100%) invert(15%) sepia(58%) saturate(900%) hue-rotate(348deg) brightness(85%) contrast(85%);
  mix-blend-mode: multiply;
}

/* Idle subtle pulse/vibration while in phase 0 */
.phase-0 button.envelope:not(:hover):not(:disabled) {
  animation: envelope-idle 3.4s ease-in-out infinite;
}
@keyframes envelope-idle {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(0); }
  10%       { transform: translateX(-50%) scale(1.012) rotate(0.35deg); }
  20%       { transform: translateX(-50%) scale(1.018) rotate(-0.30deg); }
  30%       { transform: translateX(-50%) scale(1.020) rotate(0.20deg); }
  40%       { transform: translateX(-50%) scale(1.020) rotate(-0.18deg); }
  50%       { transform: translateX(-50%) scale(1.022) rotate(0); }
  60%       { transform: translateX(-50%) scale(1.018) rotate(0.18deg); }
  70%       { transform: translateX(-50%) scale(1.014) rotate(-0.25deg); }
  85%       { transform: translateX(-50%) scale(1.005) rotate(0.10deg); }
}

/* Tear phase — seal shakes briefly before flying off */
.phase-tear .wax-seal {
  animation: seal-tear 0.32s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes seal-tear {
  0%   { transform: translate(-50%, -50%) rotate(0)       scale(1); }
  18%  { transform: translate(-54%, -50%) rotate(-5deg)   scale(1.02); }
  34%  { transform: translate(-46%, -50%) rotate(6deg)    scale(1.05); }
  52%  { transform: translate(-55%, -52%) rotate(-7deg)   scale(1.07); }
  68%  { transform: translate(-45%, -48%) rotate(8deg)    scale(1.10); }
  82%  { transform: translate(-52%, -54%) rotate(-9deg)   scale(1.12); }
  100% { transform: translate(-50%, -56%) rotate(0)       scale(1.14); }
}

/* Phase 1 (after tear): seal flings off with rotation */
.phase-1 .wax-seal {
  transform: translate(60px, -180px) rotate(45deg) scale(1.05) !important;
  opacity: 0 !important;
  transition:
    transform 0.6s cubic-bezier(.55,-0.2,.7,.25),
    opacity 0.45s ease-in 0.1s !important;
}

/* Wax residue / scuff staying behind on the envelope after seal rip */
.phase-1 .envelope-front::before,
.phase-2 .envelope-front::before,
.phase-3 .envelope-front::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(139, 90, 26, 0.20), transparent 60%);
  opacity: 0;
  animation: residue-fade 1.2s ease-out 0.05s forwards;
}
@keyframes residue-fade {
  0%   { opacity: 0.7; }
  100% { opacity: 0; }
}


/* ====================================================
   UMSATZ Accordion
   ==================================================== */
.umsatz-accordion {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.umsatz-accordion .umsatz-point {
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1), background 240ms;
}
.umsatz-accordion .umsatz-point.is-open {
  border-color: rgba(196, 146, 42, 0.50);
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF7EE 100%);
  box-shadow: 0 8px 24px -16px rgba(13, 27, 53, 0.18);
}
[data-theme="dark"] .umsatz-accordion .umsatz-point {
  background: linear-gradient(180deg, #131B33 0%, #0F1628 100%);
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .umsatz-accordion .umsatz-point.is-open {
  border-color: rgba(196, 146, 42, 0.45);
}

.umsatz-trigger {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink-900);
  transition: color 200ms;
}
[data-theme="dark"] .umsatz-trigger { color: var(--ink-900); }
.umsatz-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.umsatz-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), color 200ms;
}
.umsatz-point.is-open .umsatz-caret { transform: rotate(180deg); color: var(--gold); }

.umsatz-panel {
  padding: 0 22px 22px 84px;
  animation: panel-slide 360ms cubic-bezier(.2,.7,.2,1);
}
.umsatz-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  text-wrap: pretty;
}
.umsatz-panel p strong { color: var(--ink-900); font-weight: 700; }
[data-theme="dark"] .umsatz-panel p { color: var(--ink-700); }
[data-theme="dark"] .umsatz-panel p strong { color: var(--ink-900); }
@keyframes panel-slide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .umsatz-trigger { grid-template-columns: 38px 1fr 24px; gap: 14px; padding: 16px 18px; }
  .umsatz-icon { width: 38px; height: 38px; }
  .umsatz-title { font-size: 16px; }
  .umsatz-panel { padding: 0 18px 18px 70px; }
}


/* Profilseite Vollvorschau — Siegel größer */
.pf-header { grid-template-columns: 168px 1fr auto !important; gap: 32px !important; }
.pf-seal { width: 168px !important; height: 168px !important; }


/* Vertrauen ProfilPreview — 94 und /100 exakt gleiche Größe */
.profil-preview .pp-score { align-items: baseline !important; gap: 2px !important; }
.profil-preview .pp-score-num { font-size: 36px !important; line-height: 1 !important; font-weight: 700 !important; }
.profil-preview .pp-score-max { font-size: 36px !important; font-weight: 500 !important; line-height: 1 !important; padding-bottom: 0 !important; color: var(--ink-400) !important; }


/* ====================================================
   NAV — Compact: nur die Links als Apple Liquid Glass Pill
   Smooth Hover-Expand
   ==================================================== */
.nav, .nav-brand, .nav-actions, .nav-links {
  transition:
    background 480ms cubic-bezier(.2,.85,.25,1),
    border-color 480ms cubic-bezier(.2,.85,.25,1),
    box-shadow 480ms cubic-bezier(.2,.85,.25,1),
    padding 480ms cubic-bezier(.2,.85,.25,1),
    opacity 420ms cubic-bezier(.2,.85,.25,1),
    transform 480ms cubic-bezier(.2,.85,.25,1),
    max-width 480ms cubic-bezier(.2,.85,.25,1),
    width 480ms cubic-bezier(.2,.85,.25,1),
    gap 480ms cubic-bezier(.2,.85,.25,1),
    backdrop-filter 480ms cubic-bezier(.2,.85,.25,1),
    -webkit-backdrop-filter 480ms cubic-bezier(.2,.85,.25,1);
}

/* Compact: nav becomes invisible, shrinks to fit only the links */
.nav-wrap-compact .nav {
  display: flex;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav-wrap-compact .nav-brand,
.nav-wrap-compact .nav-actions {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateY(-6px) scale(0.95);
  pointer-events: none;
  transform-origin: center;
}
.nav-wrap-compact .nav-brand { transform: translateX(-16px) scale(0.95); transform-origin: left center; }
.nav-wrap-compact .nav-actions { transform: translateX(16px) scale(0.95); transform-origin: right center; }
.nav-wrap-compact .nav-center {
  display: flex;
  justify-content: center;
  width: max-content;
}

/* Apple Liquid Glass nur auf der Link-Pille */
.nav-wrap-compact .nav-links {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 6px 18px -10px rgba(13, 27, 53, 0.15),
    0 1px 3px rgba(13, 27, 53, 0.04);
  padding: 4px;
}
.nav-wrap-compact .nav-links a {
  padding: 9px 16px;
  font-size: 15.5px;
}
[data-theme="dark"] .nav-wrap-compact .nav-links {
  background: rgba(20, 30, 56, 0.30);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 6px 18px -10px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.30);
}
[data-theme="dark"] .nav-wrap-compact .nav-links a { color: rgba(245, 246, 247, 0.82); }
[data-theme="dark"] .nav-wrap-compact .nav-links a:hover { color: var(--ink-900); }

/* Hover restores full nav — smooth, expanding from the center pill outward */
.nav-wrap-compact:hover .nav,
.nav-wrap-compact:focus-within .nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  width: 100%;
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(10, 10, 10, 0.06) !important;
  backdrop-filter: blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
}
[data-theme="dark"] .nav-wrap-compact:hover .nav,
[data-theme="dark"] .nav-wrap-compact:focus-within .nav {
  background: rgba(14, 21, 37, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.nav-wrap-compact:hover .nav-brand,
.nav-wrap-compact:hover .nav-actions,
.nav-wrap-compact:focus-within .nav-brand,
.nav-wrap-compact:focus-within .nav-actions {
  opacity: 1;
  max-width: 600px;
  transform: none;
  pointer-events: auto;
  transition-delay: 60ms;
}
.nav-wrap-compact:hover .nav-links,
.nav-wrap-compact:focus-within .nav-links {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(10, 10, 10, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 4px;
}

/* Reduced motion: shorter & simpler */
@media (prefers-reduced-motion: reduce) {
  .nav, .nav-brand, .nav-actions, .nav-links { transition-duration: 150ms !important; }
}


/* Kompetenzprofil Subtitle als Blocksatz */
#kompetenzprofil .section-sub {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


/* ====================================================
   PROFIL FULL — circular CTA sticker (rotating text)
   ==================================================== */
.profil-full { position: relative; }
.pf-cta-circle {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #FFE08A 0%, #F2C84A 40%, #C4922A 100%);
  border: 1px solid rgba(196, 146, 42, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 8px 22px -6px rgba(196, 146, 42, 0.55),
    0 2px 6px rgba(13, 27, 53, 0.20);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
  animation: cta-spin 22s linear infinite;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.pf-cta-circle:hover {
  animation-duration: 8s;
  transform: scale(1.06);
}
@keyframes cta-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pf-cta-circle:hover { transform: scale(1.06); }
.pf-cta-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.pf-cta-center {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: #0A0A0A;
  animation: cta-counter-spin 22s linear infinite;
  transform-origin: center;
  line-height: 1;
}
.pf-cta-circle:hover .pf-cta-center { animation-duration: 8s; }
@keyframes cta-counter-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.pf-cta-min {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pf-cta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0A0A0A;
  margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .pf-cta-circle, .pf-cta-center { animation: none !important; }
}
@media (max-width: 720px) {
  .pf-cta-circle { top: -16px; right: -16px; width: 100px; height: 100px; }
  .pf-cta-min { font-size: 22px; }
}


/* Kompetenzprofil — CTA Banner über dem Profil */
.kp-banner {
  max-width: 1000px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px 28px;
  background: var(--paper-50);
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 18px;
}
[data-theme="dark"] .kp-banner {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.kp-banner-text {
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.kp-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
[data-theme="dark"] .kp-banner-eyebrow { color: var(--gold); }
.kp-banner p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.kp-banner p em {
  font-style: normal;
  color: var(--gold-dark);
  font-weight: 600;
}
[data-theme="dark"] .kp-banner p em { color: var(--gold); }

/* Remove old circular sticker styling (no longer used) */
.pf-cta-circle, .pf-cta-ring, .pf-cta-center, .pf-cta-min, .pf-cta-label { display: none !important; }

@media (max-width: 720px) {
  .kp-banner { grid-template-columns: 1fr; padding: 22px; gap: 18px; }
}


/* Banner now sits BELOW profile preview */
.kp-banner { margin: 48px auto 0 !important; }


/* Banner mit klarer Hintergrundfarbe + Gold-Akzent links */
.kp-banner {
  background: var(--gold-pale) !important;
  border: 1px solid rgba(196, 146, 42, 0.30) !important;
  position: relative !important;
  overflow: hidden !important;
  padding-left: 36px !important;
}
.kp-banner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}
[data-theme="dark"] .kp-banner {
  background: rgba(196, 146, 42, 0.10) !important;
  border-color: rgba(196, 146, 42, 0.35) !important;
}


/* ====================================================
   Kompetenzprofil CTA Banner — Wirkung + Animation
   ==================================================== */
.kp-banner {
  padding: 36px 44px 36px 44px !important;
  padding-left: 44px !important;
  background:
    radial-gradient(ellipse 70% 100% at 110% 50%, rgba(196, 146, 42, 0.20), transparent 70%),
    linear-gradient(135deg, #FFFBEF 0%, #F5EDD8 50%, #EBDEB0 100%) !important;
  border: 1px solid rgba(196, 146, 42, 0.35) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 2px 6px rgba(13, 27, 53, 0.04),
    0 18px 40px -20px rgba(196, 146, 42, 0.35) !important;
  transition:
    transform 480ms cubic-bezier(.2,.7,.2,1),
    box-shadow 480ms cubic-bezier(.2,.7,.2,1),
    border-color 480ms;
  position: relative !important;
  overflow: hidden !important;
}
.kp-banner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}
/* Animated shimmer sweep across the banner */
.kp-banner::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -40%;
  width: 30%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  animation: banner-shimmer 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes banner-shimmer {
  0%   { left: -40%; opacity: 0; }
  15%  { opacity: 1; }
  60%  { left: 130%; opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
.kp-banner:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 4px 12px rgba(13, 27, 53, 0.06),
    0 28px 60px -20px rgba(196, 146, 42, 0.50) !important;
}
.kp-banner > * { position: relative; z-index: 2; }

/* Banner Text — größer, prominenter */
.kp-banner-text { gap: 8px !important; max-width: 540px; }
.kp-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px !important;
}
.kp-banner-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(196, 146, 42, 0.55);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 146, 42, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(196, 146, 42, 0); }
}
.kp-banner p {
  font-size: clamp(20px, 2vw, 24px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}
.kp-banner p em {
  font-style: normal !important;
  color: var(--gold-dark) !important;
  font-weight: 700 !important;
}

/* Button mit Aufmerksamkeits-Pulse */
.kp-banner .btn-primary {
  position: relative;
  z-index: 2;
  animation: cta-attention 3s ease-in-out 1s infinite;
}
@keyframes cta-attention {
  0%, 92%, 100% { transform: translateY(0); }
  94%           { transform: translateY(-3px); }
  96%           { transform: translateY(-1px); }
}
.kp-banner .btn-primary::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: var(--gold);
  z-index: -1;
  opacity: 0;
  animation: cta-halo 3s ease-in-out infinite;
}
@keyframes cta-halo {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  50%      { opacity: 0.25; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .kp-banner::after, .kp-banner .btn-primary, .kp-banner .btn-primary::after, .kp-banner-eyebrow::before {
    animation: none !important;
  }
}
@media (max-width: 720px) {
  .kp-banner { padding: 28px 24px !important; }
  .kp-banner p { font-size: 18px !important; }
}


/* ====================================================
   ProfilFull als kompakte Vorschau (in Vertrauen-Karte rechts)
   ==================================================== */
.profil-preview-wrap {
  padding: 16px !important;
  background: linear-gradient(155deg, #14274E 0%, #0D1B35 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
}
.profil-preview-wrap .profil-full {
  margin: 0 !important;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(13, 27, 53, 0.06),
    0 12px 32px -16px rgba(0, 0, 0, 0.45);
}

/* Kompakt skaliertes Layout */
.profil-preview-wrap .pf-bar { padding: 6px 10px; }
.profil-preview-wrap .pf-bar .pf-url { font-size: 9px; padding: 3px 8px; max-width: 240px; }
.profil-preview-wrap .pf-dots span { width: 5px; height: 5px; }

.profil-preview-wrap .pf-body { padding: 16px; }

.profil-preview-wrap .pf-header {
  grid-template-columns: 64px 1fr auto !important;
  gap: 12px !important;
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.profil-preview-wrap .pf-seal { width: 64px !important; height: 64px !important; }
.profil-preview-wrap .pf-eyebrow { font-size: 8px; letter-spacing: 0.10em; }
.profil-preview-wrap .pf-name { font-size: 16px !important; }
.profil-preview-wrap .pf-meta { font-size: 9px; gap: 4px; }
.profil-preview-wrap .pf-meta-l { font-size: 7px; letter-spacing: 0.10em; }
.profil-preview-wrap .pf-meta .pf-sep { font-size: 9px; }

.profil-preview-wrap .pf-score-num { font-size: 22px !important; }
.profil-preview-wrap .pf-score-num .pf-score-max { font-size: 22px !important; }
.profil-preview-wrap .pf-score-label { font-size: 8px; letter-spacing: 0.10em; }

.profil-preview-wrap .pf-block { margin-top: 14px; }
.profil-preview-wrap .pf-block-h { font-size: 9px; letter-spacing: 0.10em; margin-bottom: 6px; }
.profil-preview-wrap .pf-block-p { font-size: 11px; line-height: 1.4; }

.profil-preview-wrap .pf-cats { gap: 7px; }
.profil-preview-wrap .pf-cat { padding: 8px 10px; border-radius: 8px; }
.profil-preview-wrap .pf-cat-row { grid-template-columns: 80px 1fr 28px; gap: 10px; }
.profil-preview-wrap .pf-cat-name { font-size: 10px; }
.profil-preview-wrap .pf-cat-bar { height: 4px; }
.profil-preview-wrap .pf-cat-pts { font-size: 11px; }

.profil-preview-wrap .pf-footer {
  margin-top: 14px; padding-top: 12px; gap: 12px;
}
.profil-preview-wrap .pf-foot-l { font-size: 8px; letter-spacing: 0.10em; }
.profil-preview-wrap .pf-foot-v { font-size: 10px; }

@media (max-width: 720px) {
  .profil-preview-wrap .pf-header { grid-template-columns: 48px 1fr; }
  .profil-preview-wrap .pf-seal { width: 48px !important; height: 48px !important; }
  .profil-preview-wrap .pf-score { grid-column: 1 / -1; align-items: flex-start; }
  .profil-preview-wrap .pf-cat-row { grid-template-columns: 60px 1fr 24px; }
  .profil-preview-wrap .pf-footer { grid-template-columns: 1fr; gap: 8px; }
}


/* ====================================================
   CTA Banner — Premium, conversion-optimiert
   ==================================================== */
.kp-banner {
  max-width: 1000px;
  margin: 48px auto 0 !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  gap: 28px !important;
  align-items: center;
  padding: 32px 36px !important;
  padding-left: 36px !important;
  background:
    radial-gradient(ellipse 100% 100% at 100% 0%, rgba(196, 146, 42, 0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF7EE 100%) !important;
  border: 1px solid rgba(13, 27, 53, 0.06) !important;
  border-radius: 24px !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 2px 6px rgba(13, 27, 53, 0.04),
    0 24px 48px -24px rgba(13, 27, 53, 0.18) !important;
  position: relative !important;
  overflow: hidden !important;
  transition:
    transform 420ms cubic-bezier(.2,.7,.2,1),
    box-shadow 420ms cubic-bezier(.2,.7,.2,1);
}
.kp-banner::before { display: none !important; }
.kp-banner:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 4px 12px rgba(13, 27, 53, 0.06),
    0 36px 72px -28px rgba(13, 27, 53, 0.22) !important;
}
[data-theme="dark"] .kp-banner {
  background:
    radial-gradient(ellipse 100% 100% at 100% 0%, rgba(196, 146, 42, 0.18), transparent 60%),
    linear-gradient(180deg, #131B33 0%, #0F1628 100%) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Animated shimmer sweep across the banner */
.kp-banner::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -40%;
  width: 30%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
  animation: banner-shimmer 6s ease-in-out infinite;
  z-index: 1;
}
[data-theme="dark"] .kp-banner::after {
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.10) 50%,
    transparent 100%);
}
.kp-banner > * { position: relative; z-index: 2; }

/* Icon on the left — circular gold badge */
.kp-banner-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%),
    linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--paper-50);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 20px -6px rgba(196, 146, 42, 0.55);
  flex-shrink: 0;
}

/* Text middle */
.kp-banner-text { gap: 8px !important; min-width: 0; max-width: none !important; }
.kp-banner-eyebrow { display: none !important; }
.kp-banner-headline {
  margin: 0 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(18px, 1.8vw, 22px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.3 !important;
  color: var(--ink-900) !important;
  text-wrap: balance;
}
.kp-banner-headline em {
  font-style: normal !important;
  color: var(--gold-dark) !important;
  font-weight: 700 !important;
}
[data-theme="dark"] .kp-banner-headline em { color: var(--gold) !important; }

.kp-banner-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-600);
  margin-top: 4px;
}
.kp-banner-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kp-banner-trust svg {
  color: var(--gold);
  flex-shrink: 0;
}
[data-theme="dark"] .kp-banner-trust { color: var(--ink-600); }

/* Button mit subtle pulse */
.kp-banner .btn-primary {
  flex-shrink: 0;
  animation: cta-attention 3.6s ease-in-out 1s infinite;
}
@keyframes cta-attention {
  0%, 92%, 100% { transform: translateY(0); }
  94%           { transform: translateY(-3px); }
  96%           { transform: translateY(-1px); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .kp-banner::after, .kp-banner .btn-primary { animation: none !important; }
}
@media (max-width: 720px) {
  .kp-banner { grid-template-columns: 1fr !important; padding: 24px !important; text-align: center; }
  .kp-banner-icon { margin: 0 auto; }
  .kp-banner-trust { justify-content: center; gap: 12px; font-size: 12px; }
  .kp-banner .btn-primary { width: 100%; justify-content: center; }
}


/* ====================================================
   KP BANNER — animated gold shimmer + nudge
   ==================================================== */
.kp-banner {
  position: relative !important;
  isolation: isolate;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1), box-shadow 420ms;
}
.kp-banner::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 30%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
  animation: kp-shimmer 5.5s ease-in-out 1s infinite;
}
[data-theme="dark"] .kp-banner::after {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(196, 146, 42, 0.30) 50%,
    transparent 100%
  );
}
.kp-banner > * { position: relative; z-index: 1; }
@keyframes kp-shimmer {
  0%   { left: -40%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
.kp-banner .btn-primary .chip {
  animation: kp-chip-nudge 2.2s ease-in-out infinite;
}
@keyframes kp-chip-nudge {
  0%, 60%, 100% { transform: translateX(0); }
  72%           { transform: translateX(4px); }
  84%           { transform: translateX(-1px); }
}
.kp-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -14px rgba(196, 146, 42, 0.40);
}
@media (prefers-reduced-motion: reduce) {
  .kp-banner::after,
  .kp-banner .btn-primary .chip { animation: none !important; }
}


/* In der kleinen Trust-Siegel-Vorschau: die Unternehmensbeschreibung
   ausblenden — sie ist dort zu klein, um lesbar zu sein.
   In der großen Kompetenzprofil-Vorschau bleibt sie sichtbar. */
.vertrauen-photo .profil-full .pf-block:first-of-type {
  display: none !important;
}
.vertrauen-photo .profil-full .pf-body { padding: 28px; }
.vertrauen-photo .profil-full .pf-header { margin-bottom: 20px; padding-bottom: 20px; }


/* ====================================================
   KP BANNER CTA — Premium Apple-like animation
   ==================================================== */
.kp-banner .btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, #E0AB42 0%, #C4922A 50%, #A67820 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #FFFFFF;
  padding: 14px 14px 14px 28px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 10px -2px rgba(196, 146, 42, 0.40),
    0 0 0 0 rgba(196, 146, 42, 0.0);
  transition:
    transform 520ms cubic-bezier(.34,1.56,.64,1),
    background-position 1100ms cubic-bezier(.2,.7,.2,1),
    box-shadow 520ms cubic-bezier(.2,.7,.2,1),
    border-color 520ms;
}

/* Constant subtle gold breathing */
.kp-banner .btn-primary {
  animation: kp-cta-breathe 3.6s ease-in-out infinite;
}
@keyframes kp-cta-breathe {
  0%, 100% { box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 10px -2px rgba(196, 146, 42, 0.40),
    0 0 0 0 rgba(196, 146, 42, 0.0); }
  50%      { box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px -4px rgba(196, 146, 42, 0.55),
    0 0 0 8px rgba(196, 146, 42, 0.08); }
}

/* Sheen sweep overlay */
.kp-banner .btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 1;
  animation: kp-cta-sheen 4.4s ease-in-out 1.2s infinite;
}
@keyframes kp-cta-sheen {
  0%   { left: -150%; }
  35%  { left: 150%; }
  100% { left: 150%; }
}

.kp-banner .btn-primary > * { position: relative; z-index: 2; }

/* Chip arrow gentle nudge */
.kp-banner .btn-primary .chip {
  background: #FFFFFF;
  color: #C4922A;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(0, 0, 0, 0.12);
  transition: transform 360ms cubic-bezier(.34,1.56,.64,1), background 360ms, color 360ms;
}

/* HOVER: full Apple-like power-up */
.kp-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.045);
  background-position: 100% 50%;
  border-color: rgba(255, 255, 255, 0.45);
  animation-play-state: paused;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 18px 40px -8px rgba(196, 146, 42, 0.55),
    0 0 0 4px rgba(196, 146, 42, 0.14),
    0 0 30px 4px rgba(255, 215, 100, 0.30);
}
.kp-banner .btn-primary:hover::before {
  animation: kp-cta-sheen-fast 0.9s ease-out forwards;
}
@keyframes kp-cta-sheen-fast {
  0%   { left: -150%; }
  100% { left: 150%; }
}
.kp-banner .btn-primary:hover .chip {
  transform: translateX(8px) rotate(0deg);
  background: #FFFFFF;
  color: #14274E;
}

/* ACTIVE: press effect */
.kp-banner .btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 120ms;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.25),
    0 4px 10px -2px rgba(196, 146, 42, 0.40);
}

@media (prefers-reduced-motion: reduce) {
  .kp-banner .btn-primary,
  .kp-banner .btn-primary::before { animation: none !important; }
}


/* ====================================================
   PROFIL-PREVIEW im Trust-Siegel Card — sauber eingesetzt
   ==================================================== */
.vertrauen-photo.profil-preview-wrap {
  aspect-ratio: auto !important;
  height: auto !important;
  background:
    radial-gradient(ellipse 80% 60% at 30% 0%, rgba(196, 146, 42, 0.20), transparent 70%),
    linear-gradient(160deg, #14274E 0%, #0D1B35 100%);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vertrauen-photo.profil-preview-wrap .profil-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.15),
    0 18px 40px -16px rgba(0, 0, 0, 0.55);
}
.vertrauen-photo.profil-preview-wrap .pf-body { padding: 24px; }
.vertrauen-photo.profil-preview-wrap .pf-header {
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.vertrauen-photo.profil-preview-wrap .pf-header { grid-template-columns: 96px 1fr auto; }
.vertrauen-photo.profil-preview-wrap .pf-seal { width: 96px; height: 96px; }
.vertrauen-photo.profil-preview-wrap .pf-name { font-size: 22px; }
.vertrauen-photo.profil-preview-wrap .pf-eyebrow { font-size: 10px; }
.vertrauen-photo.profil-preview-wrap .pf-meta { font-size: 11px; gap: 6px; }
.vertrauen-photo.profil-preview-wrap .pf-score-num { font-size: 36px; }
.vertrauen-photo.profil-preview-wrap .pf-score-num .pf-score-max { font-size: 13px; }
.vertrauen-photo.profil-preview-wrap .pf-score-label { font-size: 9px; }
.vertrauen-photo.profil-preview-wrap .pf-cat { padding: 12px 14px; }
.vertrauen-photo.profil-preview-wrap .pf-cat-row { grid-template-columns: 110px 1fr 38px; gap: 12px; }
.vertrauen-photo.profil-preview-wrap .pf-cat-name { font-size: 13px; }
.vertrauen-photo.profil-preview-wrap .pf-cat-pts { font-size: 14px; }
.vertrauen-photo.profil-preview-wrap .pf-block { margin-top: 18px; }
.vertrauen-photo.profil-preview-wrap .pf-block-h { font-size: 11px; }
.vertrauen-photo.profil-preview-wrap .pf-bar { padding: 9px 12px; }
.vertrauen-photo.profil-preview-wrap .pf-url { font-size: 11px; max-width: 320px; padding: 4px 12px; }

/* Hover-Zoom für die Karte deaktivieren — das Mockup soll ruhig bleiben */
.vertrauen-item:hover .vertrauen-photo.profil-preview-wrap .profil-full {
  transform: none;
}


/* ====================================================
   TRUST SIEGEL — refined editorial layout
   ==================================================== */
.siegel-paragraphs { display: flex; flex-direction: column; gap: 0; }
.siegel-step {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.siegel-p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-700);
  text-wrap: pretty;
}
.siegel-p strong { color: var(--ink-900); font-weight: 600; }

.siegel-p--lead {
  font-size: 17.5px;
  color: var(--ink-800);
}
.siegel-p--lead::first-letter {
  font-family: var(--font-display);
  font-size: 4.4em;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  margin: 6px 14px -2px 0;
  color: var(--gold-dark);
  letter-spacing: -0.04em;
}

.siegel-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 28px;
  height: 1px;
  position: relative;
}
.siegel-divider::before,
.siegel-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 146, 42, 0.35), transparent);
}
.siegel-divider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 146, 42, 0.12);
}


/* ====================================================
   TRUST SIEGEL — Slider
   ==================================================== */
.siegel-slider {
  position: relative;
  margin-top: 8px;
}
.siegel-slider-track {
  display: flex;
  width: 100%;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.siegel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-right: 8px;
}
.siegel-slide .siegel-p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-700);
  text-wrap: pretty;
  min-height: 240px;
}
.siegel-slide .siegel-p strong { color: var(--ink-900); font-weight: 600; }

.siegel-slider-ctrl {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.siegel-slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper-50);
  border: 1px solid rgba(13, 27, 53, 0.08);
  color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 220ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
}
.siegel-slider-arrow:hover {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(196, 146, 42, 0.45);
}
.siegel-slider-arrow:active { transform: scale(0.95); }

.siegel-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
}
.siegel-slider-dot {
  width: 32px; height: 4px;
  border-radius: 999px;
  background: rgba(13, 27, 53, 0.12);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 240ms, width 240ms cubic-bezier(.2,.7,.2,1);
}
.siegel-slider-dot:hover { background: rgba(13, 27, 53, 0.25); }
.siegel-slider-dot.active {
  background: var(--gold);
  width: 56px;
}

[data-theme="dark"] .siegel-slider-arrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--ink-900);
}
[data-theme="dark"] .siegel-slider-dot { background: rgba(255, 255, 255, 0.15); }


/* ====================================================
   TRUST SIEGEL — Accordion (Dropdown)
   ==================================================== */
.siegel-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.acc-item {
  background: var(--paper-50);
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 240ms, box-shadow 240ms;
}
.acc-item.is-open {
  border-color: rgba(196, 146, 42, 0.40);
  box-shadow: 0 4px 18px -10px rgba(196, 146, 42, 0.30);
}
[data-theme="dark"] .acc-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .acc-item.is-open {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 146, 42, 0.50);
}

.acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background 220ms;
}
.acc-trigger:hover { background: rgba(196, 146, 42, 0.05); }

.acc-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
}
.acc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.acc-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(13, 27, 53, 0.06);
  color: var(--ink-700);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), background 220ms;
}
.acc-item.is-open .acc-icon {
  transform: rotate(180deg);
  background: var(--gold);
  color: #FFFFFF;
}

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(.2,.7,.2,1);
}
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner {
  overflow: hidden;
}
.acc-body-inner .siegel-p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
}
.acc-body-inner .siegel-p strong { color: var(--ink-900); font-weight: 600; }


/* Trust Siegel Accordion — static (always open) variant */
.acc-item.is-static {
  border-color: rgba(196, 146, 42, 0.40);
  box-shadow: 0 4px 18px -10px rgba(196, 146, 42, 0.25);
}
.acc-item.is-static .acc-trigger {
  cursor: default;
  grid-template-columns: auto 1fr;
  padding: 18px 22px 8px;
}
.acc-item.is-static .acc-trigger:hover { background: transparent; }
.acc-item.is-static .acc-body { grid-template-rows: 1fr; }
[data-theme="dark"] .acc-item.is-static {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(196, 146, 42, 0.45);
}


/* Vertrauen-Items — Text auf gleicher Höhe ausrichten */
.vertrauen-item .vertrauen-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.vertrauen-item .vertrauen-lead { flex-shrink: 0; }


/* ---- Remove all banner + CTA sheen/shimmer sweeps (user request) ---- */
.kp-banner::after { display: none !important; animation: none !important; }
.kp-banner .btn-primary::before { display: none !important; animation: none !important; content: none !important; }
.kp-banner .btn-primary:hover::before { animation: none !important; }


/* ====================================================
   ÜBER UNS — editorial layout
   ==================================================== */
.about-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.about-editorial > .reveal { display: block; }
.about-block {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 22px;
  padding: 44px 48px;
  box-shadow:
    0 1px 2px rgba(13, 27, 53, 0.04),
    0 30px 60px -30px rgba(13, 27, 53, 0.30);
}
[data-theme="dark"] .about-block {
  background: #131B33;
  border-color: rgba(255,255,255,0.07);
}
.about-editorial > .reveal:not(:first-child) { margin-top: 24px; }

/* Number → big gold numeral, top-right */
.about-block .about-block-num {
  position: absolute;
  top: 30px; right: 44px;
  font-family: var(--font-display) !important;
  font-size: 40px !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  opacity: 1 !important;
  color: var(--gold) !important;
  background: none;
  padding: 0;
}
[data-theme="dark"] .about-block .about-block-num { color: var(--gold) !important; }

/* About-Game card: number left beside heading, bigger; justified text */
.about-game-card {
  display: block;
}
.about-game-card .about-block-num {
  position: static !important;
  font-size: 72px !important;
  line-height: 0.9 !important;
  margin: 0 !important;
  align-self: start;
  width: 110px;
}
.about-game-card .about-block-body { padding-right: 0 !important; grid-column: 2; }
.about-game-card .about-block-body h3 {
  font-size: 30px !important;
  min-height: 38px;
}
.about-game-card .about-block-body p {
  text-align: left;
  text-wrap: pretty;
  hyphens: none;
}
.about-game-card .about-criteria li { text-align: left; }

.about-block .about-block-body { padding-right: 70px; }

/* Heading row + divider line under it (visible when cards stack) */
.about-block-body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(13, 27, 53, 0.10);
  color: var(--ink-900);
}
[data-theme="dark"] .about-block-body h3 { border-bottom-color: rgba(255,255,255,0.12); }
.about-block-body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.about-block-body p:last-child { margin-bottom: 0; }
.about-block-body strong { color: var(--ink-900); font-weight: 600; }

.about-criteria {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-criteria li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
}
.about-criteria strong { color: var(--ink-900); font-weight: 600; }
.ac-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
[data-theme="dark"] .ac-icon { background: rgba(196,146,42,0.18); color: var(--gold); }

.about-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.about-team-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}
.about-team-quote {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-team-quote .badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime-500);
}
.about-team-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--paper-50);
  margin: 0;
  text-wrap: balance;
}
.about-team-band .team-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.about-team-band .team-divider {
  width: 100%; height: 1px;
  margin: 18px 0;
}

@media (max-width: 720px) {
  .about-block { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .about-block-num { font-size: 28px; }
  .about-values-row { grid-template-columns: 1fr 1fr; }
  .about-team-band { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .about-values-row { grid-template-columns: 1fr; }
}


/* Trust Siegel — Text im Blocksatz */
.siegel-accordion .siegel-p,
.acc-body-inner .siegel-p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}


/* Siegel-Showcase etwas größer */
.siegel-showcase-img { max-width: 100% !important; max-height: 100% !important; }
.siegel-showcase { aspect-ratio: 1 / 1 !important; }
.siegel-showcase-stage { padding: 0 !important; }


/* Über uns — Markenclaim */
.about-claim {
  font-family: var(--font-display);
  font-size: 19px !important;
  font-weight: 600 !important;
  color: var(--gold-dark) !important;
  margin-top: 6px !important;
}
[data-theme="dark"] .about-claim { color: var(--gold) !important; }





/* Siegel-Showcase — leicht nach links unten verschoben */
.siegel-showcase-img { transform: translate(-22px, 26px); }
@media (max-width: 720px) {
  .siegel-showcase-img { transform: none; }
}


/* Footer-Bottom — zentriert (nur Impressum + Datenschutz) */
.footer-bottom-center { justify-content: center !important; }
.footer-bottom-center .footer-bottom-links { justify-content: center; }


/* Footer-Grid — saubere 3-Spalten-Anordnung */
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr !important;
  align-items: start;
  gap: 48px;
}
.footer-brand { display: flex; align-items: flex-start; }
.footer-brand .brand-logo { height: 64px; width: 64px; }
.footer-brand .brand-name { font-size: 26px; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}


/* Über-uns Karten — gestaffelte sticky-Offsets, damit die Überschrift
   der darunterliegenden Karten sichtbar bleibt (wie akquise.de) */
/* sticky offsets removed — cards now fly in */




/* ====================================================
   ÜBER UNS — Karten fliegen rein (alternierend L/R)
   ==================================================== */
.about-editorial > .reveal { opacity: 0; transform: translateX(-60px) translateY(20px) scale(0.96); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.about-editorial > .reveal:nth-child(even) { transform: translateX(60px) translateY(20px) scale(0.96); }
.about-editorial > .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .about-editorial > .reveal { transition: opacity 400ms ease; transform: none; }
}


/* Über-uns Karten überlappen leicht (kompakter, gestapelter Look) */
.about-editorial { position: relative; z-index: 0; }
.about-editorial > .reveal { position: relative; }
.about-editorial > .reveal:nth-child(1) { z-index: 1; }
.about-editorial > .reveal:nth-child(2) { z-index: 2; }
.about-editorial > .reveal:nth-child(3) { z-index: 3; }
.about-editorial > .reveal:nth-child(4) { z-index: 4; }
.about-editorial > .reveal:nth-child(5) { z-index: 5; }
.about-editorial > .reveal:nth-child(6) { z-index: 6; }
.about-block {
  box-shadow:
    0 1px 2px rgba(13, 27, 53, 0.04),
    0 -8px 30px -12px rgba(13, 27, 53, 0.14),
    0 24px 50px -28px rgba(13, 27, 53, 0.28);
}


/* ====================================================
   ÜBER UNS — gamifizierter Slider (scroll-driven, pinned)
   ==================================================== */
.about-scroll {
  position: relative;
  height: 240vh;                 /* etwas kürzer → FAQ rückt näher */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.about-pin {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 0;
}
/* Skip button — fällt von oben, wird vom Seil gefangen */
/* Roll-in circle skip control — rollt unten von links in die Mitte, klappt dann auf */
.about-roll {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center;
  background: var(--navy);
  color: var(--paper-50);
  border: none; cursor: pointer;
  border-radius: 999px;
  overflow: hidden;
  z-index: 6;
  box-shadow: 0 10px 24px -10px rgba(13,27,53,0.45);
  animation: roll-track 2.2s cubic-bezier(.3,.65,.35,1) both;
}
.about-roll-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: roll-spin 2.2s cubic-bezier(.3,.65,.35,1) both;
}
.about-roll-label {
  font-size: 13.5px; font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--paper-50);
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  animation: roll-unfold 0.55s cubic-bezier(.2,.7,.2,1) 2.2s both;
}
.about-roll:hover { background: var(--navy-deep); }
.about-roll:hover .about-roll-circle { background: var(--navy-deep); }

@keyframes roll-track {
  0%   { transform: translateX(calc(-50% - 42vw)); }
  100% { transform: translateX(-50%); }
}
@keyframes roll-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(900deg); }
}
@keyframes roll-unfold {
  0%   { max-width: 0; opacity: 0; padding-right: 0; }
  100% { max-width: 260px; opacity: 1; padding-right: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-roll, .about-roll-circle { animation: none; }
  .about-roll-label { animation: none; max-width: 260px; opacity: 1; padding-right: 22px; }
}
.about-pin .section-head.center { margin-bottom: 36px; }
.about-game { max-width: 900px; margin: 0 auto; width: 100%; }

.about-game-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.about-game-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}
.about-game-progress { flex: 1; max-width: 520px; }
.agp-head {
  display: flex; align-items: baseline; justify-content: flex-end;
  gap: 16px; margin-bottom: 10px;
}
.agp-stage {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.agp-count {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-500);
}
.agp-count strong {
  font-family: var(--font-display);
  font-size: 15px; color: var(--gold-dark);
  margin-right: 2px;
}
[data-theme="dark"] .agp-count strong { color: var(--gold); }
.agp-track {
  height: 10px; border-radius: 999px;
  background: rgba(13, 27, 53, 0.08);
  overflow: visible;
  box-shadow: inset 0 1px 2px rgba(13,27,53,0.10);
}
[data-theme="dark"] .agp-track { background: rgba(255,255,255,0.08); }
.agp-bar {
  position: relative;
  height: 100%; border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, #E8B530 0%, var(--gold) 45%, var(--gold-dark) 100%);
  transition: width 640ms cubic-bezier(.34,1.2,.5,1);
  box-shadow: 0 0 12px -2px rgba(196,146,42,0.5);
}
.agp-spark {
  position: absolute; top: 50%; right: 0;
  width: 16px; height: 16px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196,146,42,0.35), 0 0 14px 2px rgba(232,181,48,0.7);
}
.agp-done {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-dark);
  animation: agp-pop 420ms cubic-bezier(.34,1.56,.5,1);
}
.agp-done svg {
  background: var(--gold); color: #fff;
  border-radius: 50%; padding: 3px;
  width: 20px; height: 20px;
}
[data-theme="dark"] .agp-done { color: var(--gold); }
@keyframes agp-pop {
  from { opacity: 0; transform: translateY(6px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .agp-bar { animation: none; }
}

.about-game-stage {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 20px;
  align-items: start;
}
.about-game-arrow {
  align-self: start;
  margin-top: 234px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--paper-50);
  border: 1px solid rgba(13, 27, 53, 0.10);
  color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 220ms cubic-bezier(.2,.7,.2,1);
}
.about-game-arrow:hover:not(:disabled) {
  background: var(--gold); color: #fff; border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(196,146,42,0.5);
}
.about-game-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
[data-theme="dark"] .about-game-arrow { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.10); }

.about-game-card .about-block-body p:last-child { margin-bottom: 0; }
.about-game-card .about-criteria { margin-bottom: 4px; }
  border: 1px solid rgba(13, 27, 53, 0.08);
  border-radius: 22px;
  padding: 44px 48px;
  position: relative;
  height: 520px;
  overflow-y: auto;
  box-shadow: 0 1px 2px rgba(13,27,53,0.04), 0 24px 50px -28px rgba(13,27,53,0.28);
  animation: none;
}
[data-theme="dark"] .about-game-card { background: #131B33; border-color: rgba(255,255,255,0.07); }
@keyframes about-card-in {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

.about-game-track {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
}
.agt-node {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 22px;
}
/* connecting line between nodes */
.agt-node::before {
  content: "";
  position: absolute;
  top: 50%; left: -50%; right: 50%;
  height: 2px;
  background: rgba(13,27,53,0.12);
  transform: translateY(-50%);
  transition: background 320ms var(--ease-out);
}
.agt-node:first-child::before { display: none; }
.agt-node.seen::before { background: var(--gold); }
[data-theme="dark"] .agt-node::before { background: rgba(255,255,255,0.12); }
[data-theme="dark"] .agt-node.seen::before { background: var(--gold); }

.agt-dot {
  position: relative; z-index: 1;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper-50);
  border: 2px solid rgba(13,27,53,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 280ms cubic-bezier(.34,1.4,.5,1);
}
.agt-check { opacity: 0; transform: scale(0.4); transition: all 240ms var(--ease-out); }
.agt-node.seen .agt-dot { background: var(--gold); border-color: var(--gold); }
.agt-node.seen .agt-check { opacity: 1; transform: scale(1); }
.agt-node:hover .agt-dot { border-color: var(--gold); transform: scale(1.15); }
.agt-node.active .agt-dot {
  width: 26px; height: 26px;
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(196,146,42,0.18);
  transform: none;
}
.agt-node.active .agt-check { opacity: 1; transform: scale(1.1); }
[data-theme="dark"] .agt-dot { background: #131B33; border-color: rgba(255,255,255,0.20); }

.agt-tip {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  font-size: 12px; font-weight: 600;
  color: var(--ink-900);
  background: var(--paper-50);
  border: 1px solid rgba(13,27,53,0.10);
  padding: 6px 12px; border-radius: 999px;
  box-shadow: var(--shadow-card);
  opacity: 0; pointer-events: none;
  transition: all 220ms var(--ease-out);
}
.agt-node:hover .agt-tip { opacity: 1; transform: translateX(-50%) translateY(0); }
[data-theme="dark"] .agt-tip { background: #131B33; border-color: rgba(255,255,255,0.12); color: var(--ink-900); }

@media (max-width: 720px) {
  .about-game-track { gap: 0; }
  .agt-node { padding: 0 14px; }
  .agt-tip { display: none; }
}

@media (max-width: 720px) {
  .about-game-stage { grid-template-columns: 1fr; }
  .about-game-arrow { display: none; }
  .about-game-card { padding: 32px 24px; height: 520px; }
  .about-game-top { flex-direction: column; align-items: stretch; gap: 14px; }
  .about-game-progress { max-width: none; }
}


/* ====================================================
   FAQ — cinematic intro (beam → ball → abyss → blue flood) + accordion
   ==================================================== */
.faq-cine {
  position: relative;
  height: 220vh;
  background: var(--paper-50);
}
.faq-pin {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Cinematic stage */
.faq-stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
}
.faq-beam-wrap {
  position: relative;
  width: min(680px, 80vw);
  height: 320px;
}
.faq-beam {
  position: absolute; top: 110px; left: 0; right: 0;
  transform-origin: left center;
}
.faq-beam-line {
  display: block;
  height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  box-shadow: 0 6px 18px -8px rgba(13,27,53,0.4);
}
.faq-ball {
  position: absolute; top: -26px;
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #E8C56A, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 6px 16px -4px rgba(196,146,42,0.6);
  will-change: transform, left;
}
.faq-abyss {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 220px; height: 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(13,27,53,0.18), transparent 70%);
}
.faq-cine-hint {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-400);
  animation: faq-hint 2s ease-in-out infinite;
}
@keyframes faq-hint { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* Blue flood panel with FAQ title */
.faq-flood {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  will-change: clip-path;
}
.faq-flood-head { text-align: center; padding: 0 24px; }
.faq-flood-head .eyebrow { justify-content: center; color: var(--gold); }
.faq-flood-head .eyebrow::before { background: var(--gold); }
.faq-flood-head .section-h { color: var(--paper-50); margin-top: 16px; }
.faq-flood-head .section-h em {
  background: linear-gradient(180deg, transparent 64%, var(--gold) 64%, var(--gold) 92%, transparent 92%);
}

/* FAQ accordion section (blue, normal scroll) */
.faq-plain {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.faq-plain .section-head.center { margin-bottom: 28px; }
.faq-plain .eyebrow { color: var(--gold); }
.faq-plain .eyebrow::before { background: var(--gold); }
.faq-plain .section-h {
  color: var(--paper-50);
  max-width: 820px;
  margin-left: auto; margin-right: auto;
  text-align: center;
  text-wrap: balance;
}
.faq-plain .section-h em {
  background: linear-gradient(180deg, transparent 64%, var(--gold) 64%, var(--gold) 92%, transparent 92%);
}
.faq-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deep) 100%);
  padding: 8px 32px 110px;
}

.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out), border-color 240ms, background 240ms;
}
.faq-item.is-open { background: rgba(255,255,255,0.08); border-color: rgba(196,146,42,0.45); }
.faq-item:hover { background: #FFFFFF; border-color: #FFFFFF; }
.faq-item:hover .faq-q-text,
.faq-item:hover .faq-q-num { color: var(--navy-deep); }
.faq-item:hover .faq-q-icon { background: rgba(13,27,53,0.10); color: var(--navy-deep); }
.faq-item:hover .faq-a-inner p,
.faq-item:hover .faq-a-inner .faq-ul,
.faq-item:hover .faq-a-inner .faq-ol { color: rgba(13,27,53,0.78); }
.faq-item:hover .faq-a-inner strong { color: var(--navy-deep); }
.faq-q {
  width: 100%;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center;
  padding: 18px 22px;
  background: none; border: none; cursor: pointer; text-align: left;
  color: var(--paper-50);
}
.faq-q-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 0.10em;
  color: var(--gold);
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--paper-50);
}
.faq-q-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper-50);
  transition: transform 320ms var(--ease-out), background 240ms;
}
.faq-item.is-open .faq-q-icon { transform: rotate(180deg); background: var(--gold); color: var(--navy-deep); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease-out);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  margin: 0; padding: 0 22px 22px 60px;
  font-size: 15px; line-height: 1.6;
  color: rgba(246,244,239,0.78);
}
.faq-a-inner .faq-ul, .faq-a-inner .faq-ol {
  margin: 0; padding: 0 22px 22px 78px;
  color: rgba(246,244,239,0.78);
  font-size: 15px; line-height: 1.6;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-a-inner .faq-ul li, .faq-a-inner .faq-ol li { margin: 0; }
.faq-a-inner strong { color: var(--paper-50); font-weight: 600; }
.faq-a-inner .faq-ol > li { list-style: decimal; }
.faq-a-inner .faq-ul > li { list-style: disc; }
.faq-a-inner .faq-ol, .faq-a-inner .faq-ul { padding-left: 96px; }

@media (max-width: 720px) {
  .faq-cine { height: 150vh; }
  .faq-q { grid-template-columns: auto 1fr auto; gap: 10px; padding: 16px; }
  .faq-q-text { font-size: 15px; }
  .faq-a-inner p { padding-left: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-cine-hint { animation: none; }
}

/* FAQ inline CTA button */
.faq-cta-wrap { padding: 14px 22px 6px 60px !important; margin-top: 4px; }
.faq-cta {
  display: inline-flex !important;
  align-items: center; gap: 12px;
  text-decoration: none;
  padding: 14px 16px 14px 26px !important;
  background: linear-gradient(135deg, #E8C56A 0%, var(--gold) 48%, var(--gold-dark) 100%) !important;
  color: var(--navy-deep) !important;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: none !important;
  box-shadow: 0 10px 26px -10px rgba(196,146,42,0.6), inset 0 1px 0 rgba(255,255,255,0.45);
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms;
}
.faq-cta .chip {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-deep); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(196,146,42,0.75), inset 0 1px 0 rgba(255,255,255,0.5);
}
.faq-cta:hover .chip { transform: translateX(4px); }
.faq-cta:active { transform: translateY(0) scale(0.98); }
@media (max-width: 720px) { .faq-cta-wrap { padding-left: 16px !important; } }


/* Profil-Vollvorschau — Gültigkeits-Footer */
.pf-validity {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px; padding: 18px 0 4px;
  border-top: 1px solid rgba(13,27,53,0.08);
  font-size: 14px; color: var(--ink-600);
}
.pf-validity-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #3B8B5A;
  box-shadow: 0 0 0 4px rgba(59,139,90,0.16);
  flex-shrink: 0;
}
.pf-validity-text strong { color: var(--ink-900); font-weight: 700; }
.pf-validity-badge {
  margin-left: auto;
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: #2E7D4F; background: rgba(59,139,90,0.12);
  padding: 5px 12px; border-radius: 999px;
}


/* ====================================================
   HERO — cinematic intro reveal
   ==================================================== */
.hero-cinematic { position: relative; }

/* Gold curtain wipes up to unveil the hero */
.hero-curtain {
  position: absolute; inset: 0;
  z-index: 20;
  background: linear-gradient(180deg, #0D1B35 0%, #14274E 55%, #C4922A 100%);
  transform-origin: top center;
  animation: hero-curtain-up 1.15s cubic-bezier(.76,0,.24,1) 0.15s forwards;
  pointer-events: none;
}
@keyframes hero-curtain-up {
  0%   { transform: scaleY(1); opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; }
}

/* A bright sweep that crosses the hero right after the curtain lifts */
.hero-shimmer {
  position: absolute; inset: 0;
  z-index: 19;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(232,197,106,0.55) 50%, transparent 65%);
  background-size: 250% 100%;
  background-position: 150% 0;
  opacity: 0;
  animation: hero-sweep 1s ease-out 1.15s forwards;
}
@keyframes hero-sweep {
  0%   { opacity: 0; background-position: 150% 0; }
  30%  { opacity: 1; }
  100% { opacity: 0; background-position: -120% 0; }
}

/* Hero content scales up subtly from behind the curtain */
.hero-cinematic .hero-inner {
  animation: hero-rise 1.2s cubic-bezier(.2,.7,.2,1) 0.5s both;
}
@keyframes hero-rise {
  0%   { transform: translateY(48px) scale(0.97); opacity: 0; }
  100% { transform: none; opacity: 1; }
}

/* Each hero word now drops + blurs in (more dramatic than the old fade-up) */
.hero-cinematic .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  filter: blur(8px);
  animation: hero-word-pop 0.7s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes hero-word-pop {
  0%   { opacity: 0; transform: translateY(40px) rotate(3deg); filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}

/* The gold-underlined word gets an extra glow pulse once it lands */
.hero-cinematic h1 em .hero-word { position: relative; }
.hero-cinematic h1 em::after {
  animation:
    underline-grow 0.6s cubic-bezier(.2,.7,.2,1) 1.0s both,
    underline-glow 1.6s ease-in-out 1.6s;
}
@keyframes underline-grow {
  0%   { transform: scaleX(0); transform-origin: left center; }
  100% { transform: scaleX(1); transform-origin: left center; }
}
@keyframes underline-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(196,146,42,0); }
  50%      { box-shadow: 0 6px 26px rgba(196,146,42,0.55); }
}

/* Mockup floats up dramatically + soft glow flares */
.hero-cinematic .hero-mockup-wrap {
  animation: hero-mockup-in 1.3s cubic-bezier(.2,.8,.2,1) 1.9s both;
}
@keyframes hero-mockup-in {
  0%   { opacity: 0; transform: translateY(90px) scale(0.92); }
  100% { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-curtain, .hero-shimmer { display: none; }
  .hero-cinematic .hero-inner,
  .hero-cinematic .hero-word,
  .hero-cinematic .hero-mockup-wrap,
  .hero-cinematic h1 em::after { animation: none; opacity: 1; transform: none; filter: none; }
}


/* ====================================================
   INTRO VIDEO OVERLAY
   ==================================================== */
.intro-overlay {
  position: fixed; inset: 0;
  z-index: 9999;
  background: #0D1B35;
  display: flex; align-items: center; justify-content: center;
  animation: intro-fade-out 0.6s ease 0s 1 normal both;
  animation-play-state: paused;
}
.intro-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-skip {
  position: absolute; bottom: 32px; right: 32px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600; font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.intro-skip:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
@keyframes intro-fade-out { to { opacity: 0; } }
@media (max-width: 720px) {
  .intro-skip { bottom: 20px; right: 20px; padding: 10px 18px; }
}


/* Vertrauen — Textblöcke beider Karten auf gleicher Höhe (Foto-Bereich füllt den Rest) */
.vertrauen-copy { align-items: stretch !important; }
.vertrauen-item {
  display: flex !important;
  flex-direction: column !important;
  grid-template-areas: none !important;
  grid-template-columns: none !important;
  height: 100%;
}
.vertrauen-item .vertrauen-photo { flex: 1 1 auto; }
.vertrauen-item .vertrauen-body { flex: 0 0 auto; }


/* Vertrauen — Textblöcke exakt gleiche Höhe → Überschriften auf einer Linie */
.vertrauen-item .vertrauen-body {
  flex: 0 0 auto;
  min-height: 210px;
  justify-content: flex-start;
}
@media (max-width: 880px) {
  .vertrauen-item .vertrauen-body { min-height: 0; }
}


/* ====================================================
   PRE-CHECK QUIZ (Bestattungshaus)
   ==================================================== */
.pcq {
  max-width: 760px; margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(13,27,53,0.08);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: 0 1px 2px rgba(13,27,53,0.04), 0 24px 56px -28px rgba(13,27,53,0.20);
}
[data-theme="dark"] .pcq { background: #131B33; border-color: rgba(255,255,255,0.07); }

/* Progress */
.pcq-progress { margin-bottom: 28px; }
.pcq-progress-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.pcq-step-label { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-900); letter-spacing: -0.01em; }
.pcq-step-count { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-500); }
.pcq-track { height: 8px; border-radius: 999px; background: rgba(13,27,53,0.08); overflow: hidden; }
[data-theme="dark"] .pcq-track { background: rgba(255,255,255,0.10); }
.pcq-bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #E8B530, var(--gold-dark)); transition: width 480ms cubic-bezier(.2,.7,.2,1); }

/* Intro */
.pcq-intro { text-align: center; padding: 8px 0; }
.pcq-intro-seal img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 18px; display: block; }
.pcq-intro h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 12px; color: var(--ink-900); }
.pcq-intro p { font-size: 16px; line-height: 1.6; color: var(--ink-600); max-width: 520px; margin: 0 auto 24px; }
.pcq-intro p strong { color: var(--ink-900); font-weight: 600; }
.pcq-tiers { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.pcq-tier {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--paper-50); border: 1px solid rgba(13,27,53,0.08);
  font-size: 13px; color: var(--ink-700);
}
.pcq-tier strong { color: var(--ink-900); font-weight: 700; }
.pcq-tier span { color: var(--ink-500); font-variant-numeric: tabular-nums; }
.pcq-tier-dot { width: 10px; height: 10px; border-radius: 50%; }
[data-theme="dark"] .pcq-tier { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.pcq-intro-note { font-size: 13px; color: var(--ink-500); margin-top: 16px; }

/* Step */
.pcq-step { animation: pcq-fade 0.32s ease-out; }
@keyframes pcq-fade { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.pcq-step-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.pcq-step-icon {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale); color: var(--gold-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
[data-theme="dark"] .pcq-step-icon { background: rgba(196,146,42,0.18); color: var(--gold); }
.pcq-step-head h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 2px; color: var(--ink-900); }
.pcq-step-head p { font-size: 14px; color: var(--ink-500); margin: 0; }

.pcq-fields { display: flex; flex-direction: column; gap: 14px; }
.pcq-text { display: flex; flex-direction: column; gap: 6px; }
.pcq-text-label { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.pcq-text-label i { color: var(--gold-dark); font-style: normal; }
.pcq-text input {
  padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(13,27,53,0.12); background: var(--paper-50);
  font-family: inherit; font-size: 15px; color: var(--ink-900); outline: none;
  transition: border-color 200ms, box-shadow 200ms, background 200ms;
}
.pcq-text input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(196,146,42,0.16); }
[data-theme="dark"] .pcq-text input { background: rgba(255,255,255,0.04); color: var(--ink-900); }

.pcq-yn {
  background: var(--paper-50);
  border: 1px solid rgba(13,27,53,0.08);
  border-radius: 14px; padding: 18px 20px;
}
[data-theme="dark"] .pcq-yn { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.pcq-yn-q { display: flex; align-items: flex-start; gap: 10px; justify-content: space-between; font-size: 15px; line-height: 1.45; font-weight: 500; color: var(--ink-900); margin-bottom: 14px; }
.pcq-pts { flex-shrink: 0; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--gold-dark); background: var(--gold-pale); padding: 3px 9px; border-radius: 999px; }
[data-theme="dark"] .pcq-pts { background: rgba(196,146,42,0.18); color: var(--gold); }
.pcq-yn-opts { display: flex; gap: 10px; }
.pcq-opt {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 10px;
  border: 1.5px solid rgba(13,27,53,0.12); background: #fff;
  font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink-700);
  cursor: pointer; transition: all 180ms cubic-bezier(.2,.7,.2,1);
}
[data-theme="dark"] .pcq-opt { background: rgba(255,255,255,0.03); }
.pcq-opt:hover { border-color: rgba(196,146,42,0.5); }
.pcq-opt.sel.yes { background: var(--gold); border-color: var(--gold); color: #fff; }
.pcq-opt.sel.no { background: var(--navy); border-color: var(--navy); color: #fff; }

.pcq-error { margin-top: 16px; font-size: 14px; color: #DC2626; font-weight: 500; text-align: center; }

.pcq-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }

/* Result */
.pcq-result { text-align: center; padding: 8px 0; animation: pcq-fade 0.4s ease-out; }
.pcq-result-badge { position: relative; display: inline-block; margin-bottom: 8px; }
.pcq-result-badge img { width: 150px; height: 150px; object-fit: contain; }
.pcq-result-tier {
  display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em; margin-top: 6px;
}
.pcq-result-score { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 8px 0 6px; }
.pcq-result-num { font-family: var(--font-display); font-size: 64px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--ink-900); }
.pcq-result-max { font-size: 16px; color: var(--ink-500); font-weight: 500; }
.pcq-result-desc { font-size: 16px; color: var(--ink-600); max-width: 440px; margin: 0 auto 28px; }
.pcq-result-form {
  max-width: 420px; margin: 0 auto;
  background: var(--paper-50); border: 1px solid rgba(13,27,53,0.08);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
[data-theme="dark"] .pcq-result-form { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.pcq-result-form label { display: flex; flex-direction: column; gap: 8px; text-align: left; font-size: 13px; font-weight: 600; color: var(--ink-700); }
.pcq-result-form input {
  padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(13,27,53,0.12); background: #fff;
  font-family: inherit; font-size: 15px; color: var(--ink-900); outline: none;
  transition: border-color 200ms, box-shadow 200ms;
}
.pcq-result-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(196,146,42,0.16); }
[data-theme="dark"] .pcq-result-form input { background: rgba(255,255,255,0.06); color: var(--ink-900); }
.pcq-restart { margin-top: 18px; background: none; border: none; color: var(--ink-500); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.pcq-restart:hover { color: var(--gold-dark); }

/* Sent */
.pcq-sent { text-align: center; padding: 16px 0; animation: pcq-fade 0.4s ease-out; }
.pcq-sent img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 18px; display: block; }
.pcq-sent h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 10px; color: var(--ink-900); }
.pcq-sent p { font-size: 16px; line-height: 1.6; color: var(--ink-600); max-width: 460px; margin: 0 auto; }
.pcq-sent p strong { color: var(--ink-900); font-weight: 600; }

@media (max-width: 720px) {
  .pcq { padding: 28px 20px; }
  .pcq-result-num { font-size: 52px; }
  .pcq-nav .btn-outline, .pcq-nav .btn-primary { padding-left: 16px; padding-right: 16px; }
}
