/* ==================================================================
   BILLEVO — Completely independent product page design
   ==================================================================
   Nothing like the main site. Own colors, own layout, own feel.
   SaaS product page aesthetic — not a portfolio subpage.
   Full-width desktop layout — uses the entire screen.
   ================================================================== */

/* ── Override EVERYTHING from main site ── */
.billevo-page,
.billevo-page *,
.billevo-page *::before,
.billevo-page *::after {
    cursor: auto !important;
}

.billevo-page {
    --bv: #6366f1;
    --bv-light: #818cf8;
    --bv-dark: #4f46e5;
    --bv-violet: #8b5cf6;
    --bv-glow: rgba(99, 102, 241, 0.12);
    --bv-bg: #08081a;
    --bv-bg2: #0d0d24;
    --bv-bg3: #12122e;
    --bv-text: #e8eaf6;
    --bv-text2: #9096b8;
    --bv-text3: #5c6291;
    --bv-border: rgba(99, 102, 241, 0.12);
    --bv-radius: 16px;
    --bv-max: 1200px;
    --bv-pad: 40px;

    background: var(--bv-bg) !important;
    color: var(--bv-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (min-width: 1600px) {
    .billevo-page { --bv-max: 1320px; }
}

@media (max-width: 768px) {
    .billevo-page { --bv-pad: 20px; }
}

[data-theme="light"] .billevo-page {
    --bv: #4f46e5;
    --bv-light: #6366f1;
    --bv-dark: #4338ca;
    --bv-violet: #7c3aed;
    --bv-glow: rgba(79, 70, 229, 0.08);
    --bv-bg: #f5f5ff;
    --bv-bg2: #eeeef8;
    --bv-bg3: #ffffff;
    --bv-text: #1a1a3e;
    --bv-text2: #4a4a6a;
    --bv-text3: #8888aa;
    --bv-border: rgba(79, 70, 229, 0.12);
}

/* Override green accent from main site */
.billevo-page a:hover { color: var(--bv-light); }
.billevo-page ::selection { background: var(--bv); color: #fff; }

/* ============================================================
   HERO — Full-viewport, edge-to-edge
   ============================================================ */
.bv-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height, 64px) + 48px) var(--bv-pad) 80px;
    position: relative;
    overflow: hidden;
}

.bv-hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.06) 35%, transparent 65%);
    pointer-events: none;
    animation: bvFloat 25s ease-in-out infinite;
}

.bv-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: bvFloat 20s ease-in-out infinite reverse;
}

@keyframes bvFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-20px, 12px); }
    66% { transform: translate(12px, -8px); }
}

.bv-hero__inner {
    max-width: var(--bv-max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .bv-hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

@media (min-width: 1400px) {
    .bv-hero__inner { gap: 80px; }
}

.bv-hero__content { text-align: center; }
@media (min-width: 900px) { .bv-hero__content { text-align: left; } }

.bv-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bv-light);
    background: var(--bv-glow);
    border: 1px solid var(--bv-border);
    border-radius: 100px;
    margin-bottom: 24px;
}

.bv-hero__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--bv);
    border-radius: 50%;
    animation: bvPulse 2s ease-in-out infinite;
}

@keyframes bvPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(99,102,241,0); }
}

.bv-hero__title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin-bottom: 14px;
    color: var(--bv-text);
}

@media (min-width: 1400px) {
    .bv-hero__title { font-size: 88px; }
}

