:root {
    --bv-primary: #6B00FF;
    --bv-primary-dark: #5500CC;
    --bv-secondary: #00D1FF;
    --bv-surface: #FCF9F8;
    --bv-surface-soft: #F7F2FA;
    --bv-surface-card: #FFFFFF;
    --bv-text: #1C1B1F;
    --bv-muted: #49454F;
    --bv-border: #E7E0EC;
    --bv-dark: #0A0A0A;
    --bv-shadow: 0 24px 70px rgba(28, 27, 31, 0.08);
}

.bv-logo {
    height: auto;
    max-width: 100%;
    display: block;
}

.bv-logo--nav {
    height: 28px;
    width: auto;
}

.bv-logo--hero {
    width: clamp(140px, 15vw, 180px);
    margin-bottom: 2rem;
}

.bv-logo--footer {
    width: 160px;
    margin-bottom: 1.5rem;
}

.bv-logo svg {
    width: 100%;
    height: auto;
    color: var(--bv-primary);
    fill: currentColor;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

.bv-page {
    margin: 0;
    overflow-x: hidden;
    max-width: 100vw;
    background: var(--bv-surface);
    color: var(--bv-text);
    font-family: "Inter", sans-serif;
}

.bv-page.bv-hero-locked {
    overflow: hidden;
    height: 100vh;
    height: 100svh;
}

html.bv-hero-locked-html {
    overflow: hidden;
    height: 100vh;
    height: 100svh;
}

.bv-page *,
.bv-page *::before,
.bv-page *::after {
    box-sizing: border-box;
}

.bv-page h1,
.bv-page h2,
.bv-page h3,
.bv-page h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: 0;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.bv-section-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.bv-tag,
.bv-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(107, 0, 255, 0.18);
    border-radius: 12px;
    background: rgba(107, 0, 255, 0.08);
    color: var(--bv-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    padding: 0.48rem 0.9rem;
    text-transform: uppercase;
}

.bv-button {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    gap: 0.55rem;
    justify-content: center;
    min-height: 48px;
    padding: 0.95rem 1.5rem;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.bv-button:hover {
    transform: translateY(-2px);
}

.bv-button--primary {
    background: var(--bv-primary);
    color: #fff;
    box-shadow: 0 12px 34px rgba(107, 0, 255, 0.25);
}

.bv-button--dark {
    background: #111827;
    color: #fff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.22);
}

.bv-button--dark:hover,
.bv-button--primary:hover {
    background: var(--bv-primary-dark);
}

.bv-button--light {
    background: #fff;
    color: var(--bv-primary);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.bv-button--outline {
    border: 1.5px solid var(--bv-border);
    color: var(--bv-muted);
}

.bv-button--outline:hover {
    border-color: var(--bv-primary);
    color: var(--bv-primary);
}

.bv-section-head {
    margin: 0 auto 3.5rem;
    max-width: 780px;
    text-align: center;
}

.bv-section-head h2 {
    color: var(--bv-text);
    font-size: clamp(2.1rem, 4.8vw, 4.3rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0.85rem 0 0.9rem;
}

.bv-section-head h2 span,
.bv-showcase__copy h2 span,
.bv-integrations__copy h2 span,
.bv-steps h2 span {
    color: var(--bv-primary);
}

.bv-section-head p {
    color: var(--bv-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
}

.bv-nav {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    left: 50%;
    padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
    position: fixed;
    top: 0;
    transform: translateX(-50%);
    transition: width 0.4s ease, top 0.4s ease, background 0.35s ease, border-color 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, opacity 0.5s ease;
    width: 100%;
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bv-nav.is-light,
.bv-nav.is-floating {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(231, 224, 236, 0.85);
}

.bv-nav.is-floating {
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(28, 27, 31, 0.1);
    padding: 0.75rem 1rem;
    top: 1rem;
    width: min(1040px, calc(100% - 28px));
}

.bv-nav__brand {
    align-items: center;
    color: #fff;
    display: inline-flex;
    gap: 0.62rem;
    text-decoration: none;
}

.bv-nav.is-light .bv-nav__brand,
.bv-nav.is-floating .bv-nav__brand {
    color: var(--bv-text);
}

.bv-nav__mark {
    align-items: center;
    background: #333;
    border-radius: 9px;
    color: #fff;
    display: inline-flex;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    transition: background 0.35s ease;
    width: 34px;
}

.bv-nav.is-light .bv-nav__mark,
.bv-nav.is-floating .bv-nav__mark {
    background: var(--bv-primary);
}

.bv-nav__name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.08rem;
    font-weight: 900;
}

.bv-nav__links {
    align-items: center;
    display: flex;
    gap: 1.6rem;
}

.bv-nav__links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.bv-nav.is-light .bv-nav__links a,
.bv-nav.is-floating .bv-nav__links a {
    color: var(--bv-muted);
}

.bv-nav__links a:hover {
    color: var(--bv-primary);
}

.bv-nav__cta {
    background: var(--bv-primary);
    border-radius: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.7rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(107, 0, 255, 0.25);
}

.bv-nav.is-light .bv-nav__cta,
.bv-nav.is-floating .bv-nav__cta {
    background: var(--bv-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(107, 0, 255, 0.2);
}

.bv-nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 0, 255, 0.4);
    background: var(--bv-primary-dark);
}

.bv-hero {
    background: var(--bv-dark);
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    position: relative;
}

.bv-hero__panel {
    align-items: center;
    display: flex;
    height: 100%;
    inset: 0;
    justify-content: center;
    overflow: hidden;
    position: absolute;
}

.bv-hero__chaos {
    background: #0a0a0a;
    color: #fff;
    z-index: 1;
}

.bv-hero__solution {
    background-color: var(--bv-surface);
    background-image: url('../img/textures/showcase-bg.jpg');
    background-size: cover;
    background-position: center;
    clip-path: inset(0 100% 0 0);
    color: var(--bv-text);
    pointer-events: none;
    z-index: 2;
}

.bv-hero__solution::before {
    background: rgba(252, 249, 248, 0.88);
    content: '';
    inset: 0;
    position: absolute;
    z-index: 0;
}

.bv-hero__inner--solution {
    position: relative;
    z-index: 10;
}

.bv-hero__inner {
    align-items: center;
    display: flex;
    gap: clamp(2rem, 6vw, 5rem);
    justify-content: center;
    padding: 6rem 1.5rem 2.5rem;
    width: min(1180px, 100%);
}

.bv-hero__inner--chaos {
    flex-direction: row;
}

.bv-hero__copy {
    max-width: 560px;
}

.bv-hero__copy h1,
.bv-hero__copy h2 {
    font-size: clamp(3rem, 7vw, 6.4rem);
    font-weight: 900;
    line-height: 0.98;
    margin: 0 0 1.45rem;
}

.bv-hero__copy h2 span {
    color: var(--bv-primary);
}

.bv-hero__copy p {
    color: #6b7280;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.65;
    margin: 0 0 2rem;
}

.bv-hero__copy--chaos p {
    color: #9ca3af;
}

/* ── Flash overlay ── */
#flash-overlay {
    background: #fff;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 100;
}

/* ── Bolt background symbol ── */
#bv-bg-symbol {
    align-items: center;
    display: flex;
    filter: drop-shadow(0 0 50px rgba(0, 209, 255, 0.3));
    height: 120vh;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    z-index: 1;
}

#bv-bg-symbol svg {
    height: 100%;
    width: auto;
}

#bolt-path {
    clip-path: inset(0 0 100% 0);
}

