/*
 * BP Test Engine — style silnika testów
 * Design system: Bliska Psychologia
 * Kolory, typografia zgodne z podsumowanie_projektu.md
 */

/* ── Zmienne z design systemu ──────────────────────────────────────────────── */
:root {
    --bpt-teal:        #3D7E8F;
    --bpt-teal-light:  #6AAFBC;
    --bpt-teal-dark:   #2A6070;
    --bpt-navy:        #1B3A4B;
    --bpt-bg:          #F4F1EC;
    --bpt-card:        #FDFCFA;
    --bpt-border:      #E8E4DC;
    --bpt-text:        #1B2E38;
    --bpt-muted:       #7A8B95;
    --bpt-urgent:      #D97706;
    --bpt-critical:    #DC2626;
    --bpt-radius:      12px;
    --bpt-shadow:      0 2px 16px rgba(27,58,75,0.10);
    --bpt-transition:  0.18s ease;
    --bpt-font-body:   'Source Sans 3', sans-serif;
    --bpt-font-head:   'Lora', serif;
    --bpt-max-width:   1000px;
    --bpt-content-width: 760px;
}

/* ── Strona testu ─────────────────────────────────────────────────────────── */
.bp-test-page {
    background: var(--bpt-bg);
    min-height: 60vh;
    padding: 32px 16px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1200px) {
    .bp-test-page {
        padding: 0 0 40px;
    }
}

/* Wyrwanie poza .site-content tylko na szerokich ekranach */
@media (min-width: 1201px) {
    .site-content .bp-test-page {
        margin-left:  calc(-1 * ((100vw - 1200px) / 2) - 27.5px);
        margin-right: calc(-1 * ((100vw - 1200px) / 2) - 27.5px);
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }
}

.bp-test-engine {
    width: 100%;
}

/* ── Silnik testu — główny wrapper ─────────────────────────────────────────── */
.bp-test-engine {
    max-width: var(--bpt-max-width);
    margin: 0 auto;
    background: var(--bpt-card);
    border-radius: var(--bpt-radius);
    border: 1px solid var(--bpt-border);
    box-shadow: var(--bpt-shadow);
    padding: 40px 48px 40px;
    font-family: var(--bpt-font-body);
    color: var(--bpt-text);
    outline: none;
}

/* Karta intro — bez własnego paddingu, hero i body mają swój */
.bp-test-engine:has(.bpt-intro) {
    padding: 0;
    overflow: hidden;
}

/* Pytania i wynik — węższa kolumna dla czytelności */
.bpt-question,
.bpt-result,
.bpt-sending,
.bpt-error,
.bpt-resume {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .bp-test-engine { padding: 28px 20px 28px; }
    .bp-test-engine:has(.bpt-intro) { padding: 0; }
}

/* ── Statyczny blok SEO — ukryty wizualnie, widoczny dla Googlebot ────────── */
/* Ważne: display:none ukrywa przed Google. visibility:hidden + height:0       */
/* sprawia że Google indeksuje treść, ale użytkownik jej nie widzi.             */
.bp-test-seo-content {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: -9999px;
    width: 1px;
}

/* ── Disclaimer poza silnikiem ─────────────────────────────────────────────── */
.bp-test-disclaimer {
    max-width: var(--bpt-max-width);
    margin: 20px auto 0;
    font-size: 13px;
    color: var(--bpt-muted);
    text-align: center;
    line-height: 1.5;
}

/* ── Skeleton loader ───────────────────────────────────────────────────────── */
.bp-test-skeleton { animation: bpt-pulse 1.4s ease-in-out infinite; }
.bp-test-skeleton-title,
.bp-test-skeleton-text,
.bp-test-skeleton-btn {
    background: var(--bpt-border);
    border-radius: 6px;
    margin-bottom: 14px;
}
.bp-test-skeleton-title  { height: 32px; width: 70%; }
.bp-test-skeleton-text   { height: 16px; width: 100%; }
.bp-test-skeleton-text--short { width: 55%; }
.bp-test-skeleton-btn    { height: 48px; width: 180px; margin-top: 24px; }

@keyframes bpt-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}

/* ── Baner poprzedniego wyniku ─────────────────────────────────────────────── */
.bpt-prev-result {
    margin-bottom: 24px;
}

.bpt-prev-result__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bpt-bg);
    border: 1px solid var(--bpt-border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--bpt-text);
}

.bpt-prev-result__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bpt-prev-result__inner > div {
    flex: 1;
    line-height: 1.4;
}

