.bv-app {
    --bv-ink: #eef8ff;
    --bv-muted: #9db2ca;
    --bv-line: rgba(148, 163, 184, 0.19);
    --bv-panel: rgba(8, 20, 40, 0.88);
    width: 100%;
    max-width: none !important;
    margin: 24px 0;
    color: var(--bv-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

.bv-app [hidden] {
    display: none !important;
}

.bv-shell {
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 48% -10%, rgba(34, 211, 238, 0.22), transparent 34%),
        radial-gradient(circle at 90% 22%, rgba(79, 70, 229, 0.22), transparent 31%),
        linear-gradient(180deg, #071225 0%, #020817 62%, #000 100%);
    box-shadow: 0 28px 90px rgba(2, 8, 23, 0.28);
}

.bv-promo {
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) minmax(320px, 1.4fr) auto;
    min-height: 112px;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    margin: 18px;
    padding: 18px clamp(20px, 3vw, 36px);
    border: 1px solid rgba(125, 211, 252, 0.7);
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(110deg, #123d7c 0%, #316dc8 55%, #3d7ce0 100%);
    box-shadow: 0 18px 55px rgba(23, 87, 180, 0.25);
    text-decoration: none !important;
}

.bv-promo-offer {
    display: grid;
    gap: 8px;
    min-height: 72px;
    align-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.36));
}

.bv-promo-offer strong {
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1;
}

.bv-promo-offer small {
    color: #eaf6ff;
    font-size: 12px;
    font-weight: 800;
}

.bv-promo-copy {
    display: grid;
    gap: 6px;
}

.bv-promo-copy strong {
    font-size: clamp(21px, 2.4vw, 34px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.bv-promo-copy small {
    color: #ffd349;
    font-size: clamp(14px, 1.4vw, 18px);
}

.bv-promo-cta {
    min-width: 170px;
    padding: 17px 22px;
    border-radius: 12px;
    color: #09295b;
    background: #ffc62d;
    box-shadow: 0 12px 30px rgba(255, 198, 45, 0.2);
    font-size: 14px;
    font-weight: 950;
    text-align: center;
    white-space: nowrap;
}

.bv-utility {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px clamp(18px, 4vw, 48px);
    border-top: 1px solid var(--bv-line);
    border-bottom: 1px solid var(--bv-line);
    background: rgba(2, 8, 23, 0.6);
}

.bv-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    text-decoration: none !important;
}

.bv-brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid #38bdf8;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #0f172a, #0369a1);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    font-size: 13px;
    font-weight: 950;
}

.bv-brand strong,
.bv-brand small {
    display: block;
}

.bv-brand strong {
    font-size: 14px;
    letter-spacing: 0.11em;
}

.bv-brand small {
    margin-top: 2px;
    color: #38bdf8;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.bv-share {
    position: relative;
}

.bv-share-toggle {
    padding: 10px 15px;
    border: 1px solid rgba(56, 189, 248, 0.34);
    border-radius: 999px;
    color: #d9f6ff;
    background: rgba(14, 165, 233, 0.1);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
}

.bv-share-toggle:hover,
.bv-share-toggle[aria-expanded="true"] {
    border-color: rgba(103, 232, 249, 0.72);
    color: #fff;
    background: rgba(14, 165, 233, 0.2);
}

.bv-share-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 40;
    display: grid;
    width: 220px;
    gap: 4px;
    padding: 11px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
    background: rgba(4, 15, 31, 0.99);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.bv-share-menu > strong {
    padding: 6px 9px 9px;
    color: #fff;
    font-size: 12px;
}

.bv-share-menu a,
.bv-share-menu button {
    width: 100%;
    padding: 10px 11px;
    border: 0;
    border-radius: 10px;
    color: #bfd9eb !important;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    text-decoration: none !important;
}

.bv-share-menu a:hover,
.bv-share-menu button:hover {
    color: #fff !important;
    background: rgba(56, 189, 248, 0.13);
}

