:root {
    /* Brand */
    --qb-green: #207040;
    --qb-green-deep: #14532D;
    --qb-green-light: #2E8B57;

    /* Accent / CTA */
    --qb-gold: #F0D040;
    --qb-gold-hover: #E0C040;
    --qb-gold-soft: #F7E89A;

    /* Backgrounds (light) */
    --qb-bg: #FFFFFF;
    --qb-bg-soft: #F2F7F3;
    --qb-surface: #EAF3EC;

    /* Text */
    --qb-text: #14211A;
    --qb-text-muted: #5C7065;
    --qb-line: #D5E5DA;

    /* Service */
    --qb-star: #F0D040;
    --qb-ok: #1FA463;
    --qb-bad: #E5484D;
    --qb-link: #207040;

    --qb-font-h: 'Rubik', sans-serif;
    --qb-font-b: 'Roboto', sans-serif;
    --qb-radius: 14px;
    --qb-stack: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

h2[id], h3[id], section[id] { scroll-margin-top: 90px; }
@media (max-width: 768px) {
    h2[id], h3[id], section[id] { scroll-margin-top: 72px; }
}

body {
    font-family: var(--qb-font-b);
    font-size: 16px;
    line-height: 1.6;
    color: var(--qb-text);
    background: var(--qb-bg);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--qb-link); text-decoration: none; transition: color .18s; }
a:hover { color: var(--qb-green-light); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--qb-font-h); color: var(--qb-text); }
h1, h2, h3, h4, p { margin-top: 0; margin-bottom: var(--qb-stack); }
h1 { font-size: 2.25rem;  line-height: 1.2;  font-weight: 700; }
h2 { font-size: 1.75rem;  line-height: 1.3;  font-weight: 700; }
h3 { font-size: 1.375rem; line-height: 1.35; font-weight: 600; }
h4 { font-size: 1.125rem; line-height: 1.4;  font-weight: 600; }
p, li { font-size: 1rem; line-height: 1.6; }

/* ---------- Container & sections ---------- */
.qb-container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.qb-section { padding: 20px 0; }
.qb-section--alt { background: var(--qb-bg-soft); }
.qb-section.qb-section--inner-single { padding: 40px 0; }

/* ---------- Buttons ---------- */
.qb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: var(--qb-font-h);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .12s;
    white-space: nowrap;
}
.qb-btn--primary {
    background: var(--qb-gold);
    color: var(--qb-text);
    box-shadow: 0 8px 22px rgba(240, 208, 64, 0.40);
}
.qb-btn--primary:hover { background: var(--qb-gold-hover); color: var(--qb-text); }
.qb-btn--primary:active { transform: translateY(1px); }
.qb-btn--secondary {
    background: transparent;
    color: var(--qb-green);
    border: 1.5px solid var(--qb-green);
}
.qb-btn--secondary:hover { background: rgba(32, 112, 64, 0.10); color: var(--qb-green); }
.qb-btn--lg { padding: 14px 26px; font-size: 15px; }
.qb-btn--full { width: 100%; }

/* ---------- Badge / chip ---------- */
.qb-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--qb-font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(32, 112, 64, 0.12);
    color: var(--qb-green);
    border: 1px solid rgba(32, 112, 64, 0.28);
}
.qb-chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(32, 112, 64, 0.10);
    color: var(--qb-green);
    border: 1px solid rgba(32, 112, 64, 0.24);
}

/* ---------- Header ---------- */
.qb-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--qb-green);
    border-bottom: 1px solid var(--qb-green-deep);
    height: 76px;
    display: flex;
    align-items: center;
}
.qb-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}
.qb-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.qb-logo__img { height: 30px; width: auto; display: block; }
.qb-logo__img--footer { height: 28px; }

