/* ═══════════════════════════════════
   QUIZ FLOW — Full-screen overlay
   ═══════════════════════════════════ */

html.quiz-active,
html.quiz-active body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.quiz-overlay *,
.quiz-overlay *::before,
.quiz-overlay *::after {
    box-sizing: border-box;
}

.quiz-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #f6f4f1;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.quiz-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Logo */
.qz-logo {
    text-align: center;
    padding: 24px 0 0;
    flex-shrink: 0;
}
.qz-logo img {
    height: 30px !important;
    width: auto !important;
    mix-blend-mode: multiply;
}

/* Progress wrap */
.qz-progress-wrap {
    flex-shrink: 0;
    padding: 0 16px;
}
.qz-progress-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}
.qz-progress-count {
    display: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: #3a332e;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

/* Progress bar */
.qz-progress {
    position: sticky;
    top: 0;
    left: 0; right: 0;
    height: 4px;
    background: rgba(30,28,26,0.06);
    z-index: 210;
    flex-shrink: 0;
}

.qz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e8530e, #DF031C);
    border-radius: 0 2px 2px 0;
    transition: width 0.5s cubic-bezier(.23,1,.32,1);
    width: 0%;
}

/* Quiz body */
.qz-body {
    flex: 1;
    display: flex;
    align-items: safe center;
    justify-content: center;
    padding: 60px 24px 80px;
    min-height: 100dvh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Question container */
.qz-question {
    width: 100%;
    max-width: 540px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.23,1,.32,1);
}

.qz-question.visible {
    opacity: 1;
    transform: translateY(0);
}

.qz-question.exit {
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Category label — dark forest green pill */
.qz-cat-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: #0e2a1b;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.66rem;
    font-weight: 800;
    color: #f6f4f1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: qzCatFadeIn 0.5s ease;
    box-shadow: 0 4px 14px rgba(14,42,27,0.15);
}

.qz-cat-dot {
    opacity: 0.5;
    color: rgba(246,244,241,0.6);
    font-weight: 900;
}
.qz-cat-count {
    font-variant-numeric: tabular-nums;
    color: #c8e99d;
    font-weight: 800;
}
.qz-cat-name { color: inherit; }

@keyframes qzCatFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Question text — serif to match brand pattern (landing + offer + breathers) */
.qz-q {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 3.6vw, 1.7rem);
    font-weight: 700;
    color: #1e1c1a;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}

/* Optional subtitle under the question */
.qz-q-hint {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #8a8279;
    line-height: 1.45;
    margin: -16px 0 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Answer options ── */
.qz-opts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
}

.qz-opts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.qz-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 20px 22px;
    background: #ffffff;
    border: 2px solid rgba(30,28,26,0.12);
    border-radius: 14px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e1c1a;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(30,28,26,0.06), 0 1px 2px rgba(30,28,26,0.04);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    position: relative;
}

.qz-opts-grid .qz-opt {
    flex-direction: column;
    gap: 8px;
    padding: 16px 12px;
    text-align: center;
    min-height: 92px;
    justify-content: center;
}