.bv-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 58px 22px 36px;
    text-align: center;
}

.bv-badge {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid rgba(56, 189, 248, 0.27);
    border-radius: 999px;
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.09);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.075em;
}

.bv-hero h2 {
    margin: 19px 0 0;
    color: #fff;
    font-size: clamp(38px, 5.4vw, 66px);
    line-height: 0.99;
    letter-spacing: -0.052em;
}

.bv-hero h2 em {
    color: #67e8f9;
    font-style: normal;
}

.bv-hero p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #b5c7db;
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.65;
}

.bv-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    margin-top: 20px;
    color: #8aa1b9;
    font-size: 12px;
    font-weight: 750;
}

.bv-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
    gap: 22px;
    width: min(1320px, calc(100% - 34px));
    margin: 0 auto;
    padding-bottom: 64px;
}

.bv-form-column,
.bv-sticky {
    display: grid;
    align-content: start;
    gap: 17px;
}

.bv-sticky {
    position: sticky;
    top: 18px;
}

.bv-card,
.bv-summary,
.bv-note {
    border: 1px solid var(--bv-line);
    background: var(--bv-panel);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.bv-card {
    padding: clamp(20px, 3vw, 27px);
    border-radius: 23px;
}

.bv-card > h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 21px;
    color: #fff;
    font-size: 17px;
}

.bv-card > h3 i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    font-style: normal;
    font-size: 16px;
}

.bv-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.bv-field {
    display: block;
}

.bv-field > span:first-child,
.bv-group > span:first-child {
    display: block;
    margin-bottom: 8px;
    color: #b8c9dc;
    font-size: 12px;
    font-weight: 800;
}

.bv-control {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    outline: none;
    color: #eef8ff;
    background: rgba(2, 8, 23, 0.76);
    box-shadow: none;
    font: inherit;
    font-size: 14px;
    color-scheme: dark;
    transition: 0.18s ease;
}

.bv-control:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.bv-control::placeholder {
    color: #60758e;
}

.bv-amount-field {
    position: relative;
    display: block !important;
    margin: 0 !important;
}

.bv-amount-field .bv-control {
    padding-right: 54px;
}

.bv-amount-field > small {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #7f95ae;
    font-size: 12px;
    transform: translateY(-50%);
}

.bv-group {
    display: block;
    margin: 0 0 21px;
}

.bv-group:last-child {
    margin-bottom: 0;
}

.bv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bv-chip {
    padding: 9px 13px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    color: #c4d5e8;
    background: rgba(15, 23, 42, 0.68);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    transition: 0.18s ease;
}

.bv-chip:hover {
    border-color: rgba(56, 189, 248, 0.5);
    color: #fff;
}

.bv-chip.is-active {
    border-color: #0ea5e9;
    color: #fff;
    background: linear-gradient(135deg, #0284c7, #2563eb);
    box-shadow: 0 9px 28px rgba(14, 165, 233, 0.2);
}

.bv-stepper {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
}

.bv-stepper button,
.bv-stepper strong {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 12px;
}

.bv-stepper button {
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: #fff;
    background: rgba(2, 8, 23, 0.74);
    cursor: pointer;
    font: inherit;
    font-size: 19px;
}

.bv-stepper strong {
    color: #eaf8ff;
    background: rgba(15, 23, 42, 0.7);
}

.bv-range {
    width: 100%;
    margin: 2px 0 0;
    accent-color: #0ea5e9;
}

.bv-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    color: #7188a2;
    font-size: 10px;
}

.bv-summary {
    overflow: hidden;
    border-radius: 25px;
}