.bv-hero__logo {
    background: linear-gradient(135deg, var(--bv), var(--bv-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bv-hero__tagline {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--bv-text2);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

@media (max-width: 899px) {
    .bv-hero__tagline { margin-left: auto; margin-right: auto; }
}

@media (min-width: 1400px) {
    .bv-hero__tagline { font-size: 1.3125rem; max-width: 560px; }
}

/* CTA Buttons */
.bv-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 900px) { .bv-hero__ctas { justify-content: flex-start; } }

.bv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bv-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.bv-btn--primary {
    background: linear-gradient(135deg, var(--bv), var(--bv-violet));
    color: #fff;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}
.bv-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99,102,241,0.45);
    color: #fff;
}

.bv-btn--outline {
    background: transparent;
    color: var(--bv-text);
    border: 1.5px solid var(--bv-border);
}
.bv-btn--outline:hover {
    border-color: var(--bv);
    color: var(--bv-light);
    background: var(--bv-glow);
    transform: translateY(-2px);
}

.bv-btn--lg { padding: 16px 36px; font-size: 1rem; }
.bv-btn--full { width: 100%; }

@media (min-width: 1400px) {
    .bv-btn--lg { padding: 18px 44px; font-size: 1.0625rem; }
}

/* OS links */
.bv-hero__os {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (min-width: 900px) { .bv-hero__os { justify-content: flex-start; } }
.bv-hero__os a { font-size: 0.8125rem; color: var(--bv-text3); transition: color 0.2s; }
.bv-hero__os a:hover { color: var(--bv-light); }
.bv-hero__os-sep { font-size: 0.8125rem; color: var(--bv-text3); opacity: 0.4; }

/* Trust strip */
.bv-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    justify-content: center;
}
@media (min-width: 900px) { .bv-hero__trust { justify-content: flex-start; } }

.bv-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8125rem;
    color: var(--bv-text3);
}
.bv-trust-item svg { width: 16px; height: 16px; color: var(--bv); flex-shrink: 0; }

@media (min-width: 1400px) {
    .bv-trust-item { font-size: 0.875rem; gap: 8px; }
    .bv-trust-item svg { width: 18px; height: 18px; }
}

/* ── HERO VISUAL — Product video, autoplay ── */
.bv-hero__visual {
    display: flex;
    justify-content: center;
}

.bv-hero__video {
    width: 100%;
    max-width: 720px;
    border-radius: var(--bv-radius);
    border: 1px solid var(--bv-border);
    box-shadow:
        0 32px 64px rgba(0,0,0,0.3),
        0 0 80px rgba(99,102,241,0.08);
    display: block;
    background: var(--bv-bg2);
}

@media (min-width: 1400px) {
    .bv-hero__video { max-width: 820px; }
}

/* ============================================================
   SECTION BASE — Tighter, more compact
   ============================================================ */
.bv-s {
    padding: 80px var(--bv-pad);
    position: relative;
}

@media (min-width: 1200px) {
    .bv-s { padding: 100px var(--bv-pad); }
}

.bv-s__inner {
    max-width: var(--bv-max);
    margin: 0 auto;
}

.bv-s__tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bv-light);
    background: var(--bv-glow);
    border: 1px solid var(--bv-border);
    border-radius: 8px;
    margin-bottom: 16px;
}

.bv-s__title {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bv-text);
    margin-bottom: 16px;
}

@media (min-width: 1400px) {
    .bv-s__title { font-size: 48px; }
}

.bv-s__sub {
    font-size: 1.0625rem;
    color: var(--bv-text2);
    line-height: 1.7;
    max-width: 580px;
}

@media (min-width: 1400px) {
    .bv-s__sub { font-size: 1.125rem; max-width: 640px; }
}

.bv-s__head { margin-bottom: 48px; }
.bv-s__head--center { text-align: center; }
.bv-s__head--center .bv-s__sub { margin: 0 auto; }

@media (min-width: 1200px) {
    .bv-s__head { margin-bottom: 56px; }
}

/* ============================================================
   SOCIAL PROOF BAR — Compact stats strip
   ============================================================ */
.bv-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--bv-border);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    overflow: hidden;
}

@media (min-width: 640px) { .bv-proof { grid-template-columns: repeat(4, 1fr); } }

.bv-proof__item {
    padding: 28px 20px;
    text-align: center;
    background: var(--bv-bg2);
}

@media (min-width: 1200px) {
    .bv-proof__item { padding: 36px 28px; }
}

.bv-proof__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bv-text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

@media (min-width: 1200px) {
    .bv-proof__num { font-size: 2.5rem; }
}

.bv-proof__label {
    font-size: 0.75rem;
    color: var(--bv-text3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* ============================================================
   STEPS — How it works (3-column), compact
   ============================================================ */
.bv-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) { .bv-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (min-width: 1200px) { .bv-steps { gap: 40px; } }

.bv-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

@media (min-width: 1200px) {
    .bv-step { padding: 36px 24px; }
}

.bv-step__num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bv), var(--bv-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

@media (min-width: 1200px) {
    .bv-step__num { font-size: 3.5rem; }
}

.bv-step__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bv-glow);
    border: 1px solid var(--bv-border);
    border-radius: 14px;
    color: var(--bv);
    margin: 0 auto 16px;
}

.bv-step__icon svg { width: 24px; height: 24px; }

