/**
 * bk-home-page.css — Homepage redesign v4.
 * All rules scoped under .bk-home-page.
 * Hero: split two-column (copy left, phone-video right).
 * Section rhythm: Hero (blue) → alt white/#f4f6f9 → CTA (blue).
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* Smooth in-page navigation (e.g. hero “See Key Features” → #bkh-features). File is home-only. */
html {
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ═══ TOKENS ══════════════════════════════════════════════════════════ */
.bk-home-page {
    --blue:       #012cae;
    --blue-mid:   #0d47e8;
    --blue-dark:  #021f8f;
    --blue-pale:  #eff3ff;
    --blue-lt:    #3b82f6;
    --bg-grey:    #f4f6f9;
    --bg-white:   #ffffff;
    --border:     #e2e8f0;
    --text:       #1e293b;
    --text-mid:   #334155;
    --muted:      #64748b;
    --green:      #16a34a;
    --red:        #dc2626;
    --r-lg:       16px;
    --r-md:       12px;
    --r-sm:       8px;
    --sh-lg:      0 24px 60px rgba(15,39,68,.11);
    --sh-md:      0 8px 28px rgba(15,39,68,.08);
    --sh-sm:      0 2px 10px rgba(15,39,68,.06);

    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg-grey);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ═══ GLOBAL RESET (scoped) ═══════════════════════════════════════════ */
.bk-home-page *, .bk-home-page *::before, .bk-home-page *::after { box-sizing: border-box; }
.bk-home-page section  { margin: 0; }
.bk-home-page p        { margin: 0 0 .85rem; line-height: 1.7; }
.bk-home-page p:last-child { margin-bottom: 0; }
.bk-home-page ul, .bk-home-page ol { margin: 0; }

/* In-page anchors clear sticky pub header */
.bk-home-page section[id] {
    scroll-margin-top: 5.5rem;
}

/* ═══ SHARED UTILITIES ════════════════════════════════════════════════ */

/* Badge */
.bk-home-page .bkh-badge {
    display: inline-block;
    font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-pale);
    border: 1px solid rgba(1,44,174,.2);
    padding: .3rem .85rem; border-radius: 999px; margin-bottom: .85rem; line-height: 1;
}
.bk-home-page .bkh-badge--white { color: rgba(255,255,255,.95); background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.32); }
.bk-home-page .bkh-badge--center { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

/* Heading */
.bk-home-page .bkh-heading {
    font-size: clamp(1.3rem,2.8vw,1.9rem); font-weight: 800;
    color: var(--text); line-height: 1.18; margin: 0 0 1.4rem; letter-spacing: -.022em;
}
.bk-home-page .bkh-heading::after {
    content: ''; display: block; width: 44px; height: 4px; margin-top: .9rem;
    background: linear-gradient(90deg,var(--blue),var(--blue-lt)); border-radius: 2px;
}
.bk-home-page .bkh-heading--center { text-align: center; }
.bk-home-page .bkh-heading--center::after { margin-left: auto; margin-right: auto; }
.bk-home-page .bkh-heading--white { color: #fff; }
.bk-home-page .bkh-heading--white::after { background: linear-gradient(90deg,#fff,rgba(255,255,255,.4)); }

/* Lead */
.bk-home-page .bkh-lead { font-size: 1.015rem; color: var(--muted); line-height: 1.7; max-width: 680px; margin-bottom: 2rem; }
.bk-home-page .bkh-lead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Sections */
.bk-home-page .bkh-section        { padding: 4.5rem 0; background: var(--bg-grey); }
.bk-home-page .bkh-section--white { padding: 4.5rem 0; background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Card */
.bk-home-page .bkh-card {
    background: var(--bg-white); border-radius: var(--r-lg);
    box-shadow: var(--sh-lg); border: 1px solid var(--border); padding: 2.5rem 2.5rem 2.75rem;
}
.bk-home-page .bkh-card--blue {
    background: linear-gradient(145deg,var(--blue) 0%,var(--blue-mid) 60%,var(--blue-dark) 100%);
    border-color: transparent; color: #fff;
}
.bk-home-page .bkh-card--blue .bkh-heading,
.bk-home-page .bkh-card--blue h3,
.bk-home-page .bkh-card--blue p,
.bk-home-page .bkh-card--blue li { color: rgba(255,255,255,.92) !important; }
.bk-home-page .bkh-card--blue h3  { color: #fff !important; }

/* Buttons */
.bk-home-page .bkh-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .8rem 1.75rem; font-size: .9375rem; font-weight: 700;
    border-radius: var(--r-sm); text-decoration: none !important;
    transition: transform .15s, box-shadow .15s, filter .15s; letter-spacing: .01em; border: none; cursor: pointer;
}
.bk-home-page .bkh-btn--primary  { background: #fff; color: var(--blue) !important; box-shadow: 0 6px 22px rgba(0,0,0,.16); }
.bk-home-page .bkh-btn--primary:hover  { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.bk-home-page .bkh-btn--secondary { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,.55); }
.bk-home-page .bkh-btn--secondary:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.bk-home-page .bkh-btn--blue { background: linear-gradient(160deg,var(--blue-mid),var(--blue)); color: #fff !important; box-shadow: 0 8px 24px rgba(1,44,174,.35); }
.bk-home-page .bkh-btn--blue:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(1,44,174,.45); }

/* ═══ 1. HERO — split two-column ══════════════════════════════════════ */
.bk-home-page .bkh-hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 35%,var(--blue-mid) 70%,#1a5cf8 100%);
    padding: 0; color: #fff;
}

/* radial accents */
.bk-home-page .bkh-hero::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 65% 70% at -5% 10%, rgba(100,160,255,.22), transparent 55%),
        radial-gradient(ellipse 55% 60% at 110% 90%, rgba(0,10,80,.35), transparent 55%),
        radial-gradient(ellipse 40% 40% at 55% 50%, rgba(255,255,255,.03), transparent 60%);
}

/* floating decorative circles */
.bk-home-page .bkh-hero::after {
    content: '';
    position: absolute; top: -80px; right: 160px; width: 320px; height: 320px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,.07);
    pointer-events: none;
    box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.02);
}

.bk-home-page .bkh-hero .container { position: relative; z-index: 2; }

/* inner grid */
.bk-home-page .bkh-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
    gap: 4rem;
    align-items: center;
    padding: 5rem 0 0;
    min-height: 580px;
}

/* ── Left copy ── */
.bk-home-page .bkh-hero-copy {
    padding-bottom: 5rem;
    min-width: 0;
}

.bk-home-page .bkh-hero-title {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 800; line-height: 1.12; color: #fff;
    margin: 0 0 1.1rem; letter-spacing: -.035em;
}