.bv-summary-hero {
    padding: clamp(25px, 3.4vw, 42px);
    background:
        radial-gradient(circle at 90% 5%, rgba(34, 211, 238, 0.18), transparent 34%),
        linear-gradient(145deg, #0f172a, #172554);
}

.bv-summary-hero > span {
    color: #9fb5cf;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.085em;
}

.bv-summary-hero > strong {
    display: block;
    overflow-wrap: anywhere;
    margin-top: 11px;
    color: #fff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.bv-summary-hero > p {
    margin: 8px 0 0;
    color: #a9bdd4;
    font-size: 12px;
}

.bv-summary-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-summary-stats div {
    min-width: 0;
    text-align: center;
}

.bv-summary-stats span,
.bv-summary-stats strong {
    display: block;
}

.bv-summary-stats span {
    color: #7690ad;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.bv-summary-stats strong {
    overflow: hidden;
    margin-top: 7px;
    color: #fff;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bv-budget-check {
    padding: 17px 20px;
    border-bottom: 1px solid var(--bv-line);
    background: rgba(15, 23, 42, 0.5);
}

.bv-budget-check > div:first-child {
    display: flex;
    justify-content: space-between;
    color: #aebed1;
    font-size: 12px;
}

.bv-progress,
.bv-breakdown-bar {
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.13);
}

.bv-progress {
    height: 8px;
    margin-top: 8px;
}

.bv-progress span,
.bv-breakdown-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
}

.bv-progress .is-danger {
    background: #fb7185;
}

.bv-progress .is-success {
    background: #34d399;
}

.bv-budget-check strong.is-danger {
    color: #fb7185;
}

.bv-budget-check strong.is-success {
    color: #34d399;
}

.bv-budget-check p {
    margin: 10px 0 0;
    color: #fda4af;
    font-size: 11px;
    line-height: 1.5;
}

.bv-breakdown {
    padding: clamp(23px, 3vw, 36px);
}

.bv-breakdown > h3 {
    margin: 0 0 21px;
    color: #8298b1;
    font-size: 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.bv-breakdown ul {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bv-breakdown li {
    margin: 0;
    padding: 0;
}

.bv-breakdown li > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
}

.bv-breakdown li > div:first-child > span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b9cade;
}

.bv-breakdown li i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.09);
    font-style: normal;
}

.bv-breakdown li strong {
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.bv-breakdown-bar {
    height: 7px;
    margin: 7px 0 0 38px;
}

.bv-note {
    padding: 15px 17px;
    border-color: rgba(245, 158, 11, 0.25);
    border-radius: 17px;
    color: #fcd34d;
    background: rgba(120, 53, 15, 0.14);
}

.bv-note strong {
    font-size: 12px;
}

.bv-note p {
    margin: 5px 0 0;
    color: #d8b879;
    font-size: 11px;
    line-height: 1.5;
}

.bv-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
    padding: 27px 20px;
    border-top: 1px solid var(--bv-line);
    color: #7188a2;
    font-size: 11px;
    text-align: center;
}

.bv-footer a {
    color: #7dd3fc !important;
    font-weight: 800;
    text-decoration: none !important;
}

.bv-mini {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(56, 189, 248, 0.24);
    border-radius: 20px;
    color: #eaf8ff;
    background:
        radial-gradient(circle at 92% 2%, rgba(34, 211, 238, 0.2), transparent 30%),
        linear-gradient(155deg, #071225 0%, #0b1e38 58%, #020817 100%);
    box-shadow: 0 18px 48px rgba(2, 8, 23, 0.28);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.35;
}

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

.bv-mini-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bv-mini-mark {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.68);
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #0284c7, #2563eb);
    box-shadow: 0 8px 22px rgba(14, 165, 233, 0.2);
    font-size: 19px;
    font-weight: 900;
}

.bv-mini-head strong,
.bv-mini-head small {
    display: block;
}