@media (min-width: 1200px) {
    .bv-step__icon { width: 60px; height: 60px; border-radius: 15px; }
    .bv-step__icon svg { width: 26px; height: 26px; }
}

.bv-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bv-text);
    margin-bottom: 8px;
}

@media (min-width: 1200px) {
    .bv-step__title { font-size: 1.1875rem; }
}

.bv-step__text {
    font-size: 0.875rem;
    color: var(--bv-text2);
    line-height: 1.7;
}

@media (min-width: 1200px) {
    .bv-step__text { font-size: 0.9375rem; }
}

/* ============================================================
   FEATURES — Alternating text + image rows, tighter layout
   ============================================================ */
.bv-feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--bv-border);
}

.bv-feature-row:last-child { border-bottom: none; }

@media (min-width: 768px) {
    .bv-feature-row { grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0; }
    .bv-feature-row--reverse .bv-feature-row__text { order: 2; }
    .bv-feature-row--reverse .bv-feature-row__visual { order: 1; }
}

@media (min-width: 1400px) {
    .bv-feature-row { gap: 80px; padding: 64px 0; }
}

.bv-feature-row__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bv-glow);
    border-radius: 12px;
    color: var(--bv);
    margin-bottom: 16px;
}

.bv-feature-row__icon svg { width: 22px; height: 22px; }

@media (min-width: 1200px) {
    .bv-feature-row__icon { width: 52px; height: 52px; border-radius: 13px; }
    .bv-feature-row__icon svg { width: 24px; height: 24px; }
}

.bv-feature-row__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bv-text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

@media (min-width: 1200px) {
    .bv-feature-row__title { font-size: 1.625rem; }
}

@media (min-width: 1400px) {
    .bv-feature-row__title { font-size: 1.75rem; }
}

.bv-feature-row__desc {
    font-size: 0.9375rem;
    color: var(--bv-text2);
    line-height: 1.75;
}

@media (min-width: 1200px) {
    .bv-feature-row__desc { font-size: 1rem; }
}

.bv-feature-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.bv-tag {
    padding: 5px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--bv-light);
    background: var(--bv-glow);
    border: 1px solid var(--bv-border);
    border-radius: 7px;
    letter-spacing: 0.02em;
}

@media (min-width: 1200px) {
    .bv-tag { padding: 6px 14px; font-size: 0.75rem; }
}

.bv-feature-row__visual {
    background: var(--bv-bg2);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .bv-feature-row__visual { min-height: 280px; padding: 40px; }
}

@media (min-width: 1400px) {
    .bv-feature-row__visual { min-height: 320px; padding: 48px; }
}

/* Visual placeholder decoration */
.bv-feature-row__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(139,92,246,0.02));
}

.bv-feature-row__visual-icon {
    display: none;
    color: var(--bv);
    opacity: 0.2;
}

.bv-feature-row__visual-icon svg { width: 80px; height: 80px; }

@media (min-width: 1200px) {
    .bv-feature-row__visual-icon svg { width: 100px; height: 100px; }
}

/* ============================================================
   HIGHLIGHTS — Horizontal strip, compact items
   ============================================================ */
.bv-highlights {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.bv-highlights::-webkit-scrollbar { display: none; }

.bv-highlight {
    flex: 0 0 260px;
    scroll-snap-align: start;
    padding: 32px 24px;
    border-left: 2px solid var(--bv);
}

@media (min-width: 1200px) {
    .bv-highlight { flex: 1 1 0; padding: 36px 32px; }
}

.bv-highlight__num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bv), var(--bv-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

@media (min-width: 1200px) {
    .bv-highlight__num { font-size: 3.5rem; }
}

.bv-highlight__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--bv-text);
    margin-bottom: 8px;
}

@media (min-width: 1200px) {
    .bv-highlight__title { font-size: 1.125rem; }
}

.bv-highlight__text {
    font-size: 0.875rem;
    color: var(--bv-text2);
    line-height: 1.7;
}

/* ============================================================
   PRIVACY — Full-width banner, compact
   ============================================================ */
.bv-privacy-banner {
    background: var(--bv-bg2);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .bv-privacy-banner { grid-template-columns: 1fr 1fr 1fr; gap: 36px; padding: 48px; }
}

@media (min-width: 1200px) {
    .bv-privacy-banner { padding: 56px; gap: 48px; }
}

.bv-privacy-item { text-align: center; }

