/* Shared styles for BekService app landing pages (English). Locale pages keep
   their own per-app style.css until they are regenerated. */

:root {
    --bs-accent: #6366f1;
    --bs-accent-2: #0ea5e9;
    --bs-dark: #0f172a;
    --bs-dark-2: #1e293b;
    --bs-dark-3: #334155;
    --bs-text: #e2e8f0;
    --bs-text-muted: #94a3b8;
    --bs-gradient: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    --bs-radius: 14px;
    --bs-radius-lg: 24px;
    --bs-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
    --bs-maxw: 1120px;
    --bs-nav-h: 64px;
    --bs-ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--bs-nav-h) + 16px); }
body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
                 "Noto Sans", "Noto Sans Arabic", "Noto Sans Thai", "Noto Sans Devanagari",
                 "Hiragino Sans", "Yu Gothic UI", "Microsoft YaHei", sans-serif;
    background: var(--bs-dark);
    color: var(--bs-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--bs-accent-2); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--bs-maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link {
    position: absolute; inset-inline-start: -9999px; top: 0; z-index: 100;
    background: var(--bs-accent); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { inset-inline-start: 0; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---------------- nav ---------------- */
.bs-nav {
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(15,23,42,.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 50;
}
.bs-nav > .container { position: relative; display: flex; align-items: center; gap: 20px; min-height: var(--bs-nav-h); }
.bs-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; flex: none; }
.bs-brand img { border-radius: 8px; }

.bs-menu { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; list-style: none; }
.bs-menu > li { position: relative; }
.bs-menu > li:has(> .bs-sub) { position: static; }
.bs-menu > li > a, .bs-menu > li > button {
    display: inline-flex; align-items: center; gap: 6px;
    font: inherit; font-size: .92rem; font-weight: 500; color: var(--bs-text-muted);
    background: none; border: 0; cursor: pointer;
    padding: 8px 12px; border-radius: 8px;
    transition: color .2s var(--bs-ease), background-color .2s var(--bs-ease);
}
.bs-menu > li > a:hover, .bs-menu > li > button:hover,
.bs-menu > li > a:focus-visible, .bs-menu > li > button:focus-visible { color: #fff; background: rgba(255,255,255,.06); }
.bs-menu .caret { width: 10px; height: 10px; transition: transform .25s var(--bs-ease); }
.bs-has-sub[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* dropdown submenu */
.bs-sub {
    position: absolute; top: calc(100% + 10px); inset-inline: 0;
    transform: translateY(-8px);
    background: #111c33; border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--bs-radius); box-shadow: var(--bs-shadow);
    padding: 24px 24px 18px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s var(--bs-ease), transform .2s var(--bs-ease), visibility .2s;
}
/* a transparent bridge so the pointer can cross the gap to the panel */
.bs-sub::before { content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 18px; }
.bs-has-sub[aria-expanded="true"] + .bs-sub,
.bs-menu > li:hover > .bs-sub,
.bs-sub:focus-within {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.bs-sub a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 10px; border-radius: 10px; font-size: .88rem; color: var(--bs-text);
    transition: background-color .18s var(--bs-ease);
}
.bs-sub a:hover, .bs-sub a:focus-visible { background: rgba(255,255,255,.07); }
.bs-sub a[aria-current="page"] { background: rgba(99,102,241,.18); color: #fff; }
/* mega-menu: apps grouped by category */
.bs-mega-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 24px; }
.bs-mega-col ul { list-style: none; display: grid; gap: 2px; }
.bs-mega-head { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.bs-mega-head svg { width: 17px; height: 17px; color: var(--bs-accent-2); flex: none; }
.bs-mega-blurb { font-size: .76rem; line-height: 1.45; color: #64748b; margin: 6px 0 12px; min-height: 2.9em; }
.bs-mega-col a { align-items: flex-start; justify-content: space-between; gap: 8px; padding: 8px 10px; }
.bs-mega-app { min-width: 0; line-height: 1.35; }
.bs-mega-badges { display: flex; gap: 4px; flex: none; margin-top: 1px; }
.bs-mega-badge { font-size: .6rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    color: var(--bs-text-muted); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
    border-radius: 5px; padding: 1px 5px; line-height: 1.5; }
.bs-mega-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.bs-mega-all { font-weight: 600; color: var(--bs-accent-2); padding: 6px 10px; border-radius: 8px; }
.bs-mega-note { font-size: .78rem; color: #64748b; }

.bs-nav-tools { display: flex; align-items: center; gap: 10px; flex: none; }
.bs-lang select {
    background: var(--bs-dark-2); color: var(--bs-text); border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px; padding: 7px 10px; font: inherit; font-size: .82rem; max-width: 170px;
}
.bs-nav-cta {
    background: var(--bs-gradient); color: #fff; font-size: .88rem; font-weight: 600;
    padding: 9px 18px; border-radius: 999px; white-space: nowrap;
    transition: transform .2s var(--bs-ease), box-shadow .2s var(--bs-ease);
}
.bs-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(99,102,241,.7); }

.bs-burger {
    display: none; flex-direction: column; gap: 5px; background: none; border: 0;
    cursor: pointer; padding: 10px; border-radius: 8px;
}
.bs-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform .25s var(--bs-ease), opacity .2s var(--bs-ease); }
.bs-nav.is-open .bs-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bs-nav.is-open .bs-burger span:nth-child(2) { opacity: 0; }
.bs-nav.is-open .bs-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- hero ---------------- */
.bs-hero {
    padding: 80px 0 72px;
    background:
        radial-gradient(900px 420px at 12% -10%, rgba(99,102,241,.22), transparent 62%),
        radial-gradient(760px 400px at 96% 6%, rgba(14,165,233,.18), transparent 62%);
}
.bs-hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.bs-hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 700;
    color: var(--bs-accent-2); background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10); border-radius: 999px; padding: 6px 14px; margin-bottom: 20px;
}
.bs-hero-kicker .pulse { width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: bs-pulse 2.4s infinite; }
@keyframes bs-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.bs-hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.35rem); line-height: 1.1; font-weight: 800; letter-spacing: -.025em; }
.bs-hero h1 .accent { background: var(--bs-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bs-hero .lead { margin-top: 18px; font-size: 1.08rem; color: var(--bs-text-muted); max-width: 58ch; }

.bs-store-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.bs-store-btn {
    display: inline-flex; align-items: center; gap: 11px;
    background: #000; border: 1px solid rgba(255,255,255,.18); border-radius: 12px;
    padding: 10px 18px; color: #fff;
    transition: transform .2s var(--bs-ease), border-color .2s var(--bs-ease), box-shadow .2s var(--bs-ease);
}
.bs-store-btn:hover { border-color: rgba(255,255,255,.45); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(0,0,0,.9); }
.bs-store-btn svg { width: 26px; height: 26px; flex: none; }
.bs-store-btn > span { display: flex; flex-direction: column; line-height: 1.15; text-align: start; }
.bs-store-btn .small { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }
.bs-store-btn .big { font-size: 1.02rem; font-weight: 600; }

.bs-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; list-style: none; }
.bs-platforms li {
    font-size: .76rem; color: var(--bs-text-muted); background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09); border-radius: 999px; padding: 5px 12px;
}

.bs-hero-visual { position: relative; display: flex; justify-content: center; align-items: center;
    width: fit-content; margin-inline: auto; }
.bs-hero-glow {
    position: absolute; inset: 12% 0 6%; z-index: 0; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(99,102,241,.42), transparent 72%);
    filter: blur(48px);
}
.bs-hero-art { position: relative; z-index: 1; width: 306px; max-width: 100%; padding: 9px;
    border-radius: 34px; background: linear-gradient(160deg, #263449, #0b1120);
    border: 1px solid rgba(255,255,255,.12); box-shadow: 0 40px 80px -28px rgba(0,0,0,.85);
    animation: bs-float 7s ease-in-out infinite; }
.bs-hero-art img { width: 100%; border-radius: 26px; }
.bs-floating-icon { position: absolute; top: -26px; inset-inline-start: -34px; z-index: 2; }
.bs-floating-icon img { width: 92px; height: 92px; border-radius: 22px;
    box-shadow: 0 18px 40px -12px rgba(0,0,0,.8); animation: bs-float 6s ease-in-out infinite .6s; }
@keyframes bs-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------------- generic section ---------------- */
.bs-section { padding: 76px 0; }
.bs-section--alt { background: linear-gradient(180deg, rgba(30,41,59,.55), rgba(15,23,42,0)); }
.bs-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.bs-tag {
    display: inline-block; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase;
    font-weight: 700; color: var(--bs-accent-2); margin-bottom: 12px;
}
.bs-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.bs-head p { margin-top: 14px; color: var(--bs-text-muted); }

/* ---------------- features ---------------- */
.bs-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bs-feature {
    background: rgba(30,41,59,.5); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--bs-radius); padding: 26px;
    transition: transform .3s var(--bs-ease), border-color .3s var(--bs-ease), background-color .3s var(--bs-ease);
}
.bs-feature:hover { transform: translateY(-6px); border-color: rgba(99,102,241,.45); background: rgba(30,41,59,.8); }
.bs-feature-icon {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.3); margin-bottom: 16px;
}
.bs-feature-icon svg { width: 22px; height: 22px; stroke: var(--bs-accent-2); fill: none; stroke-width: 2; }
.bs-feature h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.bs-feature p { font-size: .92rem; color: var(--bs-text-muted); }