/* gradient word accent */
.bk-home-page .bkh-hero-title .bkh-accent {
    background: linear-gradient(90deg, #fff 0%, #93c5fd 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bk-home-page .bkh-hero-sub {
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    font-weight: 400; color: rgba(255,255,255,.78); line-height: 1.65;
    max-width: 500px; margin: 0 0 2.25rem;
}

/* trust chips */
.bk-home-page .bkh-hero-chips {
    display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem;
}
.bk-home-page .bkh-chip {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600;
    padding: .35rem .8rem; border-radius: 999px; letter-spacing: .02em;
}
.bk-home-page .bkh-chip i { font-size: .85rem; color: #93c5fd; }

/* CTA row */
.bk-home-page .bkh-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* scroll hint */
.bk-home-page .bkh-scroll-hint {
    display: flex; align-items: center; gap: .55rem;
    font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin-top: 2rem;
}
.bk-home-page .bkh-scroll-hint span { display: inline-block; width: 1px; height: 28px; background: rgba(255,255,255,.25); }

/* ── Right phone column ── */
.bk-home-page .bkh-hero-phone {
    position: relative;
    align-self: flex-end;    /* sits at bottom of grid row */
    padding-bottom: 0;
    min-width: 0;
    /* Space so label / transformed phone don’t feel cramped */
    padding-right: 1rem;
}

/* glow disc behind phone */
.bk-home-page .bkh-hero-phone::before {
    content: '';
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 220px; height: 60px;
    background: radial-gradient(ellipse, rgba(255,255,255,.18) 0%, transparent 75%);
    pointer-events: none; z-index: 0;
}

/* Phone + badge: shared hover so label animates with mockup (badge stays outside transformed box for Firefox) */
.bk-home-page .bkh-phone-stage {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.bk-home-page .bkh-phone-mockup {
    position: relative;
    z-index: 1;
    width: 260px;
    overflow: visible;
    filter: drop-shadow(0 32px 60px rgba(0,0,50,.55)) drop-shadow(0 8px 20px rgba(0,0,80,.4));
    transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: transform .5s ease, filter .5s ease;
}
.bk-home-page .bkh-phone-stage:hover .bkh-phone-mockup {
    transform: perspective(900px) rotateY(-3deg) rotateX(1deg) translateY(-6px);
    filter: drop-shadow(0 44px 70px rgba(0,0,50,.5)) drop-shadow(0 10px 24px rgba(0,0,80,.35));
}

.bk-home-page .bkh-phone-frame-img {
    display: block; width: 100%; height: auto;
    position: relative; z-index: 3; pointer-events: none;
}

.bk-home-page .bkh-phone-video-el {
    position: absolute;
    /* tune these to match iphone_border_flat.png screen area */
    top: 1.5%;
    left: 5.5%;
    width: 89%;
    height: 97%;
    border-radius: 30px;
    object-fit: cover;
    z-index: 1;
}

/* animated ring around phone */
@keyframes bkh-ring-pulse {
    0%   { opacity: .7; transform: translateX(-50%) scale(1); }
    100% { opacity: 0;  transform: translateX(-50%) scale(1.35); }
}
.bk-home-page .bkh-phone-ring {
    position: absolute;
    bottom: 15px; left: 50%;
    transform: translateX(-50%);
    width: 240px; height: 240px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.15);
    animation: bkh-ring-pulse 2.5s ease-out infinite;
    pointer-events: none; z-index: 0;
}
.bk-home-page .bkh-phone-ring-2 {
    animation-delay: 1.25s;
    width: 200px; height: 200px;
}

/* "Live demo" label — sibling of mockup inside .bkh-phone-stage; hover motion matches mockup */
.bk-home-page .bkh-phone-stage .bkh-phone-label {
    position: absolute;
    top: 8px;
    right: -28px;
    z-index: 4;
    cursor: default;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--r-md);
    padding: .35rem .65rem;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform .5s ease, filter .5s ease, box-shadow .5s ease;
    transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
    transform-origin: 100% 0;
}
.bk-home-page .bkh-phone-stage:hover .bkh-phone-label {
    transform: perspective(900px) rotateY(-3deg) rotateX(1deg) translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}
.bk-home-page .bkh-phone-label::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    margin-right: .4rem;
    vertical-align: middle;
    animation: bkh-blink 1.4s ease-in-out infinite;
}
@keyframes bkh-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* wave bottom divider */
.bk-home-page .bkh-hero-wave {
    display: block; width: 100%; line-height: 0;
    position: relative; z-index: 2; margin-top: -2px;
}
.bk-home-page .bkh-hero-wave svg { display: block; width: 100%; height: 60px; }

/* ═══ 2. KEY FEATURES — laptop mockup layout ═══════════════════════════ */

/* Outer two-column: copy left, laptop right */
.bk-home-page .bkh-laptop-layout {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

/* ── Left copy panel ── */
.bk-home-page .bkh-laptop-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}
.bk-home-page .bkh-laptop-copy .bkh-badge {
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
}

.bk-home-page .bkh-lc-heading {
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0;
}
.bk-home-page .bkh-lc-heading::after {
    content: '';
    display: block;
    width: 40px; height: 4px;
    margin-top: .75rem;
    background: linear-gradient(90deg, var(--blue), var(--blue-lt));
    border-radius: 2px;
}

.bk-home-page .bkh-lc-lead {
    font-size: .9375rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}
.bk-home-page .bkh-lc-lead strong { color: var(--text); }

/* Stat row */
.bk-home-page .bkh-lc-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}
.bk-home-page .bkh-lc-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .9rem .5rem;
    text-align: center;
}
.bk-home-page .bkh-lc-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    display: block;
    margin-bottom: .2rem;
}
.bk-home-page .bkh-lc-stat-label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.3;
}
.bk-home-page .bkh-lc-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* Feature pills list */
.bk-home-page .bkh-lc-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .4rem .75rem;
}
.bk-home-page .bkh-lc-pills li {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.35;
    min-width: 0;
    overflow-wrap: anywhere;
}
.bk-home-page .bkh-lc-pills li i {
    color: var(--blue);
    font-size: .8rem;
    flex-shrink: 0;
}

/* Partner card — white, blue left accent */
.bk-home-page .bkh-lc-partner {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: var(--r-md);
    padding: .9rem 1.1rem;
    box-shadow: var(--sh-sm);
}
.bk-home-page .bkh-lc-partner-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin: 0 0 .6rem;
}
.bk-home-page .bkh-lc-partner-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.bk-home-page .bkh-lc-partner-logo {
    height: 30px;
    width: auto;
    display: block;
}
.bk-home-page .bkh-lc-partner-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(22,163,74,.08);
    border: 1px solid rgba(22,163,74,.25);
    border-radius: var(--r-sm);
    padding: .4rem .85rem;
    font-size: .8125rem;
    font-weight: 600;
    color: #15803d;
    white-space: nowrap;
}
.bk-home-page .bkh-lc-partner-badge i { font-size: .85rem; color: #16a34a; }
.bk-home-page .bkh-lc-partner-badge strong { font-weight: 800; color: #15803d; }

/* Laptop mockup wrapper */
.bk-home-page .bkh-laptop-mockup-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
}

/* ── Laptop mockup: transparent-screen PNG overlay ────────────────────
   banner-img-laptop-no-bg.png has a TRANSPARENT screen area.
   Stack order: content (z-index 1) sits behind frame img (z-index 2).
   Content is visible through the transparent screen hole.               */

.bk-home-page .bkh-laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 780px;
    filter: drop-shadow(0 24px 48px rgba(15,39,68,.2));
}

/* Frame sits on top — transparent cutout reveals content below */
.bk-home-page .bkh-laptop-frame-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* Content fills the screen hole behind the transparent frame.
   Offsets tuned to banner-img-laptop-no-bg.png screen bounds:
   ~3% left/right bezel, ~2% top bezel, ~13% bottom (keyboard base). */
.bk-home-page .bkh-laptop-screen-content {
    position: absolute;
    top: 2%;
    left: 9%;
    right: 9%;
    bottom: 10%;
    z-index: 1;
    background: #ffffff;
    overflow: hidden;
    border-radius: 2px 2px 0 0;
}

/* Seamless infinite scroll: inner holds two copies of 9 rows; animate -50% height */
@keyframes bkh-feat-scroll-loop {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}
.bk-home-page .bkh-laptop-screen-inner {
    display: flex;
    flex-direction: column;
    will-change: transform;
    animation: bkh-feat-scroll-loop 50s linear infinite;
    animation-play-state: paused;
}
.bk-home-page .bkh-laptop-mockup.is-visible .bkh-laptop-screen-inner {
    animation-play-state: running;
}
/* Pause while pointer is over any row (inner is only rows, no dead space) */
.bk-home-page .bkh-laptop-mockup.is-visible .bkh-laptop-screen-inner:hover {
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .bk-home-page .bkh-laptop-screen-inner {
        animation: none !important;
        transform: none !important;
    }
}

/* Feature items inside screen */
.bk-home-page .bkh-feat-item {
    display: flex; gap: .65rem; align-items: flex-start;
    padding: .65rem .75rem;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
    flex-shrink: 0;
    min-width: 0;
}
.bk-home-page .bkh-laptop-screen-inner .bkh-feat-item:last-child {
    border-bottom: none;
}
.bk-home-page .bkh-feat-item:hover { background: var(--blue-pale); }

.bk-home-page .bkh-feat-icon {
    flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 7px;
    background: linear-gradient(135deg,var(--blue),var(--blue-mid));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .75rem; margin-top: .05rem;
}
.bk-home-page .bkh-feat-item strong {
    display: block; font-size: .72rem; font-weight: 700;
    color: var(--text); margin-bottom: .1rem; line-height: 1.3;
}
.bk-home-page .bkh-feat-item p {
    font-size: .68rem; color: var(--muted); line-height: 1.45; margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

/* ═══ 3. DEVICES — split: copy left, merged blue showcase (phone + checklist) right ═ */
.bk-home-page .bkh-devices-section .bkh-devices-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: stretch;
}

.bk-home-page .bkh-devices-copy .bkh-heading {
    margin-bottom: 1rem;
}

.bk-home-page .bkh-lead.bkh-devices-lead {
    max-width: 36rem;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted);
}

/* Feature rows: light icon tile + copy (matches devices marketing mockup) */
.bk-home-page .bkh-devices-section .bkh-devices-points--feature-rows {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bk-home-page .bkh-devices-section .bkh-devices-points--feature-rows li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.bk-home-page .bkh-devices-section .bkh-devices-points__icon-wrap {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.bk-home-page .bkh-devices-section .bkh-devices-points--feature-rows .bkh-devices-points-icon {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--blue);
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bk-home-page .bkh-devices-section .bkh-devices-points__body {
    min-width: 0;
    flex: 1 1 auto;
    padding-top: 0.15rem;
}

.bk-home-page .bkh-devices-section .bkh-devices-points__title {
    display: block;
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--text);
}

.bk-home-page .bkh-devices-section .bkh-devices-points__desc {
    display: block;
    font-size: 0.8375rem;
    line-height: 1.6;
    color: var(--muted);
}

/* Callout — same strip pattern as .bkh-coming-soon-strip (partner-style card) */
.bk-home-page .bkh-devices-callout {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.35rem;
    max-width: 36rem;
    min-width: 0;
    padding: 0.95rem 1.1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
}

.bk-home-page .bkh-devices-callout__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--blue);
    color: #fff;
    font-size: 1.15rem;
}