.qb-nav { flex: 1; display: flex; justify-content: center; }
.qb-nav__list { display: flex; gap: 28px; }
.qb-nav__link {
    position: relative;
    font-family: var(--qb-font-h);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 8px 0;
    transition: color .18s;
}
.qb-nav__link:hover, .qb-nav__link.qb-nav--active { color: var(--qb-gold); }
.qb-nav__link:hover::after, .qb-nav__link.qb-nav--active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--qb-gold);
    border-radius: 2px;
}
.qb-header__cta { display: flex; gap: 12px; align-items: center; }
.qb-header__cta .qb-btn--secondary { color: #FFFFFF; border-color: rgba(255,255,255,0.6); }
.qb-header__cta .qb-btn--secondary:hover { background: rgba(255,255,255,0.14); color: #FFFFFF; }

.qb-burger {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.qb-burger span {
    display: block;
    width: 24px; height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: transform .3s, opacity .2s;
}
body.qb-nav--open .qb-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.qb-nav--open .qb-burger span:nth-child(2) { opacity: 0; }
body.qb-nav--open .qb-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile overlay ---------- */
.qb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}
body.qb-nav--open .qb-overlay { opacity: 1; transform: scale(1); pointer-events: auto; }
.qb-overlay__close { position: absolute; top: 20px; right: 20px; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.qb-overlay__nav ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.qb-overlay__nav a {
    font-family: var(--qb-font-h);
    font-weight: 700;
    font-size: 24px;
    color: var(--qb-text);
    letter-spacing: 0.04em;
}
.qb-overlay__nav a:hover { color: var(--qb-green); }
.qb-overlay__cta { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; gap: 12px; }
.qb-overlay__cta .qb-btn { flex: 1 1 50%; }
body.qb-nav--open { overflow: hidden; }

/* ---------- Hero ---------- */
.qb-hero {
    background: linear-gradient(180deg, #EAF3EC 0%, #F2F7F3 55%, #FFFFFF 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--qb-line);
}
.qb-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.qb-hero__text { max-width: 580px; }
.qb-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 18px 0 20px;
    color: var(--qb-green-deep);
}
.qb-hero__bonus {
    font-family: var(--qb-font-h);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 8px 0 4px;
    color: var(--qb-text);
}
.qb-hero__bonus-num { color: var(--qb-green); }
.qb-hero__bonus-sub { font-size: 18px; color: var(--qb-text-muted); margin: 0 0 18px; }
.qb-hero__lead { color: var(--qb-text-muted); font-size: 16px; margin: 0 0 24px; max-width: 560px; }
.qb-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.qb-trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 14px; }
.qb-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(32, 112, 64, 0.08);
    color: var(--qb-green);
    border: 1px solid rgba(32, 112, 64, 0.20);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.qb-trust--tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}
.qb-trust--tiles > li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(32, 112, 64, 0.07);
    border: 1px solid rgba(32, 112, 64, 0.20);
    color: var(--qb-text);
}
.qb-trust__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(32, 112, 64, 0.12);
    color: var(--qb-green);
}
.qb-trust__icon svg { width: 18px; height: 18px; display: block; }
.qb-trust__label { font-size: 13px; font-weight: 600; line-height: 1.2; }
@media (max-width: 520px) {
    .qb-trust--tiles { grid-template-columns: 1fr; }
}
.qb-hero__disclaimer { font-size: 13px; color: var(--qb-text-muted); margin: 6px 0 0; }

.qb-hero__media { position: relative; display: flex; justify-content: flex-end; }
.qb-hero__image {
    position: relative;
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    border: 1px solid var(--qb-line);
    overflow: hidden;
    line-height: 0;
    background: var(--qb-surface);
    box-shadow: 0 16px 40px rgba(20, 83, 45, 0.14);
}
.qb-hero__photo { display: block; width: 100%; max-width: 750px; height: auto; vertical-align: top; }

/* ---------- Hero (homepage centered variant) ---------- */
.qb-hero--centered { text-align: center; }
.qb-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}
.qb-hero__inner--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 880px;
    gap: 0;
}
.qb-hero__inner--centered .qb-hero__title { margin: 18px 0 16px; }
.qb-hero__inner--centered .qb-hero__lead { margin-left: auto; margin-right: auto; }
.qb-hero__inner--centered .qb-hero__actions { justify-content: center; }
.qb-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 760px;
    margin: 10px auto 18px;
}
.qb-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 12px;
    border-radius: 14px;
    background: rgba(32, 112, 64, 0.07);
    border: 1px solid rgba(32, 112, 64, 0.20);
    border-top: 3px solid var(--qb-gold);
}
.qb-hero__stat-num {
    font-family: var(--qb-font-h);
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    line-height: 1;
    color: var(--qb-green-deep);
}
.qb-hero__stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--qb-text-muted);
    text-transform: uppercase;
}