.qz-opt-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    line-height: 1;
    background: transparent;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.qz-opts-grid .qz-opt-emoji {
    width: auto;
    height: auto;
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.qz-opt-text {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.qz-opt:hover {
    border-color: rgba(232,83,14,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(30,28,26,0.09), 0 2px 6px rgba(30,28,26,0.05);
}

.qz-opt:hover .qz-opt-emoji {
    transform: scale(1.1);
}

.qz-opt:active {
    transform: translateY(0) scale(0.99);
}

.qz-opt.selected {
    border-color: #e8530e;
    background: rgba(232,83,14,0.06);
    box-shadow: 0 0 0 3px rgba(232,83,14,0.14), 0 8px 22px rgba(232,83,14,0.16);
    animation: qzSelectPop 0.35s cubic-bezier(.34,1.56,.64,1);
}

.qz-opt.selected .qz-opt-emoji {
    transform: scale(1.12);
}

@keyframes qzSelectPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Accent word (orange) inside option text */
.qz-opt-highlight {
    color: #e8530e;
    font-weight: 700;
}

/* Positive option — highlight in dark green instead of orange */
.qz-opt--positive .qz-opt-highlight {
    color: #2a5a3a;
}
.qz-opt--positive {
    background: rgba(42,90,58,0.12);
    border-color: rgba(42,90,58,0.28);
}
.qz-opt--positive.selected {
    border-color: #2a5a3a;
    background: rgba(42,90,58,0.08);
    box-shadow: 0 0 0 3px rgba(42,90,58,0.14), 0 8px 22px rgba(42,90,58,0.16);
}
.qz-opt--positive:hover {
    border-color: rgba(42,90,58,0.4);
}

/* Critical option — "Alles davon", highlight in deep red */
.qz-opt--critical .qz-opt-highlight {
    color: #c32b1f;
}
.qz-opt--critical {
    background: rgba(223,3,28,0.02);
}
.qz-opt--critical:hover {
    border-color: rgba(195,43,31,0.45);
}
.qz-opt--critical.selected {
    border-color: #c32b1f;
    background: rgba(223,3,28,0.05);
    box-shadow: 0 0 0 3px rgba(195,43,31,0.14), 0 8px 22px rgba(195,43,31,0.16);
}
/* Black check-badge on selected critical multi option */
.qz-opt--critical[data-multi].selected::after {
    background: #1e1c1a;
    box-shadow: 0 2px 6px rgba(30,28,26,0.35);
}

/* Soft variant for "don't know" / uncertain answers — grayer + italic */
.qz-opt--soft .qz-opt-text {
    color: #9b938a;
    font-style: italic;
    font-weight: 500;
}
.qz-opt--soft:hover .qz-opt-text {
    color: #6b645f;
}
.qz-opt--soft.selected .qz-opt-text {
    color: #e8530e;
    font-style: italic;
}

/* Multi-select checkmark overlay on selected */
.qz-opt[data-multi].selected::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    background: #e8530e;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 13px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 6px rgba(232,83,14,0.35);
}

/* ── Text input ── */
.qz-input-wrap {
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
}

.qz-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(30,28,26,0.06);
    border-radius: 14px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1e1c1a;
    outline: none;
    transition: border-color 0.25s ease;
    resize: vertical;
    min-height: 80px;
}

.qz-input::placeholder {
    color: #9b938a;
}

.qz-input:focus {
    border-color: #e8530e;
    box-shadow: 0 0 0 3px rgba(232,83,14,0.06);
}

/* ── Weiter button ── */
.qz-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: linear-gradient(135deg, #e8530e, #DF031C);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(223,3,28,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.4;
    pointer-events: none;
}

.qz-next.enabled {
    opacity: 1;
    pointer-events: all;
}

.qz-next.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(223,3,28,0.25);
}

.qz-next.enabled:active {
    transform: translateY(0) scale(0.98);
}

/* Hidden state for auto-advance questions */
.qz-next.hidden { display: none; }

/* ── Mixed type: options + text ── */
.qz-mixed-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: #9b938a;
    font-size: 0.72rem;
    font-weight: 500;
}

.qz-mixed-divider::before,
.qz-mixed-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(30,28,26,0.06);
}

/* ── Trust footer ── */
.qz-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.qz-trust span {
    font-size: 0.77rem;
    color: #9b938a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.qz-trust svg {
    width: 13px; height: 13px;
    stroke: #5a6f3a;
    stroke-width: 2.5;
    fill: none;
}

/* ── Breather / transition screen — Serif editorial style ── */
.qz-breather {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 12px 20px 28px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

/* Chapter pill — dark green, rounded */
.qz-breather-chapter-pill {
    display: inline-block;
    padding: 10px 22px;
    background: #0e2a1b;
    border-radius: 100px;
    color: #f6f4f1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(14,42,27,0.22);
    animation: qzBreatherPop 0.5s cubic-bezier(.34,1.56,.64,1) both;
}

/* Script accent — Sansita Swashed (matches offer/checkout) */
.qz-script {
    font-family: 'Sansita Swashed', cursive;
    font-weight: 700;
    font-weight: 700;
    color: #e8530e;
    text-transform: none;
    letter-spacing: -0.01em;
    display: inline;
}

@keyframes qzBreatherPop {
    0% { opacity: 0; transform: translateY(-10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.qz-breather-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: #1e1c1a;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 8px 0 0;
    text-transform: none;
    max-width: 640px;
    text-wrap: balance;
}

/* Split-title layout: big italic eyebrow on top, smaller h2 below */
.qz-breather-title--split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 8px 0 0;
}
.qz-breather-eyebrow {
    font-family: 'Sansita Swashed', cursive;
    font-weight: 700;
    font-weight: 700;
    font-size: clamp(3rem, 11vw, 4.5rem);
    line-height: 1;
    color: #e8530e;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
    position: relative;
}
.qz-breather-eyebrow::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: #e8530e;
    border-radius: 2px;
    margin: 16px auto 18px;
    opacity: 0.85;
}
.qz-breather-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 5.5vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1e1c1a;
    margin: 0;
    text-align: center;
}

