:root {
    /* Backgrounds (dark theme) */
    --fb-bg: #101014;
    --fb-bg-soft: #17171D;
    --fb-surface: #1E1E26;
    --fb-deep: #0A0A0D;

    /* Accent / CTA — orange-red */
    --fb-orange: #F05000;
    --fb-orange-hi: #FF6A1F;
    --fb-orange-deep: #C04000;
    --fb-grad: linear-gradient(135deg, #FF6A1F 0%, #F05000 100%);

    /* Text */
    --fb-text: #EDEDF2;
    --fb-text-muted: #9A9AA8;
    --fb-line: #2A2A34;
    --fb-line-strong: #3A3A48;

    /* Service */
    --fb-star: #F5A623;
    --fb-ok: #3DD68C;
    --fb-bad: #FF6B6B;
    --fb-link: #FF6A1F;

    /* Dark text used on the orange CTA (WCAG AA on all gradient stops) */
    --fb-on-orange: #1A0C02;

    --fb-font-h: 'Rubik', sans-serif;
    --fb-font-b: 'Roboto', sans-serif;
    --fb-radius: 14px;
    --fb-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(--fb-font-b);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fb-text);
    background: var(--fb-bg);
    background-image:
        radial-gradient(1200px 600px at 80% -10%, rgba(240,80,0,0.10), transparent 60%),
        radial-gradient(800px 500px at -10% 8%, rgba(255,106,31,0.08), transparent 60%);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--fb-link); text-decoration: none; transition: color .18s; }
a:hover { color: var(--fb-orange-hi); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--fb-font-h); color: var(--fb-text); font-weight: 700; }
h1, h2, h3, h4, p { margin-top: 0; margin-bottom: var(--fb-stack); }
h1 { font-size: 2.25rem;  line-height: 1.2;  letter-spacing: -0.01em; }
h2 { font-size: 1.75rem;  line-height: 1.3; }
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 ===== */
.fb-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.fb-section { padding: 20px 0; }
.fb-section.fb-section--inner-single { padding: 40px 0; }
.fb-section--alt { background: var(--fb-bg-soft); }
.fb-h2__sub { color: var(--fb-text-muted); margin: 0 0 28px; font-size: 16px; }


/* ===== Buttons ===== */
.fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: var(--fb-font-b);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .12s, filter .2s;
    white-space: nowrap;
}
.fb-btn--primary {
    background: var(--fb-grad);
    color: var(--fb-on-orange);
    box-shadow: 0 8px 22px rgba(240, 80, 0, 0.30);
}
.fb-btn--primary:hover { filter: brightness(1.07); color: var(--fb-on-orange); }
.fb-btn--primary:active { transform: translateY(1px); }
.fb-btn--secondary {
    background: transparent;
    color: var(--fb-orange-hi);
    border: 1.5px solid var(--fb-orange);
}
.fb-btn--secondary:hover { background: rgba(240, 80, 0, 0.14); color: var(--fb-orange-hi); }
.fb-btn--lg { padding: 14px 26px; font-size: 15px; }
.fb-btn--full { width: 100%; }


/* ===== Badge & chip ===== */
.fb-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--fb-font-b);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(240, 80, 0, 0.14);
    color: var(--fb-orange-hi);
    border: 1px solid rgba(240, 80, 0, 0.34);
}
.fb-chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(240, 80, 0, 0.10);
    color: var(--fb-orange-hi);
    border: 1px solid rgba(240, 80, 0, 0.28);
}


/* ===== Header ===== */
.fb-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(16, 16, 20, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--fb-line);
    height: 76px;
    display: flex;
    align-items: center;
}
.fb-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}
.fb-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.fb-logo__img { height: 32px; width: auto; display: block; }

.fb-nav { flex: 1; display: flex; justify-content: center; }
.fb-nav__list { display: flex; gap: 28px; }
.fb-nav__link {
    position: relative;
    font-family: var(--fb-font-b);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fb-text);
    padding: 8px 0;
    transition: color .18s;
}
.fb-nav__link:hover, .fb-nav__link.fb-nav--active { color: var(--fb-orange-hi); }
.fb-nav__link:hover::after, .fb-nav__link.fb-nav--active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--fb-orange);
    border-radius: 2px;
}
.fb-header__cta { display: flex; gap: 12px; align-items: center; }