.bv-privacy-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bv-glow);
    border-radius: 12px;
    color: var(--bv);
}

@media (min-width: 1200px) {
    .bv-privacy-item__icon { width: 52px; height: 52px; border-radius: 13px; }
}

.bv-privacy-item__icon svg { width: 22px; height: 22px; }

@media (min-width: 1200px) {
    .bv-privacy-item__icon svg { width: 24px; height: 24px; }
}

.bv-privacy-item__title { font-size: 1.0625rem; font-weight: 700; color: var(--bv-text); margin-bottom: 6px; }
.bv-privacy-item__text { font-size: 0.875rem; color: var(--bv-text2); line-height: 1.7; }

@media (min-width: 1200px) {
    .bv-privacy-item__title { font-size: 1.125rem; }
    .bv-privacy-item__text { font-size: 0.9375rem; }
}

.bv-disclaimer {
    font-size: 0.8125rem;
    color: var(--bv-text3);
    line-height: 1.7;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--bv-border);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ============================================================
   PRICING — 3D Card, Glassmorphism, premium feel
   ============================================================ */
.bv-pricing {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    background: var(--bv-bg2);
    border: 1px solid var(--bv-border);
    border-radius: 20px;
    padding: 48px 40px 40px;
    position: relative;
    overflow: hidden;
    /* 3D transforms */
    transform: perspective(1200px) rotateX(2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.3),
        0 1px 0 rgba(255,255,255,0.04) inset,
        0 -1px 0 rgba(0,0,0,0.2) inset;
}

.bv-pricing:hover {
    transform: perspective(1200px) rotateX(0deg) translateY(-4px);
    box-shadow:
        0 32px 80px rgba(99,102,241,0.2),
        0 1px 0 rgba(255,255,255,0.06) inset,
        0 -1px 0 rgba(0,0,0,0.2) inset;
}

/* Glow at the top of the card */
.bv-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bv-light), var(--bv-violet), transparent);
}

/* Subtle gradient overlay */
.bv-pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(99,102,241,0.05), transparent);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

@media (min-width: 1200px) {
    .bv-pricing { max-width: 520px; padding: 56px 48px 44px; }
}

[data-theme="light"] .bv-pricing {
    box-shadow:
        0 20px 60px rgba(79,70,229,0.12),
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 -1px 0 rgba(0,0,0,0.05) inset;
}

[data-theme="light"] .bv-pricing:hover {
    box-shadow:
        0 32px 80px rgba(79,70,229,0.18),
        0 1px 0 rgba(255,255,255,0.8) inset;
}

.bv-pricing__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bv-text3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.bv-pricing__amount {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 900;
    color: var(--bv-text);
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 8px 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) {
    .bv-pricing__amount { font-size: 6rem; }
}

.bv-pricing__sub {
    font-size: 0.9375rem;
    color: var(--bv-text2);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.bv-pricing__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.bv-pricing__list li {
    padding: 12px 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--bv-text);
    border-bottom: 1px solid var(--bv-border);
}

@media (min-width: 1200px) {
    .bv-pricing__list li { font-size: 0.9375rem; padding: 14px 0; }
}

.bv-pricing__list li:last-child { border-bottom: none; }

.bv-pricing__list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10b981;
}

.bv-pricing__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.bv-pricing__note {
    font-size: 0.75rem;
    color: var(--bv-text3);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FAQ — Compact, roomier
   ============================================================ */
.bv-faq {
    max-width: 720px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .bv-faq { max-width: 780px; }
}

.bv-faq-item {
    border-bottom: 1px solid var(--bv-border);
}

.bv-faq-item:first-child { border-top: 1px solid var(--bv-border); }

.bv-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bv-text);
    cursor: pointer;
    list-style: none;
}

@media (min-width: 1200px) {
    .bv-faq-item summary { padding: 22px 0; font-size: 1rem; }
}

.bv-faq-item summary::-webkit-details-marker { display: none; }
.bv-faq-item summary::marker { display: none; content: ''; }
.bv-faq-item summary:hover { color: var(--bv-light); }

.bv-faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--bv-text3);
    transition: transform 0.25s ease;
}

.bv-faq-item[open] .bv-faq-chevron { transform: rotate(180deg); color: var(--bv); }

.bv-faq-item__answer { padding: 0 0 20px; }
.bv-faq-item__answer p { font-size: 0.875rem; color: var(--bv-text2); line-height: 1.8; }
.bv-faq-item__answer a { color: var(--bv-light); text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 1200px) {
    .bv-faq-item__answer p { font-size: 0.9375rem; }
}

