:root{
  --bg: #ffffff;
  --text: rgba(11,15,25,.90);
  --muted: rgba(11,15,25,.68);

  --accent: #f64749;
  --accent-press: #d13234;

  --card: rgba(255,255,255,.92);
  --stroke: rgba(11,15,25,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.12);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;

  --container: 1100px;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  /* # NEU 2025-11-29: Viewport-Gaps + dynamische Header-Höhe (per JS gesetzt) */
  --page-gap: 14px;
  --headerH: 72px;
}

*{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
}

html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative; /* damit .bgGlow relativ zum Dokument scrollt */

  /* Platz für den fixen Header schaffen */
  padding-top: var(--headerH);
}


/* überall derselbe Hintergrund, damit keine Kanten entstehen */
main,
.hero,
#info,
.sectionFaqs{
  background: var(--bg);
}

/* Glow/Gradient komplett aus – sonst siehst du überall den Rotstich */
.bgGlow{
  display: none;
}


a{ color: inherit; text-decoration: none; }
button{ font: inherit; }

.bgGlow{
  position: absolute;          /* scrollt jetzt mit der Seite mit */
  top: -120px;
  left: -20vw;
  right: -20vw;
  height: 520px;               /* nur noch rund um den Hero-Bereich */
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 18% 28%, rgba(17,24,39,.10), rgba(17,24,39,0)),
    radial-gradient(50% 60% at 70% 20%, rgba(2,6,23,.06), rgba(2,6,23,0));
  filter: blur(10px);
  z-index: -1;                 /* sicher hinter allem anderen */
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

header {
    position: fixed;        /* statt sticky */
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: calc(6px + var(--safe-top)) 0 6px 0;
    background: transparent;
}

.navShell{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(11,15,25,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
  position: relative;
  overflow:hidden;
}
.navShell::before{
  content:"";
  position:absolute;
  inset: -1px;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.65) 22%,
    rgba(255,255,255,0) 45%,
    rgba(255,255,255,.45) 68%,
    rgba(255,255,255,0) 100%
  );
  opacity: .35;
  pointer-events:none;
  transform: translateX(-30%);
}
.navShell::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  top: 6px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(11,15,25,.10), rgba(0,0,0,0));
  opacity: .55;
  pointer-events:none;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  flex: 0 0 auto;
}

.brandLogo{
  height: 36px;
  width: auto;
  display: block;
}