.bk-home-page .bkh-devices-callout > div {
    min-width: 0;
    flex: 1 1 auto;
}

/* Headline: sentence-length copy (not all-caps like short “coming soon” label) */
.bk-home-page .bkh-devices-callout__label {
    margin: 0 0 0.15rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--text);
    line-height: 1.3;
}

.bk-home-page .bkh-devices-callout__note {
    margin: 0;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.45;
}

/* Blue showcase (phone + store pills + checklist) — marketing mockup style */
.bk-home-page .bkh-devices-showcase {
    position: relative;
    min-width: 0;
}

.bk-home-page .bkh-devices-showcase__inner {
    position: relative;
    height: 100%;
    min-height: min(100%, 500px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(1.1rem, 2.5vw, 1.75rem);
    align-items: center;
    padding: clamp(1.5rem, 3.2vw, 2.4rem) clamp(1.25rem, 2.5vw, 2rem);
    background: linear-gradient(165deg, #021f8f 0%, #012cae 36%, #1d4ed8 72%, #2563eb 100%);
    border-radius: 20px;
    box-shadow:
        0 4px 0 rgba(255, 255, 255, 0.06) inset,
        0 24px 48px rgba(1, 44, 174, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.bk-home-page .bkh-devices-showcase__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

.bk-home-page .bkh-devices-showcase__media {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
}

.bk-home-page .bkh-devices-showcase__media .bkh-devices-visual-glow {
    position: absolute;
    inset: 0 5% 8%;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 35%, rgba(255, 255, 255, 0.22), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Wrap holds stack + card overlay (overlay paints on top, pointer-events none) */
.bk-home-page .bkh-devices-media-stack-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Phone + note + store pills directly on the blue panel (no white card) */
.bk-home-page .bkh-devices-media-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 19rem;
    margin: 0 auto;
    gap: 0.9rem;
    isolation: isolate;
}

/* Store row + download note — paint above .bkh-devices-card-overlay */
.bk-home-page .bkh-devices-media-stack-front {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.9rem;
}

.bk-home-page .bkh-devices-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    margin: 0;
    padding: 0 0 2.5rem;
}

.bk-home-page .bkh-devices-card-overlay__img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(32rem, calc(100% + 3.5rem));
    max-height: min(22rem, 72vh);
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(-0.45rem);
}

/* iPhone frame: transparent screen shows content (same idea as bkh-laptop-mockup) */
.bk-home-page .bkh-devices-media-figure {
    --bkh-devices-screen-t: 1.5%;
    --bkh-devices-screen-r: 5.5%;
    --bkh-devices-screen-b: 1.5%;
    --bkh-devices-screen-l: 5.5%;
    --bkh-devices-screen-radius: min(0.7rem, 3.2vw);
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 0;
    flex-shrink: 0;
    vertical-align: top;
}

/* In-screen app tile + list — sits in the screen hole behind the frame (z-index 1) */
.bk-home-page .bkh-devices-phone-screen {
    position: absolute;
    z-index: 1;
    top: var(--bkh-devices-screen-t);
    right: var(--bkh-devices-screen-r);
    bottom: var(--bkh-devices-screen-b);
    left: var(--bkh-devices-screen-l);
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 55%, #e8edf2 100%);
    border-radius: var(--bkh-devices-screen-radius);
    overflow: hidden;
    line-height: normal;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 18px 40px rgba(0, 0, 0, 0.22);
    pointer-events: auto;
    min-width: 0;
}

.bk-home-page .bkh-devices-phone-screen__inner {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0.25rem 0.2rem 0.3rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.bk-home-page .bkh-devices-phone-screen__hero {
    flex: 0 0 auto;
    line-height: 0;
    margin: 1.3rem 0 0.8rem;
}

.bk-home-page .bkh-devices-screen-app-tile {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 6.1rem;
    height: auto;
    object-fit: contain;
    object-position: top center;
    border-radius: min(0.2rem, 0.3vw);
    margin: 0 auto;
}

/* Three small “cards” in the in-phone list */
.bk-home-page .bkh-devices-screen-list {
    list-style: none;
    margin: 0;
    padding: 0 0.15rem;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    font-size: 0.6rem;
}

.bk-home-page .bkh-devices-screen-list li {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    margin: 0;
    padding: 0.4rem 0.35rem 0.4rem 0.32rem;
    color: var(--text);
    background: #fff;
    border: none;
    border-radius: 6px;
    box-shadow:
        0 1px 0 rgba(15, 39, 68, 0.04) inset,
        0 1px 2px rgba(15, 39, 68, 0.06);
}

.bk-home-page .bkh-devices-screen-list__icon {
    flex-shrink: 0;
    color: #fff;
    width: 0.95rem;
    height: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.48rem;
    line-height: 1;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    box-shadow: 0 1px 2px rgba(1, 44, 174, 0.2);
    margin: 0;
    padding: 0;
}

.bk-home-page .bkh-devices-screen-list__text {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 600;
    line-height: 1.3;
    font-size: 0.6rem;
}

/* Frame on top; transparent area reveals phone-screen below */
.bk-home-page .bkh-devices-media-figure .bkh-devices-screenshot--frame,
.bk-home-page .bkh-devices-media-figure .bkh-devices-screenshot {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: none;
    vertical-align: top;
    pointer-events: none;
}

/* “Included with all packages” on blue */
.bk-home-page .bkh-devices-download-note--on-blue {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
    text-align: start;
    margin: 0;
    align-self: stretch;
    width: 100%;
}

/* App store row inside white card (single frame on blue) */
.bk-home-page .bkh-devices-store-card {
    align-self: stretch;
    width: 100%;
    max-width: 19rem;
    margin: 0;
    padding: 0.3rem 0.75rem;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(15, 39, 68, 0.05) inset,
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 12px 36px rgba(1, 44, 174, 0.12);
}

.bk-home-page .bkh-devices-store-row--on-blue {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    margin: 0;
    min-width: 0;
}

/* Two equal cells; pill chrome lives on the card, links stay flat inside */
.bk-home-page .bkh-devices-store-row--on-blue a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% - 0.35rem) / 2);
    min-width: 0;
    max-width: calc((100% - 0.35rem) / 2);
    box-sizing: border-box;
    padding: 0.2rem 0.25rem;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid transparent;
    transition:
        background 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        filter 0.22s ease;
}

.bk-home-page .bkh-devices-store-row--on-blue a:hover {
    background: rgba(1, 44, 174, 0.07);
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px rgba(1, 44, 174, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.bk-home-page .bkh-devices-store-row--on-blue a:hover .bkh-store-badge {
    filter: brightness(1.04) contrast(1.02);
}

.bk-home-page .bkh-devices-store-row--on-blue a:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    border-color: rgba(37, 99, 235, 0.35);
}

.bk-home-page .bkh-devices-store-row--on-blue a:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(1, 44, 174, 0.12);
    transition-duration: 0.12s;
}

.bk-home-page .bkh-devices-store-row--on-blue .bkh-store-badge {
    width: 100% !important;
    max-width: 128px;
    min-width: 0;
    height: auto;
    display: block;
    margin: 0 auto;
}

.bk-home-page .bkh-devices-showcase__aside {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: 100%;
    padding: 0.15rem 0 0.25rem;
}

