.elementor-6634 .elementor-element.elementor-element-1be8061{--display:flex;}/* Start custom CSS */:root {
  /* ---- Grundfarben (für Katrin gut änderbar) ---- */
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --bg-soft: #f4f4f5;
  --card-bg: #ffffff;

  --text-main: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;

  --radius-card: 20px;
  --radius-pill: 999px;
}

/* Seitenhintergrund */
body {
  background: var(--bg-soft);
}

/* Gesamtcontainer */
#quiz {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-body);
  box-sizing: border-box;
}

/* HERO-Karte (weißes Feld oben) */
.quiz-hero {
  margin: 0 auto 32px;
  padding: 24px 24px 22px;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
  border-top: 4px solid var(--brand);
}
.quiz-hero h1 {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;        /* minimal kleiner */
    line-height: 1.3;
}

.quiz-hero p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}

/* Bild: bewusst kleiner, weniger „bildlastig“ */
.quiz-hero-img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 260px;
  height: auto;
  margin: 14px auto 10px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

/* Bullet-Liste unter dem Bild */
.quiz-hero ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 16px;
  font-size: 14px;
  color: var(--text-body);
}
.quiz-hero ul li + li {
  margin-top: 4px;
}
.quiz-hero ul li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 700;
}

/* Start-CTA */
.quiz-hero .quiz-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--brand);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.06s ease;
}
.quiz-hero .quiz-cta:hover {
  background: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(30, 64, 175, 0.45);
  transform: translateY(-1px);
}
.quiz-hero .quiz-cta:active {
  background: var(--brand-dark);
  transform: translateY(0);
}

.quiz-hero .meta-line {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Progress-Box */
#progressbox {
  display: block;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 12px 18px;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
#progress {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
#progressbar {
  width: 100%;
  height: 9px;
  background: #f3f4f6;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.04);
}
#progressfill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  transition: width 0.25s ease;
}

/* Fragen-Karten */
#quiz .q {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
#quiz .q h3 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.35;
  max-width: 620px;
}

/* Antwort-Buttons */
#quiz section.q .ans {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 6px auto;
  padding: 13px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.06s ease;
}
#quiz section.q .ans:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}
#quiz section.q .ans:active {
  background: #e0e7ff;
  transform: translateY(0);
}
#quiz section.q .ans.selected {
  background: #e0e7ff;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.4);
}
#quiz section.q .ans.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 0.9rem;
  color: #4338ca;
  opacity: 0.9;
}

/* hidden-Klasse */
#quiz .q.hidden {
  display: none !important;
}

/* OPTIN-Block */
#optin {
  margin-top: 26px;
  display: none; /* Startzustand, JS schaltet auf block */
}
#optin h3 {
  font-size: 18px;
  margin-bottom: 14px;
  text-align: center;
  color: var(--text-main);
}

/* ActiveCampaign-Formular im Quiz */
#quiz ._form_57 ._submit {
  background: var(--brand) !important;
  color: #ffffff !important;
  border-radius: var(--radius-pill) !important;
  padding: 11px 24px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
}
#quiz ._form_57 ._submit:hover {
  background: var(--brand-dark) !important;
}

/* Mobile-Optimierung */
@media (max-width: 640px) {
  #quiz {
    padding: 16px 10px 32px;
  }

  .quiz-hero {
    margin: 4px 0 20px;
    padding: 18px 16px 18px;
    border-radius: 14px;
  }

  .quiz-hero h1 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .quiz-hero p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .quiz-hero-img {
    max-width: 100%;
    max-height: 230px;
    :root {
  /* ---- Grundfarben (für Katrin gut änderbar) ---- */
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --bg-soft: #f4f4f5;
  --card-bg: #ffffff;

  --text-main: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;

  --radius-card: 20px;
  --radius-pill: 999px;
}

/* Seitenhintergrund */
body {
  background: var(--bg-soft);
}

/* Gesamtcontainer */
#quiz {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-body);
  box-sizing: border-box;
}

/* HERO-Karte (weißes Feld oben) */
.quiz-hero {
  margin: 0 auto 32px;
  padding: 24px 24px 22px;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
  border-top: 4px solid var(--brand);
}
.quiz-hero h1 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--text-main);
  letter-spacing: 0.01em;
}
.quiz-hero p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}