.qb-hero--compact { padding: 52px 0; }
.qb-hero__inner--compact:not(.qb-404__inner):not(:has(> figure)):not(:has(> .qb-hero__image)) {
    grid-template-columns: 1fr;
    gap: 12px;
}
.qb-hero__inner--compact:not(.qb-404__inner):has(> figure),
.qb-hero__inner--compact:not(.qb-404__inner):has(> .qb-hero__image) {
    grid-template-columns: minmax(0, 1fr) minmax(220px, min(42%, 400px));
    column-gap: 32px;
    row-gap: 10px;
    align-items: center;
}
.qb-hero__inner--compact:not(.qb-404__inner):has(> figure) > .qb-breadcrumbs,
.qb-hero__inner--compact:not(.qb-404__inner):has(> .qb-hero__image) > .qb-breadcrumbs { grid-column: 1; grid-row: 1; }
.qb-hero__inner--compact:not(.qb-404__inner):has(> figure) > .qb-hero__title--compact,
.qb-hero__inner--compact:not(.qb-404__inner):has(> .qb-hero__image) > .qb-hero__title--compact { grid-column: 1; grid-row: 2; }
.qb-hero__inner--compact:not(.qb-404__inner):has(> figure) > .qb-hero__lead,
.qb-hero__inner--compact:not(.qb-404__inner):has(> .qb-hero__image) > .qb-hero__lead { grid-column: 1; grid-row: 3; }
.qb-hero__inner--compact:not(.qb-404__inner):has(> figure) > figure,
.qb-hero__inner--compact:not(.qb-404__inner):has(> .qb-hero__image) > .qb-hero__image {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: end;
    margin: 0;
    width: 100%;
    max-width: min(750px, 100%);
}
.qb-hero__title--compact { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 8px 0 0; color: var(--qb-green-deep); }
.qb-hero__inner--compact.qb-404__inner { grid-template-columns: 1fr; gap: 12px; }

.qb-breadcrumbs { font-size: 14px; color: var(--qb-text-muted); }
.qb-breadcrumbs a { color: var(--qb-green); }
.qb-breadcrumbs__sep { margin: 0 6px; color: var(--qb-text-muted); }

/* ---------- Slots ---------- */
.qb-slots { padding: 24px 0 28px; background: var(--qb-bg); }
.qb-hero + .qb-slots { padding-top: 16px; }
.qb-slots__heading {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--qb-font-h);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--qb-text-muted);
}
.qb-slots__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: stretch;
}
.qb-slots__card {
    display: block;
    border-radius: var(--qb-radius);
    overflow: hidden;
    border: 1px solid var(--qb-line);
    outline: none;
    transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
a.qb-slots__card:hover, a.qb-slots__card:focus { color: inherit; text-decoration: none; }
.qb-slots__card:focus-visible { border-color: var(--qb-green); box-shadow: 0 0 0 2px rgba(32, 112, 64, 0.35); }
.qb-slots__card:hover { border-color: var(--qb-green-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(20, 83, 45, 0.16); }
.qb-slots__media { display: block; position: relative; aspect-ratio: 232 / 174; background: var(--qb-surface); }
.qb-slots__media img { width: 100%; height: 100%; object-fit: cover; }
.qb-slots__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 83, 45, 0.30) 0%, rgba(20, 83, 45, 0.88) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 12px;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.qb-slots__card:hover .qb-slots__overlay,
.qb-slots__card:focus-visible .qb-slots__overlay { opacity: 1; }
.qb-slots__name {
    font-family: var(--qb-font-h);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.qb-slots__launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--qb-gold);
    color: var(--qb-text);
    font-family: var(--qb-font-h);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.qb-slots__card:hover .qb-slots__launch { background: var(--qb-gold-hover); }

/* ---------- TOC ---------- */
.qb-section--toc { padding: 24px 0 10px; }
.qb-section--toc .qb-toc { margin-bottom: 0; }
.qb-toc {
    position: relative;
    background: var(--qb-surface);
    border: 1px solid rgba(32, 112, 64, 0.28);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.qb-toc::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--qb-gold); }