/* Chapter pill number (#2, #3) in gold */
.qz-br-pill-num {
    color: #c9a27a;
    margin-left: 8px;
    font-weight: 800;
}

/* Verdict block — peach BG with quote mark */
.qz-br-verdict {
    background: linear-gradient(180deg, rgba(232,83,14,0.04) 0%, rgba(232,83,14,0.08) 100%);
    border: 1px solid rgba(232,83,14,0.15);
    border-radius: 18px;
    padding: 28px 24px 26px;
    text-align: center;
    margin: 14px auto 0;
    max-width: 560px;
    width: 100%;
    position: relative;
}
.qz-br-verdict::before {
    content: '"';
    position: absolute;
    top: -6px;
    left: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    color: #e8530e;
    line-height: 1;
    opacity: 0.55;
    font-style: italic;
}
.qz-br-verdict-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 1.45rem);
    line-height: 1.4;
    color: #1e1c1a;
    margin: 0;
    letter-spacing: -0.015em;
}
.qz-strike {
    font-family: 'Sansita Swashed', cursive;
    color: #e8530e;
    font-weight: 700;
    font-weight: 700;
    position: relative;
    white-space: nowrap;
    padding: 0 2px;
}
.qz-strike::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
    height: 2px;
    background: #e8530e;
    opacity: 0.65;
}
.qz-outro-emph {
    display: block;
    margin-top: 12px;
    color: #14482c;
    font-style: normal;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

/* Trustpilot card (card variant, not inline banner) */
.qz-br-tp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 14px auto 0;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid rgba(30,28,26,0.08);
    border-radius: 14px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(30,28,26,0.05);
}
.qz-br-tp-stars {
    display: inline-flex;
    gap: 3px;
}
.qz-br-tp-star {
    width: 26px;
    height: 26px;
    background: #00b67a;
    border-radius: 3px;
    display: grid;
    place-items: center;
}
.qz-br-tp-star svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}
.qz-br-tp-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.82rem;
    color: #3a332e;
    flex-wrap: wrap;
    justify-content: center;
}
.qz-br-tp-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1e1c1a;
}
.qz-br-tp-sep {
    color: #9b938a;
    opacity: 0.6;
}
.qz-br-tp-rating strong {
    color: #00b67a;
    font-weight: 700;
}
.qz-br-tp-count {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8rem;
    color: #7a7568;
    text-align: center;
    margin: 0;
}
.qz-br-tp-count strong {
    color: #1e1c1a;
    font-weight: 700;
}

/* Intro paragraph above the points list */
.qz-br-intro {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.15rem;
    color: #5c5650;
    line-height: 1.55;
    font-weight: 500;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    padding: 0 6px;
}

/* Points list — white rounded cards, green icon + text */
.qz-br-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 600px;
}
.qz-br-point {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px 14px 14px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(30,28,26,0.05), 0 1px 2px rgba(30,28,26,0.03);
}
.qz-br-point-ico {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,83,14,0.09);
    border-radius: 12px;
    font-size: 1.5rem;
    line-height: 1;
    color: #b44714;
}
.qz-br-point-ico svg {
    width: 22px;
    height: 22px;
}
.qz-br-point-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1c1a;
    line-height: 1.35;
    letter-spacing: -0.005em;
}

/* Social proof below outro (stars + text) */
.qz-br-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.qz-br-stars {
    color: #e8b83e;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    line-height: 1;
}
.qz-br-stars--tp {
    display: inline-flex;
    gap: 3px;
}
.qz-br-star-sq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #00b67a;
    color: #fff;
    border-radius: 2px;
}
.qz-br-star-sq svg { width: 13px; height: 13px; }
.qz-br-proof-text {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.92rem;
    color: #5c5650;
    font-weight: 500;
}
.qz-br-proof-text strong { color: #1e1c1a; font-weight: 700; }

/* Point card optional subtitle */
.qz-br-point-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.qz-br-point-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.85rem;
    color: #7a7568;
    font-weight: 500;
    line-height: 1.35;
}