.bk-home-page .bkh-devices-showcase__heading {
    margin: 0 0 1.1rem;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.bk-home-page .bkh-devices-app-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bk-home-page .bkh-devices-app-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bk-home-page .bkh-devices-app-list li:first-child {
    padding-top: 0;
}

.bk-home-page .bkh-devices-app-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.bk-home-page .bkh-devices-app-list__mark {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.08rem;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.bk-home-page .bkh-devices-app-list__mark i {
    display: block;
}

.bk-home-page .bkh-devices-app-list__text {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
}

/* Legacy store badge hover (tiles removed) */
.bk-home-page .bkh-store-badge {
    transition: transform 0.2s;
}

/* ═══ 4–5. REASONS HUB (checklist + video cards, one section) ═══════════ */
.bk-home-page .bkh-reasons-hub-shell {
    background: var(--bg-white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--border);
    padding: 2.5rem 2.5rem 2.75rem;
}
.bk-home-page .bkh-reasons-hub-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem 2rem;
    align-items: start;
    margin-bottom: 1.75rem;
}
.bk-home-page .bkh-big-number {
    font-size: clamp(4.5rem,10vw,6.5rem); font-weight: 900; color: var(--blue);
    line-height: 1; letter-spacing: -.06em; flex-shrink: 0;
}
.bk-home-page .bkh-big-number--hub {
    font-size: clamp(3.25rem,8vw,5.25rem);
    line-height: .92;
    padding-top: .15rem;
}
.bk-home-page .bkh-reasons-hub-heading-wrap .bkh-heading { margin: 0; text-align: left; }
.bk-home-page .bkh-reasons-hub-heading-wrap .bkh-heading::after { margin-left: 0; }
.bk-home-page .bkh-heading--hub { font-size: clamp(1.15rem,2.4vw,1.65rem); }
.bk-home-page .bkh-checklist-grid { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 3rem; }
.bk-home-page .bkh-checklist-grid--hub { margin-bottom: 0; }
.bk-home-page .bkh-checklist-grid li {
    display: flex; align-items: center; gap: .6rem;
    padding: .65rem 0; border-bottom: 1px solid var(--border);
    font-size: .9375rem; font-weight: 500; color: var(--text-mid); line-height: 1.4;
}
.bk-home-page .bkh-checklist-grid li:nth-last-child(-n+2) { border-bottom: none; }
.bk-home-page .bkh-checklist-grid li i { flex-shrink: 0; font-size: .95rem; color: var(--blue); }
.bk-home-page .bkh-reasons-hub-divider {
    height: 1px;
    margin: 2.25rem 0 2rem;
    background: linear-gradient(90deg, transparent, rgba(1, 44, 174, .12) 15%, rgba(1, 44, 174, .12) 85%, transparent);
    border: 0;
}
.bk-home-page .bkh-reasons-hub-videos {
    padding-top: .25rem;
}

/* Video strip label (also used elsewhere) */
.bk-home-page .bkh-section-label { font-size: clamp(1.1rem,2.2vw,1.5rem); font-weight: 800; color: var(--text); text-align: center; margin-bottom: 2.5rem; letter-spacing: -.02em; }
.bk-home-page .bkh-section-label--hub {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
.bk-home-page .bkh-section-label--hub::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--blue), var(--blue-lt));
    border-radius: 2px;
}
.bk-home-page .bkh-reason-card {
    background: var(--bg-white); border-radius: var(--r-lg); box-shadow: var(--sh-md);
    border: 1px solid var(--border); padding: 1.5rem 1.5rem 1.75rem;
    height: 100%; display: flex; flex-direction: column; gap: .85rem;
    transition: box-shadow .2s, transform .2s;
}
.bk-home-page .bkh-reason-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.bk-home-page .bkh-reasons-hub .bkh-reason-card {
    background: var(--bg-grey);
    border-color: rgba(226, 232, 240, .95);
}
.bk-home-page .bkh-reasons-hub .bkh-reason-card:hover {
    background: var(--bg-white);
}
.bk-home-page .bkh-reason-card-top { display: flex; align-items: flex-start; gap: .85rem; }
.bk-home-page .bkh-number-badge {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg,var(--blue),var(--blue-mid));
    color: #fff; font-size: .875rem; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(1,44,174,.3);
}
.bk-home-page .bkh-reason-card h3 { font-size: .9375rem !important; font-weight: 700 !important; color: var(--text) !important; margin: 0 !important; line-height: 1.35; }
.bk-home-page .bkh-reason-card > p { font-size: .8375rem; line-height: 1.6; color: var(--muted); margin: 0; flex-grow: 0; }
.bk-home-page .bkh-video-wrap {
    position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
    border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--sh-sm);
    flex-shrink: 0; margin-top: auto; background: #e8edf5;
}
.bk-home-page .bkh-video-wrap iframe { position: absolute; inset: 0; width: 100% !important; height: 100% !important; border: none; display: block; }

/* ═══ 6. GAME CHANGER (redesigned) ═══════════════════════════════════════ */
.bk-home-page .bkh-game-shell {
    background: linear-gradient(180deg, var(--bg-grey) 0%, rgba(239, 243, 255, .45) 100%);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    padding: 2.5rem 2.5rem 2.75rem;
}
.bk-home-page .bkh-game-hero {
    margin-bottom: 2rem;
    text-align: center;
}
.bk-home-page .bkh-game-hero .bkh-badge {
    margin-bottom: .75rem;
    margin-left: auto;
    margin-right: auto;
}
.bk-home-page .bkh-heading--game {
    margin-bottom: 1rem;
}
.bk-home-page .bkh-game-hero .bkh-heading--game::after {
    margin-left: auto;
    margin-right: auto;
}
.bk-home-page .bkh-game-client-lead {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin: 0 auto 1.25rem;
    max-width: 42rem;
    line-height: 1.55;
}
.bk-home-page .bkh-game-segments {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
    width: 100%;
    max-width: min(35.5rem, 100%);
    margin-left: auto;
    margin-right: auto;
}
.bk-home-page .bkh-game-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .25rem;
    padding: .7rem .4rem .8rem;
    border-radius: var(--r-sm);
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    transition: transform .2s, box-shadow .2s;
}
.bk-home-page .bkh-game-segment:hover {
    transform: translateY(-1px);
    box-shadow: var(--sh-md);
}
.bk-home-page .bkh-game-segment-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    margin-bottom: .05rem;
}
.bk-home-page .bkh-game-segment--rock .bkh-game-segment-icon {
    background: rgba(22, 163, 74, .12);
    color: #15803d;
}
.bk-home-page .bkh-game-segment--avg .bkh-game-segment-icon {
    background: var(--blue-pale);
    color: var(--blue);
}
.bk-home-page .bkh-game-segment--challenge .bkh-game-segment-icon {
    background: rgba(220, 38, 38, .08);
    color: var(--red);
}
.bk-home-page .bkh-game-segment-pct {
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
    font-weight: 800;
    line-height: 1;
    color: var(--blue);
    letter-spacing: -.03em;
}
.bk-home-page .bkh-game-segment--rock .bkh-game-segment-pct { color: #15803d; }
.bk-home-page .bkh-game-segment--challenge .bkh-game-segment-pct { color: var(--red); }
.bk-home-page .bkh-game-segment-label {
    font-size: .6875rem;
    font-weight: 700;
    color: var(--text-mid);
    letter-spacing: .06em;
    text-transform: uppercase;
}
.bk-home-page .bkh-game-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}
.bk-home-page .bkh-game-column {
    border-radius: var(--r-md);
    padding: 1.35rem 1.35rem 1.5rem;
}
.bk-home-page .bkh-game-column--issues {
    background: rgba(220, 38, 38, .04);
    border: 1px solid rgba(220, 38, 38, .14);
}
.bk-home-page .bkh-game-column--solution {
    background: rgba(1, 44, 174, .04);
    border: 1px solid rgba(1, 44, 174, .12);
}
.bk-home-page .bkh-game-subtitle {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.3;
}
.bk-home-page .bkh-game-subtitle--issues { color: var(--red); }
.bk-home-page .bkh-game-subtitle--solution { color: var(--blue); }
.bk-home-page .bkh-game-prose p {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin: 0 0 .85rem;
}
.bk-home-page .bkh-game-prose p:last-child { margin-bottom: 0; }
.bk-home-page .bkh-game-prose strong { color: var(--text); }
.bk-home-page .bkh-game-band-label {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .75rem;
    text-align: center;
}
.bk-home-page .bkh-game-foot {
    font-size: .9375rem;
    line-height: 1.65;
    color: var(--text-mid);
    text-align: center;
    max-width: 40rem;
    margin: 1.75rem auto 0;
}
.bk-home-page .bkh-game-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.35rem;
}