.qb-toc summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-family: var(--qb-font-h);
    font-size: 18px;
    font-weight: 700;
    color: var(--qb-text);
}
.qb-toc summary::-webkit-details-marker { display: none; }
.qb-toc summary::after { content: "\25BE"; color: var(--qb-green); transition: transform .2s; font-size: 16px; line-height: 1; }
.qb-toc[open] summary::after { transform: rotate(180deg); }
.qb-toc[open] .qb-toc__list { margin-top: 14px; }
.qb-toc__title { font-size: 18px; font-weight: 700; color: var(--qb-text); }
.qb-toc__list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; counter-reset: toc; }
.qb-toc__list li { break-inside: avoid; margin-bottom: 10px; padding-left: 2px; counter-increment: toc; }
.qb-toc__list li::before { content: counter(toc) ". "; color: var(--qb-green); font-weight: 700; margin-right: 6px; }
.qb-toc__list a { color: var(--qb-text); text-decoration: none; transition: color 0.2s ease; }
.qb-toc__list a:hover { color: var(--qb-green); }

/* TOC always-open two-column numbered variant (homepage) */
.qb-toc--grid .qb-toc__title { margin: 0 0 14px; font-size: 18px; font-weight: 700; }
.qb-toc--grid .qb-toc__list { column-count: 2; column-gap: 32px; margin: 0; }
@media (max-width: 768px) {
    .qb-toc--grid .qb-toc__list { column-count: 1; }
}

/* ---------- Facts table ---------- */
.qb-facts-table { margin-top: 10px; margin-bottom: 10px; }
.qb-facts-table__scroll {
    overflow-x: auto;
    border-radius: var(--qb-radius);
    border: 1px solid var(--qb-line);
    scrollbar-width: thin;
    scrollbar-color: var(--qb-green) var(--qb-surface);
}
.qb-facts-table__scroll::-webkit-scrollbar { height: 8px; }
.qb-facts-table__scroll::-webkit-scrollbar-track { background: var(--qb-surface); }
.qb-facts-table__scroll::-webkit-scrollbar-thumb { background: var(--qb-green); border-radius: 4px; }
.qb-facts-table__table { width: 100%; min-width: 620px; border-collapse: collapse; }
.qb-facts-table__table thead { background: var(--qb-surface); }
.qb-facts-table__table thead th {
    text-align: left;
    padding: 14px 20px;
    font-family: var(--qb-font-h);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--qb-green);
    font-weight: 700;
}
.qb-facts-table__table tbody tr:nth-child(odd)  { background: var(--qb-bg-soft); }
.qb-facts-table__table tbody tr:nth-child(even) { background: var(--qb-bg); }
.qb-facts-table__table tbody td,
.qb-facts-table__table tbody th {
    padding: 14px 20px;
    border-top: 1px solid var(--qb-line);
    color: var(--qb-text);
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}
.qb-facts-table__table tbody th { color: var(--qb-text-muted); font-weight: 600; width: 38%; }

/* ---------- Two-column lists (pros/cons, cards) ---------- */
.qb-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.qb-card {
    background: var(--qb-bg);
    border: 1px solid var(--qb-line);
    border-radius: var(--qb-radius);
    padding: 24px;
}
.qb-card--ok { border-top: 3px solid var(--qb-ok); }
.qb-card--bad { border-top: 3px solid var(--qb-bad); }
.qb-card h3 { margin-top: 0; }
.qb-card ul { display: flex; flex-direction: column; gap: 8px; }
.qb-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--qb-text); }
.qb-card li::before { content: "\2713"; color: var(--qb-ok); font-weight: 700; flex-shrink: 0; }
.qb-card--bad li::before { content: "\2715"; color: var(--qb-bad); }

.qb-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.qb-cards-3 .qb-card { border-top: 3px solid var(--qb-gold); }
.qb-cards-3 .qb-card__num { font-family: var(--qb-font-h); font-weight: 800; font-size: 28px; color: var(--qb-green); }

