
:root {
    /* Base */
    --bk-navy:        #1B1464;
    --bk-navy-deep:   #0E0A3A;
    --bk-blue:        #1D4FB0;
    --bk-blue-light:  #2F6BD8;

    /* CTA / accento */
    --bk-red:         #E10600;
    --bk-red-hover:   #C00500;

    /* Sfondi */
    --bk-bg:          #FFFFFF;
    --bk-bg-soft:     #EEF3FB;
    --bk-bg-blue:     #E0EAF6;

    /* Testo */
    --bk-text:        #16182B;
    --bk-text-muted:  #5A6B8C;
    --bk-line:        #D6E0EF;

    /* Servizi */
    --bk-star:        #F5A623;
    --bk-ok:          #1FA463;

    --bk-font-h: 'Rubik', sans-serif;
    --bk-font-b: 'Roboto', sans-serif;
    --bk-radius: 14px;
    --bk-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(--bk-font-b);
    font-size: 16px;
    line-height: 1.6;
    color: var(--bk-text);
    background: var(--bk-bg);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--bk-blue); text-decoration: none; transition: color .18s; }
a:hover { color: var(--bk-blue-light); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }


h1, h2, h3, h4, h5 {
    font-family: var(--bk-font-h);
    color: var(--bk-navy);
}
h1, h2, h3, h4, p {
    margin-top: 0;
    margin-bottom: var(--bk-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; }


.bk-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}
.bk-section { padding: 20px 0; }
.bk-section.bk-section--inner-single { padding: 40px 0; }
.bk-section--alt { background: var(--bk-bg-soft); }
.bk-inner-chunk + .bk-inner-chunk { margin-top: 2rem; }
.bk-h2__sub {
    color: var(--bk-text-muted);
    margin: 0 0 28px;
    font-size: 16px;
}


.bk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: var(--bk-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;
}
.bk-btn--primary {
    background: var(--bk-red);
    color: #fff;
    box-shadow: 0 8px 22px rgba(225, 6, 0, 0.28);
}
.bk-btn--primary:hover { background: var(--bk-red-hover); color: #fff; }
.bk-btn--primary:active { transform: translateY(1px); }
.bk-btn--secondary {
    background: transparent;
    color: var(--bk-blue);
    border: 1.5px solid var(--bk-blue);
}
.bk-btn--secondary:hover {
    background: rgba(29, 79, 176, 0.08);
    color: var(--bk-blue);
}
.bk-btn--lg { padding: 14px 26px; font-size: 15px; }
.bk-btn--full { width: 100%; }


.bk-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--bk-font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(29, 79, 176, 0.10);
    color: var(--bk-blue);
    border: 1px solid rgba(29, 79, 176, 0.22);
}
.bk-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(29, 79, 176, 0.10);
    color: var(--bk-blue);
    border: 1px solid rgba(29, 79, 176, 0.22);
}
.bk-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bk-navy);
    border-bottom: 1px solid var(--bk-navy-deep);
    height: 76px;
    display: flex;
    align-items: center;
}
.bk-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}
.bk-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.bk-logo img { filter: brightness(0) invert(1); }
.bk-logo--footer img { filter: brightness(0) invert(1); }

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

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