/* Trust banner below outro — compact, matches result-page style */
.qz-br-trustbanner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 10px auto 0;
    padding: 8px 16px;
}
.qz-tb-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.qz-tb-stars { display: flex; gap: 2px; }
.qz-tb-star {
    width: 14px; height: 14px;
    background: #00b67a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.qz-tb-star svg { width: 8px; height: 8px; fill: #fff; }
.qz-tb-text {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #5c5650;
}
.qz-tb-avatars { display: flex; }
.qz-tb-av {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 1.5px solid #f6f4f1;
    margin-left: -7px;
    background-size: cover;
    background-position: center;
}
.qz-tb-av:first-child { margin-left: 0; }
.qz-tb-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.7rem;
    color: #9b938a;
}
.qz-tb-sub strong { color: #1e1c1a; font-weight: 700; }

/* Outro — flowing serif sentence on page bg, only accent stays orange italic */
.qz-br-outro {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #1e1c1a;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin: 6px auto 0;
    max-width: 520px;
    text-align: center;
    padding: 0 6px;
}
.qz-br-outro-accent {
    font-family: 'Sansita Swashed', cursive;
    font-weight: 700;
    font-weight: 700;
    color: #e8530e;
}
.qz-br-outro .qz-script {
    font-family: 'Sansita Swashed', cursive;
    font-weight: 700;
    color: #e8530e;
}

.qz-breather-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.95rem;
    color: #6b6460;
    margin: 0;
    line-height: 1.4;
    max-width: 320px;
}

.qz-breather-body {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.98rem;
    color: #48423e;
    line-height: 1.65;
    max-width: 460px;
    text-align: left;
    margin: 4px 0 8px;
}
.qz-breather-body p { margin: 0 0 12px; }
.qz-breather-body p:last-child { margin-bottom: 0; }
.qz-breather-body ul,
.qz-breather-body ol {
    margin: 10px 0 14px;
    padding-left: 22px;
}
.qz-breather-body li {
    margin-bottom: 6px;
}
.qz-breather-body ul li { list-style: none; position: relative; padding-left: 14px; }
.qz-breather-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 2px;
    background: #e8530e;
    border-radius: 1px;
}
.qz-breather-body strong { color: #1e1c1a; }

.qz-breather-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 17px 38px;
    background: linear-gradient(135deg, #e8530e, #DF031C);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(223,3,28,0.28), 0 2px 6px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qz-breather-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(223,3,28,0.28), 0 2px 8px rgba(0,0,0,0.08);
}
.qz-breather-btn:active { transform: translateY(0) scale(0.98); }
.qz-breather-arrow { transition: transform 0.25s ease; }
.qz-breather-btn:hover .qz-breather-arrow { transform: translateX(4px); }

/* ── Scale (slider) — Dark forest green ── */
.qz-scale {
    width: 100%;
    max-width: 560px;
    margin: 10px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 6px 6px;
}

/* Instruction text above slider */
.qz-scale-instruction {
    text-align: center;
    color: #7a7568;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.qz-scale-instr-arrow {
    display: inline-flex;
    width: 18px; height: 18px;
    color: #0e2a1b;
    animation: qzSwipeHint 2s ease-in-out infinite;
}
.qz-scale-instr-arrow svg { width: 100%; height: 100%; }
@keyframes qzSwipeHint {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(6px); }
}

.qz-scale-track {
    position: relative;
    height: 56px;
    margin: 0 22px;
    background: transparent;
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}
.qz-scale-track::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    background: #d9d3c6;
    border-radius: 999px;
    box-shadow: inset 0 1px 2px rgba(20,20,18,.08);
    pointer-events: none;
}
.qz-scale-track:active { cursor: grabbing; }

.qz-scale-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 0%;
    background: linear-gradient(90deg, #2a7048, #14482c);
    border-radius: 999px;
    transition: width .18s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    will-change: width;
}
.qz-scale-fill--instant { transition: none; }

.qz-scale-stops {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
.qz-scale-stop {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.qz-scale-dot {
    display: block;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d9d3c6;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.qz-scale-stop.active .qz-scale-dot {
    background: #14482c;
    border-color: #14482c;
}

/* Big draggable thumb with grip + "Ziehen" tooltip */
.qz-scale-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    width: 44px; height: 44px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(180deg, #1f5d3a 0%, #14482c 50%, #0a2e1a 100%);
    border: 4px solid #fff;
    box-shadow:
        0 6px 16px rgba(20,72,44,.3),
        0 2px 4px rgba(20,20,18,.1);
    transition: transform .15s ease, box-shadow .15s ease, left .18s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    display: grid;
    place-items: center;
    z-index: 3;
}
.qz-scale-thumb {
    will-change: left, transform;
}
.qz-scale-thumb--instant { transition: none; }

/* Grip pattern inside thumb */
.qz-scale-thumb-grip {
    width: 14px;
    height: 14px;
    background-image:
        linear-gradient(to right,
            transparent 0%, transparent 25%,
            rgba(255,255,255,0.6) 25%, rgba(255,255,255,0.6) 35%,
            transparent 35%, transparent 50%,
            rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.6) 60%,
            transparent 60%, transparent 75%,
            rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.6) 85%,
            transparent 85%);
}

/* Pulse ring before first interaction */
.qz-scale-thumb--hint::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #14482c;
    animation: qzThumbPulse 1.8s ease-out infinite;
    pointer-events: none;
}
@keyframes qzThumbPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0;   }
}