.fb-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;
}
.fb-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fb-text);
    border-radius: 2px;
    transition: transform .3s, opacity .2s;
}
body.fb-nav--open .fb-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.fb-nav--open .fb-burger span:nth-child(2) { opacity: 0; }
body.fb-nav--open .fb-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===== Mobile overlay ===== */
.fb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 13, 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.fb-nav--open .fb-overlay { opacity: 1; transform: scale(1); pointer-events: auto; }
.fb-overlay__close { position: absolute; top: 20px; right: 20px; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.fb-overlay__nav ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.fb-overlay__nav a {
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 24px;
    color: var(--fb-text);
    letter-spacing: 0.04em;
}
.fb-overlay__nav a:hover { color: var(--fb-orange-hi); }
.fb-overlay__cta { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; gap: 12px; }
.fb-overlay__cta .fb-btn { flex: 1 1 50%; }
body.fb-nav--open { overflow: hidden; }


/* ===== Hero ===== */
.fb-hero {
    background:
        radial-gradient(900px 480px at 78% 12%, rgba(240,80,0,0.16), transparent 62%),
        linear-gradient(180deg, #101014 0%, #17171D 55%, #1E1E26 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--fb-line);
}
.fb-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.fb-hero__text { max-width: 580px; }
.fb-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 18px 0 20px;
}
.fb-hero__bonus {
    font-family: var(--fb-font-h);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 8px 0 4px;
    color: var(--fb-text);
}
.fb-hero__bonus-num {
    background: var(--fb-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--fb-orange);
}
.fb-hero__bonus-sub { font-size: 18px; color: var(--fb-text-muted); margin: 0 0 18px; }
.fb-hero__lead { color: var(--fb-text-muted); font-size: 16px; margin: 0 0 24px; max-width: 560px; }
.fb-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

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

.fb-hero__media { position: relative; display: flex; justify-content: flex-end; }
.fb-hero__image {
    position: relative;
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    border: 1px solid var(--fb-line-strong);
    overflow: hidden;
    line-height: 0;
    background: var(--fb-surface);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.fb-hero__photo { display: block; width: 100%; max-width: 750px; height: auto; vertical-align: top; }
/* Hero media placeholder */
.fb-hero__ph {
    aspect-ratio: 5 / 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:
        radial-gradient(120px 120px at 70% 30%, rgba(240,80,0,0.30), transparent 60%),
        linear-gradient(135deg, #1E1E26 0%, #0A0A0D 100%);
    color: var(--fb-text-muted);
    text-align: center;
    padding: 24px;
}
.fb-hero__ph-title { font-family: var(--fb-font-h); font-weight: 800; font-size: 22px; color: var(--fb-orange-hi); }
.fb-hero__ph-sub { font-size: 13px; }

.fb-hero--compact { padding: 52px 0; }

/* Homepage compact/lite hero (single column, left-aligned, feature chips) */
.fb-hero--lite { padding: 44px 0; }
.fb-hero__inner--lite { grid-template-columns: 1fr; gap: 0; }
.fb-hero--lite .fb-hero__title { font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin: 14px 0 14px; }
.fb-hero--lite .fb-hero__text { max-width: 720px; }
.fb-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
}
.fb-hero__feature {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(240, 80, 0, 0.12);
    color: var(--fb-orange-hi);
    border: 1px solid rgba(240, 80, 0, 0.34);
}

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

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


/* ===== TOC ===== */
.fb-section--toc { padding: 24px 0 8px; }
.fb-toc {
    position: relative;
    background: var(--fb-surface);
    border: 1px solid rgba(240, 80, 0, 0.28);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.fb-toc::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--fb-grad); }
.fb-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(--fb-font-h);
    font-weight: 700;
    font-size: 18px;
    color: var(--fb-text);
}
.fb-toc summary::-webkit-details-marker { display: none; }
.fb-toc summary::after { content: "\25BE"; color: var(--fb-orange); transition: transform .2s; font-size: 16px; line-height: 1; }
.fb-toc[open] summary::after { transform: rotate(180deg); }
.fb-toc[open] .fb-toc__list { margin-top: 14px; }
.fb-toc__title { font-size: 18px; color: var(--fb-text); }
.fb-toc__list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; counter-reset: toc; }
.fb-toc__list li { break-inside: avoid; margin-bottom: 10px; padding-left: 2px; counter-increment: toc; }
.fb-toc__list li::before { content: counter(toc) ". "; color: var(--fb-orange); font-weight: 700; margin-right: 6px; }
.fb-toc__list a { color: var(--fb-text); text-decoration: none; transition: color 0.2s ease; }
.fb-toc__list a:hover { color: var(--fb-orange-hi); }

