/* PVG Entscheidungshelfer 2.0 – vollständig gekapselt gegen Theme-/Elementor-Regeln */
.pvg-eh {
  --pvg-eh-blue: #00498e;
  --pvg-eh-mint: #59bd9c;
  --pvg-eh-ink: #17324d;
  --pvg-eh-muted: #61778b;
  --pvg-eh-soft: #f5f9fc;
  --pvg-eh-line: #dbe7ef;
  --pvg-eh-white: #fff;
  width: 100%;
  max-width: 100%;
  margin: 48px 0;
  overflow-x: clip;
  color: var(--pvg-eh-ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.65;
  isolation: isolate;
}
.pvg-eh,
.pvg-eh * { box-sizing: border-box; }
.pvg-eh .pvg-eh__shell,
.pvg-eh .pvg-eh__layout,
.pvg-eh .pvg-eh__choices,
.pvg-eh .pvg-eh__stage,
.pvg-eh .pvg-eh__panel { min-width: 0; max-width: 100%; }
.pvg-eh [hidden] { display: none !important; }
.pvg-eh button,
.pvg-eh a { -webkit-tap-highlight-color: transparent; }

.pvg-eh .pvg-eh__shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #f7fbfd 100%);
  border: 1px solid var(--pvg-eh-line);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(0, 73, 142, .12);
}
.pvg-eh .pvg-eh__header { max-width: 900px; margin: 0 0 34px; }
.pvg-eh .pvg-eh__eyebrow {
  display: inline-flex;
  margin: 0 0 11px;
  padding: 7px 14px;
  color: #176f5b;
  background: rgba(88, 189, 156, .15);
  border-radius: 999px;
  font-size: .78em;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}
.pvg-eh .pvg-eh__header h2 {
  margin: 0 0 14px;
  color: var(--pvg-eh-blue);
  font-family: inherit;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}
.pvg-eh .pvg-eh__header > p:last-child { margin: 0; }

/* App-Aufbau: Fragen oben, Antwort darunter */
.pvg-eh .pvg-eh__layout { display: block; width: 100%; }
.pvg-eh .pvg-eh__choices {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
  position: static;
}
.pvg-eh .pvg-eh__choice {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr) 24px !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 88px;
  margin: 0 !important;
  padding: 16px 18px !important;
  overflow: hidden;
  color: var(--pvg-eh-ink) !important;
  background: var(--pvg-eh-white) !important;
  border: 1px solid var(--pvg-eh-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 73, 142, .07) !important;
  font: inherit !important;
  font-size: .91em !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: normal !important;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.pvg-eh .pvg-eh__choice > span:nth-child(2) { min-width: 0; overflow-wrap: anywhere; }
.pvg-eh .pvg-eh__choice-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(88, 189, 156, .14);
  color: var(--pvg-eh-mint);
  line-height: 1;
}
.pvg-eh .pvg-eh__svg-icon { display: block; width: 24px; height: 24px; }
.pvg-eh .pvg-eh__choice-arrow { justify-self: end; font-size: 1.25em; line-height: 1; }
.pvg-eh .pvg-eh__choice:hover,
.pvg-eh .pvg-eh__choice:focus-visible {
  transform: translateY(-2px);
  border-color: var(--pvg-eh-mint) !important;
  box-shadow: 0 13px 30px rgba(0, 73, 142, .12) !important;
  outline: 3px solid rgba(88, 189, 156, .22) !important;
  outline-offset: 2px;
}
.pvg-eh .pvg-eh__choice.is-active {
  color: #fff !important;
  background: var(--pvg-eh-blue) !important;
  border-color: var(--pvg-eh-blue) !important;
  box-shadow: 0 14px 34px rgba(0, 73, 142, .24) !important;
}
.pvg-eh .pvg-eh__choice.is-active .pvg-eh__choice-icon { color: var(--pvg-eh-mint); background: rgba(255,255,255,.16); }