/* ── Chaos phone (Instagram DM Mockup) ── */
.bv-chaos-phone-wrap {
    filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.8));
    flex-shrink: 0;
    height: 543px;
    position: relative;
    width: 280px;
    z-index: 20;
}

.bv-chaos-phone-wrap img {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.bv-chaos-phone-screen {
    background: #000;
    border-radius: 6% 6% 6% 6%;
    display: flex;
    flex-direction: column;
    height: 85%;
    left: 10%;
    overflow: hidden;
    position: absolute;
    top: 6.85%;
    width: 77%;
}

.bv-ig-screen {
    background: #000;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.bv-ig-header {
    align-items: center;
    border-bottom: 1px solid #262626;
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
}

.bv-ig-header-left {
    align-items: center;
    display: flex;
    gap: 10px;
}

.bv-ig-avatar {
    align-items: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.bv-ig-info {
    display: flex;
    flex-direction: column;
}

.bv-ig-name {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.bv-ig-username {
    color: #a8a8a8;
    font-size: 10px;
}

.bv-ig-header-icons {
    color: #fff;
    display: flex;
    gap: 12px;
}

.bv-ig-header-icons .material-symbols-outlined {
    font-size: 20px;
}

.bv-ig-chat {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    padding: 12px;
}

.bv-ig-date {
    align-self: center;
    color: #a8a8a8;
    font-size: 10px;
    margin-bottom: 10px;
}

.bv-ig-bubble {
    background: #262626;
    border-radius: 18px;
    color: #efefef;
    font-size: 11px;
    line-height: 1.4;
    max-width: 85%;
    padding: 8px 12px;
}

.bv-ig-bubble--right {
    align-self: flex-end;
    background: linear-gradient(45deg, #a307ba, #5851db);
    color: #fff;
}

.bv-ig-footer {
    padding: 10px;
}

.bv-ig-input-wrap {
    align-items: center;
    border: 1px solid #363636;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    padding: 8px 14px;
}

.bv-ig-input {
    color: #a8a8a8;
    font-size: 11px;
}

.bv-ig-footer-icons {
    color: #fff;
    display: flex;
    gap: 10px;
}

.bv-ig-footer-icons .material-symbols-outlined {
    font-size: 18px;
}

@media (min-width: 768px) {

    .bv-chaos-phone-wrap,
    .bv-solution-phone-wrap {
        height: 620px;
        width: 320px;
    }
}

/* ── Solution phone frame ── */
.bv-solution-phone-wrap {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.18));
    flex-shrink: 0;
    height: 543px;
    position: relative;
    width: 280px;
    z-index: 20;
}

.bv-solution-phone-wrap img {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.bv-solution-phone-screen {
    background: #ECE5DD;
    border-radius: 6% 6% 9% 9%;
    display: flex;
    flex-direction: column;
    height: 83.95%;
    left: 10.78%;
    overflow: hidden;
    position: absolute;
    top: 6.85%;
    width: 75%;
}

/* ── WhatsApp mockup ── */
.bv-wa-header {
    align-items: center;
    background: #128C7E;
    display: flex;
    flex-shrink: 0;
    gap: 7px;
    padding: 8px 10px;
}

.bv-wa-back {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
}

.bv-wa-avatar {
    align-items: center;
    background: var(--bv-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    letter-spacing: -0.5px;
    width: 34px;
}

.bv-wa-info {
    flex: 1;
    min-width: 0;
}

.bv-wa-name {
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.bv-wa-status {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-size: 10px;
}

.bv-wa-icons {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 12px;
}

.bv-wa-chat {
    background: #ECE5DD;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    padding: 8px;
    scrollbar-width: thin;
}

.bv-wa-date {
    align-self: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    color: #555;
    font-size: 10.5px;
    margin-bottom: 4px;
    padding: 2px 10px;
}

.bv-wa-typing {
    align-items: center;
    align-self: flex-start;
    background: #fff;
    border-bottom-left-radius: 2px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 3px;
    opacity: 0;
    padding: 10px 14px;
    transition: opacity 0.3s ease;
}

.bv-wa-typing.is-active {
    opacity: 1;
}

.bv-wa-typing span {
    background: #999;
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

@keyframes bv-typing-dot {

    0%,
    60%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

.bv-wa-typing.is-active span:nth-child(1) {
    animation: bv-typing-dot 1s ease infinite 0s;
}

.bv-wa-typing.is-active span:nth-child(2) {
    animation: bv-typing-dot 1s ease infinite 0.15s;
}

.bv-wa-typing.is-active span:nth-child(3) {
    animation: bv-typing-dot 1s ease infinite 0.3s;
}

.bv-wa-bubble-wrap {
    align-self: flex-start;
    max-width: 93%;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.bv-wa-bubble-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bv-wa-bubble {
    background: #fff;
    border-bottom-left-radius: 2px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    color: #111;
    font-size: 10.5px;
    line-height: 1.6;
    padding: 8px 10px 4px;
}

.bv-wa-bubble strong {
    color: #111;
    font-weight: 700;
}

.bv-wa-bubble code {
    background: #f0f0f0;
    border-radius: 3px;
    font-family: "Courier New", monospace;
    font-size: 9.5px;
    padding: 1px 4px;
}

.bv-wa-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 5px 0;
}

.bv-wa-time {
    color: #999;
    font-size: 9.5px;
    margin-top: 3px;
    text-align: right;
}

.bv-wa-input-bar {
    align-items: center;
    background: #F0F0F0;
    border-top: 1px solid #E0E0E0;
    display: flex;
    flex-shrink: 0;
    gap: 6px;
    padding: 6px 8px;
}

.bv-wa-emoji {
    flex-shrink: 0;
    font-size: 18px;
    opacity: 0.6;
}

.bv-wa-field {
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    color: #999;
    display: flex;
    flex: 1;
    font-family: Inter, sans-serif;
    font-size: 11px;
    height: 32px;
    padding: 0 12px;
}

.bv-wa-mic {
    align-items: center;
    background: #128C7E;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.bv-hero__hint {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    bottom: 1.5rem;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    gap: 0.5rem;
    left: 50%;
    padding: 0.75rem 1rem;
    position: absolute;
    transform: translateX(-50%);
    z-index: 5;
}

.bv-showcase {
    background: var(--bv-surface);
    overflow: hidden;
    padding: 6.5rem 0;
}

.bv-showcase__grid,
.bv-integrations__grid {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 6vw, 5rem);
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
}

.bv-showcase__copy h2,
.bv-integrations__copy h2,
.bv-results__copy h2 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.04;
    margin: 0.9rem 0 1rem;
}

.bv-showcase__copy p,
.bv-integrations__copy p,
.bv-results__copy p {
    color: var(--bv-muted);
    font-size: 1.08rem;
    line-height: 1.72;
    margin: 0 0 1.6rem;
}

.bv-proof-list {
    display: grid;
    gap: 0.9rem;
}

.bv-proof-list span {
    align-items: center;
    color: #374151;
    display: flex;
    font-weight: 800;
    gap: 0.7rem;
}

.bv-proof-list i {
    align-items: center;
    background: #dcfce7;
    border-radius: 999px;
    color: #16a34a;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.bv-showcase__stage {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.bv-store-phone {
    background: #111827;
    border: 10px solid #111827;
    border-radius: 48px;
    box-shadow: 0 35px 90px rgba(107, 0, 255, 0.12);
    height: 610px;
    overflow: hidden;
    position: relative;
    width: 306px;
}

.bv-store-phone__notch {
    background: #111827;
    border-radius: 0 0 18px 18px;
    height: 28px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 132px;
    z-index: 4;
}

.bv-store-screen {
    background: #fff;
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.45s ease;
    overflow: hidden;
}

.bv-store-screen.is-active {
    opacity: 1;
    z-index: 2;
}

.bv-store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.bv-store-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107, 0, 255, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    z-index: 10;
}

.bv-store-overlay span {
    background: #fff;
    color: var(--bv-primary);
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bv-store-screen:hover .bv-store-overlay {
    opacity: 1;
}

.bv-store-screen:hover .bv-store-overlay span {
    transform: translateY(0);
}

.bv-store-screen:hover .bv-store-img {
    transform: scale(1.05);
}

.bv-store-controls-wrapper {
    position: relative;
    width: min(440px, 100%);
    margin-top: 1.6rem;
}

/* Gradientes nas bordas */
.bv-store-controls-wrapper::before,
.bv-store-controls-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bv-store-controls-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bv-surface) 0%, rgba(252, 249, 248, 0) 100%);
}

.bv-store-controls-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bv-surface) 0%, rgba(252, 249, 248, 0) 100%);
}