/* ---------- Prose ---------- */
.qb-prose { font-size: 1rem; line-height: 1.6; color: var(--qb-text); }
.qb-prose p { margin: 0 0 var(--qb-stack); }
.qb-prose ul, .qb-prose ol { margin: 0 0 var(--qb-stack); padding-left: 1.5em; }
.qb-prose ul { list-style: disc; }
.qb-prose ol { list-style: decimal; }
.qb-prose li { margin-bottom: 0.4rem; line-height: 1.6; }
.qb-prose li:last-child { margin-bottom: 0; }
.qb-prose h2 { margin-top: 2.5rem; }
.qb-prose h3 { margin-top: 1.75rem; }
.qb-prose h4 { margin-top: 1.5rem; }
.qb-prose > :first-child { margin-top: 0; }
.qb-prose a { color: var(--qb-green); text-decoration: underline; text-decoration-color: rgba(32, 112, 64, 0.4); }
.qb-prose a:hover { text-decoration: none; }
.qb-prose a.qb-btn { text-decoration: none; }
.qb-prose a.qb-btn--primary, .qb-prose a.qb-btn--primary:hover, .qb-prose a.qb-btn--primary:focus { color: var(--qb-text); }
.qb-prose a.qb-btn--secondary, .qb-prose a.qb-btn--secondary:hover, .qb-prose a.qb-btn--secondary:focus { color: var(--qb-green); }
.qb-prose img { max-width: min(750px, 100%); height: auto; display: block; margin: 1.5rem auto; border-radius: 8px; }
.qb-prose figure { display: block; width: min(100%, 750px); max-width: min(750px, 100%); margin: 1.5rem auto; box-sizing: border-box; }
.qb-prose figcaption { font-size: 0.875rem; color: var(--qb-text-muted); margin-top: 0.5rem; text-align: center; }
.qb-prose blockquote {
    margin: 0 0 var(--qb-stack);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--qb-green);
    background: rgba(32, 112, 64, 0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--qb-text);
}
.qb-prose blockquote p:last-child { margin-bottom: 0; }
.qb-prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin-bottom: 10px; }
.qb-prose th, .qb-prose td { padding: 12px 14px; border: 1px solid var(--qb-line); text-align: left; vertical-align: top; color: var(--qb-text); }
.qb-prose th { background: var(--qb-surface); font-weight: 600; color: var(--qb-green); }
.qb-prose tbody tr:nth-child(even) td { background: var(--qb-bg-soft); }
@media (max-width: 640px) {
    .qb-prose { font-size: 0.95rem; }
    .qb-prose table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ---------- CTA banner ---------- */
.qb-cta-banner {
    background: linear-gradient(135deg, var(--qb-green) 0%, var(--qb-green-light) 60%, var(--qb-green) 100%);
    border-radius: 20px;
    padding: 52px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}
.qb-cta-banner h2 { color: #FFFFFF; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin: 14px 0; line-height: 1.15; }
.qb-cta-banner h2 span { color: var(--qb-gold); }
.qb-cta-banner p { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 520px; margin: 0 auto 28px; }
.qb-cta-banner .qb-badge { background: rgba(255,255,255,0.16); color: #FFFFFF; border-color: rgba(255,255,255,0.3); }
.qb-cta-banner__fine { font-size: 12px; margin: 14px 0 0; color: rgba(255,255,255,0.8); }
.qb-cta-banner__fine a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ---------- Reviews slider ---------- */
.qb-voices { position: relative; }
.qb-voices__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}
.qb-voices__track::-webkit-scrollbar { display: none; }
.qb-voice {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 320px;
    scroll-snap-align: start;
    background: var(--qb-bg);
    border: 1px solid var(--qb-line);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.qb-voice__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qb-voice__stars { display: flex; gap: 2px; color: var(--qb-star); }
.qb-voice__title { font-size: 16px; font-weight: 700; margin: 2px 0 0; }
.qb-voice__body { color: var(--qb-text-muted); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
.qb-voice__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--qb-text-muted);
    border-top: 1px solid var(--qb-line);
    padding-top: 10px;
}
.qb-voice__name { color: var(--qb-text); font-weight: 600; }
.qb-voice__country {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(32, 112, 64, 0.10);
    color: var(--qb-green);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
}
.qb-voices__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }
.qb-voices__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--qb-green);
    color: var(--qb-green);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .18s, opacity .18s, color .18s;
}
.qb-voices__arrow:hover { background: rgba(32, 112, 64, 0.10); }
.qb-voices__arrow[disabled] { opacity: .35; cursor: not-allowed; }

