 



:root{
  --bg: #0b0d12;
  --panel: rgba(255,255,255,0.04);
  --text: rgba(255,255,255,0.92);
  --blue: #4A90E2;
  --muted: rgba(255,255,255,0.68);

  --hair: rgba(255,255,255,0.10);
  --cta: rgba(255,255,255,0.92);
  --ctaText: #0b0d12;

  --max: 1080px;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(0,0,0,0.45);

  /* Button accents */
  --btnC1: #4DA3FF;
  --btnC2: #7C3AED;
  --btnC3: #22C55E;
}

/* ===============================
   Base
   =============================== */
*{ box-sizing: border-box; }
html, body{ height: 100%; overflow-x: hidden; }

body{
  margin: 0;
  background:
    radial-gradient(1200px 600px at 30% -10%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,255,255,0.05), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
.wrap{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

::selection{ background: rgba(255,255,255,0.16); }

/* Headline font */
h1, h2, h3, .kicker{
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===============================
   Typography
   =============================== */
.kicker{
  color: var(--muted);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

h1{
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.0;
  margin: 0 0 18px 0;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h2{
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.15;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

p{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 16px;
}

.lead{
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 62ch;
}

/* ===============================
   Layout: Sections
   =============================== */
section{
  padding: 80px 0;
  border-bottom: none;
}
section:last-of-type{ border-bottom: 0; }



/* ===============================
   LANGUAGE SWITCH – FLAG ICONS (SVG)
   =============================== */

.langSwitch{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Slash ausblenden */
.langSep{ display:none; }

/* Button Grundform */
.langBtn{
  width: 34px;
  height: 24px;
  padding: 0;
  border-radius: 6px;

  border: 1px solid rgba(255,255,255,0.18);
  background-color: rgba(255,255,255,0.06);

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  cursor: pointer;
  opacity: 0.65;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;

  /* Text ausblenden */
  font-size: 0;
}

/* Deutschland – Schwarz / Rot / GOLD (klar & kontrastreich) */
.langBtn[data-lang="de"]{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'>\
<rect width='3' height='0.6667' y='0' fill='%23000000'/>\
<rect width='3' height='0.6667' y='0.6667' fill='%23dd0000'/>\
<rect width='3' height='0.6667' y='1.3333' fill='%23ffcc00'/>\
</svg>");
  background-size: cover;
}

/* United Kingdom – Union Jack (korrekt & ruhig) */
.langBtn[data-lang="en"]{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'>\
<rect width='60' height='30' fill='%23012169'/>\
<polygon points='0,0 7,0 60,23 60,30 53,30 0,7' fill='%23ffffff'/>\
<polygon points='60,0 53,0 0,23 0,30 7,30 60,7' fill='%23ffffff'/>\
<polygon points='0,0 5,0 60,25 60,30 55,30 0,5' fill='%23c8102e'/>\
<polygon points='60,0 55,0 0,25 0,30 5,30 60,5' fill='%23c8102e'/>\
<rect x='25' width='10' height='30' fill='%23ffffff'/>\
<rect y='10' width='60' height='10' fill='%23ffffff'/>\
<rect x='27' width='6' height='30' fill='%23c8102e'/>\
<rect y='12' width='60' height='6' fill='%23c8102e'/>\
</svg>");
  background-size: cover;
}


.langBtn:hover{
  opacity: 0.95;
  transform: translateY(-1px);
}

.langBtn.isActive{
  opacity: 1;
  border-color: rgba(0,208,255,0.45);
  box-shadow: 0 0 0 4px rgba(0,208,255,0.12);
}


/* ===============================
   MOBILE ORDER: Logo → Flags → Burger
   =============================== */
@media (max-width: 860px){
  .topbar{
    display: flex;
    align-items: center;
  }

  .brand{ order: 1; }

  .langSwitch{
    order: 2;
    margin-left: auto;
    margin-right: 10px;
  }

  .navToggle{ order: 3; }

  .mainNav{ order: 4; }
}




/* ===============================
   Header / Nav (NICHT auf Legal Pages)
   =============================== */
body:not(.legalPage) header{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11,13,18,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}


.topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  min-height: 72px;
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand .logo{
  height: 100px; /* war 200px */
  width: auto;
  display: block;
}

.brand .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: inline-block;
  transform: translateY(-2px);
}

/* Nav */
.mainNav{
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  flex-wrap: nowrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.70);
}

.mainNav .navGroup{
  display: flex;
  align-items: center;
  gap: 12px;
}

.mainNav .navDivider{
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.14);
  margin: 0 6px;
}

.mainNav a{
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.70);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mainNav a:hover{
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
}

.mainNav a.is-active{
  background: rgba(74,144,226,0.12);
  border-color: rgba(74,144,226,0.28);
  color: rgba(255,255,255,0.95);
  box-shadow: 0 0 18px rgba(74,144,226,0.18);
}

/* sicherstellen: kein Underline-After */
.mainNav a::after{ display: none; }

/* ===============================
   Mobile Nav (Burger)
   =============================== */

/* Burger: default aus (Desktop) */
.navToggle{
  display: none;
  flex-direction: column;          /* ← DAS fehlte */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  padding: 0;
}


.navToggle:hover{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.navToggleBar{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
}

.navToggleBar + .navToggleBar{ margin-top: 4px; }

/* Breakpoint: ab hier Burger + Dropdown-Menü */
@media (max-width: 1024px){

  /* Burger sichtbar */
  .navToggle{ display: inline-flex; }

  /* Nav als Dropdown Panel */
  .topbar{ position: relative; }

  .mainNav{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(11,13,18,0.92);
    backdrop-filter: blur(12px);

    /* default: zu */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    white-space: normal;
  }

  .mainNav .navGroup{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .mainNav a{
    width: 100%;
    padding: 12px 12px;
  }

  /* offen-zustand (kommt im JS Schritt) */
  header.is-nav-open .mainNav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}


/* ===============================
   Buttons (GLOBAL)
   =============================== */
.btn{
  --r: 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 20px 28px;
  min-height: 60px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.12);

  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color: rgba(255,255,255,0.92);
  text-decoration: none;

  font-weight: 800;
  font-size: 19px;
  letter-spacing: .03em;
  user-select: none;

  transform: translateZ(0);
  overflow: hidden;
  isolation: isolate;

  box-shadow:
    0 0 0 1px rgba(77,163,255,.12),
    0 18px 45px rgba(0,0,0,.45);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
}
button,
.btn,
.btnlead{
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


.btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: calc(var(--r) + 2px);
  background: conic-gradient(from 180deg,
    rgba(77,163,255,.0),
    rgba(77,163,255,.55),
    rgba(124,58,237,.55),
    rgba(34,197,94,.40),
    rgba(77,163,255,.0)
  );
  filter: blur(10px);
  opacity: .55;
  z-index: -2;
  animation: btnSpin 2.8s linear infinite;
}

.btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--r);
  background:
    radial-gradient(600px 120px at 30% 0%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(500px 140px at 80% 110%, rgba(255,255,255,.10), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.btn .btnScan{
  position: absolute;
  left: -20%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77,163,255,.22), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(77,163,255,.32);
  box-shadow:
    0 0 0 1px rgba(77,163,255,.18),
    0 22px 60px rgba(0,0,0,.55);
}
.btn:hover .btnScan{
  opacity: 1;
  animation: btnScan 1.2s ease-in-out infinite;
}
.btn:active{ transform: translateY(0px) scale(.99); }

.btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(77,163,255,.45),
    0 0 0 6px rgba(77,163,255,.15),
    0 22px 60px rgba(0,0,0,.55);
}

.btn.primary{
  border-color: rgba(77,163,255,.26);
  box-shadow:
    0 0 0 1px rgba(77,163,255,.18),
    0 22px 60px rgba(0,0,0,.55),
    0 0 36px rgba(77,163,255,.18);
}
.btn.primary:hover{
  filter: brightness(1.03);
  box-shadow:
    0 0 0 1px rgba(77,163,255,.22),
    0 26px 84px rgba(0,0,0,.72),
    0 0 60px rgba(77,163,255,.28);
}

.btnIcon{
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  transform: translateY(-1px);
}

@keyframes btnSpin{ to{ transform: rotate(360deg); } }
@keyframes btnScan{
  0%{ transform: translateX(-120%) skewX(-18deg); }
  100%{ transform: translateX(320%) skewX(-18deg); }
}

@media (prefers-reduced-motion: reduce){
  .btn::before{ animation: none; }
  .btn:hover .btnScan{ animation: none; }
  .btn{ transition: none; }
}

/* ===============================
   LEAD FORMULAR – MOROS (Premium UI)
   FULLSCREEN (Breite + Höhe) – Background behalten
   Text/Content bleibt zentriert im Screen
================================ */

/* Modal Grundgerüst */
.modal{
  position: fixed;
  inset: 0;
  display: none;              /* wird per JS auf flex gesetzt */
  align-items: stretch;       /* fullscreen */
  justify-content: stretch;   /* fullscreen */
  padding: 0;                 /* keine Ränder */
  z-index: 9999;
}

.modal.isOpen{ display: flex; }

.modalBackdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Dialog = voller Screen, behält deine Background-Effekte */
.modalDialog{
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;

  border-radius: 0;
  overflow: auto;

  /* fullscreen: keine card border/shadow nötig */
  border: none;
  box-shadow: none;

  /* deine Backgrounds bleiben */
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(74,144,226,0.18), transparent 60%),
    radial-gradient(700px 420px at 100% 120%, rgba(140,82,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(11,13,18,0.92) 0%, rgba(11,13,18,0.98) 100%);

  /* optional: iOS safe-area */
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
           env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* dezentes Grid-Overlay bleibt */
.modalDialog::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 0;
  pointer-events:none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.035) 0px,
    rgba(255,255,255,0.035) 1px,
    transparent 1px,
    transparent 120px
  );
  opacity: 0.35;
}

/* Inhalt über dem Overlay */
.modalDialog > *{
  position: relative;
  z-index: 1;
}

/* Content bleibt zentriert (wie vorher im Dialog), aber fullscreen drum herum */
.modalState{
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 26px 22px;
}

/* Close Button bleibt oben rechts im Screen */
.modalClose{
  position: fixed;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.90);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10001;
}

.modalClose:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.modalClose span{
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}



/* dezentes Grid-Overlay */
.modalDialog::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 22px;
  pointer-events:none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.035) 0px,
    rgba(255,255,255,0.035) 1px,
    transparent 1px,
    transparent 120px
  );
  opacity: 0.35;
}