/* Compact single-column TOC (homepage, always open) */
.fb-toc--compact { padding: 18px 22px; margin-bottom: 0; }
.fb-toc--compact .fb-toc__title { display: block; margin: 0 0 10px; font-family: var(--fb-font-h); font-weight: 700; font-size: 17px; }
.fb-toc--compact .fb-toc__list { columns: 1; column-gap: 0; }
.fb-toc--compact .fb-toc__list li { margin-bottom: 4px; line-height: 1.35; font-size: 0.95rem; }
.fb-toc--compact .fb-toc__list li:last-child { margin-bottom: 0; }


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


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

/* Figure placeholder */
.fb-figph {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(160px 120px at 70% 28%, rgba(240,80,0,0.22), transparent 62%),
        linear-gradient(135deg, #1E1E26 0%, #0A0A0D 100%);
    border: 1px solid var(--fb-line);
    border-radius: 8px;
    color: var(--fb-text-muted);
    font-family: var(--fb-font-h);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ===== Callout ===== */
.fb-callout {
    background: var(--fb-surface);
    border: 1px solid var(--fb-line-strong);
    border-left: 4px solid var(--fb-orange);
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    margin: 0 0 var(--fb-stack);
}
.fb-callout__title { font-family: var(--fb-font-h); font-weight: 700; color: var(--fb-orange-hi); margin: 0 0 6px; font-size: 1.0625rem; }
.fb-callout p:last-child { margin-bottom: 0; }


/* ===== Pros / Cons ===== */
.fb-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fb-proscons__col {
    background: var(--fb-surface);
    border: 1px solid var(--fb-line);
    border-radius: 12px;
    padding: 22px 24px;
}
.fb-proscons__col--pro { border-top: 3px solid var(--fb-ok); }
.fb-proscons__col--con { border-top: 3px solid var(--fb-bad); }
.fb-proscons__title { font-family: var(--fb-font-h); font-weight: 700; margin: 0 0 12px; font-size: 1.25rem; }
.fb-proscons__list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: var(--fb-text); font-size: 0.95rem; }
.fb-proscons__list li::before { content: ""; flex: 0 0 auto; margin-top: 7px; width: 8px; height: 8px; border-radius: 50%; }
.fb-proscons__col--pro .fb-proscons__list li::before { background: var(--fb-ok); }
.fb-proscons__col--con .fb-proscons__list li::before { background: var(--fb-bad); }


/* ===== CTA banner ===== */
.fb-ctabanner {
    background:
        radial-gradient(220px 220px at 90% -20%, rgba(240,80,0,0.26), transparent 60%),
        linear-gradient(135deg, #1E1E26 0%, #17171D 60%, #0A0A0D 100%);
    border: 1px solid var(--fb-line-strong);
    border-radius: 20px;
    padding: 52px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fb-ctabanner__title {
    font-family: var(--fb-font-h);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--fb-text);
    margin: 14px 0 14px;
    line-height: 1.15;
}
.fb-ctabanner__title span { color: var(--fb-orange-hi); }
.fb-ctabanner__sub { color: var(--fb-text-muted); font-size: 17px; max-width: 520px; margin: 0 auto 28px; line-height: 1.55; }
.fb-ctabanner__fine { color: var(--fb-text-muted); font-size: 12px; margin: 14px 0 0; }
.fb-ctabanner__fine a { color: var(--fb-text-muted); text-decoration: underline; }


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


/* ===== FAQ ===== */
.fb-faq { display: flex; flex-direction: column; gap: 14px; }
.fb-faq__item {
    position: relative;
    background: var(--fb-surface);
    border: 1px solid var(--fb-line);
    border-radius: 10px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fb-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;
}
.fb-faq__item.is-active {
    background: var(--fb-bg-soft);
    border-color: var(--fb-line-strong);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.fb-faq__item.is-active::before { background: var(--fb-grad); }
.fb-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(--fb-text);
    font: inherit;
}
.fb-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(240, 80, 0, 0.16);
    border-radius: 8px;
    flex-shrink: 0;
    transition: background .25s ease;
}
.fb-faq__icon svg { width: 18px; height: 18px; max-width: none; flex-shrink: 0; transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1); color: var(--fb-orange-hi); }
.fb-faq__item.is-active .fb-faq__icon { background: var(--fb-orange); }
.fb-faq__item.is-active .fb-faq__icon svg { transform: rotate(180deg); }
.fb-faq__item.is-active .fb-faq__icon svg path { stroke: var(--fb-on-orange); }
.fb-faq__head h3.fb-faq__q,
h3.fb-faq__q {
    font-family: var(--fb-font-h);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    color: var(--fb-text);
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
}
.fb-faq__a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1); }
.fb-faq__item.is-active .fb-faq__a { max-height: 2400px; }
.fb-faq__a > div { padding: 4px 22px 20px calc(22px + 32px + 14px); color: var(--fb-text-muted); font-size: 15px; line-height: 1.65; }
.fb-faq__a p { margin: 0; color: inherit; }


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