/* Legacy pills / labels (kept for reuse) */
.bk-home-page .bkh-client-types { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.bk-home-page .bkh-pill { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.25rem; border-radius: 999px; font-size: .9375rem; font-weight: 700; line-height: 1; }
.bk-home-page .bkh-pill i { font-size: .8rem; }
.bk-home-page .bkh-pill--green { background: rgba(22,163,74,.1); color: #15803d; border: 1.5px solid rgba(22,163,74,.3); }
.bk-home-page .bkh-pill--blue  { background: var(--blue-pale); color: var(--blue); border: 1.5px solid rgba(1,44,174,.2); }
.bk-home-page .bkh-pill--red   { background: rgba(220,38,38,.08); color: var(--red); border: 1.5px solid rgba(220,38,38,.25); }
.bk-home-page .bkh-issues-label   { font-size: .9375rem; font-weight: 700; color: var(--red); margin: 0 0 .75rem; }
.bk-home-page .bkh-solution-label { font-size: .9375rem; font-weight: 700; color: var(--blue); margin: 1.5rem 0 .75rem; }
.bk-home-page .bkh-ol { padding-left: 1.35rem; }
.bk-home-page .bkh-ol--game { margin: 0; }
.bk-home-page .bkh-ol li { font-size: .9375rem; line-height: 1.7; color: var(--text-mid); margin-bottom: .65rem; padding-left: .25rem; }
.bk-home-page .bkh-ol--game li:last-child { margin-bottom: 0; }
.bk-home-page .bkh-ai-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.1rem 1.35rem; margin: 0 0 1.25rem; box-shadow: var(--sh-sm); }
.bk-home-page .bkh-ai-item p { margin: 0; font-size: .9rem; line-height: 1.55; }
.bk-home-page .bkh-ai-name { color: #7c3aed; font-weight: 700; }
.bk-home-page .bkh-ai-item a { color: var(--blue) !important; text-decoration: underline !important; font-weight: 600; }
.bk-home-page .bkh-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 0 0 .5rem; }
.bk-home-page .bkh-stat-box { padding: 1rem 1.25rem; border-radius: var(--r-md); border: 1px solid var(--border); background: var(--bg-white); }
.bk-home-page .bkh-stat-box .bkh-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--blue); line-height: 1; display: block; margin-bottom: .25rem; }
.bk-home-page .bkh-stat-box p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.45; }
.bk-home-page .bkh-text-green { color: #16a34a; font-weight: 600; }
.bk-home-page .bkh-text-red   { color: var(--red); font-weight: 600; }

/* ═══ 7. OVERVIEW VIDEO (intro + video stacked) ═══════════════════════════ */
.bk-home-page .bkh-overview-shell {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 2.5rem 2.5rem 2.65rem;
}
.bk-home-page .bkh-overview-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}
.bk-home-page .bkh-overview-video-col {
    width: 100%;
    max-width: min(56rem, 100%);
    margin: 0 auto;
}
.bk-home-page .bkh-overview-copy {
    text-align: center;
}
.bk-home-page .bkh-overview-copy .bkh-badge {
    margin-bottom: .75rem;
    margin-left: auto;
    margin-right: auto;
}
.bk-home-page .bkh-heading--overview {
    font-size: clamp(1.05rem, 2.15vw, 1.45rem);
    line-height: 1.32;
    margin-bottom: 1rem;
    text-align: center;
}
.bk-home-page .bkh-heading--overview::after {
    margin-left: auto;
    margin-right: auto;
    margin-top: .75rem;
}
.bk-home-page .bkh-overview-deck {
    font-size: .9375rem;
    line-height: 1.65;
    color: var(--muted);
    margin: 0 auto;
    max-width: 48rem;
}
.bk-home-page .bkh-overview-frame {
    padding: .45rem;
    border-radius: calc(var(--r-lg) + 2px);
    background: linear-gradient(135deg, rgba(1, 44, 174, .12), rgba(59, 130, 246, .1));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}
.bk-home-page .bkh-big-video-wrap {
    position: relative; width: 100%; max-width: 900px; margin: 2rem auto 0;
    padding-bottom: min(56.25%,506px); height: 0;
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: 0 20px 56px rgba(15,39,68,.14); background: #dde3ef;
}
.bk-home-page .bkh-big-video-wrap--overview {
    margin: 0;
    max-width: none;
    width: 100%;
    box-shadow: 0 12px 40px rgba(15, 39, 68, .18);
}
.bk-home-page .bkh-big-video-wrap iframe { position: absolute; inset: 0; width: 100% !important; height: 100% !important; border: none; display: block; }

/* ═══ 8. COMING SOON — Key Features–style split (copy left, tax visual right) ═ */
.bk-home-page .bkh-coming-section {
    border-top: 1px solid var(--border);
}

.bk-home-page .bkh-ul { list-style: disc; padding-left: 1.3rem; }
.bk-home-page .bkh-ul li { font-size: .9375rem; line-height: 1.65; color: var(--text-mid); margin-bottom: .35rem; }
.bk-home-page .bkh-ul--white { list-style: none; padding-left: 0; }
.bk-home-page .bkh-ul--white li { color: rgba(255,255,255,.88); }
.bk-home-page .bkh-ul--white li::before { content: '→  '; font-weight: 700; color: rgba(255,255,255,.6); }

/* Slightly wider copy column; strip is a direct grid child so stacked layout can order: copy → image → card */
.bk-home-page .bkh-coming-split.bkh-laptop-layout {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
        "bkh-cs-copy bkh-cs-visual"
        "bkh-cs-strip bkh-cs-visual";
    column-gap: 3rem;
    row-gap: 1rem;
    align-items: center;
}
.bk-home-page .bkh-coming-split.bkh-laptop-layout > .bkh-laptop-copy {
    grid-area: bkh-cs-copy;
}
.bk-home-page .bkh-coming-split.bkh-laptop-layout > .bkh-coming-visual {
    grid-area: bkh-cs-visual;
}
.bk-home-page .bkh-coming-split.bkh-laptop-layout > .bkh-coming-soon-strip {
    grid-area: bkh-cs-strip;
    margin-top: 0;
}

.bk-home-page .bkh-coming-pills-label {
    margin: 0.15rem 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* Tighter pill grid for four tax bullets */
.bk-home-page .bkh-coming-pills.bkh-lc-pills {
    gap: 0.35rem 0.85rem;
}
.bk-home-page .bkh-coming-pills.bkh-lc-pills li {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Partner-style “coming soon” strip */
.bk-home-page .bkh-coming-soon-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.35rem;
    padding: 0.95rem 1.1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
}
.bk-home-page .bkh-coming-soon-strip__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--blue);
    color: #fff;
    font-size: 1.15rem;
}
.bk-home-page .bkh-coming-soon-strip__label {
    margin: 0 0 0.15rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 1.2;
}
.bk-home-page .bkh-coming-soon-strip__note {
    margin: 0;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.45;
}

/* Right column — framed tax artwork */
.bk-home-page .bkh-coming-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}
.bk-home-page .bkh-coming-figure {
    margin: 0;
    width: 100%;
    max-width: 640px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}
.bk-home-page .bkh-coming-figure__img {
    display: block;
    width: 100%;
    height: auto;
}
.bk-home-page .bkh-coming-figure__cap {
    margin: 0;
    padding: 0.65rem 1rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--blue-pale);
}

/* ═══ PRICING ON HOME (overview-style shell + /pricing embed) ═══════════ */
.bk-home-page #pricing_sec.bk-plan-section:not(.bk-pc-section) {
    background: transparent;
}

.bk-home-page .bkh-pricing-home-shell {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 2.5rem 2.5rem 2.65rem;
}
.bk-home-page .bkh-pricing-home-intro {
    padding: 0;
    margin: 0 0 2rem;
    text-align: center;
    background: transparent;
    border: none;
}
.bk-home-page .bkh-pricing-home-intro .bkh-badge {
    margin-bottom: 0.75rem;
    margin-left: auto;
    margin-right: auto;
}
.bk-home-page .bkh-pricing-home-intro .bkh-heading {
    margin-bottom: 0.75rem;
}
.bk-home-page .bkh-pricing-home-intro .bkh-heading::after {
    margin-left: auto;
    margin-right: auto;
}
.bk-home-page .bkh-pricing-home-lead {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
    font-weight: 500;
}

.bk-home-page .bkh-pricing-home-shell .bk-home-pricing-shell.bk-pricing-page {
    padding-bottom: 0;
    background: transparent;
}
.bk-home-page .bkh-pricing-home-shell .bk-tos-main {
    margin: 0 auto;
    padding: 0;
}
.bk-home-page .bkh-pricing-home-shell .bk-tos-card.bk-pricing-page__card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* ═══ REVIEWS / TESTIMONIALS ════════════════════════════════════════════ */

/* Section header — split: copy left, rating meta right */
.bk-home-page .bkh-reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.bk-home-page .bkh-reviews-head-copy .bkh-badge { margin-bottom: 0.75rem; }
.bk-home-page .bkh-reviews-head-copy .bkh-heading { margin-bottom: 0; }