/* Inhalt über dem Overlay */
.modalDialog > *{
  position: relative;
  z-index: 1;
}

.modalState{
  padding: 26px 26px 22px;
}

.modalState .kicker{
  margin: 0 0 10px;
  opacity: 0.85;
}

.modalState h3{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.modalState .lead{
  margin: 0 0 18px;
  opacity: 0.86;
  max-width: 70ch;
}

/* Close Button */
.modalClose{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.90);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.modalClose:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.modalClose span{
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Form Layout */
.formGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
  margin-top: 14px;
}

.formField{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.formFieldFull{
  grid-column: 1 / -1;
}

.formField label{
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.86);
}

.req{
  color: rgba(255,255,255,0.70);
  font-weight: 600;
}

/* Inputs */
.formField input,
.formField select,
.formField textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  padding: 12px 12px;
  outline: none;
}

.formField textarea{
  resize: vertical;
  min-height: 92px;
}

.formField input::placeholder,
.formField textarea::placeholder{
  color: rgba(255,255,255,0.55);
}

.formField input:focus,
.formField select:focus,
.formField textarea:focus{
  border-color: rgba(74,144,226,0.35);
  box-shadow: 0 0 0 4px rgba(74,144,226,0.14);
}

/* Hints */
.formHint{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,0.68);
}

/* Checkbox / List */
.checkList{
  display: grid;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.checkItem{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
}

.checkItem input{
  margin-top: 3px;
}

.checkItem.consent{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

/* Actions */
.formActions{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  gap: 10px;
}

.formSub{
  font-size: 12px;
  color: rgba(255,255,255,0.68);
}

.formError{
  font-size: 13px;
  color: rgba(255,110,110,0.95);
  min-height: 18px;
}

/* Responsive */
@media (max-width: 820px){
  .modalState{ padding: 22px 18px 18px; }
  .formGrid{ grid-template-columns: 1fr; }
}

/* Modal Scroll Lock */
html.modalScrollLock,
body.modalScrollLock{
  overflow: hidden;
}


/* ===============================
   FINAL – CENTER FIX (einmalig, überschreibt alles)
================================ */

.modalDialog{
  display: flex;
  align-items: center;         /* Y */
  justify-content: center;     /* X */
  overflow: hidden;            /* verhindert “Scroll verschiebt Center” */
}

.modalState{
  width: min(860px, calc(100% - 32px));
  margin: 0;                   /* wichtig: nicht auto, flex übernimmt Center */
}

/* Close Button IMMER oben rechts am Screen */
.modalClose{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10001;
}



/* ===============================
   TYPEFORM-STYLE (Wizard Screens)
   Fix: nur 1 Screen sichtbar
================================ */

.tfScreens{ margin-top: 14px; }

.tfScreen{
  display: none;               /* <- das ist der eigentliche Fix */
  padding-top: 6px;
}

.tfScreen.isActive{
  display: block;
}

/* Optional: Nav Buttons hübscher untereinander auf mobile */
.tfNav{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.tfError{
  margin-left: auto;
  font-size: 13px;
  color: rgba(255,110,110,0.95);
  min-height: 18px;
}

/* ===============================
   TYPEFORM WIZARD – Clean UI (override)
   (am Ende lassen, überschreibt vorherige Styles)
================================ */

/* Dialog bleibt FULLSCREEN (wichtig fürs Zentrieren) */
.modalDialog{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nur der Content ist “card-breit” */
.modalState{
  width: min(820px, calc(100% - 32px));
  padding: 28px 30px 22px;
  margin: 0;
}

/* Progress + Step */
.tfTop{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 18px;
}

.tfProgress{
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.tfBar{
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(74,144,226,0.95), rgba(0,208,255,0.90));
}

.tfStepText{
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
}

/* Screen */
.tfScreen{ padding-top: 6px; }

.tfQ .tfKicker{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.tfScreen h3{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.tfHint{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.70);
  max-width: 70ch;
}

/* Answer */
.tfA{
  margin-top: 18px;
  max-width: 520px;
}

.tfA input,
.tfA select,
.tfA textarea{
  width: 100%;
  font-size: 18px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  outline: none;
}

.tfA textarea{ min-height: 120px; }

.tfA input::placeholder,
.tfA textarea::placeholder{
  color: rgba(255,255,255,0.45);
}

.tfA input:focus,
.tfA select:focus,
.tfA textarea:focus{
  border-color: rgba(0,208,255,0.45);
  box-shadow: 0 0 0 5px rgba(0,208,255,0.14);
}

/* Checks */
.tfChecks{
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  max-width: 520px;
}

/* Bottom Nav */
.tfNav{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tfNav .btn{
  padding: 12px 16px;
  border-radius: 14px;
}

.tfNav .btn.primary{
  padding: 12px 18px;
}

/* Error */
.tfError{
  margin-left: auto;
  font-size: 13px;
  color: rgba(255,110,110,0.95);
  min-height: 18px;
}

/* Mobile */
@media (max-width: 720px){
  .modalState{ padding: 22px 18px 18px; }
  .tfScreen h3{ font-size: 26px; }
  .tfA{ max-width: 100%; }
  .tfNav{ flex-wrap: wrap; }
  .tfError{ width: 100%; margin-left: 0; }
}


/* ===============================
   TYPEFORM – Choice Buttons
================================ */

.tfChoiceGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 520px;
}

.tfChoice{
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  padding: 14px 14px;
  cursor: pointer;
}

.tfChoice:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

.tfChoiceMain{
  display: block;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.tfChoiceSub{
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

.tfChoice.isSelected{
  border-color: rgba(0,208,255,0.55);
  box-shadow: 0 0 0 5px rgba(0,208,255,0.14);
  background: rgba(0,208,255,0.07);
}

@media (max-width: 720px){
  .tfChoiceGrid{
    grid-template-columns: 1fr;
  }
}


/* ===============================
   TYPEFORM – Multi Select Cards
================================ */

.tfMultiGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 520px;
}

.tfMulti{
  display: block;
  cursor: pointer;
}

.tfMulti input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tfMultiBox{
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 14px 14px;
  color: rgba(255,255,255,0.92);
  transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.tfMulti:hover .tfMultiBox{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

.tfMultiTitle{
  display: block;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
}


/* Bestätigung – Titelzeile mit Checkmark */
.tfMultiTitleRow{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Checkmark Icon (immer sichtbar) */
.tfAckIcon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  opacity: 0.95;
}

.tfAckIcon .iconify{
  font-size: 20px;
  color: rgba(0,208,255,0.92);
  filter: drop-shadow(0 0 10px rgba(0,208,255,0.22));
}

.tfMultiSub{
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

/* Checked State */
.tfMulti input:checked + .tfMultiBox{
  border-color: rgba(0,208,255,0.55);
  box-shadow: 0 0 0 5px rgba(0,208,255,0.14);
  background: rgba(0,208,255,0.07);
}

/* Optional: kleines Check-Icon rechts oben */
.tfMultiBox::after{
  content: "";
  position: absolute;
  opacity: 0;
}

@media (max-width: 720px){
  .tfMultiGrid{
    grid-template-columns: 1fr;
  }
}

/* Placeholder im Wizard – clean & lesbar */
.tfA textarea::placeholder,
.tfA input::placeholder{
  color: rgba(255,255,255,0.55);
}

/* optional: etwas weniger „grau matsch“ im textarea */
.tfA textarea{
  line-height: 1.45;
}




/* ===============================
   CTA BUTTON – .btnlead
   Einsatz: Formular-Overlay (Modal)
================================ */

/* Base */
.btnlead{
  --btn-bg-1: #4a90e2;
  --btn-bg-2: #6fb1ff;
  --btn-glow: rgba(111,177,255,0.45);

  appearance: none;
  border: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 22px;
  min-height: 52px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #ffffff;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      var(--btn-bg-1),
      var(--btn-bg-2)
    );

  box-shadow:
    0 10px 28px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 0 22px var(--btn-glow);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* Icon */
.btnlead .iconify{
  font-size: 18px;
  opacity: 0.9;
}

/* Hover */
.btnlead:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);

  box-shadow:
    0 14px 34px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.18) inset,
    0 0 32px var(--btn-glow);
}

/* Active / Click */
.btnlead:active{
  transform: translateY(0);
  filter: brightness(0.98);

  box-shadow:
    0 8px 18px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.10) inset;
}

/* Focus (Keyboard) */
.btnlead:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(111,177,255,0.55),
    0 10px 28px rgba(0,0,0,0.35);
}

/* Disabled */
.btnlead[disabled],
.btnlead:disabled{
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.2);
  box-shadow:
    0 6px 16px rgba(0,0,0,0.35);
}
/* ===============================
   ZURÜCK-BUTTON – minimal & eingebettet
   =============================== */

/* Container vorbereiten */
.tfNav{
  position: relative;
  padding-bottom: 8px;
}

/* Zurück-Button */
.btnlead[data-back]{
  position: absolute;
  right: 0;
  bottom: 0;

  padding: 6px 10px;
  min-height: 32px;

  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;

  border-radius: 10px;

  --btn-bg-1: rgba(255,255,255,0.05);
  --btn-bg-2: rgba(255,255,255,0.08);
  --btn-glow: transparent;

  color: rgba(255,255,255,0.65);

  box-shadow:
    0 4px 10px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06) inset;

  z-index: 1;
}

/* Icon kleiner & dezenter */
.btnlead[data-back] .iconify{
  font-size: 14px;
  opacity: 0.6;
}

/* Hover */
.btnlead[data-back]:hover{
  filter: brightness(1.05);
  color: rgba(255,255,255,0.85);
  box-shadow:
    0 6px 14px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.10) inset;
}

/* Nav-Container bekommt Reserve für Error */
.tfNav{
  position: relative;
  padding-bottom: 28px; /* Platz für Error-Text */
}

/* Error immer links, unter Buttons */
.tfError{
  margin-top: 8px;
  padding-right: 90px; /* Platz für Zurück-Button rechts */
}

/* Zurück-Button rechts unten, aber höher als Error */
.btnlead[data-back]{
  position: absolute;
  right: 0;
  bottom: 28px; /* sitzt ÜBER der Error-Zeile */

  padding: 6px 10px;
  min-height: 32px;

  font-size: 12.5px;
  font-weight: 500;

  border-radius: 10px;

  --btn-bg-1: rgba(255,255,255,0.05);
  --btn-bg-2: rgba(255,255,255,0.08);
  --btn-glow: transparent;

  color: rgba(255,255,255,0.65);

  box-shadow:
    0 4px 10px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}

.btnlead[data-back] .iconify{
  font-size: 14px;
  opacity: 0.6;
}


/* ===============================
   LEAD MODAL – Mobile Scroll Fix (nur Lead, keine Layout-Änderung)
   =============================== */

/* Nur wenn Lead-Modal offen ist: der Form-State darf scrollen */
#leadModal.isOpen .modalStateForm{
  max-height: calc(100dvh - 32px); /* bleibt optisch zentriert (dein 32px Rahmen) */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  /* Platz, damit unten nichts unter der Nav “klebt” */
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}