/* ===== Footer ===== */
.fb-footer { background: var(--fb-deep); color: var(--fb-text-muted); padding: 52px 0 28px; }
.fb-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.fb-footer__top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
.fb-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.fb-footer__about { margin: 14px 0 16px; max-width: 420px; font-size: 14px; color: var(--fb-text-muted); line-height: 1.6; }
.fb-social { display: flex; gap: 10px; }
.fb-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--fb-surface);
    border: 1px solid var(--fb-line);
    color: var(--fb-text-muted);
    transition: color .18s, border-color .18s, background .18s;
}
.fb-social a:hover { color: var(--fb-orange-hi); border-color: var(--fb-orange); background: rgba(240, 80, 0, 0.08); }
.fb-footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.fb-footer__title {
    font-family: var(--fb-font-h);
    color: var(--fb-text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin: 0 0 14px;
    font-weight: 700;
}
.fb-footer__col ul li { margin-bottom: 8px; font-size: 14px; }
.fb-footer__col a { color: var(--fb-text-muted); }
.fb-footer__col a:hover { color: var(--fb-orange-hi); }
.fb-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 4px; }
.fb-footer__divider { height: 1px; background: var(--fb-line); margin: 32px 0 18px; }
.fb-footer__bottom { display: flex; flex-direction: column; gap: 12px; }
.fb-footer__copy { font-size: 13px; color: var(--fb-text-muted); margin: 0; }
.fb-footer__legal { font-size: 12px; color: var(--fb-text-muted); margin: 0; line-height: 1.6; }
.fb-footer__legal a { color: var(--fb-orange-hi); text-decoration: underline; }


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


/* ===== Author strip ===== */
.fb-author-strip {
    background: var(--fb-bg-soft);
    border-top: 1px solid var(--fb-line);
    padding: 24px 0 0;
    margin-top: 24px;
}
.fb-author-strip + .fb-wave-divider { margin-top: 0; }
.fb-author-strip__box { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.fb-author-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--fb-surface);
    border: 1px solid var(--fb-line);
    border-top: 3px solid var(--fb-orange);
    border-radius: 14px;
    padding: 24px 26px;
}
.fb-author-card__media {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--fb-line-strong);
    width: 120px;
    height: 120px;
    aspect-ratio: 1;
    box-shadow: 0 4px 24px rgba(240, 80, 0, 0.14);
    transition: border-color 0.18s, box-shadow 0.18s;
}
.fb-author-card__media:hover { border-color: var(--fb-orange); box-shadow: 0 6px 28px rgba(240, 80, 0, 0.24); }
.fb-author-card__img-wrap { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--fb-bg-soft); }
.fb-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; }
.fb-author-card__text { flex: 1 1 240px; min-width: 0; }
.fb-author-card__name { font-family: var(--fb-font-h); font-weight: 700; font-size: 1.25rem; color: var(--fb-text); margin: 0 0 6px; }
.fb-author-card__role { font-size: 0.9375rem; color: var(--fb-orange-hi); margin: 0 0 10px; font-weight: 600; }
.fb-author-card__bio { font-size: 0.9375rem; color: var(--fb-text-muted); line-height: 1.6; margin: 0 0 12px; }
.fb-author-card__profile {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--fb-orange-hi);
    border-bottom: 1px solid transparent;
    transition: color 0.18s, border-color 0.18s;
}
.fb-author-card__profile:hover { color: var(--fb-orange); border-bottom-color: var(--fb-orange); }
.fb-author-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px;
}
.fb-author-card__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 14px;
    background: var(--fb-bg-soft);
    border: 1px solid var(--fb-line);
    border-radius: 10px;
    min-width: 84px;
}
.fb-author-card__stat-num { font-family: var(--fb-font-h); font-weight: 800; font-size: 1.0625rem; color: var(--fb-orange-hi); line-height: 1.1; }
.fb-author-card__stat-label { font-size: 12px; color: var(--fb-text-muted); letter-spacing: 0.04em; }
@media (max-width: 600px) {
    .fb-author-card { flex-direction: column; align-items: flex-start; text-align: left; }
    .fb-author-strip__box { padding: 0 16px; }
}