/* Wiggle to suggest dragging */
.qz-scale-thumb--wiggle {
    animation: qzThumbWiggle 1.5s ease-in-out;
}
@keyframes qzThumbWiggle {
    0%, 100% { transform: translate(-50%, -50%); }
    15%      { transform: translate(calc(-50% + 14px), -50%); }
    30%      { transform: translate(calc(-50% - 8px),  -50%); }
    45%      { transform: translate(calc(-50% + 10px), -50%); }
    60%      { transform: translate(calc(-50% - 4px),  -50%); }
    75%      { transform: translate(calc(-50% + 2px),  -50%); }
}

/* Tooltip "Ziehen" above thumb */
.qz-scale-thumb-tip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #0e2a1b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.qz-scale-thumb-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0e2a1b;
}
.qz-scale-thumb-tip svg {
    width: 11px; height: 11px;
    animation: qzSwipeHint 1.4s ease-in-out infinite;
}
.qz-scale-thumb--touched .qz-scale-thumb-tip { opacity: 0; }

.qz-scale-thumb--dragging {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow:
        0 0 0 10px rgba(20,72,44,.12),
        0 6px 16px rgba(20,72,44,.3),
        0 2px 4px rgba(20,20,18,.1);
}

.qz-scale-labels {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), 1fr);
    gap: 4px;
    margin-top: 8px;
}
.qz-scale-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #8a8279;
    text-align: center;
    line-height: 1.25;
    padding: 6px 4px;
    cursor: pointer;
    transition: color 0.25s ease, font-weight 0.25s ease;
    border-radius: 6px;
    background: none;
    border: none;
    outline: none;
}
.qz-scale-labels .qz-scale-label:first-child { text-align: left; }
.qz-scale-labels .qz-scale-label:last-child { text-align: right; }
.qz-scale-label:hover { color: #48423e; }
.qz-scale-label.active {
    color: #0e2a1b;
    font-weight: 800;
}

/* "Deine Auswahl" selection card */
.qz-scale-selection {
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(30,28,26,0.06), 0 1px 2px rgba(30,28,26,0.04);
    margin-top: 10px;
    transition: opacity 0.25s ease, background 0.25s ease;
}
.qz-scale-selection--empty {
    background: rgba(255,255,255,0.55);
    opacity: 0.75;
}
.qz-scale-sel-kicker {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a8279;
    margin-bottom: 8px;
}
.qz-scale-sel-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #0e2a1b;
    line-height: 1.1;
    letter-spacing: -0.015em;
}
.qz-scale-selection--empty .qz-scale-sel-name {
    color: #bdb6ae;
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 400;
}
.qz-scale-sel-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.95rem;
    color: #8a8279;
    margin-top: 6px;
    line-height: 1.3;
}

/* ── Body type selector — 2x2 grid ── */
.qz-bodytypes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 4px;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.qz-bodytype {
    background: #fff;
    border: 2px solid rgba(30,28,26,0.08);
    border-radius: 16px;
    padding: 14px 6px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #3a332e;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    font-family: 'Instrument Sans', sans-serif;
}
.qz-bodytype:hover {
    border-color: rgba(232,83,14,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30,28,26,0.06);
}
.qz-bodytype.selected {
    border-color: #e8530e;
    background: rgba(232,83,14,0.04);
    box-shadow: 0 10px 28px rgba(232,83,14,0.15), inset 0 0 0 1px rgba(232,83,14,0.1);
}
.qz-bt-fig {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #f1ece4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.qz-bt-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    display: block;
}
.qz-bodytype.selected .qz-bt-fig {
    box-shadow: inset 0 0 0 2px rgba(232,83,14,0.25);
}
.qz-bt-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.005em;
}