/* ---------- FAQ ---------- */
.qb-faq { display: flex; flex-direction: column; gap: 14px; }
.qb-faq__item {
    position: relative;
    background: var(--qb-bg);
    border: 1px solid var(--qb-line);
    border-radius: 10px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.qb-faq__item::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: background .25s ease;
}
.qb-faq__item.is-active {
    background: var(--qb-surface);
    border-color: rgba(32, 112, 64, 0.4);
    box-shadow: 0 12px 32px rgba(20, 83, 45, 0.12);
}
.qb-faq__item.is-active::before { background: var(--qb-gold); }
.qb-faq__head {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 16px 22px;
    text-align: left;
    cursor: pointer;
    color: var(--qb-text);
    font: inherit;
}
.qb-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: rgba(32, 112, 64, 0.12);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--qb-green);
    transition: background .25s ease, color .25s ease;
}
.qb-faq__icon svg { width: 18px; height: 18px; max-width: none; flex-shrink: 0; transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1); }
.qb-faq__item.is-active .qb-faq__icon { background: var(--qb-gold); color: var(--qb-text); }
.qb-faq__item.is-active .qb-faq__icon svg { transform: rotate(180deg); }
.qb-faq__head h3.qb-faq__q, h3.qb-faq__q {
    font-family: var(--qb-font-h);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    color: var(--qb-text);
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
}
.qb-faq__a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1); }
.qb-faq__item.is-active .qb-faq__a { max-height: 2400px; }
.qb-faq__a > div { padding: 4px 22px 20px calc(22px + 32px + 14px); color: var(--qb-text-muted); font-size: 15px; line-height: 1.65; }
.qb-faq__a p { margin: 0; color: inherit; }

/* ---------- Wave divider ---------- */
.qb-wave-divider { position: relative; width: 100%; height: 80px; line-height: 0; margin-top: 40px; }
.qb-wave-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Author strip (full-width horizontal band) ---------- */
.qb-author-strip {
    background: var(--qb-bg-soft);
    border-top: 1px solid var(--qb-line);
    border-bottom: 1px solid var(--qb-line);
    padding: 32px 0;
    margin-top: 24px;
}
.qb-author-strip + .qb-wave-divider { margin-top: 0; }
.qb-author-strip__box { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.qb-author-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    width: 100%;
    background: var(--qb-bg);
    border: 1px solid var(--qb-line);
    border-left: 5px solid var(--qb-gold);
    border-radius: var(--qb-radius);
    padding: 28px 36px;
    box-shadow: 0 6px 24px rgba(20, 83, 45, 0.08);
}
.qb-author-card__media {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--qb-line);
    width: 150px; height: 150px;
    aspect-ratio: 1;
    box-shadow: 0 4px 24px rgba(20, 83, 45, 0.12);
    transition: border-color 0.18s, box-shadow 0.18s;
}
.qb-author-card__media:hover { border-color: var(--qb-green); box-shadow: 0 6px 28px rgba(20, 83, 45, 0.22); }
.qb-author-card__img-wrap { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--qb-surface); }
.qb-author-card__img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center center; border-radius: 50%; display: block; }
.qb-author-card__text { flex: 1 1 auto; min-width: 0; }
.qb-author-card__name { font-family: var(--qb-font-h); font-size: 1.5rem; font-weight: 700; color: var(--qb-text); margin: 0 0 6px; }
.qb-author-card__role { font-size: 1rem; color: var(--qb-green); margin: 0 0 12px; font-weight: 600; }
.qb-author-card__bio { font-size: 0.9375rem; color: var(--qb-text-muted); line-height: 1.6; margin: 0 0 14px; max-width: 820px; }
.qb-author-card__profile {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--qb-green);
    border-bottom: 1px solid transparent;
    transition: color 0.18s, border-color 0.18s;
}
.qb-author-card__profile:hover { color: var(--qb-green-light); border-bottom-color: var(--qb-green-light); }