/* ===============================
   Blocks / Grids
   =============================== */
.twoCol{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.block{
  border: 1px solid var(--hair);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 22px;
}

.block h3{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.block p{ margin-bottom: 0; }

/* Lists */
.list{
  margin: 16px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.74);
  font-size: 15px;
}
.list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.bullet{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  margin-top: 7px;
  flex: 0 0 auto;
}

/* Steps */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.step{
  border: 1px solid var(--hair);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 20px;
}
.num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.03);
}
.step h3{ margin: 0 0 8px 0; font-size: 18px; }
.step p{ margin: 0; }

/* ===============================
   Hero
   =============================== */
.hero{
  position: relative;
  padding: 84px 0 76px;

  padding-bottom: 140px;



  overflow: hidden;
  min-height: 500px;
}

.hero > .wrap{
  position: relative;
  z-index: 3;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 75% 20%, rgba(74,144,226,0.18), transparent 55%),
    radial-gradient(700px 420px at 25% 70%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #0b0d12 0%, #0a0f1c 50%, #070a12 100%);
  z-index:0;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.028) 0px, rgba(255,255,255,0.028) 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 120px),
    radial-gradient(900px 500px at 30% 35%, rgba(0,0,0,0.16), transparent 60%),
    linear-gradient(180deg, rgba(11,13,18,0.0) 60%, rgba(11,13,18,0.55) 100%);
  pointer-events:none;
  z-index:2;
  opacity: 1.55;
}

.heroGrid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.heroCard{
  border: 1px solid var(--hair);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow:
    0 4px 18px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.02),
    inset 0 0 12px rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
}

.heroCard .miniTitle{
  font-weight: 600;
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
}
.heroCard ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}
.heroCard li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ctaRow{ display: flex; gap: 12px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.ctaHint{ font-size: 13px; color: rgba(255,255,255,0.55); }

/* Chart box */
.heroChartBox{
  height: 100%;
  min-height: 400px;
  position: relative;
}
.heroChartBox canvas{
  display: block;
  width: 100%;
  height: 100%;
}

/* ===============================
   MOROS & moros
   =============================== */
#moros-moros{
  position: relative;
  z-index: 3;
}

/* ===============================
   HOW IT WORKS (MOROS Flow) – FINAL
   =============================== */
#moros-moros.howItWorks{
  position: relative;
  padding: 200px 0 0;          /* sitzt als Teil der Hero */
padding-bottom: 0px;
  background: transparent;    /* kein eigener Section-Background */
}

/* Headline & Kicker zentrieren + Abstände */
#moros-moros.howItWorks .kicker,
#moros-moros.howItWorks h2{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#moros-moros.howItWorks .kicker{
  margin-bottom: 14px;
}

#moros-moros.howItWorks h2{
  margin-bottom: 18px;
}

/* Zentrierter Textblock (unter Headline) */
#moros-moros .howLead{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width: 860px;
  margin: 0 auto 84px;
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Flow ohne äußere Box */
#moros-moros .flowCard{
margin-top: 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  overflow: visible;
  width: 100%;
}

/* Flow Grid */
#moros-moros .flowSteps{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

/* Einzelne Step-Box */
#moros-moros .flowStep{
  position: relative;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);

  /* mehr Luft oben für die Zahl */
  padding: 22px 14px 16px;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 10px 28px rgba(0,0,0,0.35);

  min-height: 140px;
}

/* Top-Linie im Step */
#moros-moros .flowStep::before{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(74,144,226,0.0),
    rgba(74,144,226,0.55),
    rgba(74,144,226,0.0)
  );
  opacity: 0.75;
  pointer-events: none;
}

/* Step number badge */
#moros-moros .flowIcon{
  width: 42px;
  height: 42px;
  margin: 0 auto 12px auto; /* zentriert oben */
  border-radius: 999px;

  display: grid;
  place-items: center;

  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;

  color: rgba(255,255,255,0.95);
  background: linear-gradient(
    180deg,
    rgba(74,144,226,0.35),
    rgba(74,144,226,0.15)
  );
  border: 1px solid rgba(74,144,226,0.45);

  box-shadow:
    0 0 0 1px rgba(74,144,226,0.25),
    0 0 22px rgba(74,144,226,0.35);
}

/* Text im Step zentrieren */
#moros-moros .flowText{
  text-align: center;
}

#moros-moros .flowTitle{
   font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.94);
  margin-bottom: 6px;
  line-height: 1.15;
  text-align: center;
}

#moros-moros .flowDesc{
  font-size: 15.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.74);
  text-align: center;
}

/* Freistehende Pfeile (ohne Box) */
#moros-moros .flowArrow{
  display: grid;
  place-items: center;
  width: 36px;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0.75;
}

#moros-moros .flowArrow .iconify{
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.78);
  filter: drop-shadow(0 0 14px rgba(74,144,226,0.35));
}

/* Subtle hover */
#moros-moros .flowStep:hover{
  border-color: rgba(74,144,226,0.26);
  box-shadow:
    0 0 0 1px rgba(74,144,226,0.12),
    0 14px 40px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}


/* ===============================
   HOW IT WORKS – Reveal on scroll
   =============================== */
#moros-moros.howItWorks .kicker,
#moros-moros.howItWorks h2,
#moros-moros.howItWorks .howCopy,
#moros-moros.howItWorks .flowStep,
#moros-moros.howItWorks .flowArrow{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
  will-change: opacity, transform, filter;
}

/* leichte Staffelung */
#moros-moros.howItWorks h2{ transition-delay: 90ms; }
#moros-moros.howItWorks .howCopy{ transition-delay: 180ms; }

/* Flow Steps: 1–3 */
#moros-moros.howItWorks .flowStep:nth-of-type(1){ transition-delay: 220ms; }
#moros-moros.howItWorks .flowStep:nth-of-type(2){ transition-delay: 300ms; }
#moros-moros.howItWorks .flowStep:nth-of-type(3){ transition-delay: 380ms; }