.bk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    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.bk-nav--open .bk-overlay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.bk-overlay__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.bk-overlay__nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}
.bk-overlay__nav a {
    font-family: var(--bk-font-h);
    font-weight: 700;
    font-size: 24px;
    color: var(--bk-navy);
    letter-spacing: 0.04em;
}
.bk-overlay__nav a:hover { color: var(--bk-red); }
.bk-overlay__cta {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 12px;
}
.bk-overlay__cta .bk-btn { flex: 1 1 50%; }
body.bk-nav--open { overflow: hidden; }
.bk-hero {
    background: linear-gradient(180deg, #1B1464 0%, #241A78 55%, #2A2090 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.bk-hero, .bk-hero h1, .bk-hero h2, .bk-hero h3 { color: #FFFFFF; }
.bk-hero::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 40px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'><path d='M0,20 C180,0 360,40 540,20 C720,0 900,40 1080,20 C1260,0 1440,40 1440,40 L1440,40 L0,40 Z' fill='%23ffffff' opacity='0.10'/></svg>") center/cover no-repeat;
    pointer-events: none;
}
.bk-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;
}
.bk-hero__text { max-width: 580px; }
.bk-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 18px 0 20px;
    color: #FFFFFF;
}
.bk-hero__bonus {
    font-family: var(--bk-font-h);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 8px 0 4px;
    color: #FFFFFF;
}
.bk-hero__bonus-num { color: #FF6A66; }
.bk-hero__bonus-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 18px;
}
.bk-hero__lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0 0 24px;
    max-width: 560px;
}
.bk-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.bk-hero .bk-btn--secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.6);
}
.bk-hero .bk-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

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

.bk-hero__media {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.bk-hero__image {
    position: relative;
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    line-height: 0;
    background: rgba(255, 255, 255, 0.06);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bk-hero__photo {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    vertical-align: top;
}
.bk-hero__image-ph {
    font-family: var(--bk-font-h);
    font-weight: 700;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bk-hero--compact { padding: 52px 0; }
.bk-hero--compact::before { display: none; }

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

.bk-breadcrumbs {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.bk-breadcrumbs a { color: #FFFFFF; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }
.bk-breadcrumbs a:hover { text-decoration: none; }
.bk-breadcrumbs__sep { margin: 0 6px; color: rgba(255, 255, 255, 0.6); }
.bk-section--toc { padding: 24px 0 8px; }
.bk-toc {
    position: relative;
    background: var(--bk-bg-soft);
    border: 1px solid var(--bk-line);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.bk-toc::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: var(--bk-red);
}
.bk-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(--bk-font-h);
    font-size: 18px;
    font-weight: 700;
    color: var(--bk-navy);
}
.bk-toc summary::-webkit-details-marker { display: none; }
.bk-toc summary::after {
    content: "\25BE";
    color: var(--bk-red);
    transition: transform .2s;
    font-size: 16px;
    line-height: 1;
}
.bk-toc[open] summary::after { transform: rotate(180deg); }
.bk-toc[open] .bk-toc__list { margin-top: 14px; }
.bk-toc__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bk-navy);
}
.bk-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 32px;
    counter-reset: toc;
}
.bk-toc__list li {
    break-inside: avoid;
    margin-bottom: 10px;
    padding-left: 2px;
    counter-increment: toc;
}
.bk-toc__list li::before {
    content: counter(toc) ". ";
    color: var(--bk-red);
    font-weight: 700;
    margin-right: 6px;
}
.bk-toc__list a {
    color: var(--bk-text);
    text-decoration: none;
    transition: color 0.2s ease;
}
.bk-toc__list a:hover { color: var(--bk-blue); }


.bk-facts-table { margin-top: 10px; margin-bottom: 10px; }
.bk-facts-table__scroll {
    overflow-x: auto;
    border-radius: var(--bk-radius);
    border: 1px solid var(--bk-line);
    scrollbar-width: thin;
    scrollbar-color: var(--bk-blue) var(--bk-bg-soft);
}
.bk-facts-table__scroll::-webkit-scrollbar { height: 8px; }
.bk-facts-table__scroll::-webkit-scrollbar-track { background: var(--bk-bg-soft); }
.bk-facts-table__scroll::-webkit-scrollbar-thumb { background: var(--bk-blue); border-radius: 4px; }

.bk-facts-table__table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: var(--bk-bg);
}
.bk-facts-table__table thead {
    background: var(--bk-navy);
}
.bk-facts-table__table thead th {
    text-align: left;
    padding: 14px 20px;
    font-family: var(--bk-font-h);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
}
.bk-facts-table__table tbody tr:nth-child(odd)  { background: var(--bk-bg); }
.bk-facts-table__table tbody tr:nth-child(even) { background: var(--bk-bg-soft); }
.bk-facts-table__table tbody td,
.bk-facts-table__table tbody th {
    padding: 14px 20px;
    border-top: 1px solid var(--bk-line);
    color: var(--bk-text);
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}
.bk-facts-table__table tbody th {
    color: var(--bk-text-muted);
    font-weight: 600;
    width: 38%;
}