/* ===== Author page: metrics + expertise ===== */
.fb-author-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0 0 32px;
}
.fb-author-metric {
    background: var(--fb-surface);
    border: 1px solid var(--fb-line);
    border-top: 3px solid var(--fb-orange);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
}
.fb-author-metric__num {
    display: block;
    font-family: var(--fb-font-h);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1;
    color: var(--fb-orange-hi);
    margin-bottom: 8px;
}
.fb-author-metric__label { font-size: 13px; color: var(--fb-text-muted); letter-spacing: 0.02em; }
.fb-author-expertise__title { font-family: var(--fb-font-h); font-weight: 700; font-size: 1.5rem; margin: 0 0 16px; }
.fb-author-expertise {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.fb-author-expertise__card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 14px;
    background: var(--fb-bg-soft);
    border: 1px solid var(--fb-line);
    border-radius: 12px;
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 1rem;
    color: var(--fb-text);
    transition: border-color .18s, color .18s, background .18s;
}
.fb-author-expertise__card:hover { border-color: var(--fb-orange); color: var(--fb-orange-hi); background: rgba(240, 80, 0, 0.08); }
@media (max-width: 760px) {
    .fb-author-metrics { grid-template-columns: repeat(2, 1fr); }
    .fb-author-expertise { grid-template-columns: repeat(2, 1fr); }
}


/* ===== Slots grid ===== */
.fb-slots { padding: 24px 0 28px; background: var(--fb-bg); }
.fb-hero + .fb-slots { padding-top: 16px; }
.fb-slots__heading {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--fb-font-b);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fb-text-muted);
}
.fb-slots__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px 12px; align-items: stretch; }
.fb-slots__card {
    display: block;
    border-radius: var(--fb-radius);
    overflow: hidden;
    border: 1px solid var(--fb-line);
    outline: none;
    transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
a.fb-slots__card:hover, a.fb-slots__card:focus { color: inherit; text-decoration: none; }
.fb-slots__card:focus-visible { border-color: var(--fb-orange); box-shadow: 0 0 0 2px rgba(240, 80, 0, 0.35); }
.fb-slots__card:hover { border-color: rgba(240, 80, 0, 0.65); transform: translateY(-2px); }
.fb-slots__media { display: block; position: relative; aspect-ratio: 232 / 174; background: var(--fb-surface); }
.fb-slots__media img { width: 100%; height: 100%; object-fit: cover; }
.fb-slots__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 13, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.fb-slots__card:hover .fb-slots__overlay, .fb-slots__card:focus-visible .fb-slots__overlay { opacity: 1; }
.fb-slots__play { display: flex; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45)); }

/* Slot card footer badges: RTP + rating */
.fb-slots__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: var(--fb-surface);
    border-top: 1px solid var(--fb-line);
}
.fb-slots__rtp {
    font-family: var(--fb-font-b);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--fb-text);
    background: rgba(61, 214, 140, 0.14);
    border: 1px solid rgba(61, 214, 140, 0.34);
    border-radius: 4px;
    padding: 3px 7px;
    white-space: nowrap;
}
.fb-slots__rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--fb-font-b);
    font-size: 11px;
    font-weight: 700;
    color: var(--fb-text);
    background: rgba(240, 80, 0, 0.12);
    border: 1px solid rgba(240, 80, 0, 0.30);
    border-radius: 4px;
    padding: 3px 7px;
    white-space: nowrap;
}
.fb-slots__star { color: var(--fb-star); font-size: 12px; line-height: 1; }