.pvg-eh .pvg-eh__stage { width: 100%; min-width: 0; scroll-margin-top: 96px; }
.pvg-eh .pvg-eh__panel {
  width: 100%;
  margin: 0;
  padding: clamp(22px, 3.2vw, 40px);
  background: #fff;
  border: 1px solid var(--pvg-eh-line);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(0, 73, 142, .10);
  scroll-margin-top: 96px;
  animation: pvgEhIn .28s ease;
}
.pvg-eh .pvg-eh__panel:focus { outline: none; }
.pvg-eh .pvg-eh__panel:focus-visible { outline: 3px solid var(--pvg-eh-blue); outline-offset: 4px; }
.pvg-eh .pvg-eh__panel-head { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--pvg-eh-line); }
.pvg-eh .pvg-eh__panel-icon { display: grid; place-items: center; flex: 0 0 58px; width: 58px; height: 58px; color: var(--pvg-eh-mint); border-radius: 18px; background: rgba(88, 189, 156, .16); }
.pvg-eh .pvg-eh__panel-icon .pvg-eh__svg-icon { width: 30px; height: 30px; }
.pvg-eh .pvg-eh__panel-head p { margin: 0; color: #6b8195; font-size: .75em; font-weight: 800; letter-spacing: .06em; line-height: 1.3; text-transform: uppercase; }
.pvg-eh .pvg-eh__panel-head h3 { margin: 3px 0 0; color: var(--pvg-eh-blue); font-family: inherit; font-size: clamp(23px, 3vw, 32px); font-weight: 800; line-height: 1.25; }
.pvg-eh .pvg-eh__answer { margin-top: 20px; padding: 20px; border: 1px solid var(--pvg-eh-line); border-radius: 18px; }
.pvg-eh .pvg-eh__answer h4,
.pvg-eh .pvg-eh__practice h4 { margin: 0 0 8px; color: var(--pvg-eh-blue); font-family: inherit; font-size: 1.03em; font-weight: 800; line-height: 1.35; }
.pvg-eh .pvg-eh__answer p,
.pvg-eh .pvg-eh__practice p,
.pvg-eh .pvg-eh__next p { margin: 0; }
.pvg-eh .pvg-eh__answer--lead { background: #f7fbff; border-left: 5px solid var(--pvg-eh-blue); }
.pvg-eh .pvg-eh__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.pvg-eh .pvg-eh__answer--focus { background: rgba(88,189,156,.09); border-color: rgba(88,189,156,.38); }
.pvg-eh .pvg-eh__answer--focus ul { margin: 0; padding-left: 22px; }
.pvg-eh .pvg-eh__answer--focus li + li { margin-top: 7px; }
.pvg-eh .pvg-eh__answer--mistake { background: #fff8f3; border-color: #f1d6c4; }
.pvg-eh .pvg-eh__practice { display: flex; gap: 16px; margin-top: 20px; padding: 20px; color: #fff; background: var(--pvg-eh-blue); border-radius: 18px; }
.pvg-eh .pvg-eh__practice h4 { color: #fff; }
.pvg-eh .pvg-eh__practice-icon { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; color: var(--pvg-eh-mint); border: 1px solid rgba(89,189,156,.55); border-radius: 13px; background: rgba(255,255,255,.08); }
.pvg-eh .pvg-eh__practice-icon .pvg-eh__svg-icon { width: 25px; height: 25px; }
.pvg-eh .pvg-eh__next { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 20px; padding: 22px; background: linear-gradient(135deg, rgba(88,189,156,.16), rgba(0,73,142,.08)); border: 1px solid rgba(88,189,156,.36); border-radius: 20px; }
.pvg-eh .pvg-eh__next-label { margin-bottom: 4px !important; color: var(--pvg-eh-blue); font-weight: 800; }
.pvg-eh .pvg-eh__cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  margin: 0 !important;
  padding: 14px 20px !important;
  color: #083c32 !important;
  background: var(--pvg-eh-mint) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 24px rgba(88,189,156,.28);
  font: inherit !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pvg-eh .pvg-eh__cta:hover,
.pvg-eh .pvg-eh__cta:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(88,189,156,.36); outline: 3px solid rgba(88,189,156,.24); outline-offset: 2px; }
.pvg-eh .pvg-eh__panel-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--pvg-eh-line); }
.pvg-eh .pvg-eh__panel-nav-button {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto !important;
  min-height: 48px;
  margin: 0 !important;
  padding: 11px 17px !important;
  color: var(--pvg-eh-blue) !important;
  background: #fff !important;
  border: 1px solid var(--pvg-eh-line) !important;
  border-radius: 999px !important;
  font: inherit !important;
  font-size: .88em !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pvg-eh .pvg-eh__panel-nav-button--back { justify-self: start; }
.pvg-eh .pvg-eh__panel-nav-button--next { justify-self: end; color: #fff !important; background: var(--pvg-eh-blue) !important; border-color: var(--pvg-eh-blue) !important; }
.pvg-eh .pvg-eh__panel-nav-button:hover,
.pvg-eh .pvg-eh__panel-nav-button:focus-visible { transform: translateY(-2px); border-color: var(--pvg-eh-mint) !important; box-shadow: 0 9px 22px rgba(0,73,142,.13); outline: 3px solid rgba(88,189,156,.22); outline-offset: 2px; }

/* V5.6: WCAG 2.2 focus indicators */
.pvg-eh .pvg-eh__choice:focus-visible,
.pvg-eh .pvg-eh__cta:focus-visible,
.pvg-eh .pvg-eh__panel-nav-button:focus-visible { outline-color: var(--pvg-eh-blue) !important; }
.pvg-eh .pvg-eh__panel-count { color: #6b8195; font-size: .78em; font-weight: 800; }
.pvg-eh .pvg-eh__disclaimer { margin: 22px 0 0; color: var(--pvg-eh-muted); font-size: .78em; }

/* Indexierbares FAQ-Akkordeon ohne JavaScript-Abhängigkeit */
.pvg-eh .pvg-eh__faq { margin-top: clamp(38px, 6vw, 68px); padding-top: clamp(32px, 5vw, 52px); border-top: 1px solid var(--pvg-eh-line); }
.pvg-eh .pvg-eh__faq-header { max-width: 850px; margin-bottom: 24px; }
.pvg-eh .pvg-eh__faq-header h3 { margin: 0 0 12px; color: var(--pvg-eh-blue); font-family: inherit; font-size: clamp(27px, 3.5vw, 38px); font-weight: 800; line-height: 1.2; }
.pvg-eh .pvg-eh__faq-header > p:last-child { margin: 0; color: var(--pvg-eh-muted); }
.pvg-eh .pvg-eh__faq-list { display: grid; gap: 12px; }
.pvg-eh .pvg-eh__faq-item { margin: 0; overflow: hidden; background: #fff; border: 1px solid var(--pvg-eh-line); border-radius: 17px; box-shadow: 0 7px 20px rgba(0,73,142,.06); }
.pvg-eh .pvg-eh__faq-item[open] { border-color: rgba(89,189,156,.7); box-shadow: 0 11px 28px rgba(0,73,142,.09); }
.pvg-eh .pvg-eh__faq-item summary {
  display: grid;
  grid-template-columns: minmax(0,1fr) 30px;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 17px 20px;
  color: var(--pvg-eh-blue);
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.pvg-eh .pvg-eh__faq-item summary::-webkit-details-marker { display: none; }
.pvg-eh .pvg-eh__faq-item summary::marker { content: ""; }
.pvg-eh .pvg-eh__faq-item summary:hover { background: rgba(89,189,156,.08); }
.pvg-eh .pvg-eh__faq-item summary:focus-visible { outline: 3px solid var(--pvg-eh-blue); outline-offset: -3px; border-radius: 15px; }
.pvg-eh .pvg-eh__faq-toggle { position: relative; width: 30px; height: 30px; color: var(--pvg-eh-blue); background: rgba(89,189,156,.17); border-radius: 50%; }
.pvg-eh .pvg-eh__faq-toggle::before,
.pvg-eh .pvg-eh__faq-toggle::after { content: ""; position: absolute; top: 14px; left: 8px; width: 14px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease; }
.pvg-eh .pvg-eh__faq-toggle::after { transform: rotate(90deg); }
.pvg-eh .pvg-eh__faq-item[open] .pvg-eh__faq-toggle::after { transform: rotate(0); }
.pvg-eh .pvg-eh__faq-answer { padding: 0 64px 20px 20px; color: var(--pvg-eh-muted); }
.pvg-eh .pvg-eh__faq-answer p { margin: 0; }
.pvg-eh .pvg-eh__faq-answer a { display: inline-block; margin-top: 11px; color: var(--pvg-eh-blue); font-weight: 800; text-underline-offset: 3px; }
.pvg-eh .pvg-eh__faq-answer a:hover,
.pvg-eh .pvg-eh__faq-answer a:focus-visible { color: #176f5b; text-decoration-thickness: 2px; }

@keyframes pvgEhIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }

@media (max-width: 800px) {
  .pvg-eh { font-size: 18px; margin: 34px 0; }
  .pvg-eh .pvg-eh__shell { padding: 24px 18px; border-radius: 24px; }
  .pvg-eh .pvg-eh__choices { grid-template-columns: 1fr; gap: 11px; margin-bottom: 24px; }
  .pvg-eh .pvg-eh__choice { min-height: 0; padding: 14px 15px !important; border-radius: 16px !important; }
  .pvg-eh .pvg-eh__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .pvg-eh .pvg-eh__shell { padding: 22px 14px; border-radius: 21px; }
  .pvg-eh .pvg-eh__header { margin-bottom: 24px; }
  .pvg-eh .pvg-eh__choice { grid-template-columns: 40px minmax(0,1fr) 20px !important; gap: 10px !important; font-size: .9em !important; }
  .pvg-eh .pvg-eh__choice-icon { width: 38px; height: 38px; border-radius: 12px; }
  .pvg-eh .pvg-eh__panel { padding: 20px 14px; border-radius: 19px; }
  .pvg-eh .pvg-eh__panel-head { align-items: flex-start; gap: 12px; }
  .pvg-eh .pvg-eh__panel-icon { flex-basis: 50px; width: 50px; height: 50px; border-radius: 15px; }
  .pvg-eh .pvg-eh__answer,
  .pvg-eh .pvg-eh__practice,
  .pvg-eh .pvg-eh__next { padding: 17px; }
  .pvg-eh .pvg-eh__next { align-items: stretch; flex-direction: column; }
  .pvg-eh .pvg-eh__cta { width: 100%; white-space: normal; text-align: center; }
  .pvg-eh .pvg-eh__panel-nav { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pvg-eh .pvg-eh__panel-count { display: none; }
  .pvg-eh .pvg-eh__panel-nav-button { width: 100% !important; padding: 11px 10px !important; font-size: .82em !important; }
  .pvg-eh .pvg-eh__faq-item summary { grid-template-columns: minmax(0,1fr) 28px; gap: 10px; min-height: 58px; padding: 15px; font-size: .94em; }
  .pvg-eh .pvg-eh__faq-answer { padding: 0 15px 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .pvg-eh *, .pvg-eh *::before, .pvg-eh *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