.bk-prose { font-size: 1rem; line-height: 1.6; color: var(--bk-text); }
.bk-prose p { margin: 0 0 var(--bk-stack); }
.bk-prose ul, .bk-prose ol { margin: 0 0 var(--bk-stack); padding-left: 1.5em; }
.bk-prose ul { list-style: disc; }
.bk-prose ol { list-style: decimal; }
.bk-prose li { margin-bottom: 0.4rem; line-height: 1.6; }
.bk-prose li:last-child { margin-bottom: 0; }
.bk-prose li::marker { color: var(--bk-blue); }
.bk-prose h2 { margin-top: 2.5rem; }
.bk-prose h3 { margin-top: 1.75rem; }
.bk-prose h4 { margin-top: 1.5rem; }
.bk-prose > :first-child { margin-top: 0; }
.bk-prose a { color: var(--bk-blue); text-decoration: underline; text-decoration-color: rgba(29, 79, 176, 0.4); }
.bk-prose a:hover { text-decoration: none; }
.bk-prose a.bk-btn { text-decoration: none; }
.bk-prose a.bk-btn--primary,
.bk-prose a.bk-btn--primary:hover,
.bk-prose a.bk-btn--primary:focus { color: #fff; }
.bk-prose a.bk-btn--secondary,
.bk-prose a.bk-btn--secondary:hover,
.bk-prose a.bk-btn--secondary:focus { color: var(--bk-blue); }
.bk-prose img { max-width: min(750px, 100%); height: auto; display: block; margin: 1.5rem auto; border-radius: 8px; }
.bk-prose figure {
    display: block;
    width: min(100%, 750px);
    max-width: min(750px, 100%);
    margin: 1.5rem auto;
    box-sizing: border-box;
}
.bk-prose figcaption { font-size: 0.875rem; color: var(--bk-text-muted); margin-top: 0.5rem; text-align: center; }
.bk-prose blockquote {
    margin: 0 0 var(--bk-stack);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--bk-red);
    background: var(--bk-bg-soft);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--bk-text);
}
.bk-prose blockquote p:last-child { margin-bottom: 0; }
.bk-prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.bk-prose th, .bk-prose td {
    padding: 12px 14px;
    border: 1px solid var(--bk-line);
    text-align: left;
    vertical-align: top;
    color: var(--bk-text);
}
.bk-prose th { background: var(--bk-navy); font-weight: 600; color: #FFFFFF; }
.bk-prose tbody tr:nth-child(even) td { background: var(--bk-bg-soft); }
.bk-prose tbody tr:nth-child(odd) td { background: var(--bk-bg); }

/* placeholder figure (template senza immagini reali) */
.bk-figph {
    width: min(100%, 750px);
    aspect-ratio: 16 / 9;
    margin: 1.5rem auto;
    border-radius: 10px;
    border: 1px dashed var(--bk-line);
    background: var(--bk-bg-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bk-text-muted);
    font-family: var(--bk-font-h);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .bk-prose { font-size: 0.95rem; }
    .bk-prose table { display: block; overflow-x: auto; white-space: nowrap; }
}
/* Pro/Contro 2 colonne */
.bk-proscons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.bk-proscons__col {
    background: var(--bk-bg);
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius);
    padding: 24px;
}
.bk-proscons__col--pro { border-top: 3px solid var(--bk-ok); }
.bk-proscons__col--con { border-top: 3px solid var(--bk-red); }
.bk-proscons__title {
    font-family: var(--bk-font-h);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 14px;
}
.bk-proscons__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bk-proscons__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--bk-text); }
.bk-proscons__mark { flex-shrink: 0; font-weight: 800; line-height: 1.5; }
.bk-proscons__col--pro .bk-proscons__mark { color: var(--bk-ok); }
.bk-proscons__col--con .bk-proscons__mark { color: var(--bk-red); }