.bv-mini-head strong {
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.bv-mini-head small {
    margin-top: 2px;
    color: #7dd3fc;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.bv-mini-hook {
    margin: 15px 0 14px;
    color: #c8d9e9;
    font-size: 13px;
    font-weight: 750;
}

.bv-mini-field {
    display: block;
    margin: 0 0 11px;
}

.bv-mini-field > span {
    display: block;
    margin-bottom: 5px;
    color: #91a7bf;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.bv-mini-field select {
    width: 100%;
    min-height: 39px;
    margin: 0;
    padding: 8px 9px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 10px;
    outline: none;
    color: #eef8ff;
    background: rgba(2, 8, 23, 0.8);
    box-shadow: none;
    font: inherit;
    font-size: 12px;
    color-scheme: dark;
}

.bv-mini-field select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.bv-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.bv-mini-check {
    display: flex;
    min-height: 39px;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    padding: 8px 9px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    color: #c8d9e9;
    background: rgba(2, 8, 23, 0.54);
    cursor: pointer;
    font-size: 11px;
    font-weight: 750;
}

.bv-mini-check input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #0ea5e9;
}

.bv-mini-result {
    margin-top: 5px;
    padding: 16px 14px;
    border: 1px solid rgba(56, 189, 248, 0.21);
    border-radius: 15px;
    text-align: center;
    background:
        radial-gradient(circle at 82% 5%, rgba(34, 211, 238, 0.17), transparent 35%),
        rgba(15, 23, 42, 0.8);
}

.bv-mini-result > span,
.bv-mini-result > strong,
.bv-mini-result > small {
    display: block;
}

.bv-mini-result > span {
    color: #8fa8c1;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.bv-mini-result > strong {
    margin-top: 6px;
    color: #fff;
    font-size: clamp(27px, 9vw, 36px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.bv-mini-result > small {
    margin-top: 6px;
    color: #9fb5cf;
    font-size: 10px;
}

.bv-mini-breakdown {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 8px;
}

.bv-mini-breakdown > span {
    min-width: 0;
    padding: 8px 4px;
    border-radius: 9px;
    text-align: center;
    background: rgba(148, 163, 184, 0.08);
}

.bv-mini-breakdown small,
.bv-mini-breakdown strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bv-mini-breakdown small {
    color: #7188a2;
    font-size: 8px;
}

.bv-mini-breakdown strong {
    margin-top: 3px;
    color: #dff6ff;
    font-size: 10px;
}

.bv-mini-cta {
    display: block;
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: 11px;
    color: #fff !important;
    background: linear-gradient(135deg, #0284c7, #2563eb);
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.2);
    font-size: 11px;
    font-weight: 850;
    text-align: center;
    text-decoration: none !important;
}

.bv-mini-cta:hover {
    color: #fff !important;
    filter: brightness(1.08);
}

.bv-mini-note {
    display: block;
    margin-top: 8px;
    color: #617991;
    font-size: 8px;
    text-align: center;
}

@media (max-width: 1050px) {
    .bv-layout {
        grid-template-columns: 1fr;
    }

    .bv-sticky {
        position: static;
    }

    .bv-promo {
        grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.35fr);
    }

    .bv-promo-cta {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 680px) {
    .bv-app {
        margin: 14px 0;
    }

    .bv-shell {
        border-radius: 20px;
    }

    .bv-promo {
        grid-template-columns: 1fr;
        gap: 13px;
        min-height: 0;
        margin: 10px;
        padding: 15px;
        border-radius: 15px;
    }

    .bv-promo-cta {
        grid-column: auto;
        min-width: 0;
        padding: 14px 17px;
    }

    .bv-utility {
        padding: 12px 13px;
    }

    .bv-brand-mark {
        width: 38px;
        height: 38px;
    }

    .bv-brand strong {
        font-size: 12px;
    }

    .bv-brand small {
        font-size: 8px;
    }

    .bv-share-menu {
        position: fixed;
        top: 74px;
        right: 12px;
        width: min(260px, calc(100vw - 24px));
    }

    .bv-hero {
        padding: 42px 18px 31px;
    }

    .bv-hero h2 {
        font-size: 41px;
    }

    .bv-layout {
        width: calc(100% - 20px);
        padding-bottom: 46px;
    }

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

    .bv-card {
        padding: 18px;
        border-radius: 19px;
    }

    .bv-summary-hero,
    .bv-breakdown {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bv-app *,
    .bv-app *::before,
    .bv-app *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