.bk-home-page .bkh-reviews-head-meta {
    flex-shrink: 0;
    text-align: right;
}
.bk-home-page .bkh-reviews-rating-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.bk-home-page .bkh-reviews-big-score {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.bk-home-page .bkh-reviews-stars-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.bk-home-page .bkh-reviews-stars {
    display: flex;
    gap: 0.18rem;
}
.bk-home-page .bkh-reviews-stars .fa-star { font-size: 1rem; color: #f59e0b; }
.bk-home-page .bkh-reviews-count {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Carousel wrapper — horizontal padding = gutter for side nav buttons */
.bk-home-page .bkh-reviews-carousel-wrap {
    position: relative;
    padding: 0 3.5rem;
}
/* Slick initialises on .carousel — positioning context for left/right arrows */
.bk-home-page .bkh-reviews-carousel.slick-slider {
    position: relative;
    padding-top: 0;
}
.bk-home-page .bkh-reviews-carousel .slick-list {
    margin: 0 -0.45rem;
    overflow: hidden;
}
.bk-home-page .bkh-reviews-carousel .slick-track {
    display: flex;
    align-items: stretch;
    padding: 0.45rem 0;
}

/* Single slide wrapper */
.bk-home-page .bkh-review-slide {
    padding: 0 0.45rem;
    height: auto;
}
.bk-home-page .bkh-reviews-carousel .slick-slide {
    height: auto !important;
}
.bk-home-page .bkh-reviews-carousel .slick-slide > div {
    height: 100%;
}

/* Card */
.bk-home-page .bkh-review-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    padding: 1.5rem 1.35rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.22s ease;
}
.bk-home-page .bkh-review-card:hover {
    border-color: rgba(1, 44, 174, 0.26);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

/* Decorative large quote mark */
.bk-home-page .bkh-review-quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4.5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(1, 44, 174, 0.07);
    pointer-events: none;
    user-select: none;
    font-weight: 700;
}

/* Stars row inside card */
.bk-home-page .bkh-review-card .bkh-review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}
.bk-home-page .bkh-review-card .bkh-review-stars .fa-star {
    font-size: 0.8rem;
    color: #f59e0b;
}

/* Quote text */
.bk-home-page .bkh-review-quote {
    margin: 0;
    padding: 0;
    border: none;
    font-style: normal;
    flex: 1 1 auto;
    min-height: 0;
}
.bk-home-page .bkh-review-quote p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-mid);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author row */
.bk-home-page .bkh-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.bk-home-page .bkh-review-avatar-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(1, 44, 174, 0.1);
}
.bk-home-page .bkh-review-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: block;
}
.bk-home-page .bkh-review-avatar-initial {
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}
.bk-home-page .bkh-review-author-meta { min-width: 0; }
.bk-home-page .bkh-review-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text);
    margin: 0 0 0.1rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}
.bk-home-page .bkh-review-type {
    font-size: 0.775rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.3;
}

/* Slick arrows — testimonials carousel (custom design)
 * slick-theme.css paints ::before with font "slick" + white glyphs — invisible on white.
 * We replace ::before with Font Awesome 5 chevrons and restyle the <button>. */
.bk-home-page .bkh-reviews-carousel .slick-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: var(--bg-white) !important;
    background-image: none !important;
    border: 1.5px solid var(--border) !important;
    box-shadow: var(--sh-sm) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    cursor: pointer;
    z-index: 6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.bk-home-page .bkh-reviews-carousel .slick-arrow:hover,
.bk-home-page .bkh-reviews-carousel .slick-arrow:focus {
    border-color: rgba(1, 44, 174, 0.35) !important;
    box-shadow: var(--sh-md) !important;
    background: var(--blue-pale) !important;
    outline: none !important;
}
.bk-home-page .bkh-reviews-carousel .slick-arrow:focus-visible {
    outline: 2px solid var(--blue) !important;
    outline-offset: 3px !important;
}
.bk-home-page .bkh-reviews-carousel .slick-arrow.slick-disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    transform: translateY(-50%) !important;
}
/* Chevron icons (FA5 Free solid) */
.bk-home-page .bkh-reviews-carousel .slick-arrow:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    opacity: 1 !important;
    color: var(--blue) !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bk-home-page .bkh-reviews-carousel .slick-prev:before {
    content: "\f053" !important;
}
.bk-home-page .bkh-reviews-carousel .slick-next:before {
    content: "\f054" !important;
}
.bk-home-page .bkh-reviews-carousel .slick-arrow.slick-disabled:before {
    opacity: 0.45 !important;
}
/* Flank the card track — prev left, next right (beats main.css right:0 on both) */
.bk-home-page .bkh-reviews-carousel .slick-prev.slick-arrow {
    left: -35px !important;
    right: auto !important;
}
.bk-home-page .bkh-reviews-carousel .slick-next.slick-arrow {
    right: -35px !important;
    left: auto !important;
}

/* ═══ 9. CTA SECTION — Mobile Apps Showcase ═══════════════════════════ */
.bk-home-page .bkh-cta-section {
    position: relative; 
    overflow: hidden;
    background: linear-gradient(155deg, var(--blue) 0%, var(--blue-mid) 52%, var(--blue-dark) 100%);
    padding: 4rem 0; 
    color: #fff;
}
.bk-home-page .bkh-cta-section::before {
    content: ''; 
    position: absolute; 
    inset: 0; 
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 60% at 8% -5%, rgba(100,150,255,.2), transparent 55%),
        radial-gradient(ellipse 55% 45% at 102% 105%, rgba(255,255,255,.05), transparent 50%);
}
.bk-home-page .bkh-cta-section .container { 
    position: relative; 
    z-index: 1; 
}

/* Two-column grid: content left, visual right */
.bk-home-page .bkh-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

/* Left: content column */
.bk-home-page .bkh-cta-content {
    max-width: 520px;
}
.bk-home-page .bkh-cta-heading { 
    font-size: clamp(1.4rem, 3vw, 1.95rem); 
    font-weight: 800; 
    color: #fff; 
    line-height: 1.22; 
    margin-bottom: 1.5rem; 
    letter-spacing: -.022em; 
}

/* Checklist */
.bk-home-page .bkh-cta-list { 
    list-style: none; 
    padding: 0; 
    margin: 0 0 2rem; 
}
.bk-home-page .bkh-cta-list li { 
    display: flex; 
    align-items: flex-start; 
    gap: .7rem; 
    font-size: .875rem; 
    line-height: 1.6; 
    color: rgba(255,255,255,.9); 
    padding: .5rem 0; 
    border-bottom: 1px solid rgba(255,255,255,.12); 
}
.bk-home-page .bkh-cta-list li:last-child { 
    border-bottom: none; 
}
.bk-home-page .bkh-cta-list li i { 
    flex-shrink: 0; 
    font-size: .95rem; 
    color: #93c5fd; 
    margin-top: .18rem; 
}
.bk-home-page .bkh-cta-list li span {
    flex: 1;
}

/* App store badges block */
.bk-home-page .bkh-cta-apps { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 1.25rem; 
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,.15);
}
.bk-home-page .bkh-cta-apps-title { 
    font-size: 1.05rem; 
    font-weight: 700; 
    color: #fff; 
    margin: 0; 
    line-height: 1.4; 
}
.bk-home-page .bkh-cta-store-row { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
}
.bk-home-page .bkh-cta-store-link {
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.bk-home-page .bkh-cta-store-link:hover {
    transform: translateY(-2px);
}
.bk-home-page .bkh-cta-store-badge { 
    display: block;
    width: 154px !important; 
    height: auto;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,.25)); 
}
.bk-home-page .bkh-cta-included { 
    font-size: .825rem; 
    color: rgba(255,255,255,.65); 
    margin: 0; 
}

/* Right: visual column */
.bk-home-page .bkh-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.bk-home-page .bkh-cta-image {
    max-width: 98%;
    height: auto;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,.28));
    animation: bkh-cta-float 6s ease-in-out infinite;
}
@keyframes bkh-cta-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
    .bk-home-page .bkh-cta-image {
        animation: none;
    }
}