/* ============================================================
   FINAL CTA — Compact bold text
   ============================================================ */
.bv-cta {
    text-align: center;
    padding: 80px var(--bv-pad);
    position: relative;
}

@media (min-width: 1200px) {
    .bv-cta { padding: 100px var(--bv-pad); }
}

.bv-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.bv-cta__title {
    font-size: clamp(30px, 6vw, 52px);
    font-weight: 900;
    color: var(--bv-text);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    position: relative;
}

@media (min-width: 1400px) {
    .bv-cta__title { font-size: 56px; }
}

.bv-cta__text {
    font-size: 1.0625rem;
    color: var(--bv-text2);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media (min-width: 1400px) {
    .bv-cta__text { font-size: 1.125rem; max-width: 560px; }
}

.bv-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
}

/* ============================================================
   SYSTEM REQUIREMENTS — Full-width grid, compact
   ============================================================ */
.bv-req {
    border-top: 1px solid var(--bv-border);
    padding-top: 40px;
}

.bv-req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--bv-border);
    border: 1px solid var(--bv-border);
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 768px) { .bv-req-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .bv-req-grid { grid-template-columns: repeat(6, 1fr); } }

.bv-req-item {
    padding: 20px;
    background: var(--bv-bg2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 1200px) {
    .bv-req-item { padding: 22px; }
}

.bv-req-item__label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--bv);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bv-req-item__value {
    font-size: 0.875rem;
    color: var(--bv-text2);
}

/* ── SEO Internal Links ── */
.bv-seo-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}
@media (min-width: 768px) { .bv-seo-links { grid-template-columns: 1fr 1fr; } }

.bv-seo-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bv-bg2);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    text-decoration: none;
    color: var(--bv-text);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.bv-seo-link:hover {
    border-color: var(--bv);
    background: var(--bv-bg3);
    transform: translateY(-2px);
}

.bv-seo-link__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bv-glow);
    border-radius: 10px;
    color: var(--bv-light);
}

.bv-seo-link__icon svg {
    width: 20px;
    height: 20px;
}

.bv-seo-link__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bv-seo-link__text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bv-text);
}

.bv-seo-link__text span {
    font-size: 0.8125rem;
    color: var(--bv-text2);
    line-height: 1.4;
}

/* 5th card spans full width on desktop */
@media (min-width: 768px) {
    .bv-seo-link:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.bv-s__desc {
    font-size: 0.9375rem;
    color: var(--bv-text2);
    line-height: 1.6;
    max-width: 560px;
    margin: 8px auto 0;
}

.bv-review-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}
@media (min-width: 768px) { .bv-review-links { grid-template-columns: 1fr 1fr 1fr; } }

.bv-review-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px;
    background: var(--bv-bg2);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    text-decoration: none;
    color: var(--bv-text);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.bv-review-card:hover {
    border-color: var(--bv);
    background: var(--bv-bg3);
    transform: translateY(-2px);
}

.bv-review-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bv-glow);
    border-radius: 10px;
    color: var(--bv-light);
}

.bv-review-card__icon svg {
    width: 20px;
    height: 20px;
}

.bv-review-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.bv-review-card__content strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bv-text);
}

.bv-review-card__content span {
    font-size: 0.8125rem;
    color: var(--bv-text2);
    line-height: 1.4;
}

.bv-review-card__arrow {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--bv-text3);
    transition: color 0.25s, transform 0.25s;
}

.bv-review-card:hover .bv-review-card__arrow {
    color: var(--bv);
    transform: translateX(3px);
}

/* ============================================================
   MOBILE OPTIMIZATIONS — Touch-friendly & readable
   ============================================================ */

/* Global mobile type & spacing improvements */
@media (max-width: 480px) {
    .billevo-page { --bv-pad: 16px; }
    .bv-hero { padding-top: calc(var(--header-height, 64px) + 28px); padding-bottom: 48px; min-height: auto; }
    .bv-hero__title { margin-bottom: 10px; }
    .bv-hero__tagline { font-size: 0.9375rem; margin-bottom: 24px; line-height: 1.6; }
    .bv-hero__badge { font-size: 0.75rem; padding: 5px 14px; margin-bottom: 16px; }
    .bv-s { padding: 52px var(--bv-pad); }
    .bv-s__head { margin-bottom: 32px; }
    .bv-s__title { margin-bottom: 10px; }
    .bv-s__sub { font-size: 0.9375rem; }
    .bv-cta { padding: 60px var(--bv-pad); }
    .bv-cta__title { margin-bottom: 10px; }
    .bv-cta__text { font-size: 0.9375rem; margin-bottom: 24px; }
}