.bv-store-controls {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.8rem 60px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    position: relative;
}

.bv-store-controls::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.bv-store-progress {
    background: #e5e7eb;
    border-radius: 999px;
    height: 5px;
    overflow: hidden;
    margin: 0 60px 0.8rem;
}

.bv-store-progress span {
    background: var(--bv-primary);
    display: block;
    height: 100%;
    width: 0;
}

.bv-store-progress span.is-running {
    animation: bv-store-progress 4s linear forwards;
}

@keyframes bv-store-progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.bv-store-controls button {
    flex: 0 0 72px;
    height: 72px;
    background: #ebebeb;
    /* Fundo mais escuro para contraste inicial */
    border: 1.5px solid var(--bv-border);
    border-radius: 14px;
    cursor: pointer;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    filter: grayscale(1);
}

.bv-store-controls button img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Filtro para salvar logos brancos no fundo claro */
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bv-store-controls button.is-active {
    background: #ffffff;
    border-color: var(--bv-primary);
    box-shadow: 0 10px 25px rgba(107, 0, 255, 0.2);
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-4px) scale(1.05);
    z-index: 2;
}

.bv-store-controls button:hover {
    background: #ffffff;
    opacity: 1;
    filter: grayscale(0);
    border-color: var(--bv-primary);
}