.bpt-prev-result__label {
    display: block;
    color: var(--bpt-muted);
    font-size: 13px;
    margin-top: 2px;
}

.bpt-prev-result__score {
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* INTRO                                                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════ */
/* INTRO                                                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════ */
/* INTRO                                                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Karta silnika testu — bez paddingu gdy intro (hero ma własny) */
.bp-test-engine:has(.bpt-intro) {
    padding: 0;
    overflow: hidden;
}

/* Hero — ciemny header spójny z homepage */
.bpt-intro__hero {
    background: var(--bpt-navy);
    padding: 48px 48px 36px;
    border-radius: var(--bpt-radius) var(--bpt-radius) 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bpt-intro__badge {
    display: inline-block;
    background: rgba(106,175,188,0.25);
    color: var(--bpt-teal-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(106,175,188,0.35);
}

.bpt-intro__title {
    font-family: var(--bpt-font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 10px;
    max-width: var(--bpt-content-width);
}

.bpt-intro__description {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 560px;
}

/* Statystyki w hero */
.bpt-intro__stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: nowrap;
    width: 100%;
    max-width: var(--bpt-content-width);
    justify-content: center;
}

.bpt-intro__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
    min-width: 0;
}

.bpt-intro__stat-value {
    font-family: var(--bpt-font-head);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}

.bpt-intro__stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
}

.bpt-intro__stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Jasna sekcja treści */
.bpt-intro__body {
    padding: 36px 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.bpt-intro__instructions {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bpt-bg);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--bpt-text);
    width: 100%;
    max-width: var(--bpt-content-width);
    box-sizing: border-box;
}

.bpt-intro__instr-icon {
    width: 20px;
    height: 20px;
    color: var(--bpt-teal);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Co sprawdza ten test */
.bpt-intro__what {
    width: 100%;
    max-width: var(--bpt-content-width);
}

.bpt-intro__what-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--bpt-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
}

.bpt-intro__what-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bpt-intro__what-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--bpt-text);
    line-height: 1.45;
    padding: 8px 0;
    margin: 0;
}

.bpt-intro__what-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--bpt-text);
    line-height: 1.45;
}

.bpt-intro__what-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bpt-teal);
    flex-shrink: 0;
    margin-top: 5px;
}

/* + Pokaż wszystkie — tylko mobile */
.bpt-intro__what-toggle {
    background: none;
    border: none;
    color: var(--bpt-teal);
    font-family: var(--bpt-font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0 0;
    text-decoration: none;
    display: none; /* ukryte na desktopie */
}

@media (max-width: 600px) {
    .bpt-intro__what-toggle { display: block; }
    .bpt-intro__what-more-wrap { display: none; } /* JS obsługuje pokazanie */
}

/* CTA — przycisk nad trust */
.bpt-intro__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--bpt-border);
    width: 100%;
    max-width: var(--bpt-content-width);
}

.bpt-intro__start-btn {
    font-size: 17px;
    padding: 15px 48px;
    white-space: nowrap;
}

.bpt-intro__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 20px;
    justify-content: center;
}

.bpt-intro__trust li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--bpt-muted);
    font-weight: 500;
    white-space: nowrap;
}

.bpt-intro__trust svg {
    width: 13px;
    height: 13px;
    color: var(--bpt-teal);
    flex-shrink: 0;
}

.bpt-intro__source {
    font-size: 12px;
    color: var(--bpt-muted);
    font-style: italic;
    margin: 0;
    padding-top: 4px;
    max-width: var(--bpt-content-width);
    width: 100%;
}