/* Mobile CTA buttons: stack vertically, full width */
@media (max-width: 640px) {
    .bv-hero__ctas { flex-direction: column; width: 100%; }
    .bv-hero__ctas .bv-btn { width: 100%; justify-content: center; }
    .bv-btn--lg { padding: 14px 24px; font-size: 0.9375rem; }
    .bv-cta__buttons { flex-direction: column; width: 100%; max-width: 360px; margin-left: auto; margin-right: auto; }
    .bv-cta__buttons .bv-btn { width: 100%; justify-content: center; }
}

/* Mobile OS links */
@media (max-width: 480px) {
    .bv-hero__os { gap: 8px 12px; }
    .bv-hero__os a { font-size: 0.75rem; padding: 6px 0; }
}

/* Mobile trust strip: 2x2 grid instead of inline */
@media (max-width: 480px) {
    .bv-hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
    .bv-trust-item { font-size: 0.75rem; }
}

/* Mobile proof bar */
@media (max-width: 480px) {
    .bv-proof__item { padding: 20px 14px; }
    .bv-proof__num { font-size: 1.75rem; }
    .bv-proof__label { font-size: 0.625rem; }
}

/* Mobile steps */
@media (max-width: 480px) {
    .bv-step { padding: 20px 14px; }
    .bv-step__num { font-size: 2.5rem; margin-bottom: 10px; }
    .bv-step__icon { width: 48px; height: 48px; margin-bottom: 12px; }
}

/* Mobile feature rows */
@media (max-width: 480px) {
    .bv-feature-row { gap: 20px; padding: 32px 0; }
    .bv-feature-row__visual { min-height: 180px; padding: 24px; }
    .bv-feature-row__title { font-size: 1.25rem; }
    .bv-feature-row__desc { font-size: 0.875rem; }
}

/* Mobile highlights */
@media (max-width: 480px) {
    .bv-highlight { flex: 0 0 240px; padding: 24px 20px; }
    .bv-highlight__num { font-size: 2.5rem; }
    .bv-highlight__title { font-size: 0.9375rem; }
    .bv-highlight__text { font-size: 0.8125rem; }
}

/* Mobile privacy banner */
@media (max-width: 480px) {
    .bv-privacy-banner { padding: 28px 18px; gap: 24px; }
    .bv-privacy-item__title { font-size: 0.9375rem; }
    .bv-privacy-item__text { font-size: 0.8125rem; }
}

/* Mobile FAQ */
@media (max-width: 480px) {
    .bv-faq-item summary { padding: 16px 0; font-size: 0.875rem; min-height: 48px; }
    .bv-faq-item__answer p { font-size: 0.8125rem; }
}

/* Mobile pricing: 3D card adapted */
@media (max-width: 480px) {
    .bv-pricing {
        padding: 36px 24px 32px;
        border-radius: 16px;
        transform: none; /* No 3D tilt on mobile */
    }
    .bv-pricing:hover {
        transform: translateY(-2px);
    }
    .bv-pricing__amount { font-size: 3.5rem; }
    .bv-pricing__list li { font-size: 0.875rem; padding: 10px 0; }
}

/* Mobile system requirements: 1 column */
@media (max-width: 480px) {
    .bv-req-grid { grid-template-columns: 1fr; }
    .bv-req-item { padding: 14px 18px; flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   PRODUCT VIDEO — Cinematic showcase with lazy loading
   ============================================================ */
.bv-video-section {
    overflow: hidden;
}

.bv-video-wrap {
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .bv-video-wrap { max-width: 980px; }
}

.bv-video-player {
    position: relative;
    border-radius: var(--bv-radius);
    overflow: hidden;
    background: var(--bv-bg2);
    border: 1px solid var(--bv-border);
    aspect-ratio: 16 / 9;
    cursor: pointer;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(99, 102, 241, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bv-video-player:hover {
    transform: translateY(-4px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(99, 102, 241, 0.1);
}

.bv-video-player.bv-video--playing {
    cursor: default;
}

.bv-video-player.bv-video--playing:hover {
    transform: none;
}

.bv-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Play button — centered, pulsing ring */
.bv-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 26, 0.5);
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.bv-video-play:hover {
    background: rgba(8, 8, 26, 0.35);
}

.bv-video-play svg {
    width: 36px;
    height: 36px;
    color: #fff;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.bv-video-play:hover svg {
    transform: scale(1.1);
}

.bv-video-play__ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bv), var(--bv-violet));
    opacity: 0.9;
    animation: bvPlayPulse 2.5s ease-in-out infinite;
}

@keyframes bvPlayPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(99, 102, 241, 0); }
}