/* ── Number cards (e.g. age) — serif number + label below + diamond accents ── */
.qz-numgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px;
}
.qz-numgrid .qz-numcard:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
.qz-numcard {
    background: #fff;
    border: 2px solid rgba(30,28,26,0.12);
    border-radius: 16px;
    padding: 20px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0e2a1b;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(30,28,26,0.06), 0 1px 2px rgba(30,28,26,0.04);
    min-height: 76px;
}
.qz-numcard:hover {
    border-color: rgba(232,83,14,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(30,28,26,0.09), 0 2px 6px rgba(30,28,26,0.05);
}
.qz-numcard.selected {
    border-color: #e8530e;
    background: rgba(232,83,14,0.04);
    box-shadow: 0 0 0 3px rgba(232,83,14,0.14), 0 8px 22px rgba(232,83,14,0.16);
}
.qz-numcard.selected .qz-numcard-num { color: #e8530e; }
.qz-numcard-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: #0e2a1b;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: color 0.2s ease;
}
.qz-numcard-num::before,
.qz-numcard-num::after {
    content: '◆';
    font-size: 0.55em;
    color: #0e2a1b;
    opacity: 0.75;
}
.qz-numcard.selected .qz-numcard-num::before,
.qz-numcard.selected .qz-numcard-num::after {
    color: #e8530e;
}

/* ── Step cards (Fortschrittsbalken + Label, optional Untertitel) ── */
.qz-stepcards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px;
}
.qz-stepcard {
    background: #fff;
    border: 2px solid rgba(30,28,26,0.12);
    border-radius: 16px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: #1e1c1a;
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(30,28,26,0.06), 0 1px 2px rgba(30,28,26,0.04);
    width: 100%;
}
.qz-stepcard:hover {
    border-color: rgba(232,83,14,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(30,28,26,0.09), 0 2px 6px rgba(30,28,26,0.05);
}
.qz-stepcard.selected {
    border-color: #e8530e;
    background: rgba(232,83,14,0.04);
    box-shadow: 0 0 0 3px rgba(232,83,14,0.14), 0 8px 22px rgba(232,83,14,0.16);
}
.qz-stepcard-bars {
    display: flex;
    gap: 6px;
    width: 100%;
    max-width: 180px;
}
.qz-step-bar {
    flex: 1;
    height: 5px;
    border-radius: 3px;
    background: rgba(30,28,26,0.12);
    transition: background 0.2s ease;
}
.qz-step-bar.filled {
    background: var(--step-color, #0e2a1b);
}

/* Level-based color progression: green → mustard → orange → red */
.qz-stepcard[data-level="1"] { --step-color: #2a5a3a; }
.qz-stepcard[data-level="2"] { --step-color: #b08f2e; }
.qz-stepcard[data-level="3"] { --step-color: #c97433; }
.qz-stepcard[data-level="4"] { --step-color: #b84430; }
.qz-stepcard[data-level="5"] { --step-color: #a02722; }

.qz-stepcard-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e1c1a;
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.qz-stepcard.has-sub .qz-stepcard-label {
    margin-bottom: -4px;
}
.qz-stepcard-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: #5c5650;
    line-height: 1.3;
}

/* ── Loading screen — Ring analysis ── */
.qz-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.qz-loading-caption {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: italic;
    font-size: 0.98rem;
    color: #7a7568;
    margin: 0;
    letter-spacing: 0.02em;
}

.qz-loading-ring {
    position: relative;
    width: min(320px, 72vw);
    aspect-ratio: 1;
    margin: 8px auto;
}
.qz-ring-svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}
.qz-ring-track {
    fill: none;
    stroke: rgba(14,42,27,0.08);
    stroke-width: 6;
}
.qz-ring-progress {
    fill: none;
    stroke: url(#qzRingGradient);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset .35s ease-out;
    filter: drop-shadow(0 2px 6px rgba(14,42,27,0.25));
}
.qz-ring-dot {
    fill: #fff;
    stroke: #14482c;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 8px rgba(14,42,27,0.35));
}
.qz-ring-decor {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1px dashed rgba(14,42,27,0.12);
    animation: qzRingRotate 24s linear infinite;
}
.qz-ring-decor::before,
.qz-ring-decor::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: #e8530e;
    border-radius: 50%;
    top: -3px; left: 50%;
    transform: translateX(-50%);
}
.qz-ring-decor::after {
    top: auto; bottom: -3px;
    background: #14482c;
}
@keyframes qzRingRotate { to { transform: rotate(360deg); } }

.qz-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.qz-ring-percent {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(56px, 15vw, 84px);
    line-height: 1;
    color: #14482c;
    letter-spacing: -0.04em;
    display: flex;
    align-items: flex-start;
}
.qz-ring-sign {
    font-size: 0.42em;
    margin-top: 0.6em;
    margin-left: 4px;
    color: #e8530e;
    font-weight: 700;
    letter-spacing: 0;
}
.qz-ring-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a7568;
    margin-top: 6px;
}

.qz-load-phase {
    min-height: 72px;
    text-align: center;
    margin: 0;
    max-width: 440px;
}
.qz-load-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 4.5vw, 1.7rem);
    line-height: 1.2;
    color: #1e1c1a;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
    transition: opacity .4s ease, transform .4s ease;
}
.qz-load-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.95rem;
    color: #7a7568;
    font-weight: 400;
    margin: 0;
    line-height: 1.45;
    transition: opacity .4s ease, transform .4s ease;
}
.qz-load-phase.swap .qz-load-title,
.qz-load-phase.swap .qz-load-sub {
    opacity: 0;
    transform: translateY(6px);
}

.qz-load-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    margin-top: 12px;
}
.qz-load-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(14,42,27,0.08);
    border-radius: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.92rem;
    color: #3d3d38;
    font-weight: 500;
    opacity: 0.5;
    transition: all .35s ease;
}
.qz-load-step.active {
    opacity: 1;
    background: #fff;
    color: #1e1c1a;
    border-color: rgba(14,42,27,0.18);
    box-shadow: 0 2px 8px rgba(20,20,15,0.05);
}
.qz-load-step.done { opacity: 0.78; }