/* ---------------- screenshots ---------------- */
.bs-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bs-shot { text-align: center; }
.bs-shot-frame {
    border-radius: 26px; padding: 8px; background: linear-gradient(160deg, #1e293b, #0f172a);
    border: 1px solid rgba(255,255,255,.10); box-shadow: var(--bs-shadow);
    transition: transform .35s var(--bs-ease);
}
.bs-shot:hover .bs-shot-frame { transform: translateY(-8px) scale(1.015); }
.bs-shot-frame img { border-radius: 20px; width: 100%; }
.bs-shot h3 { font-size: 1rem; font-weight: 700; margin-top: 18px; }
.bs-shot p { font-size: .88rem; color: var(--bs-text-muted); margin-top: 4px; }

/* ---------------- specs ---------------- */
.bs-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.bs-spec {
    display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
    padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.bs-spec dt { font-weight: 600; font-size: .93rem; }
.bs-spec dd { color: var(--bs-text-muted); font-size: .9rem; text-align: end; }

/* ---------------- FAQ ---------------- */
.bs-faq { max-width: 780px; margin-inline: auto; }
.bs-faq details {
    border: 1px solid rgba(255,255,255,.09); border-radius: var(--bs-radius);
    background: rgba(30,41,59,.45); margin-bottom: 12px; overflow: hidden;
}
.bs-faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: .98rem;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.bs-faq summary::-webkit-details-marker { display: none; }
.bs-faq summary::after {
    content: ''; width: 10px; height: 10px; flex: none;
    border-inline-end: 2px solid var(--bs-text-muted); border-block-end: 2px solid var(--bs-text-muted);
    transform: rotate(45deg) translateY(-3px); transition: transform .25s var(--bs-ease);
}
.bs-faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.bs-faq details[open] summary { color: #fff; }
.bs-faq .bs-faq-body { padding: 0 22px 20px; color: var(--bs-text-muted); font-size: .93rem; }

/* ---------------- download CTA ---------------- */
.bs-cta { padding: 76px 0; }
.bs-cta-inner {
    background: var(--bs-gradient); border-radius: var(--bs-radius-lg);
    padding: 52px 40px; text-align: center; position: relative; overflow: hidden;
}
.bs-cta-inner::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(600px 240px at 50% 0%, rgba(255,255,255,.22), transparent 70%);
    pointer-events: none;
}
.bs-cta-inner > * { position: relative; z-index: 1; }
.bs-cta-inner img { width: 84px; height: 84px; border-radius: 20px; margin: 0 auto 20px;
    box-shadow: 0 18px 40px -12px rgba(0,0,0,.55); }
.bs-cta-inner h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.bs-cta-inner p { margin-top: 12px; color: rgba(255,255,255,.9); max-width: 54ch; margin-inline: auto; }
.bs-cta-inner .bs-store-buttons { justify-content: center; }
.bs-cta-inner .bs-store-btn { border-color: rgba(255,255,255,.35); }
.bs-cta-note { margin-top: 18px; font-size: .82rem; color: rgba(255,255,255,.85); }

/* ---------------- footer ---------------- */
.bs-footer { border-top: 1px solid rgba(255,255,255,.08); padding: 56px 0 32px; background: rgba(15,23,42,.7); }
.bs-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.bs-footer-brand p { margin-top: 12px; color: var(--bs-text-muted); font-size: .9rem; max-width: 34ch; }
.bs-footer h4 { font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.bs-footer ul { list-style: none; display: grid; gap: 9px; }
.bs-footer ul a { color: var(--bs-text-muted); font-size: .9rem; transition: color .2s var(--bs-ease); }
.bs-footer ul a:hover { color: #fff; }
.bs-social { display: flex; gap: 10px; margin-top: 20px; }
.bs-social a {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); color: var(--bs-text-muted);
    transition: transform .2s var(--bs-ease), color .2s var(--bs-ease), border-color .2s var(--bs-ease);
}
.bs-social a:hover { color: #fff; border-color: rgba(99,102,241,.6); transform: translateY(-3px); }
.bs-social svg { width: 19px; height: 19px; fill: currentColor; }
.bs-footer-bottom {
    margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07);
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
    font-size: .82rem; color: var(--bs-text-muted);
}

/* ---------------- scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--bs-ease), transform .6s var(--bs-ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 940px) {
    .bs-features, .bs-shots { grid-template-columns: repeat(2, 1fr); }
    .bs-hero .container { grid-template-columns: 1fr; text-align: center; }
    .bs-hero .lead { margin-inline: auto; }
    .bs-store-buttons, .bs-platforms { justify-content: center; }
    .bs-hero-visual { order: -1; }
    .bs-floating-icon { display: none; }
    .bs-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
    /* the drawer is a full-width flex line below the bar, so the bar must be allowed to wrap */
    .bs-nav > .container { flex-wrap: wrap; gap: 12px; }
    .bs-burger { display: flex; order: 3; }
    .bs-nav-tools { order: 2; margin-inline-start: auto; }
    .bs-menu {
        order: 4; display: none; width: 100%; flex-direction: column; align-items: stretch;
        gap: 2px; padding: 8px 0 18px; border-top: 1px solid rgba(255,255,255,.08); margin: 0;
        max-height: calc(100vh - var(--bs-nav-h) - 16px); overflow-y: auto; overscroll-behavior: contain;
    }
    .bs-nav.is-open .bs-menu { display: flex; animation: bs-drop .25s var(--bs-ease); }
    @keyframes bs-drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
    .bs-menu > li > a, .bs-menu > li > button { width: 100%; justify-content: space-between; padding: 12px 4px; font-size: 1rem; }
    /* submenu becomes an in-flow accordion on mobile */
    .bs-sub {
        position: static; transform: none; width: 100%; inset: auto; box-shadow: none; padding: 16px;
        background: rgba(255,255,255,.03);
        display: none; opacity: 1; visibility: visible; pointer-events: auto; margin-bottom: 8px;
    }
    .bs-menu > li:hover > .bs-sub { display: none; }
    .bs-sub::before { display: none; }
    .bs-menu > li:has(> .bs-sub) { position: relative; }
    .bs-has-sub[aria-expanded="true"] + .bs-sub { display: block; }
    .bs-mega-grid { grid-template-columns: 1fr; gap: 22px; }
    .bs-mega-blurb { min-height: 0; margin-bottom: 8px; }
    .bs-mega-foot { flex-direction: column; align-items: flex-start; }
    .bs-lang select { max-width: 120px; }
    .bs-nav-cta { display: none; }
}

@media (max-width: 620px) {
    .bs-features, .bs-shots, .bs-specs { grid-template-columns: 1fr; }
    .bs-footer-grid { grid-template-columns: 1fr; }
    .bs-spec dd { text-align: start; }
    .bs-section { padding: 56px 0; }
    .bs-cta-inner { padding: 40px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Flat hero art (square illustration rather than a phone screenshot) */
.bs-hero-art--flat { width: 340px; padding: 0; border: 0; background: none; box-shadow: none; }
.bs-hero-art--flat img { border-radius: var(--bs-radius-lg); filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)); }

/* Screenshot grids: four and six shots need tighter columns than three */
.bs-shots--four { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bs-shots--six  { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) {
    .bs-shots--four, .bs-shots--six { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .bs-shots--four, .bs-shots--six { grid-template-columns: 1fr; }
    .bs-hero-art--flat { width: min(100%, 300px); }
}

/* App Store marketing images: already framed and captioned, so show them plain */
.bs-hero-art--plain { width: 300px; padding: 0; border: 0; background: none; box-shadow: none; }
.bs-hero-art--plain img { border-radius: 20px; box-shadow: 0 30px 60px -22px rgba(0,0,0,.8); }
.bs-shot--plain img { border-radius: 16px; box-shadow: var(--bs-shadow); transition: transform .35s var(--bs-ease); }
.bs-shot--plain:hover img { transform: translateY(-8px) scale(1.015); }
@media (max-width: 620px) { .bs-hero-art--plain { width: min(100%, 280px); } }

/* Home button, first in the nav */
.bs-home { gap: 7px !important; }
.bs-home svg { width: 15px; height: 15px; flex: none; }

/* Pricing */
.bs-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px; max-width: 860px; margin-inline: auto; }
.bs-price-col { background: rgba(30,41,59,.5); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--bs-radius); padding: 26px; }
.bs-price-col--paid { border-color: rgba(99,102,241,.45); background: rgba(99,102,241,.10); }
.bs-price-col h3 { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
    color: var(--bs-accent-2); margin-bottom: 16px; }
.bs-price-col--paid h3 { color: #a5b4fc; }
.bs-price-col ul { list-style: none; display: grid; gap: 11px; }
.bs-price-col li { position: relative; padding-inline-start: 26px; font-size: .93rem; color: var(--bs-text-muted); }
.bs-price-col li::before { content: ''; position: absolute; inset-inline-start: 2px; top: .5em;
    width: 11px; height: 6px; border-inline-start: 2px solid var(--bs-accent-2);
    border-block-end: 2px solid var(--bs-accent-2); transform: rotate(-45deg); }
.bs-price-col--paid li::before { border-color: #a5b4fc; }
.bs-price-note { max-width: 720px; margin: 26px auto 0; text-align: center;
    font-size: .88rem; color: var(--bs-text-muted); }