/* ---------- Author page (two-column with sticky sidebar) ---------- */
.qb-author-page {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
.qb-author-page__sidebar { position: sticky; top: 96px; }
.qb-author-page__card {
    background: var(--qb-bg);
    border: 1px solid var(--qb-line);
    border-top: 4px solid var(--qb-gold);
    border-radius: var(--qb-radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(20, 83, 45, 0.08);
}
.qb-author-page__avatar {
    width: 130px; height: 130px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--qb-line);
    background: var(--qb-surface);
}
.qb-author-page__avatar img { width: 100%; height: 100%; object-fit: cover; }
.qb-author-page__name { font-family: var(--qb-font-h); font-size: 1.25rem; font-weight: 700; margin: 0 0 4px; color: var(--qb-text); }
.qb-author-page__role { font-size: 0.9375rem; color: var(--qb-green); font-weight: 600; margin: 0 0 18px; }
.qb-author-page__facts { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.qb-author-page__facts li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--qb-line);
}
.qb-author-page__facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.qb-author-page__fact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--qb-text-muted);
}
.qb-author-page__fact-value { font-size: 0.9375rem; color: var(--qb-text); font-weight: 600; }
.qb-author-page__main > :first-child { margin-top: 0; }
@media (max-width: 900px) {
    .qb-author-page { grid-template-columns: 1fr; gap: 28px; }
    .qb-author-page__sidebar { position: static; }
}

/* ---------- Footer ---------- */
.qb-footer { background: var(--qb-green-deep); color: rgba(255,255,255,0.78); padding: 52px 0 28px; }
.qb-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.qb-footer__top { display: grid; grid-template-columns: 1.2fr 2.8fr; gap: 40px; }
.qb-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.qb-footer__about { margin: 14px 0 16px; max-width: 360px; font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.qb-social { display: flex; gap: 10px; }
.qb-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8);
    transition: color .18s, border-color .18s, background .18s;
}
.qb-social a:hover { color: var(--qb-gold); border-color: var(--qb-gold); background: rgba(255,255,255,0.14); }
.qb-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.qb-footer__title { font-family: var(--qb-font-h); color: #FFFFFF; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; font-weight: 700; }
.qb-footer__col ul li { margin-bottom: 8px; font-size: 14px; }
.qb-footer__col a { color: rgba(255,255,255,0.78); }
.qb-footer__col a:hover { color: var(--qb-gold); }
.qb-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.qb-footer__badges .qb-chip { background: rgba(255,255,255,0.10); color: #FFFFFF; border-color: rgba(255,255,255,0.22); }
.qb-footer__divider { height: 1px; background: rgba(255,255,255,0.16); margin: 32px 0 18px; }
.qb-footer__bottom { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.qb-footer__disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    margin: 0;
    padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-left: 3px solid var(--qb-gold);
    border-radius: 8px;
}
.qb-footer__disclaimer a { color: var(--qb-gold); text-decoration: underline; }
.qb-footer__copy { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }

/* ---------- 404 ---------- */
.qb-404 { text-align: center; min-height: 60vh; }
.qb-404__inner { justify-items: center; }
.qb-404__code { font-family: var(--qb-font-h); font-weight: 800; font-size: clamp(4rem, 10vw, 8rem); line-height: 1; color: var(--qb-green); margin: 0; }
.qb-404__text { color: var(--qb-text-muted); margin: 0 0 24px; }

/* ---------- Contact form ---------- */
.qb-form { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.qb-form label { font-weight: 600; font-size: 14px; margin-bottom: 6px; display: block; }
.qb-form input, .qb-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--qb-line);
    border-radius: 10px;
    font: inherit;
    color: var(--qb-text);
    background: var(--qb-bg);
}
.qb-form input:focus, .qb-form textarea:focus { outline: none; border-color: var(--qb-green); box-shadow: 0 0 0 2px rgba(32, 112, 64, 0.18); }

/* ---------- Responsive ---------- */
@media (max-width: 1279px) {
    .qb-hero__inner:not(.qb-hero__inner--compact) { grid-template-columns: 1fr; }
    .qb-hero__media { justify-content: center; }
    .qb-hero__image, .qb-hero__photo { max-width: 100%; }
    .qb-voice { flex: 0 0 calc(50% - 10px); }
    .qb-footer__top { grid-template-columns: 1fr; }
    .qb-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .qb-cards-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .qb-hero { padding: 20px 0; }
    .qb-hero__title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); }
    .qb-slots__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .qb-nav, .qb-header__cta { display: none; }
    .qb-burger { display: flex; }
    .qb-hero__inner--compact:not(.qb-404__inner):has(> figure),
    .qb-hero__inner--compact:not(.qb-404__inner):has(> .qb-hero__image) { grid-template-columns: 1fr; }
    .qb-hero__inner--compact:not(.qb-404__inner):has(> figure) > figure,
    .qb-hero__inner--compact:not(.qb-404__inner):has(> .qb-hero__image) > .qb-hero__image {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        margin-top: 1rem;
        max-width: min(750px, 100%);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    .qb-container { padding: 0 20px; }
    .qb-section { padding: 20px 0; }
    .qb-footer__inner, .qb-hero__inner, .qb-author-strip__box { padding: 0 20px; }
    .qb-grid-2 { grid-template-columns: 1fr; }
    .qb-cards-3 { grid-template-columns: 1fr; }
    .qb-voice { flex: 0 0 86%; min-width: 280px; }
    .qb-voices__nav { justify-content: center; }
    .qb-footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
    .qb-toc__list { columns: 1; }
    .qb-facts-table__table tbody th { width: 45%; }
    .qb-cta-banner { padding: 40px 24px; }
}