/* Bild: bewusst kleiner, weniger „bildlastig“ */
.quiz-hero-img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 260px;
  height: auto;
  margin: 14px auto 10px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

/* Bullet-Liste unter dem Bild */
.quiz-hero ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 16px;
  font-size: 14px;
  color: var(--text-body);
}
.quiz-hero ul li + li {
  margin-top: 4px;
}
.quiz-hero ul li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 700;
}

/* Start-CTA */
.quiz-hero .quiz-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--brand);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.06s ease;
}
.quiz-hero .quiz-cta:hover {
  background: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(30, 64, 175, 0.45);
  transform: translateY(-1px);
}
.quiz-hero .quiz-cta:active {
  background: var(--brand-dark);
  transform: translateY(0);
}

.quiz-hero .meta-line {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Progress-Box */
#progressbox {
  display: block;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 12px 18px;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
#progress {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
#progressbar {
  width: 100%;
  height: 9px;
  background: #f3f4f6;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.04);
}
#progressfill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  transition: width 0.25s ease;
}

/* Fragen-Karten */
#quiz .q {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
#quiz .q h3 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.35;
  max-width: 620px;
}

/* Antwort-Buttons */
#quiz section.q .ans {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 6px auto;
  padding: 13px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.06s ease;
}
#quiz section.q .ans:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}
#quiz section.q .ans:active {
  background: #e0e7ff;
  transform: translateY(0);
}
#quiz section.q .ans.selected {
  background: #e0e7ff;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.4);
}
#quiz section.q .ans.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 0.9rem;
  color: #4338ca;
  opacity: 0.9;
}

/* hidden-Klasse */
#quiz .q.hidden {
  display: none !important;
}

/* OPTIN-Block */
#optin {
  margin-top: 26px;
  display: none; /* Startzustand, JS schaltet auf block */
}
#optin h3 {
  font-size: 18px;
  margin-bottom: 14px;
  text-align: center;
  color: var(--text-main);
}

/* ActiveCampaign-Formular im Quiz */
#quiz ._form_57 ._submit {
  background: var(--brand) !important;
  color: #ffffff !important;
  border-radius: var(--radius-pill) !important;
  padding: 11px 24px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
}
#quiz ._form_57 ._submit:hover {
  background: var(--brand-dark) !important;
}

/* Mobile-Optimierung */
@media (max-width: 640px) {
  #quiz {
    padding: 16px 10px 32px;
  }

  .quiz-hero {
    margin: 4px 0 20px;
    padding: 18px 16px 18px;
    border-radius: 14px;
  }

  .quiz-hero h1 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .quiz-hero p {
    font-:root {
  /* ---- Grundfarben (für Katrin gut änderbar) ---- */
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --bg-soft: #f4f4f5;
  --card-bg: #ffffff;

  --text-main: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;

  --radius-card: 20px;
  --radius-pill: 999px;
}

/* Seitenhintergrund */
body {
  background: var(--bg-soft);
}

/* Gesamtcontainer */
#quiz {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-body);
  box-sizing: border-box;
}

/* HERO-Karte (weißes Feld oben) */
.quiz-hero {
  margin: 0 auto 32px;
  padding: 24px 24px 22px;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
  border-top: 4px solid var(--brand);
}
.quiz-hero h1 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--text-main);
  letter-spacing: 0.01em;
}
.quiz-hero p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}

/* Bild: bewusst kleiner, weniger „bildlastig“ */
.quiz-hero-img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 260px;
  height: auto;
  margin: 14px auto 10px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

/* Bullet-Liste unter dem Bild */
.quiz-hero ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 16px;
  font-size: 14px;
  color: var(--text-body);
}
.quiz-hero ul li + li {
  margin-top: 4px;
}
.quiz-hero ul li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 700;
}

/* Start-CTA */
.quiz-hero .quiz-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--brand);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.06s ease;
}
.quiz-hero .quiz-cta:hover {
  background: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(30, 64, 175, 0.45);
  transform: translateY(-1px);
}
.quiz-hero .quiz-cta:active {
  background: var(--brand-dark);
  transform: translateY(0);
}