.bv-integrations,
.bv-pricing,
.bv-faq {
    background: #fff;
    overflow: hidden;
    padding: 6.5rem 0;
}

.bv-check-list {
    display: grid;
    gap: 1.1rem;
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 0;
}

.bv-check-list li {
    display: grid;
    gap: 0.2rem 0.9rem;
    grid-template-columns: 42px 1fr;
}

.bv-check-list i {
    align-items: center;
    background: #dcfce7;
    border-radius: 50%;
    color: #16a34a;
    display: flex;
    grid-row: span 2;
    height: 36px;
    justify-content: center;
    margin-top: 0.15rem;
    width: 36px;
}

.bv-check-list strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
}

.bv-check-list span {
    color: #6b7280;
    line-height: 1.5;
}

.bv-help-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--bv-border);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    color: var(--bv-muted);
    display: inline-flex;
    gap: 0.9rem;
    padding: 1rem;
    text-decoration: none;
}

.bv-help-card i {
    align-items: center;
    background: #ecfdf5;
    border-radius: 50%;
    color: #16a34a;
    display: flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.bv-help-card strong {
    color: var(--bv-text);
    display: block;
}

.bv-integration-panel {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: clamp(1.4rem, 4vw, 2.2rem);
    position: relative;
}

.bv-integration-panel::before {
    display: none;
}

z-index: -1;
}

.bv-integration-panel__head,
.bv-erp-progress__top,
.bv-erp-progress__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bv-integration-panel__head {
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
}

.bv-integration-panel__head strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.bv-integration-panel__head span {
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.8);
    height: 12px;
    width: 12px;
}

.bv-erp-card {
    background: #f9fafb;
    border: 1px solid #eef2f7;
    border-radius: 22px;
    gap: 1rem;
    margin-bottom: 1.1rem;
    padding: 1rem;
}

.bv-erp-card>div:nth-child(2),
.bv-erp-progress__top>div:nth-child(2) {
    flex: 1;
}

.bv-erp-logo {
    align-items: center;
    border-radius: 14px;
    color: #fff;
    display: flex;
    font-size: 0.78rem;
    font-weight: 900;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.bv-erp-logo--green {
    background: #16a34a;
}

.bv-erp-logo--blue {
    background: #2563eb;
}

.bv-erp-card strong,
.bv-erp-progress__top strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
}

.bv-erp-card span,
.bv-erp-progress__top span {
    color: #16a34a;
    font-size: 0.85rem;
    font-weight: 800;
}

.bv-erp-card em {
    background: #22c55e;
    border-radius: 999px;
    display: block;
    height: 30px;
    position: relative;
    width: 54px;
}

.bv-erp-card em::after {
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 22px;
    position: absolute;
    right: 4px;
    top: 4px;
    width: 22px;
}

.bv-erp-progress {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 22px;
    padding: 1.1rem;
}

.bv-erp-progress__top {
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.bv-erp-progress__top span,
.bv-erp-progress__label strong {
    color: #2563eb;
}

.bv-erp-progress__label {
    color: #6b7280;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}



.bv-pulse-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    animation: bv-pulse 2s infinite;
}

@keyframes bv-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1.1);
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.bv-erp-switch {
    width: 44px !important;
    height: 26px !important;
    min-width: 44px !important;
    flex: 0 0 40px !important;
    background: #cbd5e1;
    border-radius: 99px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.bv-erp-switch::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bv-erp-switch.is-active {
    background: #22c55e;
}

.bv-erp-switch.is-active::after {
    left: 21px;
}

.bv-erp-progress__bar {
    background: #dbeafe;
    border-radius: 999px;
    height: 12px;
    overflow: hidden;
    position: relative;
}

.bv-erp-progress__bar span {
    background: #3b82f6;
    border-radius: inherit;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bv-erp-progress__bar span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: bv-shine 2s infinite;
}

@keyframes bv-shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(500%) skewX(-15deg);
    }
}

@keyframes bv-erp-progress {
    0% {
        width: 0;
    }

    55% {
        width: 76%;
    }

    100% {
        width: 100%;
    }
}

.bv-marquee-container {
    position: relative;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--bv-border);
}