@media (max-width: 520px) {
    .qb-slots { padding: 20px 0 24px; }
    .qb-slots__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .qb-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
    .qb-footer__cols { grid-template-columns: 1fr; }
    .qb-hero__actions { flex-direction: column; align-items: stretch; }
    .qb-hero__actions .qb-btn { width: 100%; }
    .qb-faq__head { padding: 16px 18px; }
    .qb-faq__a > div { padding: 4px 18px 18px calc(18px + 32px + 14px); }
    .qb-author-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ── MOBILE HERO: image after bonus, trust 2col, reduced padding ── */
@media (max-width: 768px) {
    .qb-hero__inner:not(.qb-hero__inner--compact) {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    /* Flatten hero__text so its children become direct flex items */
    .qb-hero__text {
        display: contents;
    }
    /* Assign explicit order to control visual sequence */
    .qb-hero__title      { order: 1; width: 100%; }
    .qb-hero__bonus      { order: 2; width: 100%; }
    .qb-hero__bonus-sub  { order: 2; width: 100%; }
    .qb-hero__lead       { order: 2; width: 100%; }
    /* Image slots in between bonus and trust */
    .qb-hero__media      { order: 3; width: 100%; margin: 12px 0; }
    .qb-hero__image      { max-width: 100% !important; border-radius: 12px; }
    .qb-hero__photo      { max-width: 100%; }
    /* Trust and CTAs after image */
    .qb-trust            { order: 4; width: 100%; }
    .qb-hero__actions    { order: 5; width: 100%; }
    .qb-hero__disclaimer { order: 6; width: 100%; font-size: 12px; }
}

/* Trust tiles stay 2-column on small screens */
@media (max-width: 520px) {
    .qb-trust--tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Reduce hero padding on mobile */
@media (max-width: 480px) {
    .qb-hero:not(.qb-hero--compact) { padding: 10px 0 20px; }
    .qb-hero__inner { padding-left: 16px; padding-right: 16px; }
}

/* ── Author hero: round avatar ── */
.qb-hero__author-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.qb-hero__inner--compact > .qb-hero__author-figure img {
    width: clamp(120px, 22vw, 200px) !important;
    height: clamp(120px, 22vw, 200px) !important;
    max-width: clamp(120px, 22vw, 200px) !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.30);
    box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
    .qb-hero__inner--compact > .qb-hero__author-figure {
        justify-self: center;
        margin-bottom: 8px;
    }
    .qb-hero__inner--compact > .qb-hero__author-figure img {
        width: clamp(80px, 28vw, 140px) !important;
        height: clamp(80px, 28vw, 140px) !important;
        max-width: clamp(80px, 28vw, 140px) !important;
    }
}

/* ── Center figures inside content containers ── */
.qb-container figure:not(.qb-hero__author-figure) {
    display: block;
    max-width: min(750px, 100%);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}
.qb-container figure:not(.qb-hero__author-figure) img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}
.qb-container figure:not(.qb-hero__author-figure) figcaption {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.75;
}

/* ── Figure CTA buttons ── */
.qb-figure-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 6px 0 28px;
}
.qb-figure-cta .qb-btn {
    min-width: 140px;
    text-align: center;
}