/* Arrows (falls sichtbar) */
#moros-moros.howItWorks .flowArrow:nth-of-type(1){ transition-delay: 260ms; }
#moros-moros.howItWorks .flowArrow:nth-of-type(2){ transition-delay: 340ms; }

/* sichtbar */
#moros-moros.howItWorks.is-inview .kicker,
#moros-moros.howItWorks.is-inview h2,
#moros-moros.howItWorks.is-inview .howCopy,
#moros-moros.howItWorks.is-inview .flowStep,
#moros-moros.howItWorks.is-inview .flowArrow{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #moros-moros.howItWorks .kicker,
  #moros-moros.howItWorks h2,
  #moros-moros.howItWorks .howCopy,
  #moros-moros.howItWorks .flowStep,
  #moros-moros.howItWorks .flowArrow{
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
/* ===============================
   FLOW → NEXT SECTION TRANSITION
   =============================== */
.flowTransition{
 margin-top: 20px;      /* vorher 44px */
  padding-bottom: 0px;   /* vorher 18px */

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}


/* vertikale Linie */
.flowLine{
  width: 1px;
  height: 64px;
  background: linear-gradient(
    180deg,
    rgba(74,144,226,0.0),
    rgba(74,144,226,0.65),
    rgba(74,144,226,0.0)
  );
  opacity: 0.8;
}

/* Pfeil */
.flowArrowDown{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(74,144,226,0.12);
  border: 1px solid rgba(74,144,226,0.45);

  box-shadow:
    0 0 0 1px rgba(74,144,226,0.25),
    0 0 26px rgba(74,144,226,0.35);

  animation: arrowPulse 2.4s ease-in-out infinite;
}

.flowArrowDown .iconify{
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.95);
}

/* Label */
.flowLabel{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Animation */
@keyframes arrowPulse{
  0%{
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(74,144,226,0.25),
      0 0 22px rgba(74,144,226,0.25);
  }
  50%{
    transform: translateY(6px);
    box-shadow:
      0 0 0 1px rgba(74,144,226,0.35),
      0 0 36px rgba(74,144,226,0.45);
  }
  100%{
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(74,144,226,0.25),
      0 0 22px rgba(74,144,226,0.25);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .flowArrowDown{ animation: none; }
}





/* ===============================
   Legacy leftovers (kept harmless)
   =============================== */
/* Falls diese Klassen noch irgendwo genutzt werden: ok.
   Ansonsten kannst du sie später löschen. */
.howGrid{ display: block; }
.howCopy{ display: none; }
.howBullets{ display: none; }

/* Responsive */
@media (max-width: 980px){
  #moros-moros .flowSteps{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #moros-moros .flowArrow{
    width: 100%;
    height: 42px;
  }

  #moros-moros .flowArrow .iconify{
    transform: rotate(90deg);
  }

  #moros-moros .flowStep{
    min-height: auto;
  }
}




/* ===============================
   ZIELGRUPPE
   =============================== */
#zielgruppe{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(74,144,226,0.08) 0%, rgba(11,13,18,0.0) 35%, rgba(11,13,18,0.0) 65%, rgba(74,144,226,0.10) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 120px);
}

#zielgruppe::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 80%, rgba(80,140,255,0.12), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(120,200,255,0.08), transparent 55%),
    linear-gradient(180deg, #0b0d12 0%, #0e1320 60%, #0b0d12 100%);
  opacity: 1;
  z-index: 0;
}

#zielgruppe > .wrap{
  position: relative;
  z-index: 1;
}

/* Headline zentrieren + Abstand */
#zielgruppe .kicker,
#zielgruppe h2,
#zielgruppe .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#zielgruppe .lead{
  max-width: 72ch;
  margin-bottom: 72px;
}

#zielgruppe .twoCol{ align-items: stretch; }

#zielgruppe .twoCol > .block{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 22px 28px;
}

/* ===============================
   BOX COLORS
   Box 1,3,4 = Blau
   Box 2     = Lila (schimmernd)
   =============================== */

/* Blau: Box 1 */
#zielgruppe .twoCol > .block:nth-child(1){
  background: linear-gradient(180deg, rgba(74,144,226,0.10), rgba(255,255,255,0.03));
  border-color: rgba(74,144,226,0.45);
  box-shadow:
    0 0 0 1px rgba(74,144,226,0.18),
    0 0 28px rgba(74,144,226,0.22),
    0 14px 46px rgba(0,0,0,0.55);
}

/* Lila: Box 2 */
#zielgruppe .twoCol > .block:nth-child(2){
  background: linear-gradient(180deg, rgba(165,90,255,0.12), rgba(255,255,255,0.03));
  border-color: rgba(165,90,255,0.48);
  box-shadow:
    0 0 0 1px rgba(165,90,255,0.20),
    0 0 34px rgba(165,90,255,0.26),
    0 18px 58px rgba(0,0,0,0.60);
}

/* Blau: Box 3 */
#zielgruppe .twoCol > .block:nth-child(3){
  background: linear-gradient(180deg, rgba(74,144,226,0.10), rgba(255,255,255,0.03));
  border-color: rgba(74,144,226,0.45);
  box-shadow:
    0 0 0 1px rgba(74,144,226,0.18),
    0 0 28px rgba(74,144,226,0.22),
    0 14px 46px rgba(0,0,0,0.55);
}

/* Blau: Box 4 */
#zielgruppe .twoCol > .block:nth-child(4){
  background: linear-gradient(180deg, rgba(74,144,226,0.10), rgba(255,255,255,0.03));
  border-color: rgba(74,144,226,0.45);
  box-shadow:
    0 0 0 1px rgba(74,144,226,0.18),
    0 0 28px rgba(74,144,226,0.22),
    0 14px 46px rgba(0,0,0,0.55);
}

/* ===============================
   Trennstrich oben – nur Box 1 & 4
   =============================== */
#zielgruppe .twoCol > .block:nth-child(1)::after{
  content:"";
  position:absolute;
  left:18px; right:18px; top:14px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(74,144,226,0.0), rgba(74,144,226,0.85), rgba(74,144,226,0.0));
  opacity: 0.75;
}

#zielgruppe .twoCol > .block:nth-child(4)::after{
  content:"";
  position:absolute;
  left:18px; right:18px; top:14px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(74,144,226,0.0), rgba(74,144,226,0.85), rgba(74,144,226,0.0));
  opacity: 0.75;
}




/* ===============================
   ZIELGRUPPE – Trennstrich in ALLEN Boxen
   (Farbe je Box: blau 1/3/4, lila 2)
   =============================== */

/* Base (Position/Size) */
#zielgruppe .twoCol > .block::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:14px;
  height:2px;
  border-radius:999px;
  opacity: 0.75;
}

/* Blau: Box 1,3,4 */
#zielgruppe .twoCol > .block:nth-child(1)::after,
#zielgruppe .twoCol > .block:nth-child(3)::after,
#zielgruppe .twoCol > .block:nth-child(4)::after{
  background: linear-gradient(
    90deg,
    rgba(74,144,226,0.0),
    rgba(74,144,226,0.85),
    rgba(74,144,226,0.0)
  );
}

/* Lila: Box 2 */
#zielgruppe .twoCol > .block:nth-child(2)::after{
  background: linear-gradient(
    90deg,
    rgba(165,90,255,0.0),
    rgba(165,90,255,0.85),
    rgba(165,90,255,0.0)
  );
}







/* ===============================
   FAKTEN
   =============================== */
#fakten{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 22% 10%, rgba(74,144,226,0.10), transparent 55%),
    radial-gradient(760px 460px at 82% 20%, rgba(255,255,255,0.06), transparent 55%);
}

#fakten .kicker,
#fakten h2,
#fakten .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#fakten .lead{
  max-width: 70ch;
  margin-bottom: 72px;
}

#fakten .steps .step{ text-align: center; }
#fakten .steps .num{
  width: 44px;
  height: 44px;
  margin: 0 auto 12px auto;
  border-radius: 14px;
}
#fakten .steps .stepIcon{
  width: 22px;
  height: 22px;
  display: block;
}

/* Facts grid */
#fakten .factsGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 72px;
}

/* Base card (neutral white for ALL 4 boxes) */
#fakten .factsGrid .block{
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.070),
    rgba(255,255,255,0.028)
  );
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 18px rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
}

#fakten .factsGrid .block::before{
  content:"";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 2px;
  border-radius: 999px;
  opacity: 0.85;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.0),
    rgba(255,255,255,0.34),
    rgba(255,255,255,0.0)
  );
}

/* h4 kicker */
#fakten .factsGrid h4{
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
#fakten .factsGrid h4::after{
  content:"";
  display: block;
  margin-top: 10px;
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* ✅ Neutralisiere Klassen-Farben innerhalb FAKTEN (damit Box 3 nie wieder grün/blau wird) */
#fakten .factsGrid .block.is-primary,
#fakten .factsGrid .block.is-secondary{
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.070),
    rgba(255,255,255,0.028)
  );
  box-shadow:
    0 18px 60px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 18px rgba(255,255,255,0.04);
}
#fakten .factsGrid .block.is-primary::before,
#fakten .factsGrid .block.is-secondary::before{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.0),
    rgba(255,255,255,0.34),
    rgba(255,255,255,0.0)
  );
}
#fakten .factsGrid .block.is-primary h4,
#fakten .factsGrid .block.is-secondary h4{
  color: rgba(255,255,255,0.65);
}
#fakten .factsGrid .block.is-primary h4::after,
#fakten .factsGrid .block.is-secondary h4::after{
  background: rgba(255,255,255,0.25);
}