.bv-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.bv-marquee-fade--left {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.bv-marquee-fade--right {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.bv-marquee__track {
    animation: bv-marquee 30s linear infinite;
    display: flex;
    gap: 4rem;
    min-width: max-content;
}

.bv-marquee__track:hover {
    animation-play-state: paused;
}

.bv-marquee__track span {
    color: #d1d5db;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.bv-marquee__track span:hover {
    color: var(--bv-primary);
    transform: scale(1.05);
}

@keyframes bv-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.bv-features,
.bv-results,
.bv-testimonials,
.bv-guarantee {
    background: var(--bv-surface);
    overflow: hidden;
    padding: 6.5rem 0;
}

.bv-features {
    padding: 5rem 0;
}

.bv-features .bv-section-head {
    margin-bottom: 2.25rem;
}

.bv-features .bv-section-head h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 0.45rem 0 0.5rem;
}

.bv-features .bv-section-head p {
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 700px;
}

.bv-organic-grid {
    display: grid;
    gap: 1.35rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bv-og-card {
    background: #f0eafd;
    border: 1px solid rgba(107, 0, 255, 0.08);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.4rem, 2vw, 2rem);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bv-og-card:hover {
    background: var(--bv-primary);
    box-shadow: 0 26px 68px rgba(107, 0, 255, 0.25);
    color: #fff;
    transform: translateY(-3px);
}

.bv-og-card:hover .bv-og-card__head i {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.bv-og-card:hover .bv-og-card__head h3 {
    color: #fff;
}

.bv-og-card:hover .bv-og-card__desc {
    color: rgba(255, 255, 255, 0.82);
}

.bv-og-card__head {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bv-og-card__head i {
    align-items: center;
    background: #fff;
    border-radius: 16px;
    color: var(--bv-primary);
    display: flex;
    flex: 0 0 auto;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.bv-og-card__head h3 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.bv-og-card__desc {
    color: rgba(73, 69, 79, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}

.bv-results__card {
    align-items: center;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 34px;
    box-shadow: var(--bv-shadow);
    display: grid;
    gap: 3rem;
    grid-template-columns: 0.9fr 1.1fr;
    padding: clamp(1.5rem, 5vw, 3.5rem);
}

.bv-results__copy h2 {
    margin-top: 0;
}

.bv-results__stats {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.bv-results__stats div {
    border-left: 4px solid var(--bv-primary);
    padding-left: 1.1rem;
}

.bv-results__stats div:nth-child(2) {
    border-color: var(--bv-secondary);
}

.bv-results__stats strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1;
}

.bv-results__stats span {
    color: var(--bv-muted);
    display: block;
    font-weight: 700;
    line-height: 1.45;
    margin-top: 0.35rem;
}

.bv-results__map {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.bv-results__map img {
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.15));
    max-height: 520px;
    max-width: 100%;
    object-fit: contain;
}

.bv-results__map span {
    align-items: center;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(28, 27, 31, 0.09);
    color: var(--bv-primary);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    gap: 0.7rem;
    letter-spacing: 0.1em;
    margin-top: 1.3rem;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
}

.bv-results__map i {
    background: var(--bv-primary);
    border-radius: 50%;
    display: inline-block;
    height: 11px;
    width: 11px;
}

/* ── STEPS SECTION (NEW DESIGN) ── */
.bv-steps {
    background: var(--bv-surface);
    overflow: hidden;
    padding: 8rem 0;
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.bv-steps .bv-section-head {
    max-width: 960px;
}

.bv-steps .bv-section-head h2 {
    font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.bv-stepper__row {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 3rem auto;
    max-width: 800px;
    width: 100%;
}

.bv-step-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.bv-step-bubble {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #E7E0EC;
    color: #49454F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid transparent;
    transition: background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.bv-step-tab.is-active .bv-step-bubble {
    background: var(--bv-primary);
    color: #fff;
    border-color: var(--bv-primary);
    box-shadow: 0 0 0 8px rgba(107, 0, 255, 0.15);
}

.bv-step-tab.is-done .bv-step-bubble {
    background: var(--bv-primary);
    color: #fff;
}

.bv-step-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #79747E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.4s;
}

.bv-step-tab.is-active .bv-step-label {
    color: var(--bv-primary);
}

.bv-step-connector {
    flex: 1;
    height: 3px;
    background: #E7E0EC;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1.4rem;
    /* Alinhamento com o centro das bolhas */
}

.bv-step-connector-fill {
    height: 100%;
    width: 0;
    background: var(--bv-primary);
    border-radius: 999px;
}

.bv-stepper__panels {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    /* Altura será controlada via JS ou min-height */
    min-height: 400px;
}

.bv-step-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(107, 0, 255, 0.1);
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: 0 12px 50px rgba(107, 0, 255, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bv-step-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .bv-step-panel {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }
}

.bv-step-panel__kicker {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bv-primary);
    margin-bottom: 0.6rem;
}

.bv-step-panel__icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
    background: rgba(107, 0, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bv-step-panel__icon .material-symbols-outlined {
    font-size: 1.6rem;
    color: var(--bv-primary);
}

.bv-step-panel h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--bv-text);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.bv-step-panel p {
    font-size: 1.05rem;
    color: var(--bv-muted);
    line-height: 1.7;
}

.bv-step-panel__visual {
    border-radius: 1.5rem;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bv-step-panel__visual--v1 {
    background: linear-gradient(135deg, #6B00FF, #9B40FF);
}

.bv-step-panel__visual--v2 {
    background: linear-gradient(135deg, #00D1FF, #0098CC);
}

.bv-step-panel__visual--v3 {
    background: linear-gradient(135deg, #111827, #3d3a45);
}

.vis-in {
    text-align: center;
    padding: 2rem;
}

.vis-in i {
    font-size: 3.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.vis-in small {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
}

.vis-in strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    margin-top: 0.4rem;
}

/* ── CTA BLOCK ── */
.bv-stepper__cta {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid rgba(107, 0, 255, 0.1);
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: 0 12px 50px rgba(107, 0, 255, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    bottom: 0;
}

@media (max-width: 768px) {
    .bv-stepper__cta {
        padding: 2rem;
    }
}

.bv-stepper__cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--bv-text);
    text-align: center;
    line-height: 1.15;
}

.bv-stepper__cta-title span {
    color: var(--bv-primary);
}

.bv-stepper__cta-sub {
    font-size: 0.85rem;
    color: #79747E;
}

.bv-stepper__cta-sub strong {
    color: var(--bv-primary);
}

/* ── HINT ── */
.bv-stepper__hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.4s;
    z-index: 10;
}

.bv-stepper__hint span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #79747E;
}

.bv-stepper__hint-arrow {
    width: 20px;
    height: 20px;
    border-right: 2.5px solid var(--bv-primary);
    border-bottom: 2.5px solid var(--bv-primary);
    transform: rotate(45deg);
    animation: bv-bounce-mini 1s ease-in-out infinite;
}

@keyframes bv-bounce-mini {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(4px, 4px);
    }
}

/* ── HELPERS ── */
.bv-steps.is-locked {
    overflow: hidden !important;
}

font-family: "Plus Jakarta Sans",
sans-serif;
gap: 0.75rem;
justify-content: center;
min-height: 220px;
padding: 2rem;
text-align: center;
}

.bv-stepper__visual i {
    font-size: 3.5rem;
}

.bv-stepper__visual strong {
    font-size: 1.05rem;
}

.bv-stepper__visual--one {
    background: linear-gradient(135deg, var(--bv-primary), #9b40ff);
}

.bv-stepper__visual--two {
    background: linear-gradient(135deg, var(--bv-secondary), #008fbc);
}

.bv-stepper__visual--three {
    background: linear-gradient(135deg, #1c1b1f, #3d3a45);
}

.bv-stepper__actions {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.bv-stepper__actions button {
    border: 1px solid var(--bv-border);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
    min-width: 110px;
    padding: 0.85rem 1.1rem;
}

.bv-stepper__actions button:last-child {
    background: var(--bv-primary);
    border-color: var(--bv-primary);
    color: #fff;
}

.bv-pricing__cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 960px;
}

.bv-price-card {
    background: #fff;
    border: 1.5px solid var(--bv-border);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bv-price-card:hover {
    box-shadow: 0 18px 48px rgba(28, 27, 31, 0.08);
    transform: translateY(-4px);
}

.bv-price-card--featured {
    border-color: var(--bv-primary);
    box-shadow: 0 0 0 4px rgba(107, 0, 255, 0.08), 0 18px 48px rgba(107, 0, 255, 0.13);
}

.bv-price-card__badge {
    background: linear-gradient(135deg, var(--bv-primary), #9b40ff);
    border-radius: 12px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    left: 50%;
    letter-spacing: 0.08em;
    padding: 0.42rem 1.1rem;
    position: absolute;
    text-transform: uppercase;
    top: -15px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.bv-price-card header {
    text-align: center;
}

.bv-price-card h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0;
}

.bv-price-card header p {
    color: #79747e;
    font-size: 0.88rem;
    margin: 0.3rem 0 0;
}

.bv-price {
    align-items: baseline;
    display: flex;
    justify-content: center;
    text-align: center;
}

.bv-price span {
    font-weight: 900;
    margin-right: 0.3rem;
}

.bv-price strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
}

.bv-price small {
    font-size: 0.55em;
}

.bv-price em {
    color: #79747e;
    font-style: normal;
    font-weight: 700;
    margin-left: 0.35rem;
}

.bv-price-card mark {
    align-self: center;
    background: rgba(107, 0, 255, 0.08);
    border-radius: 12px;
    color: var(--bv-primary);
    font-weight: 900;
    padding: 0.35rem 0.8rem;
}

.bv-price-card ul {
    display: grid;
    gap: 0.7rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bv-price-card li {
    align-items: center;
    color: var(--bv-muted);
    display: flex;
    font-size: 0.92rem;
    gap: 0.5rem;
}

.bv-price-card li::before {
    color: var(--bv-primary);
    content: "check_circle";
    font-family: "Material Symbols Outlined";
    font-size: 1.05rem;
}

.bv-price-card .bv-button {
    margin-top: auto;
}

.bv-pricing__guarantee {
    color: #79747e;
    font-weight: 700;
    margin: 1.6rem 0 0;
    text-align: center;
}

.bv-pricing__guarantee strong {
    color: var(--bv-primary);
}

.bv-quote-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.bv-quote-mark {
    font-family: serif;
    font-size: 12rem;
    color: rgba(107, 0, 255, 0.05);
    line-height: 1;
    position: absolute;
    top: -2rem;
    left: -2.5rem;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.bv-quote-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.2;
    color: var(--bv-text);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.bv-quote-text span.highlight {
    color: var(--bv-primary);
    position: relative;
}

.bv-quote-text span.highlight::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(107, 0, 255, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.bv-author-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.bv-author-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bv-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(107, 0, 255, 0.15);
    flex-shrink: 0;
}

.bv-author-info {
    display: flex;
    flex-direction: column;
}

.bv-author-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--bv-text);
    line-height: 1.2;
}

.bv-author-role,
.bv-author-results {
    display: none !important;
}

.bv-quote-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 4.5rem;
}

.bv-quote-ctrl {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--bv-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bv-text);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.bv-quote-ctrl:hover {
    border-color: var(--bv-primary);
    color: var(--bv-primary);
    background: rgba(107, 0, 255, 0.04);
    transform: scale(1.05);
}

.bv-quote-ctrl:active {
    transform: scale(0.95);
}

.bv-quote-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1.25rem;
}

.bv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bv-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bv-dot.is-active {
    background: var(--bv-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(107, 0, 255, 0.3);
}

@media (max-width: 768px) {
    .bv-quote-mark {
        font-size: 8rem;
        top: -1.5rem;
        left: -1rem;
    }

    .bv-author-wrap {
        margin-top: 2.5rem;
    }

    .bv-quote-controls {
        margin-top: 3.5rem;
        justify-content: center;
    }
}

.bv-guarantee__wrap {
    background: #fff;
    border: 1px solid var(--bv-border);
    border-radius: 38px;
    box-shadow: var(--bv-shadow);
    overflow: hidden;
}

.bv-guarantee__head {
    background: var(--bv-dark);
    color: #fff;
    overflow: hidden;
    padding: clamp(3rem, 7vw, 5rem) 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    text-align: left;
}

.bv-guarantee__head::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
    border-radius: 50%;
    content: "";
    height: 560px;
    left: 50%;
    position: absolute;
    top: -220px;
    transform: translateX(-50%);
    width: 560px;
}

.bv-guarantee__head img {
    display: block;
    height: clamp(120px, 15vw, 180px);
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}

.bv-guarantee__info {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.bv-guarantee__head h2 {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 900;
    margin: 0 0 0.5rem;
    line-height: 1.1;
}

.bv-guarantee__head p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
}

.bv-guarantee__cards {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, 1fr);
    padding: clamp(1.4rem, 4vw, 3rem);
}

.bv-guarantee__cards article {
    background: #f8fafc;
    border: 1px solid var(--bv-border);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
}

.bv-guarantee__cards i {
    align-items: center;
    background: #fff;
    border: 1px solid var(--bv-border);
    border-radius: 16px;
    color: var(--bv-primary);
    display: inline-flex;
    height: 56px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 56px;
}

.bv-guarantee__cards h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 0 0.6rem;
}

.bv-guarantee__cards p {
    color: var(--bv-muted);
    line-height: 1.6;
    margin: 0;
}

.bv-faq__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 3rem 0;
}

.bv-faq__col {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.bv-section-head--center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bv-section-head--center .bv-tag {
    margin: 0 auto 1rem;
}

.bv-section-head--center p {
    margin: 0 auto;
    max-width: 600px;
}

.bv-faq-card {
    background: #fff;
    border: 1px solid var(--bv-border);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bv-faq-card.is-active {
    border-color: var(--bv-primary);
    box-shadow: 0 12px 30px rgba(107, 0, 255, 0.08);
}

.bv-faq-card button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--bv-text);
    cursor: pointer;
    display: flex;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.08rem;
    font-weight: 900;
    gap: 1rem;
    justify-content: space-between;
    line-height: 1.35;
    padding: 1.35rem 1.5rem;
    text-align: left;
    width: 100%;
}

.bv-faq-card i {
    align-items: center;
    background: rgba(107, 0, 255, 0.07);
    border-radius: 50%;
    color: var(--bv-primary);
    display: flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    width: 34px;
}

.bv-faq-card.is-active i {
    background: var(--bv-primary);
    color: #fff;
    transform: rotate(45deg);
}

.bv-faq-card>div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bv-faq-card.is-active>div {
    max-height: 220px;
}

.bv-faq-card p {
    color: var(--bv-muted);
    line-height: 1.7;
    margin: 0;
    padding: 0 1.5rem 1.35rem;
}

.bv-support-box {
    align-items: center;
    background: #fff;
    border: 1px dashed var(--bv-border);
    border-radius: 24px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.5rem;
}

.bv-support-box span {
    color: var(--bv-muted);
    font-weight: 700;
}

.bv-support-box strong {
    color: var(--bv-text);
}

.bv-support-box a:not(.bv-button) {
    color: var(--bv-primary);
    flex: 0 0 auto;
    font-weight: 900;
    text-decoration: none;
}

.bv-final-cta {
    background: var(--bv-primary);
    color: #fff;
    padding: clamp(5rem, 10vw, 7rem) 0;
    text-align: center;
}

.bv-final-cta h2 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.04;
    margin: 0 0 1.8rem;
}

.bv-footer {
    background: #f8fafc;
    border-top: 1px solid var(--bv-border);
    padding: 4rem 0 2rem;
}

.bv-footer__grid {
    align-items: start;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.6fr repeat(3, 1fr);
}

.bv-footer img {
    display: block;
    height: 38px;
    margin-bottom: 1rem;
    object-fit: contain;
    width: auto;
}

.bv-footer p {
    color: var(--bv-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
}

.bv-footer nav {
    display: grid;
    gap: 0.72rem;
}

.bv-footer strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
}

.bv-footer a {
    color: var(--bv-muted);
    text-decoration: none;
}

.bv-footer a:hover {
    color: var(--bv-primary);
}

.bv-footer__bottom {
    align-items: center;
    border-top: 1px solid var(--bv-border);
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.bv-footer__bottom p {
    white-space: nowrap;
}

.bv-footer__bottom div {
    display: flex;
    gap: 1.25rem;
}

.bv-social-link {
    color: var(--bv-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bv-social-link:hover {
    color: var(--bv-primary);
    transform: translateY(-3px);
}

.bv-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

[data-bv-reveal] {
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {

    .bv-page *,
    .bv-page *::before,
    .bv-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.bv-desktop-only {
    display: block;
}

.bv-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .bv-desktop-only {
        display: none !important;
    }

    .bv-mobile-only {
        display: block !important;
    }
}

/* ── MOBILE STEPS ── */
.bv-steps-mobile {
    padding: 5rem 0;
    background: var(--bv-surface);
}

.bv-steps-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.bv-step-card-mobile {
    background: #fff;
    border: 1px solid rgba(107, 0, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(107, 0, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.bv-step-card-mobile__number {
    width: 42px;
    height: 42px;
    background: var(--bv-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(107, 0, 255, 0.2);
}

.bv-step-card-mobile h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--bv-text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.bv-step-card-mobile p {
    font-size: 1rem;
    color: var(--bv-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bv-step-card-mobile__visual {
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bv-step-card-mobile__visual i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bv-step-card-mobile__visual strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
}

.bv-step-card-mobile__visual small {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 700;
}

.bv-steps-mobile__cta {
    background: #fff;
    border: 1px solid var(--bv-primary);
    border-radius: 2rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 15px 40px rgba(107, 0, 255, 0.1);
}

.bv-steps-mobile__cta h3 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
}

.bv-steps-mobile__cta h3 span {
    color: var(--bv-primary);
}

.bv-steps-mobile__cta .bv-button {
    width: 100%;
}

/* ── SHOWCASE MOBILE ── */
.bv-showcase-mobile {
    padding: 5rem 0;
    background: var(--bv-surface);
}

.bv-showcase-mobile__head {
    text-align: center;
    margin-bottom: 3rem;
}

.bv-showcase-mobile__head h2 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.bv-showcase-mobile__head h2 span {
    color: var(--bv-primary);
}

.bv-showcase-mobile__head p {
    color: var(--bv-muted);
    font-size: 1rem;
}

.bv-showcase-mobile__carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 1.5rem 2rem;
    margin: 0 -1.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.bv-showcase-mobile__carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.bv-showcase-card-mobile {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 2.5rem;
    padding: 1.25rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bv-showcase-card-mobile__screen {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f1f5f9;
    margin-bottom: 1.25rem;
    border: 6px solid #111827;
}

.bv-showcase-card-mobile__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.bv-showcase-card-mobile__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0 0.5rem;
}

.bv-showcase-card-mobile__brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    padding: 4px;
    border: 1px solid var(--bv-border);
}

.bv-showcase-card-mobile__brand span {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--bv-text);
}

.bv-showcase-mobile__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--bv-primary);
    font-weight: 800;
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.bv-showcase-mobile__hint i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {


    .bv-showcase__grid,
    .bv-integrations__grid,
    .bv-results__card,
    .bv-faq__grid {
        grid-template-columns: 1fr;
    }

    .bv-showcase__copy,
    .bv-integrations__copy,
    .bv-results__copy {
        text-align: center;
    }

    .bv-showcase__copy .bv-tag,
    .bv-integrations__copy .bv-tag,
    .bv-results__copy .bv-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .bv-proof-list span,
    .bv-help-card {
        justify-content: center;
    }

    .bv-organic-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bv-og-card__desc {
        font-size: 0.85rem;
    }

    .bv-faq__grid {
        gap: 1rem;
    }
}

@media (max-width: 860px) {
    .bv-nav__links {
        display: none;
    }

    .bv-hero {
        min-height: 760px;
    }

    .bv-hero__inner,
    .bv-hero__inner--chaos {
        flex-direction: column-reverse;
        gap: 1.6rem;
        padding-top: 8.5rem;
        text-align: center;
    }

    .bv-hero__inner--solution {
        flex-direction: column;
    }

    .bv-hero__copy h1,
    .bv-hero__copy h2 {
        font-size: clamp(2.55rem, 12vw, 4.2rem);
    }

    .bv-chaos-phone,
    .bv-solution-phone-wrap {
        height: auto;
        width: 100%;
        max-width: 240px;
        aspect-ratio: 280 / 543;
    }

    #bv-bg-symbol {
        right: 0;
        width: 100vw;
    }

    .bv-hero__hint {
        bottom: 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .bv-pricing__cards,
    .bv-guarantee__cards {
        grid-template-columns: 1fr 1fr;
    }

    .bv-masonry {
        column-count: 2;
    }

    .bv-stepper__panels article {
        grid-template-columns: 1fr;
    }

    .bv-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bv-guarantee__head {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .bv-section-shell {
        width: min(100% - 24px, 1180px);
    }

    .bv-nav {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }

    .bv-nav__name {
        font-size: 0.98rem;
        white-space: nowrap;
    }

    .bv-nav__cta {
        font-size: 0.78rem;
        padding: 0.7rem 0.85rem;
        white-space: nowrap;
    }

    .bv-section-head h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .bv-showcase,
    .bv-integrations,
    .bv-features,
    .bv-results,
    .bv-pricing,
    .bv-testimonials,
    .bv-guarantee,
    .bv-faq {
        padding: 4.75rem 0;
    }

    .bv-steps {
        padding: 6rem 0 2rem;
        align-items: flex-start;
    }

    .bv-stepper__row {
        gap: 0;
        margin: 2rem auto;
    }

    .bv-step-bubble {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
        flex-shrink: 0;
        min-width: 42px;
    }

    .bv-step-label {
        font-size: 0.6rem;
    }

    .bv-step-connector {
        margin-bottom: 1.2rem;
    }

    .bv-pricing__cards,
    .bv-guarantee__cards,
    .bv-organic-grid,
    .bv-footer__grid {
        grid-template-columns: 1fr;
    }

    .bv-store-phone {
        height: auto;
        width: 100%;
        max-width: 286px;
        aspect-ratio: 306 / 610;
    }

    .bv-store-controls {
        padding: 0.8rem 1rem;
    }

    .bv-store-controls-wrapper::before,
    .bv-store-controls-wrapper::after {
        width: 20px;
    }

    .bv-integrations__copy,
    .bv-integrations__copy h2,
    .bv-integrations__copy p,
    .bv-integrations__copy li {
        text-align: left !important;
    }

    .bv-stepper__panels {
        align-items: flex-start;
    }

    .bv-step-panel {
        padding: 1.5rem;
    }

    .bv-stepper__tabs {
        grid-template-columns: 1fr;
    }

    .bv-stepper__actions,
    .bv-support-box,
    .bv-footer__bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .bv-footer__bottom p {
        white-space: nowrap;
        font-size: 0.85rem;
        text-align: center;
    }

    .bv-footer__bottom div {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .bv-masonry {
        column-count: 1;
    }

    .bv-footer__bottom {
        gap: 1rem;
    }
}