/* CTA banner */
.bk-cta {
    background: linear-gradient(135deg, #1B1464 0%, #2A2090 60%, #1B1464 100%);
    border-radius: 20px;
    padding: 52px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bk-cta__glow {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.bk-cta__glow--red { top: -60px; right: -60px; background: rgba(225, 6, 0, 0.30); }
.bk-cta__glow--blue { bottom: -60px; left: -60px; background: rgba(47, 107, 216, 0.30); }
.bk-cta__title {
    font-family: var(--bk-font-h);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #FFFFFF;
    margin: 14px 0;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}
.bk-cta__title span { color: #FF6A66; }
.bk-cta__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}
.bk-cta .bk-btn { position: relative; z-index: 1; }
.bk-cta__disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 14px 0 0;
    position: relative;
    z-index: 1;
}
.bk-cta__disclaimer a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; }


/* Box rating (recensioni hero) */
.bk-score {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 6px;
}
.bk-score__num {
    font-family: var(--bk-font-h);
    font-weight: 800;
    font-size: 2rem;
    color: #FFFFFF;
    line-height: 1;
}
.bk-score__num span { font-size: 1rem; color: rgba(255,255,255,0.7); }
.bk-score__stars { color: var(--bk-star); font-size: 18px; letter-spacing: 2px; }
.bk-score__label { font-size: 13px; color: rgba(255, 255, 255, 0.8); }


/* Info box */
.bk-note {
    background: var(--bk-bg-blue);
    border: 1px solid var(--bk-line);
    border-left: 4px solid var(--bk-blue);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 0 0 var(--bk-stack);
}
.bk-note__title {
    font-family: var(--bk-font-h);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bk-navy);
    margin: 0 0 6px;
}
.bk-note p:last-child { margin-bottom: 0; }
.bk-voices { position: relative; }
.bk-voices__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}
.bk-voices__track::-webkit-scrollbar { display: none; }
.bk-voice {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 320px;
    scroll-snap-align: start;
    background: var(--bk-bg);
    border: 1px solid var(--bk-line);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(27, 20, 100, 0.05);
}
.bk-voice__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.bk-voice__stars { display: flex; gap: 2px; color: var(--bk-star); }
.bk-voice__title {
    font-family: var(--bk-font-h);
    font-size: 16px;
    font-weight: 700;
    margin: 2px 0 0;
    color: var(--bk-navy);
}
.bk-voice__body {
    color: var(--bk-text-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.bk-voice__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--bk-text-muted);
    border-top: 1px solid var(--bk-line);
    padding-top: 10px;
}
.bk-voice__name { color: var(--bk-text); font-weight: 600; }
.bk-voice__country {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(29, 79, 176, 0.10);
    color: var(--bk-blue);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
}

.bk-voices__nav {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 14px;
}
.bk-voices__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--bk-blue);
    color: var(--bk-blue);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .18s, opacity .18s, color .18s;
}
.bk-voices__arrow:hover { background: rgba(29, 79, 176, 0.10); }
.bk-voices__arrow[disabled] { opacity: .35; cursor: not-allowed; }