/* 🔥 Box 4: hochwertiger grüner Glow (keine grüne Füllung) */
#fakten .factsGrid .block:nth-child(4){
  border-color: rgba(46,204,113,0.55);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.070),
    rgba(255,255,255,0.028)
  );
  box-shadow:
    0 0 0 1px rgba(46,204,113,0.35),
    0 0 36px rgba(46,204,113,0.28),
    0 22px 70px rgba(0,0,0,0.65);
}


#fakten .factsGrid .block:nth-child(4)::before{
  background: linear-gradient(
    90deg,
    rgba(46,204,113,0.0),
    rgba(46,204,113,0.90),
    rgba(46,204,113,0.0)
  );
}
#fakten .factsGrid .block:nth-child(4) h4{ color: rgba(46,204,113,0.88); }
#fakten .factsGrid .block:nth-child(4) h4::after{ background: rgba(46,204,113,0.88); }

/* Lists inside facts: clean rows */
#fakten .factsGrid .list{
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.015);
}
#fakten .factsGrid .list li{
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 14px 16px 14px 18px;
  margin: 0;
}
#fakten .factsGrid .list li + li{
  border-top: 1px solid rgba(255,255,255,0.07);
}
#fakten .factsGrid .list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.22);
}
#fakten .factsGrid .block:nth-child(4) .list li::before{ background: rgba(46,204,113,0.75); }
#fakten .factsGrid .list .bullet{ display: none; }

#fakten .factsGrid .block p strong{
  display: inline-block;
  min-width: 110px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
#fakten .factsGrid .block:nth-child(4) p strong{ color: rgba(46,204,113,0.85); }

#fakten .factsGrid .block:first-child p{
  font-size: 15px;
  line-height: 1.6;
}
#fakten .factsGrid .block:first-child p + p{ margin-top: 22px; }

#fakten .factIcon{
  width: 44px;
  height: 44px;
  display: block;
  margin: 2px auto 14px auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.12));
}
#fakten .factsGrid .block:nth-child(4) .factIcon{
  filter: drop-shadow(0 0 16px rgba(46,204,113,0.28));
}

/* Roboter-Icon (Box 1) weiß */
#fakten .factsGrid .block:nth-child(1) .factIcon{
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.14));
}
#fakten .factsGrid .block:nth-child(1) svg{
  color: #ffffff !important;
  fill: #ffffff !important;
}

#fakten .factsGrid h3{
  text-align: center;
  margin-top: 0;
}






/* ===============================
   VERGLEICH (MOROS vs MSCI World)
   =============================== */

#vergleich{
  position: relative;
  overflow: hidden;

  /* Section trägt den Türkis-Background */
  background:
    radial-gradient(
      900px 520px at 50% -10%,
      rgba(120,220,220,0.10),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #0b1316 0%,
      #0d1a1f 45%,
      #0a1418 100%
    );
}

/* Grid liegt AUF dem Section-Background, aber UNTER allem Content */
#vergleich::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.020) 0px,
      rgba(255,255,255,0.020) 1px,
      transparent 1px,
      transparent 120px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 120px
    ),
    /* Grid nach unten ausfaden */
    linear-gradient(
      180deg,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.0) 45%,
      rgba(0,0,0,0.65) 100%
    );

  opacity: 0.85;
}

/* Typo zentrieren */
#vergleich .kicker,
#vergleich h2,
#vergleich .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Alles im Wrap liegt vor dem Grid */
#vergleich > .wrap{
  position: relative;
  z-index: 3;
}

#vergleich .lead{ margin-bottom: 10px; }

#vergleich .vergleichSub{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 font-size: 18px;
  text-align: center;
  color: rgba(255,255,255,0.74);
  max-width: 68ch;
  margin: 0 auto 28px auto;
  line-height: 1.6;
}

#vergleich .vergleichSub strong{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}

/* Vergleich-Panel liegt VOR Section-Background/Grid */
.vergleichPanel{
  position: relative;
  z-index: 4;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;

  /* neutraler Panel-Background -> keine Türkis-Färbung */
  background: linear-gradient(
    180deg,
    rgba(10,14,18,0.82),
    rgba(8,11,15,0.88)
  );

  box-shadow:
    0 16px 50px rgba(0,0,0,0.58),
    inset 0 0 0 1px rgba(255,255,255,0.03),
    inset 0 18px 44px rgba(0,0,0,0.45);

  backdrop-filter: blur(12px);
}

/* optional: ganz leichte Panel-Textur (NICHT türkis!) */
.vergleichPanel::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  pointer-events:none;

  background:
    radial-gradient(900px 420px at 50% -10%, rgba(255,255,255,0.06), transparent 60%);
  opacity: 0.8;
}

/* Panel-Inhalt über Panel-Overlay */
.vergleichPanel > *{
  position: relative;
  z-index: 2;
}

.vergleichHead{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 0 18px;
}

.vergleichHead h3{
  margin: 0;
  letter-spacing: -0.01em;
}

.vergleichLegend{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legendItem{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

.legendItem .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

#vergleich .legendItem.is-off{
  opacity: 0.42;
  filter: grayscale(1);
}

.legendItem.is-moros .dot{
  background: rgba(74,144,226,0.95);
  box-shadow: 0 0 14px rgba(74,144,226,0.55);
}

.legendItem.is-msci .dot{
  background: rgba(245,196,0,0.95);
}

.vergleichNote{
  margin: 8px 0 0 0;
  padding: 0 18px 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}

/* Chart liegt VOR dem Section-Background/Grid (und auch vor Panel-Overlay) */
.vergleichChartWrap{
  position: relative;
  z-index: 5;
  height: 360px;
  padding: 0 18px 18px 18px;

  /* neutraler Backdrop für den Plot */
  background: linear-gradient(
    180deg,
    rgba(10,14,18,0.92),
    rgba(8,11,15,0.96)
  );
  border-radius: 14px;
}

.vergleichChartWrap canvas{
  display: block;
  width: 100%;
  height: 100%;
}

.vergleichNext{
  text-align: center;
  margin: 18px auto 0 auto;
  color: rgba(255,255,255,0.66);
  max-width: 66ch;
}

/* ===============================
   VERGLEICH – Reveal on scroll
   =============================== */

#vergleich .kicker,
#vergleich h2,
#vergleich .lead,
#vergleich .vergleichSub,
#vergleich .vergleichPanel,
#vergleich .vergleichNext{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
  will-change: opacity, transform, filter;
}

#vergleich h2{ transition-delay: 90ms; }
#vergleich .lead{ transition-delay: 160ms; }
#vergleich .vergleichSub{ transition-delay: 230ms; }
#vergleich .vergleichPanel{ transition-delay: 320ms; }
#vergleich .vergleichNext{ transition-delay: 380ms; }

#vergleich.is-inview .kicker,
#vergleich.is-inview h2,
#vergleich.is-inview .lead,
#vergleich.is-inview .vergleichSub,
#vergleich.is-inview .vergleichPanel,
#vergleich.is-inview .vergleichNext{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  #vergleich .kicker,
  #vergleich h2,
  #vergleich .lead,
  #vergleich .vergleichSub,
  #vergleich .vergleichPanel,
  #vergleich .vergleichNext{
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}




/* ===============================
   TRACK – SECTION BACKGROUND + CHART SIZING (FIX)
   =============================== */
#track{
  position: relative;
  overflow: hidden;

  /* eigener Background, damit die Section “trägt” */
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(74,144,226,0.10), transparent 60%),
    linear-gradient(180deg, rgba(11,13,18,0.00) 0%, rgba(11,13,18,0.72) 35%, rgba(11,13,18,1.00) 100%);
}

/* Grid-Layer (Deko) – bleibt sichtbar, aber hinter allem Content */
#track::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.035) 0px,
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 24px
    );
  opacity: 0.22;          /* wieder sichtbar, aber dezent */
  pointer-events:none;
  z-index: 0;
}

/* Alles Content darüber */
#track > .wrap{
  position: relative;
  z-index: 3;
}

/* Track Charts: Canvas sauber füllen wie im Vergleich */
#track .chartPanel > div{
  position: relative;
  height: 360px; /* wichtig: feste Höhe */
}

#track .chartPanel canvas{
  display: block;
  width: 100% !important;
  height: 100% !important;
}


/* ===============================
   TRACK: KPI + Chart Panel
   =============================== */
#track .kicker,
#track h2,
#track .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* KPI Grid */
.metricsGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 4;
}

.metricCard{
  position: relative;
  border: 1px solid rgba(255,255,255,0.10);

  /* Wichtig: NICHT komplett deckend, sonst “frisst” es das Grid optisch */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.040), rgba(255,255,255,0.022));

  border-radius: calc(var(--radius) + 2px);
  padding: 22px 16px 14px;
  box-shadow:
    0 10px 34px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.03),
    inset 0 10px 26px rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  z-index: 1;
}