.qz-load-step-ico {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(14,42,27,0.08);
    display: grid;
    place-items: center;
    color: transparent;
    transition: all .3s ease;
}
.qz-load-step.active .qz-load-step-ico {
    background: transparent;
    border: 2px solid #14482c;
    animation: qzLoadPulse 1.2s ease-in-out infinite;
}
.qz-load-step.done .qz-load-step-ico {
    background: #14482c;
    color: #fff;
    border: none;
    animation: none;
}
.qz-load-step-ico svg {
    width: 13px; height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
}
.qz-load-step.done .qz-load-step-ico svg { opacity: 1; }
@keyframes qzLoadPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(20,72,44,0.35); }
    50%      { box-shadow: 0 0 0 6px rgba(20,72,44,0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .quiz-overlay { overflow-x: hidden; width: 100%; }
    /* Question area — Abstand matched zum Logo→Progress (beide 75px visuell) */
    .qz-body {
        padding: 54px 20px 60px;
        width: 100%;
        align-items: flex-start;
        min-height: 0;
        flex: 0 1 auto;
    }
    /* Logo: 15% mehr Abstand zum Progress (65→75px visuell) */
    .qz-logo { padding: 18px 0 33px; }
    .qz-logo img { height: 27px !important; width: auto !important; }
    /* Progress-Balken + Count inline (wie bei Fitness-Apps) */
    .qz-progress-wrap { padding: 0 20px 0; }
    .qz-progress-row { gap: 12px; }
    .qz-progress-count {
        display: inline-block;
        font-size: 0.76rem;
        font-weight: 800;
        color: #3a332e;
        letter-spacing: 0.02em;
    }
    .qz-progress {
        position: static;
        border-radius: 3px;
        overflow: hidden;
        height: 6px;
        flex: 1;
    }
    .qz-question { max-width: calc(100% - 0px); width: 100%; padding: 0; }
    .qz-cat-label { font-size: 0.62rem; padding: 6px 14px; margin-bottom: 22px; letter-spacing: 0.16em; }
    /* Frage-Typo: Impact, deutlich größer */
    .qz-q {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.7rem;
        font-weight: 800;
        line-height: 1.16;
        letter-spacing: -0.032em;
        margin-bottom: 36px;
        color: #1e1c1a;
    }
    .qz-opts { width: 100%; }
    .qz-opts-grid { gap: 8px; }
    .qz-opt { padding: 18px 18px; font-size: 1rem; min-height: 60px; gap: 12px; font-weight: 700; }
    .qz-opts-grid .qz-opt { padding: 22px 14px; min-height: 118px; font-size: 1.1rem; font-weight: 700; }
    .qz-opts-grid .qz-opt-emoji { font-size: 2rem; margin-bottom: 6px; }
    .qz-opt-emoji { width: 32px; height: 32px; font-size: 1.1rem; border-radius: 8px; }
    .qz-opts-grid .qz-opt-emoji { width: 38px; height: 38px; font-size: 1.3rem; }
    .qz-input { padding: 14px 16px; font-size: 0.84rem; width: 100%; }
    .qz-next { padding: 14px 36px; font-size: 0.94rem; width: 100%; min-height: 50px; }
    .qz-mixed-divider { margin: 12px 0; }
    .qz-trust { gap: 12px; margin-top: 20px; }
    .qz-trust span { font-size: 0.67rem; }
    .qz-trust svg { width: 13px; height: 13px; }
    .qz-breather { padding: 6px 14px 24px; gap: 18px; }
    .qz-breather-chapter-pill { padding: 9px 18px; font-size: 0.65rem; letter-spacing: 0.14em; }
    .qz-breather-title { font-size: 2.1rem; line-height: 1.1; }
    .qz-breather-sub { font-size: 0.88rem; }
    .qz-breather-body { font-size: 0.9rem; line-height: 1.55; }
    .qz-breather-body ul, .qz-breather-body ol { padding-left: 16px; }
    .qz-br-intro { font-size: 1.05rem; line-height: 1.5; padding: 0 2px; }
    .qz-br-points { gap: 8px; }
    .qz-br-point { padding: 12px 14px 12px 12px; gap: 12px; border-radius: 12px; }
    .qz-br-point-ico { width: 42px; height: 42px; border-radius: 11px; font-size: 1.4rem; }
    .qz-br-point-ico svg { width: 20px; height: 20px; }
    .qz-br-point-text { font-size: 0.95rem; }
    .qz-br-outro { font-size: 1.15rem; line-height: 1.35; padding: 0 4px; }
    .qz-breather-btn { width: 100%; padding: 15px 24px; font-size: 0.86rem; justify-content: center; letter-spacing: 0.08em; }

    /* Scale on mobile */
    .qz-scale { max-width: 100%; padding: 8px 4px 4px; gap: 14px; }
    .qz-scale-instruction { font-size: 0.88rem; }
    .qz-scale-track { margin: 0 46px; height: 52px; }  /* more room so tooltip never clips */
    .qz-scale-track::before { height: 7px; }
    .qz-scale-fill { height: 7px; }
    .qz-scale-label { font-size: 0.82rem; }
    .qz-scale-stop { width: 10px; height: 10px; }
    .qz-scale-dot { width: 10px; height: 10px; }
    .qz-scale-thumb { width: 40px; height: 40px; border-width: 3px; }
    .qz-scale-thumb-grip { width: 12px; height: 12px; }
    .qz-scale-thumb-tip {
        font-size: 0.62rem;
        padding: 4px 9px;
        letter-spacing: 0.06em;
    }
    .qz-scale-thumb-tip svg { width: 10px; height: 10px; }

    /* Labels aligned under stops, match the new indented track */
    .qz-scale-labels {
        padding: 0 46px;
    }

    /* Body types on mobile — 2x2 */
    .qz-bodytypes { gap: 10px; grid-template-columns: repeat(2, 1fr); }
    .qz-bodytype { padding: 8px 8px 10px; border-radius: 14px; }
    .qz-bt-fig { border-radius: 10px; }
    .qz-bt-label { font-size: 0.82rem; margin-top: 8px; }

    /* Number cards — mobile */
    .qz-numgrid { gap: 10px; }
    .qz-numcard { padding: 18px 10px; min-height: 68px; border-radius: 14px; }
    .qz-numcard-num { font-size: 1.5rem; gap: 12px; }

    /* Step cards — mobile */
    .qz-stepcards { gap: 8px; }
    .qz-opts { gap: 8px; }
    .qz-stepcard { padding: 14px 16px; border-radius: 14px; gap: 8px; }
    .qz-stepcard-bars { max-width: 150px; }
    .qz-step-bar { height: 4px; }
    .qz-stepcard-label { font-size: 1rem; }
    .qz-stepcard-sub { font-size: 0.82rem; }
}

@media (max-width: 380px) {
    .qz-body { padding: 36px 14px 50px; }
    .qz-q { font-size: 1.5rem; margin-bottom: 30px; }
    .qz-opt { padding: 16px 14px; font-size: 0.95rem; border-radius: 12px; }
    .qz-opts-grid .qz-opt { padding: 18px 10px; min-height: 104px; font-size: 1rem; }
    .qz-opts-grid .qz-opt-emoji { font-size: 1.8rem; }
    .qz-opt-emoji { width: 28px; height: 28px; font-size: 1rem; }
    .qz-opts-grid .qz-opt-emoji { width: 34px; height: 34px; font-size: 1.15rem; }
    .qz-input { padding: 12px 12px; font-size: 0.8rem; }
    .qz-trust { gap: 8px; margin-top: 16px; }
    .qz-trust span { font-size: 0.6rem; }
    .qz-trust svg { width: 12px; height: 12px; }
    .qz-bodytype { padding: 6px 6px 8px; }
    .qz-bt-label { font-size: 0.72rem; }
}