/* Hide play button when playing */
.bv-video--playing .bv-video-play {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Ambient glow behind the video */
.bv-video-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Gradient border shimmer on hover */
.bv-video-player::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--bv-radius);
    background: linear-gradient(135deg, var(--bv), var(--bv-violet), transparent, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.bv-video-player:hover::before {
    opacity: 0.5;
}

/* Light theme adjustments */
[data-theme="light"] .bv-video-play {
    background: rgba(245, 245, 255, 0.4);
}

[data-theme="light"] .bv-video-play:hover {
    background: rgba(245, 245, 255, 0.25);
}

[data-theme="light"] .bv-video-player {
    box-shadow:
        0 32px 80px rgba(79, 70, 229, 0.12),
        0 0 0 1px rgba(79, 70, 229, 0.08);
}

/* Mobile video */
@media (max-width: 480px) {
    .bv-video-player {
        border-radius: 12px;
    }

    .bv-video-play__ring {
        width: 64px;
        height: 64px;
    }

    .bv-video-play svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================================
   DESKTOP ENHANCEMENTS — Richer visual polish
   ============================================================ */

/* Feature visual image support */
.bv-feature-row__visual-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Animated gradient border on feature visuals */
.bv-feature-row__visual::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--bv-radius);
    background: linear-gradient(135deg, var(--bv), var(--bv-violet), transparent, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.bv-feature-row:hover .bv-feature-row__visual::after {
    opacity: 0.5;
}

/* Hover lift on feature rows */
@media (min-width: 768px) {
    .bv-feature-row__visual {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .bv-feature-row:hover .bv-feature-row__visual {
        transform: translateY(-3px);
        box-shadow: 0 16px 48px rgba(99, 102, 241, 0.1);
    }
}

/* Step cards: hover effect on desktop */
@media (min-width: 640px) {
    .bv-step {
        border-radius: 14px;
        transition: background 0.3s ease, transform 0.3s ease;
    }
    .bv-step:hover {
        background: var(--bv-bg2);
        transform: translateY(-3px);
    }
}

/* Proof items: subtle hover */
.bv-proof__item {
    transition: background 0.3s ease;
}
.bv-proof__item:hover {
    background: var(--bv-bg3);
}

/* Privacy items: subtle hover lift */
@media (min-width: 768px) {
    .bv-privacy-item {
        padding: 20px;
        border-radius: 12px;
        transition: background 0.3s ease, transform 0.3s ease;
    }
    .bv-privacy-item:hover {
        background: var(--bv-bg3);
        transform: translateY(-2px);
    }
}

/* Highlight items: hover accent */
.bv-highlight {
    transition: border-color 0.3s ease, background 0.3s ease;
}
.bv-highlight:hover {
    border-color: var(--bv-violet);
    background: var(--bv-glow);
}

/* Changelog / What's New badge for version */
.bv-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 5px;
}

/* ============================================================
   CHANGELOG SECTION
   ============================================================ */
.bv-changelog {
    max-width: 720px;
    margin: 0 auto;
}

.bv-changelog-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--bv-border);
}

.bv-changelog-item:last-child { border-bottom: none; }

.bv-changelog-item__version {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--bv-text);
    margin-bottom: 6px;
}

.bv-changelog-item__date {
    font-size: 0.75rem;
    color: var(--bv-text3);
    margin-bottom: 10px;
}