.bk-faq { display: flex; flex-direction: column; gap: 14px; }
.bk-faq__item {
    position: relative;
    background: var(--bk-bg);
    border: 1px solid var(--bk-line);
    border-radius: 10px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.bk-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;
}
.bk-faq__item.is-active {
    background: var(--bk-bg-soft);
    border-color: var(--bk-line);
    box-shadow: 0 12px 32px rgba(27, 20, 100, 0.10);
}
.bk-faq__item.is-active::before { background: var(--bk-red); }
.bk-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(--bk-text);
    font: inherit;
}
.bk-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(29, 79, 176, 0.12);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--bk-blue);
    transition: background .25s ease, color .25s ease;
}
.bk-faq__icon svg {
    width: 18px;
    height: 18px;
    max-width: none;
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.bk-faq__item.is-active .bk-faq__icon {
    background: var(--bk-red);
    color: #FFFFFF;
}
.bk-faq__item.is-active .bk-faq__icon svg {
    transform: rotate(180deg);
}
.bk-faq__head h3.bk-faq__q,
h3.bk-faq__q {
    font-family: var(--bk-font-h);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    color: var(--bk-navy);
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
}
.bk-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.bk-faq__item.is-active .bk-faq__a {
    max-height: 2400px;
}
.bk-faq__a > div {
    padding: 4px 22px 20px calc(22px + 32px + 14px);
    color: var(--bk-text-muted);
    font-size: 15px;
    line-height: 1.65;
}
.bk-faq__a p { margin: 0; color: inherit; }
.bk-wave-divider {
    position: relative;
    width: 100%;
    height: 80px;
    line-height: 0;
    margin-top: 40px;
}
.bk-wave-divider svg { width: 100%; height: 100%; display: block; }


.bk-footer {
    background: var(--bk-navy-deep);
    color: rgba(255, 255, 255, 0.72);
    padding: 52px 0 28px;
}
.bk-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}
.bk-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 40px;
}
.bk-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bk-footer__about {
    margin: 14px 0 16px;
    max-width: 360px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}
.bk-social { display: flex; gap: 10px; }
.bk-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
    transition: color .18s, border-color .18s, background .18s;
}
.bk-social a:hover {
    color: #FFFFFF;
    border-color: var(--bk-red);
    background: rgba(225, 6, 0, 0.18);
}
.bk-footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.bk-footer__title {
    font-family: var(--bk-font-h);
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
    font-weight: 700;
}
.bk-footer__col ul li { margin-bottom: 8px; font-size: 14px; }
.bk-footer__col a { color: rgba(255, 255, 255, 0.72); }
.bk-footer__col a:hover { color: #FFFFFF; }
.bk-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.bk-footer__badges .bk-chip {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.18);
}
.bk-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 32px 0 18px;
}
.bk-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.bk-footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}


.bk-404 { text-align: center; min-height: 60vh; }
.bk-404__inner { justify-items: center; }
.bk-404__code {
    font-family: var(--bk-font-h);
    font-weight: 800;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}
.bk-404__text { color: rgba(255, 255, 255, 0.8); margin: 0 0 24px; }