/* Mobile */
@media (max-width: 600px) {
    .bpt-intro__hero  { padding: 28px 20px 24px; text-align: center; align-items: center; }
    .bpt-intro__body  { padding: 24px 20px 28px; align-items: flex-start; }

    .bpt-intro__stats { justify-content: center; }
    .bpt-intro__stat  { padding: 0 16px 0 0; align-items: center; }
    .bpt-intro__stat-value { font-size: 16px; }
    .bpt-intro__stat-label { font-size: 11px; }
    .bpt-intro__stat-sep   { margin: 0 16px 0 0; }

    .bpt-intro__what-grid { grid-template-columns: 1fr; }

    .bpt-intro__cta {
        align-items: flex-start;
        gap: 14px;
    }

    .bpt-intro__start-btn { width: 100%; justify-content: center; }

    .bpt-intro__trust { flex-wrap: wrap; justify-content: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* PYTANIE                                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Progress bar */
.bpt-progress {
    height: 5px;
    background: var(--bpt-border);
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.bpt-progress__bar {
    height: 100%;
    background: var(--bpt-teal);
    border-radius: 3px;
    transition: width 0.35s ease;
}

.bpt-progress__label {
    font-size: 13px;
    color: var(--bpt-muted);
    margin-bottom: 28px;
    text-align: right;
}

/* Instrukcja przypomnienie nad pytaniem */
.bpt-question__instruction {
    font-size: 13px;
    color: var(--bpt-muted);
    margin: 0 0 12px;
    padding: 6px 12px;
    background: var(--bpt-bg);
    border-radius: 6px;
    line-height: 1.4;
}

.bpt-question__text {
    font-family: var(--bpt-font-head);
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 600;
    color: var(--bpt-navy);
    line-height: 1.45;
    margin: 0 0 28px;
    outline: none;
}

/* Odpowiedzi */
.bpt-answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.bpt-answer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 2px solid var(--bpt-border);
    border-radius: 10px;
    cursor: pointer;
    background: var(--bpt-card);
    transition: border-color var(--bpt-transition), background var(--bpt-transition),
                transform var(--bpt-transition);
    user-select: none;
}

.bpt-answer:hover {
    border-color: var(--bpt-teal-light);
    background: #f0f8fa;
    transform: translateX(2px);
}

.bpt-answer--selected {
    border-color: var(--bpt-teal);
    background: #e8f4f7;
}

.bpt-answer__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bpt-answer__dot {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bpt-border);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color var(--bpt-transition), background var(--bpt-transition);
    position: relative;
}

.bpt-answer--selected .bpt-answer__dot {
    border-color: var(--bpt-teal);
    background: var(--bpt-teal);
}

.bpt-answer--selected .bpt-answer__dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
}

.bpt-answer__label {
    font-size: 16px;
    color: var(--bpt-text);
    font-weight: 500;
}

/* Nawigacja */
.bpt-question__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* WYSYŁKA                                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */

.bpt-sending {
    text-align: center;
    padding: 40px 0;
    color: var(--bpt-muted);
    font-size: 15px;
}

.bpt-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bpt-border);
    border-top-color: var(--bpt-teal);
    border-radius: 50%;
    animation: bpt-spin 0.7s linear infinite;
    margin: 0 auto 16px;
}

@keyframes bpt-spin {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* WYNIK                                                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */

.bpt-result__header {
    text-align: center;
    margin-bottom: 28px;
}

.bpt-result__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bpt-muted);
    margin-bottom: 8px;
}