.metricCard::before{
  content:"";
  position:absolute;
  left:14px; right:14px; top:14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.30), rgba(255,255,255,0.0));
  opacity: 0.60;
  pointer-events: none;
}

.metricLabel{
  font-size: 15px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 8px;
  min-height: 34px;
  display: flex;
  align-items: flex-end;
}

.metricValue{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 
  letter-spacing: -0.01em;
  font-size: 22px;
  font-weight: 800;
 
  color: rgba(255,255,255,0.94);
  margin-top: 6px;
}

/* Track: special cards */
#track .metricsGrid .metricCard:nth-child(1),
#track .metricsGrid .metricCard:nth-child(2){
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.58),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 14px 28px rgba(255,255,255,0.02);
}

#track .metricsGrid .metricCard:nth-child(3){
  border-color: rgba(232,77,77,0.22);
  background: linear-gradient(180deg, rgba(232,77,77,0.070), rgba(255,255,255,0.018));
}
#track .metricsGrid .metricCard:nth-child(3)::before{
  background: linear-gradient(90deg, rgba(232,77,77,0.0), rgba(232,77,77,0.55), rgba(232,77,77,0.0));
  opacity: 0.70;
}

#track .metricsGrid .metricCard:nth-child(4){
  border-color: rgba(46, 204, 113, 0.45);
  background: linear-gradient(180deg, rgba(46, 204, 113, 0.18), rgba(255,255,255,0.02));
  box-shadow:
    0 18px 64px rgba(0,0,0,0.68),
    0 0 46px rgba(46, 204, 113, 0.28),
    inset 0 0 0 1px rgba(46, 204, 113, 0.16),
    inset 0 18px 34px rgba(255,255,255,0.02);
}
#track .metricsGrid .metricCard:nth-child(4)::before{
  background: linear-gradient(90deg, rgba(46, 204, 113, 0.0), rgba(46, 204, 113, 0.95), rgba(46, 204, 113, 0.0));
}
#track .metricsGrid .metricCard:nth-child(4) .metricValue{
  font-size: 26px;
  letter-spacing: -0.03em;
}

/* Chart panels */
#track .chartPanel{
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  z-index: 4;
}

/* Panel-Fläche (liegt über Grid, aber hinter Text/Canvas) */
#track .chartPanel::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 52px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.030), rgba(255,255,255,0.015));
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 0 22px 22px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    inset 0 18px 44px rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

#track .chartPanel > *{ position: relative; z-index: 1; }
#track .chartPanel h3{ margin: 0; padding: 18px 18px 0 18px; letter-spacing: -0.01em; }
#track .chartPanel p{ margin: 6px 0 0 0; padding: 0 18px 12px 18px; font-size: 13px; opacity: 0.70; }
#track .chartPanel > div{ padding: 0 18px 18px 18px; }






/* ===============================
   SIMULATION
   =============================== */
#simulation{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(74,144,226,0.18), transparent 60%),
    radial-gradient(700px 400px at 80% 120%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, rgba(11,13,18,0.0) 0%, rgba(11,13,18,0.35) 100%);
}

/* SIMULATION – KPI Zahlen */
.simValue{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;

  /* wichtig für Zahlen */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;

  letter-spacing: -0.01em;
}


#simulation::before{
  content:"";
  position:absolute;
  inset:0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 140px);
  opacity: 0.35;
  pointer-events: none;
}

#simulation .kicker,
#simulation h2,
#simulation .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#simulation .lead{ margin-bottom: 72px; }

#simulation .block{
  background: linear-gradient(180deg, rgba(74,144,226,0.12), rgba(255,255,255,0.03));
  border-color: rgba(74,144,226,0.45);
  box-shadow:
    0 0 0 1px rgba(74,144,226,0.18),
    0 0 36px rgba(74,144,226,0.25),
    0 18px 60px rgba(0,0,0,0.55);
transition: box-shadow 800ms ease;
}

/* KPI redesign inside simulation */
#simulation .metricLabel{
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
#simulation .metricValue{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}




/* 1 & 2 green */
#simulation .metricsGrid .metricCard:nth-child(1),
#simulation .metricsGrid .metricCard:nth-child(2){
  border-color: rgba(46,204,113,0.45);
  background: linear-gradient(180deg, rgba(46,204,113,0.18), rgba(255,255,255,0.02));
  box-shadow:
    0 18px 64px rgba(0,0,0,0.65),
    0 0 46px rgba(46,204,113,0.28),
    inset 0 0 0 1px rgba(46,204,113,0.16);
}
#simulation .metricsGrid .metricCard:nth-child(1) .metricValue,
#simulation .metricsGrid .metricCard:nth-child(2) .metricValue{ color: #2ECC71; }

/* 3 red */
#simulation .metricsGrid .metricCard:nth-child(3){
  border-color: rgba(232,77,77,0.45);
  background: linear-gradient(180deg, rgba(232,77,77,0.16), rgba(255,255,255,0.02));
  box-shadow:
    0 18px 64px rgba(0,0,0,0.65),
    0 0 46px rgba(232,77,77,0.28),
    inset 0 0 0 1px rgba(232,77,77,0.16);
}
#simulation .metricsGrid .metricCard:nth-child(3) .metricValue{ color: #E84D4D; }

/* 4 label align */
#simulation .metricsGrid .metricCard:nth-child(4) .metricLabel{
  font-size: 13.5px;
  font-weight: 700;
}

/* Focus activation */
#simulation.is-active .block{
  box-shadow:
    0 0 0 1px rgba(74,144,226,0.35),
    0 0 42px rgba(74,144,226,0.45),
    0 24px 80px rgba(0,0,0,0.65);
}


#simulation.is-active #simStartSlider::-webkit-slider-thumb{
  box-shadow:
    0 0 0 9px rgba(74,144,226,0.18),
    0 0 32px rgba(74,144,226,0.55);
}

#simulation.is-active #simStartSlider::-moz-range-thumb{
  box-shadow:
    0 0 0 9px rgba(74,144,226,0.18),
    0 0 32px rgba(74,144,226,0.55);
}



/* Simulation header */
.simStartHeader{
  display: block;
  margin: 10px 0 36px 0;
  text-align: center;
}

.simHeadline{
  margin: 0 auto;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.15;
  color: rgba(255,255,255,0.92);
}

.simStartChip{
  display: inline-block;
  font-size: 1.25em;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 0.08em 0.35em;
  margin: 0 0.08em;
  border-radius: 999px;

  color: #ffffff;
  background: rgba(74,144,226,0.14);
  border: 1px solid rgba(74,144,226,0.45);
  box-shadow:
    0 0 18px rgba(74,144,226,0.45),
    0 0 44px rgba(74,144,226,0.18);
}

.simSubline{
  margin: 10px 0 40px 0;
  font-size: 18px;
  color: rgba(255,255,255,0.62);
}

/* Slider */
#simStartSlider{
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  outline: none;
  margin-bottom: 64px;
}

#simStartSlider::-webkit-slider-thumb{
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid rgba(74,144,226,0.95);
  cursor: pointer;
  box-shadow:
    0 0 0 7px rgba(74,144,226,0.22),
    0 0 26px rgba(74,144,226,0.55);
  transition: transform 0.15s ease;
  transform: translateZ(0);


}
#simStartSlider::-webkit-slider-thumb:hover{ transform: scale(1.12); }

#simStartSlider::-moz-range-thumb{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid rgba(74,144,226,0.95);
  cursor: pointer;
  box-shadow:
    0 0 0 7px rgba(74,144,226,0.22),
    0 0 26px rgba(74,144,226,0.55);
  transform: translateZ(0);


}

/* Slider hint pulse */
#simStartSlider.simSliderHint::-webkit-slider-thumb,
#simStartSlider.simSliderHint::-moz-range-thumb{
  animation: sliderPulse 1.6s ease-in-out infinite;
  will-change: transform, box-shadow;
}

@keyframes sliderPulse{
  0%{
    transform: translateZ(0) scale(1);
    box-shadow:
      0 0 0 6px rgba(74,144,226,0.18),
      0 0 22px rgba(74,144,226,0.45),
      0 0 44px rgba(74,144,226,0.16);
  }
  55%{
    transform: translateZ(0) scale(1.14);
    box-shadow:
      0 0 0 12px rgba(74,144,226,0.10),
      0 0 34px rgba(74,144,226,0.70),
      0 0 70px rgba(74,144,226,0.22);
  }
  100%{
    transform: translateZ(0) scale(1);
    box-shadow:
      0 0 0 6px rgba(74,144,226,0.18),
      0 0 22px rgba(74,144,226,0.45),
      0 0 44px rgba(74,144,226,0.16);
  }
}



/* Simulation disclaimers */
.simulation-disclaimer{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(232, 77, 77, 0.08);
  border: 1px solid rgba(232, 77, 77, 0.35);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.simulation-disclaimer-icon{
  width: 18px;
  height: 18px;
  color: #E84D4D;
  flex-shrink: 0;
  margin-top: 2px;
}

.simulation-disclaimer-text p{ margin: 0 0 8px 0; }
.simulation-disclaimer-text p:last-child{ margin-bottom: 0; }

/* ===============================
   Live Heartbeat
   =============================== */
.liveHeartbeat{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
}

.liveHeartbeat .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 12px rgba(46,204,113,0.9);
  animation: heartbeatPulse 1.8s ease-out infinite;
}