.bk-author-strip {
    background: var(--bk-bg-soft);
    border-top: 1px solid var(--bk-line);
    border-bottom: none;
    padding: 24px 0 0;
    margin-top: 24px;
    margin-bottom: 0;
}
.bk-author-strip + .bk-wave-divider { margin-top: 0; }
.bk-author-strip__box {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px 24px;
}
.bk-author-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.bk-author-card__media {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bk-line);
    width: 120px;
    height: 120px;
    aspect-ratio: 1;
    box-shadow: 0 4px 24px rgba(27, 20, 100, 0.10);
    transition: border-color 0.18s, box-shadow 0.18s;
}
.bk-author-card__media:hover {
    border-color: var(--bk-blue);
    box-shadow: 0 6px 28px rgba(27, 20, 100, 0.18);
}
.bk-author-card__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bk-bg-blue);
}
.bk-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;
}
.bk-author-card__text { flex: 1 1 240px; min-width: 0; }
.bk-author-card__name {
    font-family: var(--bk-font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bk-navy);
    margin: 0 0 6px;
}
.bk-author-card__role {
    font-size: 0.9375rem;
    color: var(--bk-blue);
    margin: 0 0 10px;
    font-weight: 600;
}
.bk-author-card__bio {
    font-size: 0.9375rem;
    color: var(--bk-text-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.bk-author-card__profile {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bk-blue);
    border-bottom: 1px solid transparent;
    transition: color 0.18s, border-color 0.18s;
}
.bk-author-card__profile:hover {
    color: var(--bk-red);
    border-bottom-color: var(--bk-red);
}
@media (max-width: 600px) {
    .bk-author-card { flex-direction: column; align-items: flex-start; text-align: left; }
    .bk-author-strip__box { padding: 0 20px 20px; }
}


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


/* === BankonBet variant: hero offer card === */
.bk-hero__offer {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    background: #FFFFFF;
    border: 1px solid var(--bk-line);
    border-top: 4px solid var(--bk-red);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 18px 48px rgba(14, 10, 58, 0.45);
    text-align: center;
}
.bk-hero__offer-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--bk-font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(225, 6, 0, 0.10);
    color: var(--bk-red);
    border: 1px solid rgba(225, 6, 0, 0.28);
}
.bk-hero__offer-num {
    font-family: var(--bk-font-h);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.1;
    color: var(--bk-navy);
    margin: 14px 0 2px;
}
.bk-hero__offer-num span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bk-text-muted);
    letter-spacing: 0.02em;
}
.bk-hero__offer-sub {
    font-family: var(--bk-font-h);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bk-red);
    margin: 0 0 16px;
}
.bk-hero__offer-terms {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bk-hero__offer-terms li {
    font-size: 0.9rem;
    color: var(--bk-text);
    line-height: 1.4;
}
.bk-hero__offer-fine {
    font-size: 12px;
    color: var(--bk-text-muted);
    margin: 12px 0 0;
}

/* === BankonBet variant: hero stats row === */
.bk-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.bk-hero__stat {
    flex: 1 1 0;
    min-width: 96px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
}
.bk-hero__stat-num {
    display: block;
    font-family: var(--bk-font-h);
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFFFFF;
    line-height: 1.1;
}
.bk-hero__stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* === BankonBet variant: TOC arrows, two columns, always open === */
.bk-toc--arrows { padding: 22px 24px; }
.bk-toc--arrows .bk-toc__title {
    margin: 0 0 14px;
    font-family: var(--bk-font-h);
}
.bk-toc--arrows .bk-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 36px;
}
.bk-toc--arrows .bk-toc__list li {
    break-inside: avoid;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    counter-increment: none;
}
.bk-toc--arrows .bk-toc__list li::before {
    content: "\203A";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--bk-red);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
}
.bk-toc--arrows .bk-toc__list a {
    color: var(--bk-text);
    text-decoration: none;
    transition: color 0.2s ease;
}
.bk-toc--arrows .bk-toc__list a:hover { color: var(--bk-blue); }
@media (max-width: 768px) {
    .bk-toc--arrows .bk-toc__list { columns: 1; }
}