.bv-changelog-item__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bv-changelog-item__list li {
    padding: 4px 0;
    font-size: 0.875rem;
    color: var(--bv-text2);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bv-changelog-item__list li::before {
    content: '+';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Download OS Hint ── */
.bv-download-label {
    display: block;
}

.bv-download-os-hint {
    display: block;
    font-size: 0.6875rem;
    opacity: 0.7;
    font-weight: 400;
    margin-top: 2px;
}

.bv-hero__os a.bv-hero__os--active {
    color: var(--bv-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── macOS Installation Modal ── */
.bv-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: bv-fade-in 0.2s ease;
}

@keyframes bv-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bv-modal {
    background: var(--bv-bg2, #0d0d24);
    border: 1px solid var(--bv-border, rgba(99,102,241,0.12));
    border-radius: var(--bv-radius, 16px);
    padding: 32px 36px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.bv-modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--bv-text3, #5c6291);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.bv-modal__close:hover {
    color: var(--bv-text, #e8eaf6);
}

.bv-modal__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bv-text, #e8eaf6);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.bv-modal__text {
    color: var(--bv-text2, #9096b8);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.bv-modal__steps {
    list-style: none;
    counter-reset: modal-step;
    padding: 0;
    margin: 0 0 16px 0;
}

.bv-modal__steps li {
    counter-increment: modal-step;
    padding: 8px 0 8px 36px;
    position: relative;
    color: var(--bv-text2, #9096b8);
    font-size: 0.875rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--bv-border, rgba(99,102,241,0.12));
}

.bv-modal__steps li:last-child {
    border-bottom: none;
}

.bv-modal__steps li::before {
    content: counter(modal-step);
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--bv-glow, rgba(99,102,241,0.12));
    color: var(--bv-light, #818cf8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.bv-modal__note {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.8125rem;
    color: #fbbf24;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bv-modal__note em {
    color: #fde68a;
    font-style: normal;
    font-weight: 500;
}

.bv-modal__actions {
    display: flex;
    gap: 10px;
}

.bv-modal__actions .bv-btn {
    flex: 1;
    justify-content: center;
}

/* ── macOS Modal extended styles ── */
.bv-modal--mac {
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
}

.bv-modal__header-icon {
    width: 48px;
    height: 48px;
    background: var(--bv-glow, rgba(99,102,241,0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--bv-light, #818cf8);
}

.bv-modal__divider {
    height: 1px;
    background: var(--bv-border, rgba(99,102,241,0.12));
    margin: 14px 0 16px;
}

.bv-modal__step-detail {
    display: block;
    font-weight: 400;
    margin-top: 3px;
    font-size: 0.8125rem;
    color: var(--bv-text3, #5c6291);
    line-height: 1.5;
}

.bv-modal__step-detail code {
    background: rgba(99,102,241,0.1);
    color: var(--bv-light, #818cf8);
    padding: 1px 5px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 0.75rem;
}

.bv-modal__step-detail kbd {
    background: var(--bv-bg3, #12122e);
    border: 1px solid var(--bv-border, rgba(99,102,241,0.12));
    border-radius: 4px;
    padding: 1px 5px;
    font-family: inherit;
    font-size: 0.75rem;
    color: var(--bv-text, #e8eaf6);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.bv-modal__code-block {
    display: flex;
    align-items: center;
    background: #0a0a1e;
    border: 1px solid var(--bv-border, rgba(99,102,241,0.12));
    border-radius: 8px;
    padding: 10px 14px;
    margin: 8px 0;
    gap: 10px;
}

.bv-modal__code-block code {
    flex: 1;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    color: #22d3ee;
    background: none;
    padding: 0;
    user-select: all;
    -webkit-user-select: all;
}

.bv-modal__copy-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bv-glow, rgba(99,102,241,0.12));
    border: 1px solid var(--bv-border, rgba(99,102,241,0.12));
    border-radius: 7px;
    padding: 5px 12px;
    color: var(--bv-light, #818cf8);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.bv-modal__copy-btn:hover {
    background: rgba(99,102,241,0.2);
    border-color: var(--bv-light, #818cf8);
}

.bv-modal__copy-btn.bv-copied {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.bv-modal__note code {
    background: rgba(245, 158, 11, 0.15);
    color: #fde68a;
    padding: 1px 4px;
    border-radius: 3px;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .bv-modal {
        padding: 22px 18px;
        border-radius: 14px;
    }
    .bv-modal--mac {
        max-width: 100%;
    }
    .bv-modal__actions {
        flex-direction: column;
    }
    .bv-modal__code-block {
        flex-direction: column;
        align-items: stretch;
    }
    .bv-modal__code-block code {
        font-size: 0.75rem;
        word-break: break-all;
    }
    .bv-modal__copy-btn {
        justify-content: center;
    }
}