.navLinks{
  display: none;
  align-items: center;
  gap: 10px;
  color: rgba(11,15,25,.72);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.navLinks a{
  padding: 9px 12px;
  border-radius: 999px;
  transition: background .15s ease, border-color .15s ease;
  border: 1px solid transparent;
}
.navLinks a:hover{
  background: rgba(11,15,25,.05);
  border-color: rgba(11,15,25,.08);
}

.navRight{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.btn{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  color: rgba(11,15,25,.92);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active{ transform: translateY(1px); }
.btn:hover{ border-color: rgba(11,15,25,.14); box-shadow: 0 18px 38px rgba(0,0,0,.08); }

.btnPrimary{
  /* # NEU 2025-11-29: Rand vom roten Button entfernen */
  border: 0;
  background: var(--accent);
  color: rgba(255,255,255,.98);
  box-shadow: 0 20px 52px rgba(246,71,73,.22);
}
.btnPrimary:hover{ border-color: transparent; }
.btnPrimary:active{ background: var(--accent-press); }
.btnGhost{ background: rgba(255,255,255,.86); }

/* # NEU 2025-12-03: Login-Button wie Slider (grau/schwarz), nicht rot, kein Glimmer */
.btnDark{
  border: 0;
  background: rgba(11,15,25,.90);
  color: rgba(255,255,255,.98);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}
.btnDark:hover{
  background: rgba(11,15,25,.94);
  box-shadow: 0 22px 58px rgba(0,0,0,.16);
}
.btnDark:active{
  background: rgba(11,15,25,.88);
}
.btnDark::before{
  display: none !important;
  animation: none !important;
  opacity: 0 !important;
}

/* # NEU 2025-12-03: Hero-CTA minimal “Atmen” (leicht wachsen/schrumpfen) */
#heroPrimary{
  animation: buzzPulse 2.8s ease-in-out infinite;
  transform: translateZ(0);
}
#heroPrimary:active{
  animation-play-state: paused;
  transform: translateY(1px) scale(.99);
}
@keyframes buzzPulse{
  0%, 100%{ transform: translateZ(0) scale(1); }
  50%     { transform: translateZ(0) scale(1.02); }
}

/* # NEU 2025-12-03: Glitzer/Glimmer langsamer (nicht so schnell) nur auf CTA-Buttons */
.btnPrimary::before{
  content:"";
  position:absolute;
  top:-70%;
  bottom:-70%;
  width:120px;
  background: linear-gradient(115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.92) 48%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  animation: buzzGlimmer 3.0s cubic-bezier(.22,.72,.22,1) infinite;
  pointer-events:none;
  opacity:.58;
  will-change: transform, opacity;
  mix-blend-mode: overlay;
  filter: blur(.2px);
}
@keyframes buzzGlimmer{
  0%   { transform: translateX(-160%) skewX(-18deg); opacity: 0; }
  12%  { opacity: .62; }
  45%  { opacity: .92; }
  78%  { opacity: .62; }
  100% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
}

/* # NEU 2025-11-30: Glänz/Glimmer bei Submit-Buttons (Signup+Login) entfernen */
#submitSignup::before,
#submitLogin::before{
  display: none !important;
  animation: none !important;
  opacity: 0 !important;
}

/* # NEU 2025-11-29: Main füllt Viewport mit gleichen Abständen oben/unten wie zum Header */
.hero{
  /* ein kompletter "Screen" unterhalb des Headers */
  min-height: calc(100vh - var(--headerH));
  padding: 32px 0 40px;

  display: flex;
  align-items: center;   /* weiße Box bleibt vertikal schön in der Mitte */
}




.hero > .container{ width: min(var(--container), calc(100% - 40px)); }

/* Zweite Seite (zwischen Hero und FAQ) */
.foldSection{
  /* Platz nach oben/unten für Content, aber ein Screen */
  padding: calc(var(--page-gap) + 48px) 0 calc(var(--page-gap) + 100px);
  min-height: calc(100vh - var(--headerH));
  display:flex;
  align-items:flex-start;
}


.foldSection > .container{
  width: min(var(--container), calc(100% - 40px));
}


.heroGrid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;

  /* statt start -> zentrieren */
  align-items: center;

  padding: 26px;
  border: 1px solid rgba(11,15,25,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68));
  border-radius: var(--radius-xl);
  box-shadow: 0 0 70px rgba(0,0,0,.22);
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: auto;
  margin: 0 auto;
}

/* linke Spalte als Flex-Spalte, die sich in der Zelle mittig ausrichtet */
.heroGrid > div:first-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.heroGrid::before{
  content:"";
  position:absolute;
  left:-180px;
  top:-200px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(17,24,39,.12), rgba(17,24,39,0) 62%);
  filter: blur(10px);
  pointer-events:none;
}

/* # NEU 2025-11-29: Nicht mehr vertikal zentrieren -> top-align wie Smartphone */
.heroGrid > div:first-child{
  display:block;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(246,71,73,.20);
  background: rgba(246,71,73,.06);
  color: rgba(11,15,25,.86);
  font-weight: 900;
  font-size: 13px;
  width: fit-content;
  /* viel weniger Abstand nach oben */
  margin: 16px 0 8px 0;
}
.kDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(246,71,73,.18);
}