.liveHeartbeat .text strong{
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

@keyframes heartbeatPulse{
  0%{ box-shadow: 0 0 0 0 rgba(46,204,113,0.9); transform: scale(1); }
  70%{ box-shadow: 0 0 0 12px rgba(46,204,113,0); transform: scale(1.05); }
  100%{ box-shadow: 0 0 0 0 rgba(46,204,113,0); transform: scale(1); }
}

/* ===============================
   Timeline (Ablauf)
   =============================== */
#ablauf{
  position: relative;
  overflow: hidden;
  isolation: isolate;                 /* verhindert Blend/Leak über Section-Grenzen */
  background:
    linear-gradient(180deg, rgba(11,13,18,1.00) 0%, rgba(11,13,18,1.00) 18%, rgba(11,13,18,0.0) 60%),
    radial-gradient(800px 600px at 50% 30%, rgba(74,144,226,0.14), transparent 60%),
    linear-gradient(180deg, rgba(74,144,226,0.08) 0%, rgba(11,13,18,0.0) 40%, rgba(11,13,18,0.0) 70%, rgba(74,144,226,0.10) 100%);
}

#ablauf::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 140px);
  opacity: 0.35;
  pointer-events: none;
}

#ablauf > .wrap{ position: relative; z-index: 1; }

#ablauf .kicker,
#ablauf h2,
#ablauf .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#ablauf .lead{
  max-width: 72ch;
  margin-bottom: 64px;
}

/* Timeline container width */
.morosAblauf .wrap{
  width: min(52vw, 980px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1100px){
  .morosAblauf .wrap{ width: min(92vw, 980px); }
}

.morosAblauf .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  max-width: 760px;
}

.morosTimeline{
  margin-top: 6px;
  display: grid;
  gap: 14px;
}

/* Timeline card baseline (no scroll/blur enforcement) */
.morosTimeline .tlCard{
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease !important;
}

/* Timeline item layout */
.tlItem{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: stretch;
}

.tlRail{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.tlChip{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02);
}

.tlChip.is-hot{
  border-color: rgba(46,204,113,0.42);
  box-shadow:
    0 0 0 1px rgba(46,204,113,0.10),
    0 0 18px rgba(46,204,113,0.14);
}

.tlLine{
  width: 1px;
  flex: 1;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  opacity: 0.55;
}
.tlLine.is-end{
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.00));
  opacity: 0.35;
}

/* Timeline card */
.tlCard{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 18px 54px rgba(0,0,0,0.52),
    inset 0 0 0 1px rgba(255,255,255,0.035),
    inset 0 18px 40px rgba(0,0,0,0.22);
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  backdrop-filter: none;
}

/* Decision frame */
.tlCard::before{
  content:"";
  position:absolute;
  left: 16px;
  right: 16px;
  top: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.40), rgba(255,255,255,0.0));
  opacity: 0.70;
  pointer-events: none;
}

.tlHead{
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 34px 16px 14px 16px;
}

.tlIcon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.tlIcon .iconify{ width: 16px; height: 16px; opacity: 0.9; }

.tlMini{
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}

.tlTitle{
  display: block;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  line-height: 1.15;
}

.tlMetaInline{
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  white-space: nowrap;
}

.tlChevron{ display: none; }

.tlBody{ padding: 0 16px 14px 16px; }
.tlBody p{
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}

.tlMeta{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.58);
}

.tlOutcome{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(46,204,113,0.26);
  background: linear-gradient(180deg, rgba(46,204,113,0.07), rgba(255,255,255,0.02));
  box-shadow:
    0 0 0 1px rgba(46,204,113,0.09),
    0 14px 46px rgba(0,0,0,0.50);
  padding: 18px 16px;
}

.tlCard.is-gate{
  border-style: dashed;
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
}

.tlCard.is-highlight{
  border-color: rgba(46,204,113,0.22);
  background: linear-gradient(180deg, rgba(46,204,113,0.05), rgba(255,255,255,0.02));
  box-shadow:
    0 0 0 1px rgba(46,204,113,0.06),
    0 14px 38px rgba(0,0,0,0.42);
}

/* Desktop: continuous line behind chips */
@media (min-width: 941px){
  .tlRail::before,
  .tlRail::after{ display: none !important; }

  .morosTimeline{ position: relative; }
  .morosTimeline::before{
    content:"";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    border-radius: 99px;
    background: rgba(255,255,255,0.14);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
  }

  .tlChip{
    position: relative;
    z-index: 2;
    background: rgba(11,13,18,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.02);
  }

  .tlChip::after{
    content:"";
    position:absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 0 18px rgba(255,255,255,0.04);
    pointer-events: none;
  }
}

/* Mobile timeline + optional accordion */
@media (max-width: 940px){
  .tlItem{ grid-template-columns: 1fr; gap: 10px; }
  .tlRail{ display: none; }

  .tlHead{
    cursor: pointer;
    grid-template-columns: 32px 1fr auto;
  }
  .tlMetaInline{ display: none; }
  .tlChevron{ display: grid; place-items: center; }
}

/* Accordion mode (JS toggles .is-accordion + .is-open) */
.morosTimeline.is-accordion .tlBody{
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 260ms ease, padding-bottom 260ms ease;
}
.morosTimeline.is-accordion .tlCard.is-open .tlBody{
  max-height: 420px;
  padding-bottom: 16px;
}
.morosTimeline.is-accordion .tlCard.is-open .tlChevron{
  transform: rotate(180deg);
  transition: transform 260ms ease;
}
.morosTimeline.is-accordion .tlChevron{
  transition: transform 260ms ease;
}

/* Outcome icon list */
.outList{
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
}
.outList li{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  line-height: 1.4;
}
.outList li::marker{ content: ""; }
.outList .iconify{
  font-size: 18px;
  color: #4ade80;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(74,222,128,0.35));
}

/* Timeline: quieter outcome list */
.morosAblauf .outList{ margin-top: 14px; gap: 8px; }
.morosAblauf .outList li{
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,0.70);
}
.morosAblauf .outList .iconify{
  width: 14px;
  height: 14px;
  opacity: 0.85;
  transform: translateY(1px);
}

/* ===============================
   FAQ
   =============================== */
.morosFAQ{
  background: radial-gradient(800px 420px at 50% 0%, rgba(74,144,226,0.10), transparent 60%);
}

#faq .kicker,
#faq h2{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faqList{
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.faqItem{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  overflow: hidden;
}

.faqHead{
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faqChevron{
  width: 18px;
  height: 18px;
  opacity: 0.65;
  transition: transform 220ms ease;
}

.faqBody{
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 260ms ease, padding 260ms ease;
}

.faqItem.is-open .faqBody{
  max-height: 420px;
  padding: 0 20px 18px;
}

.faqItem.is-open .faqChevron{ transform: rotate(180deg); }

.faqBody p{
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

@media (min-width: 941px){
  #faq .faqList{
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    align-items: start;
  }
  #faq .faqItem{ align-self: start; }
}

/* ===============================
   CTA / Footer
   =============================== */
.cta{
  border-bottom: 0;
  padding: 84px 0;
}

.ctaBox{
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: calc(var(--radius) + 6px);
  padding: 28px;
  box-shadow: var(--shadow);
}

.ctaBox .row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ctaBox p{ max-width: 70ch; }

.fine{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}

/* Decision CTA card */
.morosCtaDecision{ padding: 120px 0; }

.morosCtaDecision .ctaCard{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding: 64px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.45);
}