.quiz-hero .meta-line {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Progress-Box */
#progressbox {
  display: block;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 12px 18px;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
#progress {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
#progressbar {
  width: 100%;
  height: 9px;
  background: #f3f4f6;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.04);
}
#progressfill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  transition: width 0.25s ease;
}

/* Fragen-Karten */
#quiz .q {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
#quiz .q h3 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.35;
  max-width: 620px;
}

/* Antwort-Buttons */
#quiz section.q .ans {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 6px auto;
  padding: 13px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.06s ease;
}
#quiz section.q .ans:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}
#quiz section.q .ans:active {
  background: #e0e7ff;
  transform: translateY(0);
}
#quiz section.q .ans.selected {
  background: #e0e7ff;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.4);
}
#quiz section.q .ans.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 0.9rem;
  color: #4338ca;
  opacity: 0.9;
}

/* hidden-Klasse */
#quiz .q.hidden {
  display: none !important;
}

/* OPTIN-Block */
#optin {
  margin-top: 26px;
  display: none; /* Startzustand, JS schaltet auf block */
}
#optin h3 {
  font-size: 18px;
  margin-bottom: 14px;
  text-align: center;
  color: var(--text-main);
}

/* ActiveCampaign-Formular im Quiz */
#quiz ._form_57 ._submit {
  background: var(--brand) !important;
  color: #ffffff !important;
  border-radius: var(--radius-pill) !important;
  padding: 11px 24px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
}
#quiz ._form_57 ._submit:hover {
  background: var(--brand-dark) !important;
}

/* Mobile-Optimierung */
@media (max-width: 640px) {
  #quiz {
    padding: 16px 10px 32px;
  }

  .quiz-hero {
    margin: 4px 0 20px;
    padding: 18px 16px 18px;
    border-radius: 14px;
  }

  .quiz-hero h1 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .quiz-hero p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .quiz-hero-img {
    max-width: 100%;
    max-height: 230px;
    margin: 10px auto 8px;
  }

  .quiz-hero ul {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .quiz-hero .quiz-cta {
    width: 100%;
    max-width: 360px;
  }

  .quiz-hero .meta-line {
    font-size: 11px;
    margin-top: 6px;
  }

  #quiz .q {
    margin: 18px 0;
    padding: 18px 14px 14px;
  }

  #quiz .q h3 {
    font-size: 18px;
  }
}size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .quiz-hero-img {
    max-width: 100%;
    max-height: 230px;
    margin: 10px auto 8px;
  }

  .quiz-hero ul {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .quiz-hero .quiz-cta {
    width: 100%;
    max-width: 360px;
  }

  .quiz-hero .meta-line {
    font-size: 11px;
    margin-top: 6px;
  }

  #quiz .q {
    margin: 18px 0;
    padding: 18px 14px 14px;
  }

  #quiz .q h3 {
    font-size: 18px;
  }
}margin: 10px auto 8px;
  }

  .quiz-hero ul {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .quiz-hero .quiz-cta {
    width: 100%;
    max-width: 360px;
  }

  .quiz-hero .meta-line {
    font-size: 11px;
    margin-top: 6px;
  }

  #quiz .q {
    margin: 18px 0;
    padding: 18px 14px 14px;
  }

  #quiz .q h3 {
    font-size: 18px;
  }
  
}
/* ===========================
   Feintuning ohne Verschieben
   =========================== */

/* Karte etwas schmaler */
#quiz {
    max-width: 780px !important;
}

/* Bild kleiner, weniger dominant */
.quiz-hero-img {
    max-width: 420px !important;   /* vorher 480+ */
    max-height: 240px !important;
    margin: 16px auto 12px !important;
    object-fit: cover;
}

/* Bullet-Liste etwas weniger breit */
.quiz-hero ul {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA bleibt zentriert – leichte Verkleinerung */
.quiz-hero .quiz-cta {
    padding: 10px 24px !important;
    font-size: 15px !important;
}

/* Meta-Zeile etwas dezenter */
.quiz-hero .meta-line {
    font-size: 12px !important;
    opacity: 0.8;
}/* End custom CSS */