  .fsq {
    --sage: #5f746b;
    --sage-light: #92aa9f;
    --sage-dark: #45564f;
    --off-white: #f8f8f8;
    --coral: #ff7477;
    --coral-dark: #e2585b;
    --coral-soft: #ffe3e2;
    --text-dark: #2e332f;
    --text-muted: #6b756f;
    --white: #ffffff;

    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 36px 40px 30px;
    box-shadow: 0 26px 54px rgba(95,116,107,0.22);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: left;
    position: relative;
    overflow: hidden;
  }
  .fsq *, .fsq *::before, .fsq *::after { box-sizing: border-box; }
  .fsq [hidden] { display: none !important; }

  .fsq .fsq-screen { animation: fsq-in 0.35s ease both; }
  @keyframes fsq-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

  .fsq .fsq-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--coral-dark); margin: 0 0 14px;
  }
  .fsq .fsq-eyebrow::before, .fsq .fsq-eyebrow::after {
    content: ''; height: 1px; width: 36px; background: var(--coral-dark); opacity: 0.5;
  }

  .fsq .fsq-title {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
    color: var(--sage-dark); line-height: 1.25; letter-spacing: 0;
    text-transform: none; padding: 0; margin: 0 0 18px;
    font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  }
  .fsq .fsq-title:focus { outline: none; }
  .fsq .fsq-title .fsq-hand {
    font-family: 'Caveat', cursive; font-weight: 600; color: var(--coral-dark);
    display: inline-block; transform: rotate(-2deg); font-size: 1.25em; margin: 0 0.06em;
  }
  .fsq .fsq-center { text-align: center; }
  .fsq .fsq-lead { color: var(--text-muted); font-size: 1.02rem; margin: 0 0 28px; padding: 0; }
  .fsq .fsq-meta { color: var(--text-muted); font-size: calc(0.85rem - 3px); margin: 18px 0 0; padding: 0; }

  /* Buttons */
  .fsq .fsq-btn {
    display: inline-block; cursor: pointer; text-decoration: none; text-align: center;
    font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 1rem; line-height: 1.4;
    padding: 16px 36px; border-radius: 8px; border: 0;
    background: var(--coral); color: var(--white);
    box-shadow: 0 10px 26px rgba(255,116,119,0.4);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }
  .fsq .fsq-btn:hover { background: var(--coral-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,116,119,0.5); }
  .fsq .fsq-btn:disabled { opacity: 0.6; cursor: default; transform: none; }
  .fsq .fsq-link {
    background: none; border: 0; padding: 4px 0; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 400;
    color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px;
  }
  .fsq .fsq-link:hover { color: var(--sage-dark); }

  /* Fortschritt */
  .fsq .fsq-progress-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }
  .fsq .fsq-bar { height: 8px; border-radius: 999px; background: #e2ebe6; overflow: hidden; margin-bottom: 20px; }
  /* Fragetitel kleiner als die übrigen Überschriften, damit alle Antworten auf einen Laptop-Bildschirm passen */
  .fsq .fsq-title[data-role="question"] { font-size: clamp(1.25rem, 2.6vw, 1.55rem); margin-bottom: 16px; }
  .fsq .fsq-bar > span { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--coral); transition: width 0.4s ease; }

  /* Antworten */
  .fsq .fsq-options { display: grid; gap: 8px; margin: 0 0 12px; padding: 0; list-style: none; }
  .fsq .fsq-option {
    width: 100%; text-align: left; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 0.94rem; line-height: 1.4;
    color: var(--text-dark); background: var(--white);
    border: 1.5px solid rgba(95,116,107,0.3); border-radius: 12px;
    padding: 11px 18px 11px 48px; position: relative;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  }
  .fsq .fsq-option::before {
    content: ''; position: absolute; left: 18px; top: 50%; margin-top: -9px;
    width: 18px; height: 18px; border-radius: 50%;
    border: 1.5px solid var(--sage-light); background: var(--white);
    transition: all 0.15s ease;
  }
  .fsq .fsq-option:hover { border-color: var(--coral); background: #fff7f7; transform: translateX(3px); }
  .fsq .fsq-option:focus-visible, .fsq .fsq-btn:focus-visible, .fsq .fsq-link:focus-visible { outline: 3px solid rgba(255,116,119,0.5); outline-offset: 2px; }
  .fsq .fsq-option.is-selected { border-color: var(--coral); background: var(--coral-soft); }
  .fsq .fsq-option.is-selected::before { border-color: var(--coral); background: radial-gradient(circle, var(--coral) 0 45%, var(--white) 50%); }
  /* Fünfte Antwort ("läuft bei mir gut"): zählt für keine Kategorie, optisch etwas zurückgenommen */
  .fsq .fsq-option.is-neutral { border-style: dashed; color: var(--text-muted); }
  .fsq .fsq-option.is-neutral.is-selected { color: var(--text-dark); }

  /* Anmeldung (Coachmacher.ai-Formular eingebettet) */
  /* Das Formular bringt einen eigenen hellen Rahmen (Linie + Schatten, abgerundete Ecken) mit,
     den wir nicht ändern können. Wir schneiden ihn oben und unten 9 px und seitlich 16 px ab,
     damit die Felder ruhig auf der weißen Karte stehen (Formular-Innenabstand ist 25 px, es
     geht also nichts Sichtbares verloren). Das gilt nur, solange der Formular-Hintergrund weiß ist. */
  .fsq .fsq-embed { margin: 0 0 8px; overflow: hidden; }
  .fsq .fsq-embed iframe { display: block; width: calc(100% + 32px) !important; max-width: none; margin: -9px -16px !important; }
  .fsq .fsq-dev { border: 1.5px dashed var(--sage-light); border-radius: 12px; padding: 14px 16px; margin: 22px 0 0; font-size: 0.82rem; color: var(--text-muted); text-align: center; }
  .fsq .fsq-dev .fsq-link { display: inline-block; margin-top: 4px; font-weight: 500; }

  /* Ergebnis */
  .fsq .fsq-result-title { font-size: clamp(1.35rem, 3.6vw, 1.8rem); margin-bottom: 8px; }
  .fsq .fsq-tie-lead { text-align: center; color: var(--text-muted); margin: 0 0 8px; padding: 0; }
  .fsq .fsq-block + .fsq-block { margin-top: 44px; padding-top: 12px; border-top: 1px dashed rgba(95,116,107,0.3); }
  .fsq .fsq-block-name { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-dark); margin: 20px 0 0; }
  .fsq .fsq-sub {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--sage-dark);
    font-size: 1.15rem; line-height: 1.3; margin: 30px 0 10px; padding: 0; text-transform: none;
  }
  .fsq .fsq-body { margin: 0 0 8px; padding: 0; color: var(--text-dark); }
  .fsq .fsq-scenes { list-style: none; margin: 0 0 8px; padding: 0; }
  .fsq .fsq-scenes li { position: relative; padding: 0 0 0 28px; margin: 0 0 12px; list-style: none; }
  .fsq .fsq-scenes li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--coral-dark); font-weight: 600; }
  .fsq .fsq-reframe { text-align: center; margin: 34px 0 30px; }
  .fsq .fsq-reframe .fsq-hand-line {
    display: block; font-family: 'Caveat', cursive; font-weight: 600; color: var(--coral-dark);
    font-size: clamp(1.6rem, 4.6vw, 2rem); line-height: 1.2; margin-bottom: 10px; transform: rotate(-1deg);
  }
  .fsq .fsq-reframe p { margin: 0; padding: 0; color: var(--text-dark); }
  .fsq .fsq-tip { background: #eef1ef; border-left: 4px solid var(--sage); border-radius: 12px; padding: 20px 24px; margin: 0; }
  .fsq .fsq-tip-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 4px; }
  .fsq .fsq-tip-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--sage-dark); font-size: 1.1rem; line-height: 1.3; margin: 0 0 6px; padding: 0; display: block; }
  .fsq .fsq-tip-text { margin: 0; padding: 0; color: var(--text-dark); font-weight: 400; }

  /* Nächster Schritt */
  .fsq .fsq-cta { background: var(--coral-soft); border-radius: 20px; padding: 34px 30px 30px; margin-top: 44px; }
  .fsq .fsq-cta .fsq-eyebrow { margin-bottom: 10px; }
  .fsq .fsq-cta h3 {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--sage-dark); text-transform: none;
    font-size: 1.45rem; line-height: 1.3; margin: 0 0 12px; padding: 0; text-align: center;
  }
  .fsq .fsq-cta p { color: var(--text-dark); margin: 0 0 14px; padding: 0; }
  .fsq .fsq-cta ul { list-style: none; margin: 0 0 20px; padding: 0; }
  .fsq .fsq-cta li { position: relative; padding: 0 0 0 28px; margin: 0 0 10px; list-style: none; }
  .fsq .fsq-cta li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--coral-dark); font-weight: 600; }
  .fsq .fsq-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 22px; }
  .fsq .fsq-pills span { font-size: 0.78rem; font-weight: 500; color: var(--sage-dark); background: var(--white); border-radius: 999px; padding: 5px 14px; }
  .fsq .fsq-cta-action { text-align: center; }
  .fsq .fsq-cta-hint { color: var(--text-muted) !important; font-size: 0.85rem; margin: 12px 0 0 !important; }
  .fsq .fsq-restart { text-align: center; margin-top: 22px; }

  @media (max-width: 600px) {
    .fsq { padding: 30px 20px 26px; border-radius: 16px; }
    .fsq .fsq-option { padding: 11px 14px 11px 44px; }
    .fsq .fsq-option::before { left: 14px; }
    .fsq .fsq-btn { width: 100%; padding: 16px 20px; }
    .fsq .fsq-cta { padding: 28px 20px 24px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .fsq .fsq-screen { animation: none; }
    .fsq .fsq-bar > span, .fsq .fsq-option, .fsq .fsq-btn { transition: none; }
  }