.ctaKicker{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.morosCtaDecision h2{
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ctaLead{
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
}

.ctaRight{ padding-top: 8px; }

.ctaListTitle{
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

.ctaList{
  list-style: none;
  padding: 0;
  margin: 0;
}
.ctaList li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 15px;
  opacity: 0.9;
}
.ctaList .iconify{
  font-size: 18px;
  color: #6ee7b7;
  margin-top: 2px;
}

.ctaFooter{
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ctaTrust{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.65;
}

.ctaTrust .iconify{
  font-size: 14px;
  color: #6ee7b7;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(110,231,183,0.6))
          drop-shadow(0 0 14px rgba(110,231,183,0.35));
}

/* Footer simple */
footer{
  padding: 28px 0 44px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  border-top: 1px solid var(--hair);
}

.footRow{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footLinks{ display: flex; gap: 14px; }
.footLinks a{ padding: 6px 8px; border-radius: 10px; }
.footLinks a:hover{ background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.75); }

/* Premium footer */
.morosFooter{
  padding: 56px 0 34px;
  border-top: 1px solid var(--hair);
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  background:
    radial-gradient(900px 420px at 30% 0%, rgba(74,144,226,0.10), transparent 60%),
    linear-gradient(180deg, rgba(11,13,18,0.0), rgba(11,13,18,0.35));
}

.footTop{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.footBrand{ max-width: 520px; }

.footLogoRow{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footLogo{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.footName{
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.88);
}

.footTag{
  font-size: 12px;
  opacity: 0.65;
  margin-top: 2px;
}

.footBlurb{
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.6;
}

.footCol{ display: grid; gap: 10px; }

.footTitle{
  font-weight: 600;
  color: rgba(255,255,255,0.86);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.morosFooter a{
  color: rgba(255,255,255,0.68);
  padding: 6px 8px;
  border-radius: 10px;
  width: fit-content;
}
.morosFooter a:hover{
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
}

.footDisclaimer{
  margin-top: 34px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.footDisclaimerHead{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footDisclaimerHead .iconify{
  font-size: 18px;
  color: #6ee7b7;
  filter: drop-shadow(0 0 6px rgba(110,231,183,0.55));
  margin-top: 2px;
}

.footDisclaimerTitle{
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.1;
}

.footDisclaimerSub{
  font-size: 12px;
  opacity: 0.6;
  margin-top: 2px;
}

.footDisclaimer p{
  margin: 0 0 10px 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.74);
}
.footDisclaimer p:last-child{ margin-bottom: 0; }

.footBottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footMiniLinks{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footDot{ opacity: 0.35; }

/* ===============================
   Disclaimers
   =============================== */
.disclaimer{
  --warning-red: #E84D4D;
  margin-top: 32px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(232, 77, 77, 0.10);
  border: 1px solid rgba(232, 77, 77, 0.4);
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.disclaimer-icon{
  width: 20px;
  height: 20px;
  color: var(--warning-red);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===============================
   Scroll-Reveal (vereinheitlicht)
   =============================== */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--revealDelay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ===============================
   Hover FX (Blocks + KPI + Panels)
   =============================== */
@media (hover:hover) and (pointer:fine){
  .block:not(.is-disclaimer):hover{
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(74,144,226,0.45);
    box-shadow:
      0 32px 90px rgba(0,0,0,0.75),
      0 0 0 1px rgba(74,144,226,0.22),
      0 0 46px rgba(74,144,226,0.55);
    background: linear-gradient(180deg, rgba(74,144,226,0.18), rgba(255,255,255,0.025));
  }

  .metricCard:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.22);
    box-shadow:
      0 22px 80px rgba(0,0,0,0.72),
      inset 0 0 0 1px rgba(255,255,255,0.06),
      inset 0 18px 36px rgba(255,255,255,0.03);
    filter: brightness(1.02);
  }

  #track .metricsGrid .metricCard:nth-child(4):hover{
    transform: translateY(-5px);
    border-color: rgba(74,144,226,0.60);
    box-shadow:
      0 26px 96px rgba(0,0,0,0.78),
      0 0 80px rgba(74,144,226,0.35),
      inset 0 0 0 1px rgba(74,144,226,0.18);
  }

  #track .chartPanel:hover::after{
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.05),
      inset 0 18px 44px rgba(0,0,0,0.55),
      0 0 60px rgba(255,255,255,0.03);
    border-bottom-color: rgba(255,255,255,0.18);
  }

  .tlCard:hover{
    transform: translateY(-3px) scale(1.012) !important;
    border-color: rgba(74,144,226,0.28);
    box-shadow:
      0 0 0 1px rgba(74,144,226,0.10),
      0 22px 68px rgba(0,0,0,0.60),
      0 0 34px rgba(74,144,226,0.22),
      inset 0 0 0 1px rgba(255,255,255,0.045),
      inset 0 18px 40px rgba(0,0,0,0.22);
    background: linear-gradient(180deg, rgba(74,144,226,0.09), rgba(255,255,255,0.02));
  }
}

/* ===============================
   Motivation (Editorial)
   =============================== */
.morosMotivation{
  position: relative;
  padding: 96px 0;
  overflow: hidden;

  /* NUR das Bild */
  background-image: url("/assets/motivation.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.morosMotivation{
  background-position: center center;
  will-change: auto;
}



.morosMotivation::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background:
    radial-gradient(1200px 700px at 50% 15%, rgba(0,0,0,0.08), rgba(0,0,0,0.40) 70%),
    linear-gradient(180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.32) 55%,
      rgba(0,0,0,0.48) 100%
    );
}




.morosMotivation .wrap{
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.morosMotivation .kicker,
.morosMotivation h2{ text-align: center; }

.motivationText{
  position: relative;
  margin-top: 48px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.motivationText::before{
  content: "“";
  position: absolute;
  top: -80px;
  left: -40px;
  font-size: 220px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,255,255,0.10);
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
  pointer-events: none;
}

.motivationText::after{
  content: "”";
  position: absolute;
  bottom: -80px;
  right: -40px;
  font-size: 220px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,255,255,0.10);
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
  pointer-events: none;
}


.motivationText p{ margin-bottom: 22px; }
.motivationText strong{
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 980px){
  .metricsGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .metricsGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 940px){
  nav{ display: none; }
  .heroGrid{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  section{ padding: 56px 0; }
  .hero{ padding: 64px 0 56px; }
  .flowGrid{ grid-template-columns: 1fr; }
  .morosmorosGrid{ grid-template-columns: 1fr; }
  .footTop{ grid-template-columns: 1fr; }
  .morosFooter a{ width: 100%; }
  .footMiniLinks{ width: 100%; }
}

@media (max-width: 900px){
  .morosCtaDecision .ctaCard{
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .ctaFooter{ align-items: stretch; }
}

@media (max-width: 640px){
  .morosMotivation{ padding: 72px 0; }
  .motivationText{ font-size: 16px; }
  .motivationText::before{ left: -10px; top: -60px; font-size: 160px; }
}

@media (max-width: 940px){
  #fakten .factsGrid{ grid-template-columns: 1fr; }
}


/* FIX: TRACK-Charts dürfen nicht unsichtbar bleiben (Google Sites Hard-Reload) */
#track .chartPanel.reveal{
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* FIX: TRACK-KPIs dürfen nicht unsichtbar bleiben (Google Sites Hard-Reload) */
#track .metricsGrid.reveal{
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}



/* ===============================
   GLOBAL SECTION REVEAL – HARD ENFORCER
   (NICHT auf Legal Pages anwenden)
   =============================== */

/* Default: Sections nur auf normalen Seiten verstecken */
body:not(.legalPage) section{
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity 900ms cubic-bezier(.22,.61,.36,1),
    transform 900ms cubic-bezier(.22,.61,.36,1),
    filter 900ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}

/* Sichtbar */
body:not(.legalPage) section.is-inview{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  body:not(.legalPage) section{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}





/* ===============================
   LEGAL PAGES (Impressum/Datenschutz/Risikohinweis)
   CSS – neutral, ohne Effekte, robust
   =============================== */

/* Base */
html, body{
  height: 100%;
}





body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: #0B0D12;
  color: rgba(255,255,255,0.88);
}

/* Container */
.wrap{
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

/* Layout */
main{
  min-height: 100vh;
}

/* Head */
.legalHead{
  padding: 56px 0 28px;
  text-align: center;
}

.legalBrand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 18px;
}

.legalLogo{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.legalBrandName{
  font-weight: 650;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.92);
}

.kicker{
  margin: 10px 0 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.legalHead h1{
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
}

.legalSub{
  margin: 14px auto 0;
  max-width: 740px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

/* Card */
.legalCard{
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 26px;
}

/* Typography */
.legalCard h2{
  margin: 22px 0 10px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
}

.legalCard h2:first-child{
  margin-top: 0;
}

.legalCard p{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

.legalCard strong{
  color: rgba(255,255,255,0.92);
  font-weight: 650;
}

.legalCard a{
  color: rgba(0,208,255,0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.legalFoot{
  padding: 0 0 60px;
  text-align: center;
}

.backLink{
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}

/* HARD VISIBILITY OVERRIDE (keine Effekte, nur Sichtbarkeit) */
.legalHead,
.legalHead * ,
.legalCard,
.legalCard * ,
.legalFoot,
.legalFoot *{
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Mobile */
@media (max-width: 640px){
  .wrap{
    width: min(960px, calc(100% - 28px));
  }

  .legalHead{
    padding: 44px 0 22px;
  }

  .legalCard{
    padding: 20px;
    border-radius: 18px;
  }

  .legalBrand{
    gap: 10px;
    border-radius: 14px;
  }

  .legalLogo{
    width: 30px;
    height: 30px;
  }
}

/* ===============================
   LEGAL PAGE – LOGO HARD OVERRIDE
   =============================== */

body.legalPage header.legalHead img.legalLogo{
  width: 320px !important;   /* ← HIER Größe */
  max-width: none !important;
  height: auto !important;
  display: block;
  margin: 0 auto 96px;
}
.backHomeBtn{
  display: inline-block;
  margin: 24px 0;
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  transition: all .2s ease;
}
.backHomeBtn:hover{
  border-color: rgba(0,208,255,0.8);
  box-shadow: 0 0 0 4px rgba(0,208,255,0.15);
}


/* ===============================
   LEAD MODAL – Horizontal Scroll Kill (nur Lead Modal)
   =============================== */
#leadModal,
#leadModal .modalDialog,
#leadModal .modalState{
  overflow-x: hidden;
}

#leadModal .modalState{
  max-width: 100%;
}