/* === BankonBet variant: slots two-button overlay === */
.bk-slots__overlay {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}
.bk-slots__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--bk-font-h);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateY(6px);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}
.bk-slots__btn--play {
    background: var(--bk-red);
    color: #FFFFFF;
    border: 1px solid var(--bk-red);
}
.bk-slots__btn--play:hover { background: var(--bk-red-hover); color: #FFFFFF; }
.bk-slots__btn--demo {
    background: rgba(255, 255, 255, 0.95);
    color: var(--bk-navy);
    border: 1px solid rgba(255, 255, 255, 0.95);
}
.bk-slots__btn--demo:hover { background: #FFFFFF; color: var(--bk-navy); }
.bk-slots__card:hover .bk-slots__btn,
.bk-slots__card:focus-within .bk-slots__btn { transform: translateY(0); opacity: 1; }
.bk-slots__btn:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}
.bk-slots__sr {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === BankonBet variant: full-width author strip === */
.bk-author-strip__box { max-width: 1280px; }
.bk-author-card {
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 28px;
    background: #FFFFFF;
    border: 1px solid var(--bk-line);
    border-top: 3px solid var(--bk-red);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 10px 30px rgba(27, 20, 100, 0.08);
}
.bk-author-card__media { width: 120px; height: 120px; flex-shrink: 0; }
.bk-author-card__text { flex: 1 1 0; min-width: 0; }
.bk-author-card__name { margin-bottom: 4px; }
.bk-author-card__role { margin-bottom: 8px; }
.bk-author-card__bio { margin-bottom: 12px; }
@media (max-width: 600px) {
    .bk-author-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 24px 20px;
        gap: 20px;
    }
}

/* === BankonBet variant: author timeline === */
.bk-author-timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 28px;
    position: relative;
    max-width: 820px;
}
.bk-author-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--bk-red), var(--bk-blue));
}
.bk-author-timeline__node {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--bk-line);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(27, 20, 100, 0.05);
}
.bk-author-timeline__node:last-child { margin-bottom: 0; }
.bk-author-timeline__node::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bk-red);
    border: 3px solid var(--bk-bg);
    box-shadow: 0 0 0 2px var(--bk-red);
}
.bk-author-timeline__title {
    font-family: var(--bk-font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bk-navy);
    margin: 0 0 8px;
}
.bk-author-timeline__node p { margin: 0; color: var(--bk-text); }
.bk-author-timeline__node a { color: var(--bk-blue); text-decoration: underline; }
.bk-author-timeline__node a:hover { text-decoration: none; }

/* === BankonBet variant: footer payment/security badge row === */
.bk-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0 0 24px;
    margin: 0 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.bk-footer__pay-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: var(--bk-font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.bk-footer__pay-chip--sec {
    background: rgba(225, 6, 0, 0.16);
    color: #FFFFFF;
    border-color: rgba(225, 6, 0, 0.45);
}
.bk-form { max-width: 560px; }
.bk-form label { font-weight: 600; font-size: 0.9rem; color: var(--bk-navy); }
.bk-form input, .bk-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid var(--bk-line);
    border-radius: 10px;
    background: var(--bk-bg);
    color: var(--bk-text);
    font: inherit;
    font-size: 0.95rem;
}
.bk-form input:focus, .bk-form textarea:focus {
    outline: none;
    border-color: var(--bk-blue);
    box-shadow: 0 0 0 3px rgba(29, 79, 176, 0.14);
}


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

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

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

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

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

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

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

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

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

/* ── Score block in hero image: review card layout ── */
.bk-hero__image:has(> .bk-score) {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(27, 20, 100, 0.5);
    aspect-ratio: auto;
    min-height: 0;
}
.bk-hero__image:has(> .bk-score) .bk-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1B1464 0%, #241A78 60%, #2A2090 100%);
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
}
.bk-hero__image:has(> .bk-score) .bk-score__num {
    font-size: 3rem;
    line-height: 1;
}
.bk-hero__image:has(> .bk-score) .bk-score__num span {
    font-size: 1.1rem;
}
.bk-hero__image:has(> .bk-score) .bk-score__stars {
    font-size: 22px;
    letter-spacing: 3px;
}
.bk-hero__image:has(> .bk-score) .bk-score__label {
    font-size: 12px;
    margin-top: 3px;
    opacity: 0.85;
}
.bk-hero__image:has(> .bk-score) > img,
.bk-hero__image:has(> .bk-score) > .bk-hero__photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    flex: 1;
    object-fit: cover;
    max-height: 260px;
}
@media (max-width: 900px) {
    .bk-hero__image:has(> .bk-score) {
        border-radius: 12px;
        max-width: min(500px, 100%);
        margin: 0 auto;
    }
    .bk-hero__image:has(> .bk-score) .bk-score {
        padding: 14px 18px;
        gap: 14px;
    }
    .bk-hero__image:has(> .bk-score) .bk-score__num {
        font-size: 2.4rem;
    }
    .bk-hero__image:has(> .bk-score) > img {
        max-height: 200px;
    }
}