/* ═══ RESPONSIVE ════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .bk-home-page .bkh-hero-inner {
        gap: clamp(1.5rem, 3vw, 2.5rem);
        min-height: min(580px, 92vh);
    }
    .bk-home-page .bkh-phone-mockup { width: 220px; }
    .bk-home-page .bkh-phone-stage .bkh-phone-label { right: -28px; top: 6px; }
    .bk-home-page .bkh-laptop-layout {
        grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
        gap: 2rem;
    }
    .bk-home-page .bkh-devices-showcase__inner {
        min-height: auto;
        padding: clamp(1.35rem, 2.8vw, 2rem) clamp(1rem, 2.2vw, 1.65rem);
    }
}

@media (max-width: 991px) {
    .bk-home-page .bkh-hero-inner {
        grid-template-columns: 1fr;
        padding: 3.5rem 0 0;
        min-height: auto;
        text-align: center;
    }
    .bk-home-page .bkh-hero-copy { padding-bottom: 2rem; }
    .bk-home-page .bkh-hero-sub  { max-width: 100%; }
    .bk-home-page .bkh-hero-cta  { justify-content: center; }
    .bk-home-page .bkh-hero-chips { justify-content: center; }
    .bk-home-page .bkh-scroll-hint { justify-content: center; }
    .bk-home-page .bkh-hero-phone {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        padding-left: 1rem;
        padding-right: 2rem;
    }
    .bk-home-page .bkh-phone-stage .bkh-phone-label {
        right: 0;
        top: 6px;
        transform: none;
    }
    .bk-home-page .bkh-phone-stage:hover .bkh-phone-label {
        transform: translateY(-3px);
    }
    /* laptop layout stacks on tablet */
    .bk-home-page .bkh-laptop-layout { grid-template-columns: 1fr; gap: 2rem; }
    .bk-home-page .bkh-coming-split.bkh-laptop-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "bkh-cs-copy"
            "bkh-cs-visual"
            "bkh-cs-strip";
        row-gap: 1.25rem;
        column-gap: 0;
    }
    .bk-home-page .bkh-laptop-mockup { max-width: 600px; margin: 0 auto; }
    .bk-home-page .bkh-laptop-copy { text-align: center; align-items: center; }
    .bk-home-page .bkh-lc-heading::after { margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-lc-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bk-home-page .bkh-lc-partner-badge { margin-left: 0; }
    .bk-home-page .bkh-devices-section .bkh-devices-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .bk-home-page .bkh-devices-copy { text-align: center; }
    .bk-home-page .bkh-devices-copy .bkh-badge { margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-devices-copy .bkh-heading::after { margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-lead.bkh-devices-lead { margin-left: auto; margin-right: auto; text-align: center; }
    .bk-home-page .bkh-devices-section .bkh-devices-points { text-align: left; max-width: 32rem; margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-devices-callout { margin-left: auto; margin-right: auto; text-align: left; }
    .bk-home-page .bkh-devices-showcase { order: -1; }
    .bk-home-page .bkh-devices-showcase__inner {
        min-height: auto;
        padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1rem, 3vw, 1.5rem);
    }
    .bk-home-page .bkh-devices-media-stack-wrap {
        max-width: 100%;
    }
    .bk-home-page .bkh-game-split { grid-template-columns: 1fr; }
    .bk-home-page .bkh-overview-video-col { max-width: 100%; }
    .bk-home-page .bkh-overview-copy { text-align: center; }
    .bk-home-page .bkh-heading--overview { text-align: center; }
    .bk-home-page .bkh-heading--overview::after { margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-overview-deck { margin-left: auto; margin-right: auto; }
    /* CTA grid stacks on tablet */
    .bk-home-page .bkh-cta-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem; 
    }
    .bk-home-page .bkh-cta-content { 
        max-width: 100%; 
        text-align: center; 
    }
    .bk-home-page .bkh-cta-apps { 
        align-items: center; 
    }
    .bk-home-page .bkh-cta-apps-title {
        text-align: center;
    }
    .bk-home-page .bkh-cta-store-row { 
        justify-content: center; 
    }
    .bk-home-page .bkh-cta-included {
        text-align: center;
    }
    .bk-home-page .bkh-cta-visual {
        order: -1;
    }
    .bk-home-page .bkh-cta-image {
        max-width: 85%;
    }
}

@media (max-width: 767px) {
    .bk-home-page .bkh-section,
    .bk-home-page .bkh-section--white,
    .bk-home-page .bkh-cta-section { padding: 3rem 0; }
    .bk-home-page .bkh-card { padding: 1.5rem 1.25rem 1.75rem; }
    .bk-home-page .bkh-reasons-hub-header {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: .5rem;
        margin-bottom: 1.25rem;
    }
    .bk-home-page .bkh-reasons-hub-heading-wrap .bkh-heading { text-align: center; }
    .bk-home-page .bkh-reasons-hub-heading-wrap .bkh-heading::after { margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-reasons-hub-shell { padding: 1.5rem 1.25rem 1.75rem; }
    .bk-home-page .bkh-overview-shell { padding: 1.5rem 1.25rem 1.65rem; }
    .bk-home-page .bkh-pricing-home-shell { padding: 1.5rem 1.25rem 1.65rem; }
    .bk-home-page .bkh-reviews-head { flex-direction: column; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.5rem; }
    .bk-home-page .bkh-reviews-head-meta { text-align: left; }
    .bk-home-page .bkh-reviews-carousel-wrap { padding: 0 3rem; }
    .bk-home-page .bkh-checklist-grid { grid-template-columns: 1fr; }
    .bk-home-page .bkh-checklist-grid li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .bk-home-page .bkh-checklist-grid li:last-child { border-bottom: none; }
    .bk-home-page .bkh-client-types { justify-content: flex-start; }
    .bk-home-page .bkh-game-shell { padding: 1.5rem 1.25rem 1.75rem; }
    .bk-home-page .bkh-game-hero { text-align: center; }
    .bk-home-page .bkh-game-hero .bkh-heading::after { margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-game-client-lead { margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-ai-row, .bk-home-page .bkh-stat-row { grid-template-columns: 1fr; }
    .bk-home-page .bkh-devices-showcase__inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        min-height: auto;
    }
    .bk-home-page .bkh-devices-showcase__heading { text-align: center; }
    .bk-home-page .bkh-devices-media-stack-front {
        align-items: center;
    }
    .bk-home-page .bkh-devices-download-note--on-blue {
        text-align: center;
        align-self: center;
    }
    .bk-home-page .bkh-devices-app-list { max-width: 28rem; margin-left: auto; margin-right: auto; }
    .bk-home-page .bkh-devices-media-stack { max-width: min(18rem, 100%); gap: 0.8rem; }
    .bk-home-page .bkh-devices-media-figure .bkh-devices-screenshot { max-width: min(200px, 58vw); }
    .bk-home-page .bkh-devices-store-card {
        max-width: 100%;
        padding: 0.4rem 0.55rem;
    }
    .bk-home-page .bkh-devices-card-overlay {
        padding: 0 0 clamp(1rem, 12vw, 3.5rem);
    }
    .bk-home-page .bkh-devices-card-overlay__img {
        max-width: 100%;
        max-height: min(16rem, 50vh);
        transform: none;
    }
    .bk-home-page .bkh-devices-screen-app-tile {
        max-height: 5.5rem;
    }
    /* CTA section on mobile */
    .bk-home-page .bkh-cta-section { padding: 2.5rem 0; }
    .bk-home-page .bkh-cta-grid { gap: 2rem; }
    .bk-home-page .bkh-cta-heading { font-size: 1.35rem; margin-bottom: 1.25rem; }
    .bk-home-page .bkh-cta-list { margin-bottom: 1.5rem; }
    .bk-home-page .bkh-cta-list li { font-size: .825rem; padding: .45rem 0; }
    .bk-home-page .bkh-cta-apps { gap: 1rem; padding-top: 1.25rem; }
    .bk-home-page .bkh-cta-apps-title { font-size: .95rem; }
    .bk-home-page .bkh-cta-store-row { gap: .85rem; }
    .bk-home-page .bkh-cta-store-badge { width: 144px !important; }
    .bk-home-page .bkh-cta-image { max-width: 95%; }
    .bk-home-page .bkh-laptop-mockup { max-width: 100%; }
    .bk-home-page .bkh-coming-pills.bkh-lc-pills { grid-template-columns: 1fr; }
}

/* Narrow phones: single-column feature pills, full-width hero CTAs, keep “Live demo” label on-screen */
@media (max-width: 576px) {
    .bk-home-page .bkh-hero-inner {
        padding-top: clamp(2.5rem, 10vw, 3.5rem);
        gap: 1.5rem;
    }
    .bk-home-page .bkh-hero-copy {
        padding-bottom: 1.25rem;
    }
    .bk-home-page .bkh-hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
    .bk-home-page .bkh-hero-cta .bkh-btn {
        width: 100%;
        justify-content: center;
    }
    .bk-home-page .bkh-lc-pills:not(.bkh-coming-pills) {
        grid-template-columns: 1fr;
    }
    .bk-home-page .bkh-lc-partner-badge {
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
    .bk-home-page .bkh-phone-stage .bkh-phone-label {
        right: 0;
        top: 6px;
        transform: none;
        transform-origin: 100% 0;
    }
    .bk-home-page .bkh-phone-stage:hover .bkh-phone-label {
        transform: translateY(-3px);
    }
    .bk-home-page .bkh-reviews-carousel-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .bk-home-page .bkh-devices-showcase__inner {
        padding: clamp(1.15rem, 4.5vw, 1.65rem) clamp(0.85rem, 4vw, 1.15rem);
        border-radius: clamp(14px, 3.5vw, 20px);
    }
    .bk-home-page .bkh-devices-media-stack { max-width: 100%; gap: 0.65rem; }
    .bk-home-page .bkh-devices-media-figure .bkh-devices-screenshot { max-width: min(188px, 50vw); }
    .bk-home-page .bkh-devices-screen-app-tile { max-height: 4.85rem; }
    .bk-home-page .bkh-devices-phone-screen__hero { margin: 0.75rem 0 0.55rem; }
    .bk-home-page .bkh-devices-screen-list { font-size: 0.56rem; }
    .bk-home-page .bkh-devices-screen-list__text { font-size: 0.56rem; }
    .bk-home-page .bkh-devices-store-row--on-blue .bkh-store-badge { max-width: 104px; }
    .bk-home-page .bkh-devices-showcase__heading {
        font-size: clamp(0.88rem, 3.6vw, 1.05rem);
    }
    .bk-home-page .bkh-devices-copy .bkh-heading {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* Large desktops: comfortable max line length inside Bootstrap container */
@media (min-width: 1400px) {
    .bk-home-page .bkh-laptop-layout {
        gap: clamp(3rem, 4vw, 4.5rem);
    }
}

/* ═══ Floating home intro video (fixed viewport; outside .bk-home-page) ═══ */
/* Phone-style portrait frame; width unchanged, taller on laptop/desktop */
.bk-floating-home-video {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9990;
    width: min(22rem, calc(100vw - 2rem));
    max-width: 100%;
    border-radius: var(--r-lg, 16px);
    box-shadow: 0 16px 48px rgba(15, 39, 68, 0.28), 0 4px 12px rgba(15, 39, 68, 0.1);
    background: #020617;
    overflow: visible;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}

.bk-floating-home-video__panel {
    overflow: hidden;
    border-radius: inherit;
    max-height: min(90vh, 44rem);
    transition: max-height 0.3s ease, opacity 0.22s ease;
}

.bk-floating-home-video__frame {
    position: relative;
    width: 100%;
    /* Tall “phone in portrait” feel at fixed width (desktop / laptop) */
    height: clamp(22rem, 65vh, 38rem);
    max-height: min(82vh, 40rem);
    background: #020617;
}

/* Tap anywhere on the frame (above iframe / video) for play/pause; toolbar stays above (z-index 4) */
.bk-floating-home-video__frame-playpause {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: inherit;
    cursor: pointer;
    background: transparent;
}

/* Brief play/pause hint above tap layer (pointer-events none → clicks reach .frame-playpause) */
.bk-floating-home-video__playback-flash {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
}

.bk-floating-home-video__playback-flash--animating.bk-floating-home-video__playback-flash--paused {
    animation: bk-floating-playback-flash-bg-paused 1.05s ease forwards;
}

.bk-floating-home-video__playback-flash--animating.bk-floating-home-video__playback-flash--playing {
    animation: bk-floating-playback-flash-bg-playing 1.05s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    .bk-floating-home-video__playback-flash--animating.bk-floating-home-video__playback-flash--paused,
    .bk-floating-home-video__playback-flash--animating.bk-floating-home-video__playback-flash--playing {
        animation-duration: 0.36s;
    }

    .bk-floating-home-video__playback-flash--animating .bk-floating-home-video__playback-flash-icon {
        animation-duration: 0.36s;
    }
}

.bk-floating-home-video__playback-flash-icon {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1;
    color: #fff;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
    opacity: 0;
    transform: scale(0.65);
}

.bk-floating-home-video__playback-flash--animating .bk-floating-home-video__playback-flash-icon {
    animation: bk-floating-playback-flash-icon 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bk-floating-playback-flash-bg-paused {
    0% { opacity: 0; background: transparent; }
    12% { opacity: 1; background: rgba(2, 6, 23, 0.58); }
    48% { opacity: 1; background: rgba(2, 6, 23, 0.58); }
    100% { opacity: 0; background: transparent; }
}

@keyframes bk-floating-playback-flash-bg-playing {
    0% { opacity: 0; background: transparent; }
    12% { opacity: 1; background: rgba(22, 101, 52, 0.35); }
    48% { opacity: 1; background: rgba(22, 101, 52, 0.35); }
    100% { opacity: 0; background: transparent; }
}

@keyframes bk-floating-playback-flash-icon {
    0% { opacity: 0; transform: scale(0.65); }
    14% { opacity: 1; transform: scale(1); }
    46% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.08); }
}

.bk-floating-home-video--minimized .bk-floating-home-video__frame-playpause {
    display: none;
}

.bk-floating-home-video--minimized .bk-floating-home-video__playback-flash {
    display: none;
}

.bk-floating-home-video__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

video.bk-floating-home-video__media {
    object-fit: cover;
}

/* Top overlay: replay + mute (left) · expand + minimize (right); restore when minimized */
.bk-floating-home-video__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.5rem;
    gap: 0.5rem;
    pointer-events: none;
}

.bk-floating-home-video__toolbar .bk-floating-home-video__fab {
    pointer-events: auto;
    width: 1.95rem;
    height: 1.95rem;
    font-size: 0.82rem;
}

.bk-floating-home-video__toolbar-start {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    pointer-events: auto;
}

.bk-floating-home-video__toolbar-end {
    display: flex;
    gap: 0.35rem;
    pointer-events: auto;
}

.bk-floating-home-video__fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: background 0.15s ease, transform 0.15s ease;
}

.bk-floating-home-video__fab:hover {
    background: rgba(1, 44, 174, 0.88);
}

.bk-floating-home-video__fab:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.bk-floating-home-video__fab:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bk-floating-home-video__icon-unmuted {
    display: none;
}

.bk-floating-home-video--unmuted .bk-floating-home-video__icon-muted {
    display: none;
}

.bk-floating-home-video--unmuted .bk-floating-home-video__icon-unmuted {
    display: inline-block;
}

.bk-floating-home-video__restore {
    display: none;
}

.bk-floating-home-video__restore-label {
    display: none;
}

/* Minimized: circle shows live video (still playing) + play overlay; toolbar hidden */
.bk-floating-home-video--minimized .bk-floating-home-video__toolbar {
    display: none;
}

.bk-floating-home-video--minimized {
    width: clamp(5.25rem, 14vw, 6.25rem);
    height: clamp(5.25rem, 14vw, 6.25rem);
    min-width: clamp(5.25rem, 14vw, 6.25rem);
    min-height: clamp(5.25rem, 14vw, 6.25rem);
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 14px 36px rgba(15, 39, 68, 0.38), 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #020617;
}

.bk-floating-home-video--minimized .bk-floating-home-video__panel {
    position: absolute;
    inset: 0;
    max-height: none;
    opacity: 1;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
    transition: none;
}

.bk-floating-home-video--minimized .bk-floating-home-video__frame {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 0;
    border-radius: 50%;
    overflow: hidden;
}

.bk-floating-home-video--minimized .bk-floating-home-video__media {
    pointer-events: none;
}

.bk-floating-home-video__restore-shade {
    display: none;
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore {
    position: absolute;
    inset: 0;
    z-index: 5;
    /* Override .bk-floating-home-video__fab fixed 2.35rem — fill whole pill for hit target + centering */
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: none;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore-label {
    display: block;
    position: absolute;
    bottom: calc(100% + 1.1rem);
    right: 0;
    width: 11rem;
    background: #ffffff;
    border: 1.5px solid rgba(1, 44, 174, 0.35);
    border-radius: 16px 16px 4px 16px;
    padding: 0.85rem 1rem 0.75rem;
    pointer-events: none;
    z-index: 6;
    box-shadow: 0 8px 28px rgba(1, 44, 174, 0.22), 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: bk-label-blink 1.5s ease-in-out infinite;
}

/* Speech-bubble tail pointing down-right toward the circle */
.bk-floating-home-video--minimized .bk-floating-home-video__restore-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 0;
    border-top: 10px solid #ffffff;
}

.bk-floating-home-video__restore-label-text {
    display: block;
    font-family: 'BradleyHTC', 'Bradley Hand ITC', cursive;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: #012cae;
    letter-spacing: 0.01em;
}

@keyframes bk-label-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore-shade {
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore-play {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.35rem, 7vw, 2.85rem);
    line-height: 1;
    margin: 0;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
    opacity: 1;
    transition: opacity 0.2s ease;
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore:hover .bk-floating-home-video__restore-shade,
.bk-floating-home-video--minimized .bk-floating-home-video__restore:focus-visible .bk-floating-home-video__restore-shade {
    opacity: 1;
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore:hover .bk-floating-home-video__restore-play,
.bk-floating-home-video--minimized .bk-floating-home-video__restore:focus-visible .bk-floating-home-video__restore-play {
    opacity: 1;
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore:hover {
    background: transparent;
}

.bk-floating-home-video--minimized .bk-floating-home-video__restore:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .bk-floating-home-video--minimized .bk-floating-home-video__restore-shade,
    .bk-floating-home-video--minimized .bk-floating-home-video__restore-play {
        transition: none;
    }
}

/* Touch / coarse pointers: no hover — keep play + dim visible */
@media (hover: none), (pointer: coarse) {
    .bk-floating-home-video--minimized .bk-floating-home-video__restore-shade,
    .bk-floating-home-video--minimized .bk-floating-home-video__restore-play {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .bk-floating-home-video__frame {
        height: clamp(26rem, 65vh, 40rem);
        max-height: min(84vh, 42rem);
    }
}

@media (max-width: 576px) {
    .bk-floating-home-video {
        right: max(0.65rem, env(safe-area-inset-right, 0px));
        bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
        width: min(19rem, calc(100vw - 1.3rem));
    }

    .bk-floating-home-video__frame {
        height: clamp(19rem, 52vh, 30rem);
        max-height: min(72vh, 34rem);
    }

    /* Minimized: stable square (vw clamp is unreliable on narrow phones); shrink only if viewport is tight */
    .bk-floating-home-video--minimized {
        --bk-float-min-size: min(5.5rem, calc(100vw - 1.5rem));
        width: var(--bk-float-min-size);
        height: var(--bk-float-min-size);
        min-width: var(--bk-float-min-size);
        min-height: var(--bk-float-min-size);
    }

    .bk-floating-home-video--minimized .bk-floating-home-video__restore-play {
        font-size: 2.5rem;
    }
}