.bpt-result__score-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.bpt-result__score {
    font-family: var(--bpt-font-head);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.bpt-result__score-max {
    font-size: 20px;
    color: var(--bpt-muted);
    font-weight: 500;
}

.bpt-result__label {
    font-family: var(--bpt-font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--bpt-navy);
    border-left: 4px solid var(--bpt-teal);
    padding: 12px 16px;
    background: var(--bpt-bg);
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
}

.bpt-result__interpretation,
.bpt-result__recommendation {
    font-size: 16px;
    line-height: 1.7;
    color: var(--bpt-text);
    margin-bottom: 20px;
}

.bpt-result__recommendation {
    background: var(--bpt-bg);
    border-radius: 10px;
    padding: 16px 20px;
}

.bpt-result__recommendation strong {
    display: block;
    margin-bottom: 6px;
    color: var(--bpt-navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Crisis box */
.bpt-crisis {
    display: flex;
    gap: 14px;
    background: #fff7ed;
    border: 2px solid #fed7aa;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.bpt-crisis__icon { font-size: 22px; flex-shrink: 0; }

.bpt-crisis strong {
    display: block;
    margin-bottom: 6px;
    color: #92400e;
}

.bpt-crisis p {
    font-size: 15px;
    line-height: 1.6;
    color: #78350f;
    margin: 0 0 10px;
}

.bpt-crisis__hotline {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: var(--bpt-urgent);
    text-decoration: none;
    border: 2px solid var(--bpt-urgent);
    border-radius: 8px;
    padding: 6px 14px;
    transition: background var(--bpt-transition);
}

.bpt-crisis__hotline:hover {
    background: var(--bpt-urgent);
    color: #fff;
}

.bpt-result__crisis-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    color: #7f1d1d;
    margin-bottom: 20px;
}

/* CTA sekcja */
.bpt-result__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 20px;
}

.bpt-result__secondary {
    display: flex;
    gap: 10px;
}

.bpt-result__secondary .bpt-btn {
    flex: 1;
    font-size: 14px;
    padding: 10px 16px;
}

.bpt-btn--share svg {
    width: 16px;
    height: 16px;
}

.bpt-btn--copied {
    border-color: var(--bpt-teal) !important;
    color: var(--bpt-teal) !important;
    background: #e8f4f7 !important;
}

/* Zapobiega przyklejaniu :hover po tapnięciu na mobile */
@media (hover: none) {
    .bpt-btn:hover {
        background: initial;
        border-color: initial;
        transform: none;
    }
    .bpt-btn--primary:hover {
        background: var(--bpt-teal);
        border-color: var(--bpt-teal);
    }
    .bpt-btn--ghost:hover {
        background: transparent;
        border-color: var(--bpt-border);
        color: var(--bpt-teal);
    }
}

.bpt-result__disclaimer {
    font-size: 12px;
    color: var(--bpt-muted);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* PRZYCISKI                                                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */

.bpt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--bpt-font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--bpt-transition), color var(--bpt-transition),
                border-color var(--bpt-transition), transform var(--bpt-transition);
    text-decoration: none;
    line-height: 1.2;
}

.bpt-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bpt-btn--primary {
    background: var(--bpt-teal);
    color: #fff;
    border-color: var(--bpt-teal);
}

.bpt-btn--primary:hover:not(:disabled) {
    background: var(--bpt-teal-dark);
    border-color: var(--bpt-teal-dark);
    transform: translateY(-1px);
}

.bpt-btn--ghost {
    background: transparent;
    color: var(--bpt-teal);
    border-color: var(--bpt-border);
}

.bpt-btn--ghost:hover {
    border-color: var(--bpt-teal);
    background: #f0f8fa;
}

.bpt-btn--lg {
    font-size: 17px;
    padding: 15px 32px;
}

.bpt-btn--cta {
    width: 100%;
    font-size: 18px;
    padding: 16px;
}

.bpt-btn--urgent {
    background: var(--bpt-urgent);
    border-color: var(--bpt-urgent);
}

.bpt-btn--urgent:hover {
    background: #b45309;
    border-color: #b45309;
}

.bpt-btn--disabled,
.bpt-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* BŁĄD                                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */

.bpt-error {
    text-align: center;
    padding: 32px;
    color: var(--bpt-muted);
}

.bpt-error__detail {
    font-size: 13px;
    color: var(--bpt-critical);
    margin-bottom: 20px;
}

/* ── Segmentowana skala wyniku ─────────────────────────────────────────────── */
.bpt-scale {
    margin: 16px 0 4px;
}

.bpt-scale__track {
    position: relative;
    display: flex;
    height: 12px;
    border-radius: 6px;
    overflow: visible;
    gap: 2px;
    margin-bottom: 20px;
}

.bpt-scale__segment {
    border-radius: 4px;
    height: 12px;
    transition: opacity 0.3s ease;
}

.bpt-scale__segment--active {
    opacity: 1 !important;
}

.bpt-scale__marker {
    position: absolute;
    top: -4px;
    transform: translateX( -50% );
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.bpt-scale__marker-line {
    width: 2px;
    height: 20px;
    background: var(--bpt-navy);
    border-radius: 1px;
}

.bpt-scale__marker-label {
    font-family: var(--bpt-font-head);
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
    white-space: nowrap;
    background: var(--bpt-card);
    padding: 1px 5px;
    border-radius: 4px;
}

.bpt-scale__labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--bpt-muted);
    margin-top: -14px;
}

/* ── Ekran powrotu do przerwanego testu ────────────────────────────────────── */
.bpt-resume {
    text-align: center;
    padding: 16px 0 8px;
}

.bpt-resume__icon {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--bpt-teal);
}

.bpt-resume__title {
    font-family: var(--bpt-font-head);
    font-size: 22px;
    color: var(--bpt-navy);
    margin: 0 0 10px;
}

.bpt-resume__info {
    font-size: 16px;
    color: var(--bpt-text);
    line-height: 1.6;
    margin-bottom: 28px;
}

.bpt-resume__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* RESPONSYWNOŚĆ                                                               */
/* ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
        .bpt-intro__trust { gap: 10px; }
    .bpt-result__score { font-size: 52px; }
    .bpt-question__nav { flex-wrap: wrap; }
    .bpt-question__nav .bpt-btn { flex: 1; }

    /* Większe przyciski odpowiedzi na mobile — łatwiejsze w obsłudze kciukiem */
    .bpt-answer {
        min-height: 56px;
        padding: 16px 18px;
    }

    .bpt-result__secondary { flex-direction: column; }
}