/* ===== Rating block (review hero) ===== */
.fb-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--fb-surface);
    border: 1px solid var(--fb-line-strong);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 0 18px;
}
.fb-rating__score { font-family: var(--fb-font-h); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--fb-orange-hi); }
.fb-rating__max { font-size: 1rem; color: var(--fb-text-muted); font-weight: 400; }
.fb-rating__stars { color: var(--fb-star); letter-spacing: 3px; font-size: 1.1rem; }
.fb-rating__label { font-size: 0.85rem; color: var(--fb-text-muted); }


/* ===== Form (contact placeholder) ===== */
.fb-form label { display: block; font-size: 0.9375rem; color: var(--fb-text); margin-bottom: 4px; }
.fb-form input, .fb-form textarea {
    width: 100%;
    max-width: 460px;
    padding: 10px 12px;
    background: var(--fb-surface);
    border: 1px solid var(--fb-line);
    border-radius: 8px;
    color: var(--fb-text);
    font-family: var(--fb-font-b);
    font-size: 15px;
}
.fb-form input:focus, .fb-form textarea:focus { outline: none; border-color: var(--fb-orange); box-shadow: 0 0 0 2px rgba(240, 80, 0, 0.25); }
.fb-form p { margin: 0 0 16px; }
.fb-form__note { font-size: 13px; color: var(--fb-text-muted); }


/* ===== Bonus cards ===== */
.fb-bonus-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fb-bonus-card {
    background: var(--fb-surface);
    border: 1px solid var(--fb-line);
    border-top: 3px solid var(--fb-orange);
    border-radius: 12px;
    padding: 24px;
}
.fb-bonus-card__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fb-orange-hi); margin: 0 0 8px; }
.fb-bonus-card__amount { font-family: var(--fb-font-h); font-weight: 800; font-size: 1.75rem; color: var(--fb-text); margin: 0 0 8px; }
.fb-bonus-card__desc { font-size: 0.9375rem; color: var(--fb-text-muted); margin: 0 0 14px; }


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

@media (max-width: 900px) {
    .fb-hero { padding: 20px 0; }
    .fb-hero__title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); }
    .fb-nav, .fb-header__cta { display: none; }
    .fb-burger { display: flex; }
    .fb-slots__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .fb-hero__inner--compact:not(.fb-404__inner):has(> figure),
    .fb-hero__inner--compact:not(.fb-404__inner):has(> .fb-hero__image) {
        grid-template-columns: 1fr;
    }
    .fb-hero__inner--compact:not(.fb-404__inner):has(> figure) > figure,
    .fb-hero__inner--compact:not(.fb-404__inner):has(> .fb-hero__image) > .fb-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; }
    .fb-container { padding: 0 16px; }
    .fb-section { padding: 20px 0; }
    .fb-header__inner { padding: 0 16px; }
    .fb-footer__inner { padding: 0 16px; }
    .fb-hero__inner { padding: 0 16px; }
    .fb-proscons { grid-template-columns: 1fr; }
    .fb-bonus-cards { grid-template-columns: 1fr; }
    .fb-voice { flex: 0 0 86%; min-width: 280px; }
    .fb-voices__nav { justify-content: center; }
    .fb-footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
    .fb-toc__list { columns: 1; }
    .fb-facts-table__table tbody th { width: 45%; }
    .fb-ctabanner { padding: 40px 24px; }
}

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

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

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

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

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

/* ── Author hero: round avatar ── */
.fb-hero__author-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.fb-hero__inner--compact > .fb-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) {
    .fb-hero__inner--compact > .fb-hero__author-figure {
        justify-self: center;
        margin-bottom: 8px;
    }
    .fb-hero__inner--compact > .fb-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 ── */
.fb-container figure:not(.fb-hero__author-figure) {
    display: block;
    max-width: min(750px, 100%);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}
.fb-container figure:not(.fb-hero__author-figure) img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}
.fb-container figure:not(.fb-hero__author-figure) figcaption {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.75;
}

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