h1{
  margin: 14px 0 10px 0;
  font-size: clamp(30px, 4.2vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 900;
}
.sub{
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
  font-weight: 650;
  max-width: 52ch;
}

/* # NEU 2025-11-29: Pills oben im Block + Abstand zum Kicker */
.rolePills{ margin: 2px 0 12px 0; }

.heroCtas{ margin-top: 12px; }

.heroCtas{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.rolePills{
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,25,.10);
  background: rgba(255,255,255,.75);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.pillBtn{
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(11,15,25,.74);
  transition: background .12s ease, color .12s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.pillBtn.active{
  background: rgba(11,15,25,.90);
  color: rgba(255,255,255,.98);
}

.miniBadges{
  /* EINEN margin-top, nicht zwei verschiedene */
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(11,15,25,.70);
  font-weight: 800;
  font-size: 12.5px;
  align-items: center;
}
.badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: .92;
}
.badge svg{ width: 16px; height: 16px; opacity: .85; }

/* Phone preview */
.phoneWrap{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.phone{
  width: min(420px, 100%);
  aspect-ratio: 430 / 844;
  border-radius: 46px;
  background: rgba(11,15,25,.94);
  box-shadow: 0 34px 90px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

/* # NEU 2025-11-29: hartes Clipping gegen “Überlauf” */
.phoneInner{
  position:absolute;
  inset: 9px;
  border-radius: 34px;
  background: #ffffff;

  overflow: hidden;
  clip-path: inset(0 round 34px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);

  isolation: isolate;
}

.phoneFallback{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding: 18px;
  text-align:center;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(17,24,39,.08), rgba(17,24,39,0) 60%),
    linear-gradient(180deg, rgba(245,245,247,1), rgba(255,255,255,1));
  color: rgba(11,15,25,.90);
  z-index: 0;
}
.phoneFallback b{
  display:block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.phoneFallback span{
  display:block;
  margin-top: 8px;
  color: rgba(11,15,25,.62);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.35;
}

/* # NEU 2025-11-29: Statusleiste entfernt -> iFrame füllt komplett */
iframe{
  position:absolute;
  inset: 0;
  width:100%;
  height:100%;
  border:0;
  background:#fff;
  z-index: 1;
  border-radius: 0;
}

section{ padding: 26px 0; }
.sectionTitle{
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.sectionTitleLarge{
  font-size: clamp(26px, 3vw, 34px);
}

.faq{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}
details{
  border: 1px solid rgba(11,15,25,.10);
  background: rgba(255,255,255,.80);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: 0 16px 45px rgba(0,0,0,.05);
}
summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
summary::-webkit-details-marker{ display:none; }
.faqA{
  margin: 10px 0 0 0;
  color: rgba(11,15,25,.68);
  font-weight: 650;
  line-height: 1.5;
  font-size: 13.5px;
  max-width: 78ch;
}
.chev{
  width: 18px;
  height: 18px;
  opacity: .75;
  transition: transform .16s ease;
}
details[open] .chev{ transform: rotate(180deg); }

footer{
  padding: 18px 0 calc(22px + var(--safe-bottom)) 0;
  border-top: 1px solid rgba(11,15,25,.06);
  color: rgba(11,15,25,.62);
  font-weight: 650;
  font-size: 12.5px;
}
.footRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items:center;
  justify-content: space-between;
}
.footLinks{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.footLinks a{
  padding: 6px 10px;
  border-radius: 999px;
  transition: background .15s ease;
}
.footLinks a:hover{ background: rgba(11,15,25,.05); }

/* Modal */
.modalOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 100;
}
.modalOverlay.show{ display: flex; }

.modal{
  width: min(920px, 100%);
  max-height: calc(100vh - 36px);
  display: flex;
  flex-direction: column;

  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(11,15,25,.12);
  box-shadow: 0 40px 120px rgba(0,0,0,.22);
  overflow: hidden;
}
.modalHeader{
  padding: 16px 16px 14px 16px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(245,245,247,1));
  border-bottom: 1px solid rgba(11,15,25,.06);
}
.modalTitle{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.iconClose{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(11,15,25,.10);
  background: #ffffff;
  cursor: pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.modalBody{
  overflow: auto;
  padding: 14px 16px 16px 16px;
  background: #ffffff;
}

.modalGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.roleCard{
  border: 1px solid rgba(11,15,25,.10);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.roleCard:hover{
  transform: translateY(-2px);
  border-color: rgba(246,71,73,.25);
  box-shadow: 0 22px 58px rgba(0,0,0,.08);
}
.roleCard.active{
  border-color: rgba(246,71,73,.45);
  box-shadow: 0 22px 58px rgba(246,71,73,.10);
}
.roleRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.roleName{
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: 15px;
}
.roleMini{
  margin: 0;
  color: rgba(11,15,25,.66);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.35;
}
.iconBadge{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11,15,25,.10);
  background: rgba(255,255,255,.85);
  display:grid;
  place-items:center;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  flex: 0 0 auto;
}
.iconBadge span{ font-size: 18px; }

.modalCtas{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content: flex-end;
}

.formGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 10px;
}
.field{
  display:flex;
  flex-direction: column;
  gap: 7px;
}
.field label{
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 12.5px;
  color: rgba(11,15,25,.78);
}
.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1px solid rgba(11,15,25,.12);
  background: #ffffff;
  border-radius: 14px;
  padding: 11px 12px;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: rgba(11,15,25,.92);
  outline: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
  transition: border-color .12s ease, transform .12s ease, box-shadow .12s ease;
}
.field textarea{
  min-height: 86px;
  resize: vertical;
  padding-top: 10px;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(11,15,25,.26);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.field small{
  color: rgba(11,15,25,.56);
  font-weight: 650;
  font-size: 12px;
  line-height: 1.35;
}
.formRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* # NEU 2025-11-30: Button-Reihe rechts ausrichten (Signup/Login) */
.formRowRight{ justify-content: flex-end; }

.checkRow{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(11,15,25,.10);
  border-radius: 16px;
  background: #ffffff;
}
.checkRow input{ margin-top: 3px; }
.checkRow label{
  font-weight: 700;
  font-size: 13px;
  color: rgba(11,15,25,.74);
  line-height: 1.35;
}
.formMsg{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,15,25,.10);
  background: #ffffff;
  color: rgba(11,15,25,.76);
  font-weight: 750;
  display: none;
  white-space: pre-wrap;
}
.formMsg.show{ display:block; }
.hidden{ display: none !important; }

@media (min-width: 880px){
  .navLinks{ display: inline-flex; }
}

@media (max-width: 960px){
  .heroGrid{ grid-template-columns: 1fr; }
  .phone{ width: min(440px, 100%); }
  .modalGrid{ grid-template-columns: 1fr; }
  .formGrid{ grid-template-columns: 1fr; }

  .rolePills{ padding: 4px; gap: 6px; }
  .pillBtn{ padding: 8px 10px; font-weight: 900; }
  .miniBadges{ gap: 12px; }
}

/* # NEU 2025-11-29: Desktop – Phone füllt die Kartenhöhe */
@media (min-width: 961px){
  .phone{
    /* Phone kleiner, damit auf 768px Höhe nicht alles sprengt */
    height: min(calc(100vh - var(--headerH) - 80px), 820px);
    width: auto;
  }

  .formGrid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Abschnitt-Layout auf Seite 2 */
.sectionBlock{
  margin-top: 32px;
}

/* Steps-Block: extra Abstand nach oben */
.sectionBlockSteps{
  text-align: center;
  margin-top: 120px;   /* hier kannst du bei Bedarf spielen: 48–100px */
}

.sectionBlockSteps .sectionSub{
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits-Block: ebenfalls mehr Abstand nach oben */
.sectionBlockBenefits{
  margin-top: 120px;
}


/* 3-Schritte Grid – wie im Mock: drei Karten nebeneinander mit rotem Rand */
.stepsGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.stepCard{
  background: #ffffff;
  border-radius: 28px;
  border: 2px solid var(--accent);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  padding: 18px 22px 20px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stepHeading{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.stepIndex{
  font-weight: 900;
  margin-right: 6px;
}

.stepText{
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}


/* Benefits-Switch & Content - Header über dem Benefits-Switch */
.benefitHeaderRow{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

/* Überschrift + Subtext in diesem Block zentrieren */
.sectionBlockBenefits .sectionTitle,
.sectionBlockBenefits .sectionSub{
  text-align: center;
}

/* Switch-Button (Pills) links starten lassen */
.benefitHeaderRow .benefitPills{
  align-self: flex-start;
}

.benefitPills{
  margin-top: 12px;
}

.benefitContent{
  margin-top: 22px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.benefitTitle{
  font-size: 16px;
  font-weight: 850;
  margin: 0 0 18px 0;
  text-align: left; /* Überschrift über den Cards */
}

/* Grid der Vorteilskarten */
.benefitGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* einzelne Karte */
.benefitCard{
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Icon-Container in den Benefit-Karten */
.benefitIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;   /* Abstand Icon ↔ Text – hier kannst du easy nachjustieren */
}

/* SVG-Icons selbst */
.benefitIcon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block;
  /* falls deine SVGs mit currentColor arbeiten, kannst du sie hier einfärben */
  color: rgba(11,15,25,0.8);
  opacity: 0.70;  /*macht sie etwas „weicher“ grau*/
  filter: grayscale(1); /* falls in Zukunft farbige SVGs kommen -> entsättigt */
}  

/* Employer Branding Icon dunkler */
.benefitIcon img[src$="EmployerBranding.svg"]{
  opacity: 0.95;      /* deutlich dunkler als 0.7 */
}
/* Schnelle Auszahlung Icon dunkler */
.benefitIcon img[src$="SchnelleAuszahlung.svg"]{
  opacity: 0.95;
}
/* Titel + Text in der Karte */
.benefitCardTitle{
  margin: 0;
  font-size: 14.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-align: left;
}

.benefitCardText{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 650;
  text-align: left;
}

/* Responsiv: Tablet 2 Spalten, Mobile 1 Spalte */
@media (max-width: 1100px){
  .benefitGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .benefitGrid{
    grid-template-columns: 1fr;
  }

  .benefitTitle{
    text-align: left;
  }
}



.taxBox{
  margin-top: 26px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* Inhalt: Icon + Text nebeneinander */
.taxBoxInner{
  display: flex;
  align-items: center;  /* <- war flex-start */
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11,15,25,.10);
  background: rgba(246,71,73,.06);
}


/* kleines Info-Icon links */
.taxIcon{
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid var(--accent);  /* Kreis gleiche Farbe wie Text */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);              /* „i“ gleiche Farbe wie Kreis */
}



/* Textblock rechts daneben */
.taxContent{
  flex: 1 1 auto;
}

/* Label über dem Text */
.taxLabel{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,15,25,.7);
  margin: 0 0 2px 0;
  text-align: left;
}

/* eigentlicher Hinweistext */
.taxText{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
}



/* Responsive: Steps untereinander auf Mobile */
@media (max-width: 900px){
  .stepsGrid{
    grid-template-columns: 1fr;
  }

  .benefitHeaderRow{
    align-items: flex-start;
  }
}

/* FAQ Sektion – kein Vollbild mehr, sondern normaler Abschnitt */
.sectionFaqs{
  padding: 24px 0 8px;                      /* oben / unten Abstand, gern feinjustieren */
  border-top: 1px solid rgba(11,15,25,.06); /* dünne Linie über FAQ */
  min-height: 0;                            /* war: 100vh - header */
  display: block;                           /* kein Flex-Container mehr */
}


.sectionSub{
  margin: 4px 0 20px 0;
  color: rgba(11,15,25,.65);
  font-weight: 650;
  font-size: 15px;
  line-height: 1.4;
}

.faqWrapper {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faqGroup {
  border-radius: 18px;
  border: 1px solid rgba(11, 15, 25, 0.06);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Header */
.faqHeader {
  width: 100%;
  border: none;
  background: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: #0b0f19;
}

.faqHeader:hover {
  background: #f5f7fb;
}

/* Aktiv: Buzz-Rot (gleiche Variable wie beim CTA-Button) */
.faqGroup.active .faqHeader {
  background: var(--accent);
  color: #ffffff;
}

.faqChevron {
  font-size: 18px;
  line-height: 1;
  opacity: 0.85;
}

.faqGroup.active .faqChevron {
  opacity: 1;
}

/* Inhalt + Animation */
.faqContent {
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid rgba(11, 15, 25, 0.06);
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease,
    padding 0.25s ease;
}

.faqGroup.active .faqContent {
  padding: 12px 20px 18px 20px;
  max-height: 2000px;
  opacity: 1;
}

.faqItem + .faqItem {
  margin-top: 12px;
}

.faqItem h3 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.faqItem p {
  margin: 2px 0 0 0;
  font-size: 13.5px;
  font-weight: 550;
  color: rgba(11, 15, 25, 0.8);
  line-height: 1.55;
}

.hero {
  /* Abstand vom Header nach unten */
  padding-top: 24px;   /* hier drehst du den Abstand */

  /* bisschen Luft nach unten, damit der Übergang zu Seite 2 nicht zu hart ist */
  padding-bottom: 64px;
}

/* Feintuning: Abstand Header -> Warum Buzz / FAQ */

#info {
  /* kleinerer Abstand nach oben als der Default 26px */
  padding-top: 20px;   /* nach Gefühl anpassen: 8, 12, 16 ... */
}

#faq.sectionFaqs{
  border-top: 1px solid rgba(11,15,25,.06); /* dünne graue Linie */
  padding-top: 18px;   /* Abstand über der Überschrift */
  padding-bottom: 24px; /* Luft zum Footer */
}


/* Feintuning: Abstände im Hero-Textblock (nur links neben dem Phone) */

/* 1) Weniger Abstand zwischen Switch-Button und rotem Kicker */
.heroGrid > div:first-child .rolePills{
  margin: 0 0 18px 0;           /* vorher 12px – bei Bedarf 4–8 ausprobieren */
}

/* 2) Etwas mehr Luft zwischen Kicker und Headline */
.heroGrid > div:first-child .kicker{
  margin: 4px 0 30px 0;        /* oben klein, unten etwas größer */
}

/* 3) Headline -> grauer Text: leicht entzerren */
.heroGrid > div:first-child h1{
  margin: 0 0 16px 0;          /* nur unten relevant */
}

/* 4) Mehr Abstand zwischen grauem Text und CTA-Button */
.heroGrid > div:first-child .sub{
  margin: 0 0 16px 0;
}

.heroGrid > div:first-child .heroCtas{
  margin-top: 26px;            /* hier den „Gap“ vor dem roten Button drehen */
}

@media (min-width: 961px){
  /* Hero-Box Desktop leicht nach oben schieben, damit unten immer Luft bleibt */
  .hero > .container{
    transform: translateY(-10px);
  }
}

/* Datenschutz Design */
.legalMain{
  padding: 32px 0 40px;
}

.legalContainer{
  width: min(var(--container), calc(100% - 40px));
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}


.legalMain h1{
  margin-top: 8px;
  margin-bottom: 18px;
}

.legalMain h2{
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 850;
}

.legalMain h3{
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 800;
}

.legalMain p,
.legalMain li{
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.legalMain ul{
  padding-left: 20px;
  margin-top: 6px;
  margin-bottom: 12px;
}

.cookieBanner{
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 999;
  padding: 10px 0;
  background: rgba(11,15,25,.96);
  color: #fff;
  font-size: 13px;
}

.cookieBanner.hidden{
  display: none;
}

.cookieBanner-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*Cookies*/
.cookieBanner-text{
  margin: 0;
  flex: 1 1 220px;
}

.cookieBanner-actions{
  display: flex;
  gap: 8px;
}

.cookieBanner .btn{
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
}

.cookieBanner .btn-primary{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookieBanner .btn-secondary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
