.bv-page-app {
    background: var(--bv-bg);
}

.bv-section-heading {
    margin-bottom: 16px;
}

.bv-section-heading h2,
.bv-page-hero h1,
.bv-dashboard h1 {
    color: var(--bv-text);
    font-weight: 850;
    letter-spacing: 0;
}

.bv-type-choice {
    margin-bottom: 22px;
}

.bv-type-grid,
.bv-info-grid,
.bv-card-grid,
.bv-stat-grid {
    display: grid;
    gap: 12px;
}

.bv-type-card,
.bv-info-grid article,
.bv-panel,
.bv-stat-card,
.bv-page-content article {
    background: var(--bv-surface-strong);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    box-shadow: var(--bv-shadow);
}

.bv-type-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: space-between;
    padding: 16px;
}

.bv-type-card.is-selected {
    border-color: rgba(31, 122, 63, 0.45);
    box-shadow: 0 14px 34px rgba(31, 122, 63, 0.12);
}

.bv-type-card h3,
.bv-info-grid h2,
.bv-panel h2,
.bv-page-content h2,
.bv-stat-card strong {
    color: var(--bv-text);
    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: 0;
    margin: 0 0 8px;
}

.bv-type-card p,
.bv-info-grid p,
.bv-panel p,
.bv-page-content p,
.bv-stat-card span {
    color: var(--bv-muted);
}

.bv-type-meta,
.bv-type-status {
    color: var(--bv-primary-dark) !important;
    font-weight: 800;
}

.bv-type-status {
    background: #edf6ef;
    border: 1px solid #cfe0d0;
    border-radius: var(--bv-radius);
    display: inline-flex;
    font-size: 0.82rem;
    margin-bottom: 10px;
    padding: 5px 8px;
}

.bv-fixed-warning {
    background: #fff6df;
    border: 1px solid #ead3a2;
    border-radius: var(--bv-radius);
    color: #684500;
    font-size: 0.92rem;
    margin: 12px 0 0;
    padding: 10px 12px;
}

.bv-home-sections,
.bv-page-section {
    padding: 30px 0;
}

.bv-info-grid article,
.bv-page-content article,
.bv-panel {
    padding: 16px;
}

.bv-page-hero {
    padding: 34px 0 18px;
}

.bv-page-hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin: 0;
}

.bv-page-hero p {
    color: var(--bv-muted);
    margin: 12px 0 0;
    max-width: 760px;
}

.bv-page-content {
    display: grid;
    gap: 14px;
    padding-bottom: 36px;
}

.bv-flashes {
    margin-top: 18px;
}

.bv-dashboard {
    padding: 28px 0 40px;
}

.bv-dashboard-header {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.bv-dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.bv-dashboard-tabs a {
    background: var(--bv-surface-strong);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    color: var(--bv-primary);
    font-weight: 800;
    padding: 9px 12px;
}

.bv-dashboard-tabs a.active {
    background: var(--bv-primary);
    color: #fff;
}

.bv-panel {
    margin-bottom: 14px;
}

.bv-form-grid {
    display: grid;
    gap: 12px;
}

.bv-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.bv-table-wrap {
    overflow-x: auto;
}

.bv-table {
    background: #fff;
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.bv-table th,
.bv-table td {
    border-bottom: 1px solid var(--bv-border);
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.bv-table th {
    color: var(--bv-text);
    font-size: 0.88rem;
    text-transform: uppercase;
}

.bv-status {
    border-radius: var(--bv-radius);
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 8px;
}

.bv-status-active,
.bv-status-approved {
    background: #edf6ef;
    color: #155d31;
}

.bv-status-paused,
.bv-status-pending {
    background: #fff6df;
    color: #684500;
}

.bv-status-blocked,
.bv-status-rejected,
.bv-status-locked,
.bv-status-deleted {
    background: #feecec;
    color: #8d1f1f;
}

.bv-muted {
    color: var(--bv-muted);
}

.bv-mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bv-mini-actions .btn {
    min-height: 34px;
    padding: 5px 8px;
}

.bv-stat-card {
    padding: 14px;
}

.bv-stat-card strong {
    display: block;
    font-size: 1.6rem;
}

.bv-bar {
    background: #edf6ef;
    border-radius: var(--bv-radius);
    height: 10px;
    overflow: hidden;
}

.bv-bar span {
    background: var(--bv-primary);
    display: block;
    height: 100%;
}

@media (min-width: 768px) {
    .bv-type-grid,
    .bv-card-grid,
    .bv-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-dashboard-header {
        align-items: center;
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .bv-info-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bv-page-hero h1 {
        font-size: 2.5rem;
    }
}

/* UI/UX rescue for the public QR tool */
:root {
    --bv-bg: #f7f5ef;
    --bv-surface: #ffffff;
    --bv-text: #18231e;
    --bv-muted: #66736c;
    --bv-primary: #237a57;
    --bv-primary-dark: #195f43;
    --bv-primary-soft: #e9f4ee;
    --bv-border: #dde5e0;
    --bv-danger: #b54747;
    --bv-warning: #9a6818;
    --bv-radius: 16px;
    --bv-shadow: 0 10px 28px rgba(24, 35, 30, 0.07);
}

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

body.bv-qr-app {
    background: var(--bv-bg);
    color: var(--bv-text);
    font-size: 16px;
}

.bv-topbar {
    background: rgba(247, 245, 239, 0.98);
    border-bottom: 1px solid var(--bv-border);
}

.bv-topbar-inner {
    min-height: 62px;
    padding-bottom: 8px;
    padding-top: 8px;
}

.bv-brand {
    flex: 0 0 auto;
    font-size: 1rem;
    white-space: nowrap;
}

.bv-brand img {
    max-height: 34px;
    max-width: 128px;
}

.bv-topbar-actions {
    gap: 8px;
}

.bv-nav-link {
    border-radius: 999px;
    color: var(--bv-muted);
    font-size: 0.92rem;
    font-weight: 750;
    padding: 8px 9px;
    text-decoration: none;
}

.bv-nav-link:hover,
.bv-nav-link:focus {
    background: var(--bv-primary-soft);
    color: var(--bv-primary-dark);
    text-decoration: none;
}

.bv-vip-link {
    background: var(--bv-primary-soft);
    border: 1px solid rgba(35, 122, 87, 0.28);
    border-radius: 999px !important;
    color: var(--bv-primary-dark) !important;
    font-weight: 850;
    min-height: 36px;
    padding: 7px 12px;
}

.bv-lang-switch {
    border-radius: 999px;
    padding: 7px 9px;
}

.bv-hero {
    padding: 22px 0 14px;
}

.bv-hero-inner {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
}

.bv-hero-copy {
    max-width: 780px;
}

.bv-kicker {
    color: var(--bv-primary);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.bv-hero h1 {
    font-size: clamp(2rem, 4vw, 3.05rem);
    line-height: 1.08;
    max-width: 880px;
}

.bv-hero-description {
    color: var(--bv-muted);
    font-size: 1.06rem;
    max-width: 720px;
}

.bv-brand-line {
    color: var(--bv-primary-dark);
    font-size: 0.95rem;
    font-weight: 750;
}

.bv-hero-art {
    display: none;
}

.bv-mini-qr {
    background: #fff;
    border: 1px solid var(--bv-border);
    border-radius: 18px;
    box-shadow: var(--bv-shadow);
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(4, 18px);
    padding: 16px;
}

.bv-mini-qr span {
    background: var(--bv-primary);
    border-radius: 5px;
    height: 18px;
    opacity: 0.95;
    width: 18px;
}

.bv-mini-qr span:nth-child(2),
.bv-mini-qr span:nth-child(7),
.bv-mini-qr span:nth-child(9),
.bv-mini-qr span:nth-child(12),
.bv-mini-qr span:nth-child(15) {
    opacity: 0.18;
}

.bv-tool-main {
    padding-bottom: 18px;
}

.bv-type-choice {
    margin-bottom: 18px;
}

.bv-section-heading h2,
.bv-generator-heading h2 {
    font-size: 1.25rem;
    margin: 0;
}

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

.bv-type-card {
    color: inherit;
    min-height: 0;
    padding: 16px;
    text-decoration: none;
}

.bv-type-card:hover,
.bv-type-card:focus {
    border-color: rgba(35, 122, 87, 0.45);
    color: inherit;
    text-decoration: none;
    transform: translateY(-1px);
}

.bv-type-card.is-selected {
    background: var(--bv-primary-soft);
    border-color: var(--bv-primary);
}

.bv-type-title-row {
    align-items: baseline;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.bv-type-title-row strong {
    color: var(--bv-primary-dark);
    font-size: 0.94rem;
    white-space: nowrap;
}

.bv-type-card ul {
    color: var(--bv-text);
    display: grid;
    gap: 4px;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.bv-type-card li::before {
    color: var(--bv-primary);
    content: "\2713";
    font-weight: 850;
    margin-right: 7px;
}

.bv-type-card small {
    color: var(--bv-warning);
    display: block;
    font-weight: 750;
    margin-top: 10px;
}

.bv-type-status {
    border-radius: 999px;
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.bv-generator-shell {
    scroll-margin-top: 86px;
}

.bv-generator-heading {
    margin: 8px 0 14px;
}

.tab-content,
.placeresult,
.bv-panel,
.bv-info-grid article,
.bv-faq article {
    border-radius: var(--bv-radius);
    box-shadow: var(--bv-shadow);
}

.tab-content {
    padding: 18px;
}

.nav-pills {
    background: var(--bv-surface);
    border-radius: var(--bv-radius);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}

.nav-pills .nav-item {
    flex: none;
    min-width: 0;
}

.nav-pills .nav-link {
    font-size: 0.92rem;
    min-height: 44px;
    padding: 8px 9px;
    white-space: normal;
}

.form-control,
.custom-select,
.form-select {
    border-radius: 12px !important;
    font-size: 1rem;
    min-height: 46px;
}

.form-group label,
.custom-file-label,
.small {
    color: var(--bv-text);
    font-size: 0.92rem;
    font-weight: 750;
}

.accordion .btn-outline-primary {
    min-height: 46px;
    text-align: left;
}

.bv-form-actions-primary {
    margin-top: 16px;
    width: 100%;
}

.bv-form-actions-primary .generate_qrcode {
    min-height: 52px;
}

.generate_qrcode.is-loading {
    cursor: wait;
    opacity: 0.8;
}

.bv-preview {
    display: block;
}

.sticky-lg-top {
    top: 78px;
}

.placeresult {
    padding: 18px;
}

.bv-preview-heading h2 {
    font-size: 1.2rem;
}

.bv-preview-status {
    color: var(--bv-primary-dark);
    font-weight: 850;
    min-height: 22px;
}

.bv-preview-status.is-success {
    background: var(--bv-primary-soft);
    border: 1px solid rgba(35, 122, 87, 0.2);
    border-radius: 999px;
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 10px;
}

.resultholder {
    background: #fff;
    border: 1px solid var(--bv-border);
    border-radius: 18px;
    min-height: 300px;
}

.resultholder img,
.resultholder svg {
    max-width: min(100%, 320px);
}

.bv-reset-qr {
    margin-top: 0;
}

.bv-fixed-warning {
    background: #fff8e8;
    border-color: #eedeb7;
    color: var(--bv-warning);
}

.linksholder {
    align-items: stretch;
}

.linksholder .btn {
    min-height: 44px;
}

.linksholder .svgtopng {
    flex-basis: 100%;
}

.bv-powered-by {
    color: var(--bv-muted);
    font-size: 0.88rem;
    margin: 12px 0 0;
    text-align: center;
}

.bv-home-sections {
    padding: 34px 0;
}

.bv-info-grid {
    display: block;
}

.bv-info-grid article {
    box-shadow: none;
    margin-bottom: 12px;
}

.bv-info-grid article:last-child {
    margin-bottom: 0;
}

.bv-seo-layout {
    display: grid;
    gap: 14px;
}

.bv-seo-layout article,
.bv-compare-table {
    background: var(--bv-surface);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    padding: 16px;
}

.bv-seo-layout h2 {
    color: var(--bv-text);
    font-size: 1.1rem;
    font-weight: 850;
    margin: 0 0 8px;
}

.bv-seo-layout p {
    color: var(--bv-muted);
    margin: 0;
}

.bv-compare-table {
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.bv-compare-table [role="row"] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bv-compare-table strong,
.bv-compare-table span {
    border-bottom: 1px solid var(--bv-border);
    color: var(--bv-muted);
    padding: 12px;
}

.bv-compare-table strong {
    background: var(--bv-primary-soft);
    color: var(--bv-primary-dark);
}

.bv-compare-table [role="row"]:last-child span {
    border-bottom: 0;
}

.bv-faq {
    padding: 30px 0;
}

.bv-faq-grid {
    display: grid;
    gap: 10px;
}

.bv-faq details {
    background: var(--bv-surface);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    padding: 14px 16px;
}

.bv-faq summary {
    color: var(--bv-text);
    cursor: pointer;
    font-weight: 850;
}

.bv-faq summary:focus-visible {
    outline: 3px solid rgba(35, 122, 87, 0.28);
    outline-offset: 4px;
}

.bv-faq details p {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .bv-topbar-inner {
        align-items: center;
        flex-direction: row;
    }

    .bv-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-pills {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .bv-info-grid article {
        margin-bottom: 0;
    }

    .bv-seo-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-compare-table {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .bv-hero {
        padding: 28px 0 18px;
    }

    .bv-hero-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .bv-hero-art {
        display: block;
    }

    .bv-type-card {
        padding: 18px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }

    .bv-topbar {
        position: sticky;
    }

    .bv-topbar-inner {
        gap: 8px;
        min-height: 58px;
    }

    .bv-topbar-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, auto));
        justify-content: start;
        width: 100%;
    }

    .bv-topbar-actions .bv-nav-link:nth-of-type(2),
    .bv-topbar-actions .bv-nav-link:nth-of-type(3) {
        display: none;
    }

    .bv-nav-link,
    .bv-vip-link {
        font-size: 0.86rem;
        padding-left: 8px;
        padding-right: 8px;
    }

    .bv-lang-switch {
        grid-column: auto;
    }

    .bv-hero {
        padding: 18px 0 12px;
    }

    .bv-hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.25rem);
    }

    .bv-hero-description {
        font-size: 1rem;
    }

    .bv-brand-line {
        font-size: 0.9rem;
    }

    .bv-tool-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bv-type-card,
    .tab-content,
    .placeresult {
        padding: 14px;
    }

    .nav-pills .nav-link {
        font-size: 0.88rem;
    }

    .resultholder {
        min-height: 260px;
        padding: 14px;
    }

    .resultholder img,
    .resultholder svg {
        max-width: min(100%, 290px);
    }
}

/* Bright Vista QR landing rescue */
.bv-topbar {
    box-shadow: 0 8px 22px rgba(24, 35, 30, 0.05);
    position: sticky;
    top: 0;
    z-index: 20;
}

.bv-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    position: relative;
}

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

.bv-hero {
    background: var(--bv-bg);
}

.bv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.bv-hero-actions .btn,
.bv-price-panel .btn,
.bv-final-cta-actions .btn {
    border-radius: 999px;
    font-weight: 850;
    min-height: 44px;
    padding: 10px 16px;
}

.bv-hero-card {
    background: var(--bv-surface);
    border: 1px solid rgba(35, 122, 87, 0.18);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(24, 35, 30, 0.1);
    max-width: 380px;
    padding: 20px;
}

.bv-hero-card-top {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.bv-hero-card-top span,
.bv-price-panel span {
    background: #fff6df;
    border: 1px solid #efd8a8;
    border-radius: 999px;
    color: #8a5c14;
    font-size: 0.78rem;
    font-weight: 850;
    padding: 5px 10px;
}

.bv-hero-card-top strong {
    color: var(--bv-primary-dark);
    font-size: 0.94rem;
}

.bv-hero-card h2 {
    color: var(--bv-text);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.18;
    margin: 14px 0 8px;
}

.bv-hero-card p,
.bv-dynamic-card p,
.bv-services-section p,
.bv-usecase-inner p,
.bv-final-cta p {
    color: var(--bv-muted);
}

.bv-hero-card ul,
.bv-dynamic-benefits,
.bv-usecase-inner ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 14px 0;
    padding: 0;
}

.bv-hero-card li,
.bv-dynamic-benefits span,
.bv-usecase-inner li {
    align-items: center;
    display: flex;
    gap: 8px;
}

.bv-hero-card li::before,
.bv-dynamic-benefits span::before,
.bv-usecase-inner li::before {
    background: var(--bv-primary-soft);
    border-radius: 999px;
    color: var(--bv-primary-dark);
    content: "\2713";
    display: inline-grid;
    flex: 0 0 22px;
    font-size: 0.8rem;
    font-weight: 900;
    height: 22px;
    place-items: center;
    width: 22px;
}

.bv-type-grid .bv-type-card:not(.is-selected) {
    border-color: rgba(201, 143, 58, 0.42);
    box-shadow: 0 14px 34px rgba(201, 143, 58, 0.1);
}

.bv-dynamic-section,
.bv-services-section,
.bv-usecase-section,
.bv-final-cta {
    padding: 34px 0;
}

.bv-dynamic-card,
.bv-final-cta-inner {
    background: var(--bv-surface);
    border: 1px solid var(--bv-border);
    border-radius: 24px;
    box-shadow: var(--bv-shadow);
    display: grid;
    gap: 22px;
    padding: 24px;
}

.bv-dynamic-card h2,
.bv-services-section h2,
.bv-usecase-inner h2,
.bv-final-cta h2 {
    color: var(--bv-text);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 10px;
}

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

.bv-price-panel {
    background: var(--bv-primary-soft);
    border: 1px solid rgba(35, 122, 87, 0.2);
    border-radius: 20px;
    display: grid;
    gap: 12px;
    padding: 18px;
}

.bv-price-panel strong {
    color: var(--bv-primary-dark);
    font-size: 1.55rem;
    line-height: 1.1;
}

.bv-service-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.bv-service-card {
    background: var(--bv-surface);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    box-shadow: var(--bv-shadow);
    padding: 18px;
}

.bv-service-icon {
    background: var(--bv-primary-soft);
    border-radius: 14px;
    color: var(--bv-primary-dark);
    display: inline-grid;
    height: 42px;
    margin-bottom: 14px;
    place-items: center;
    width: 42px;
}

.bv-service-card h3 {
    color: var(--bv-text);
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0;
}

.bv-service-card a,
.bv-promo-card-compact a {
    color: var(--bv-primary-dark);
    font-weight: 850;
}

.bv-usecase-inner {
    align-items: start;
    display: grid;
    gap: 18px;
}

.bv-usecase-inner ul {
    background: var(--bv-surface);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    box-shadow: var(--bv-shadow);
    padding: 18px;
}

.bv-final-cta {
    padding-bottom: 48px;
}

.bv-final-cta-actions {
    align-items: start;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bv-promo-card-compact {
    margin-top: 14px;
    text-align: left;
}

.bv-promo-card-compact p {
    margin-bottom: 8px;
}

.bv-footer {
    background: #122019;
    color: rgba(255, 255, 255, 0.82);
    padding: 34px 0 18px;
}

.bv-footer-inner {
    display: grid;
    gap: 22px;
}

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

.bv-footer-brand img {
    background: #fff;
    border-radius: 12px;
    height: 42px;
    object-fit: contain;
    padding: 4px;
    width: 42px;
}

.bv-footer-about p,
.bv-footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

.bv-footer-group h2 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.bv-footer-links {
    align-items: flex-start;
    display: grid;
    gap: 8px;
}

.bv-footer-links a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.bv-footer-links a:hover,
.bv-footer-links a:focus {
    color: #fff;
    text-decoration: underline;
}

.bv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 24px;
    padding-top: 14px;
}

@media (min-width: 768px) {
    .bv-dynamic-card,
    .bv-final-cta-inner,
    .bv-usecase-inner {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    }

    .bv-dynamic-benefits,
    .bv-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-footer-inner {
        grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.6fr) minmax(160px, 0.6fr);
    }
}

@media (min-width: 1100px) {
    .bv-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .bv-topbar-actions {
        display: none;
    }

    .bv-mobile-menu {
        display: block;
    }

    .bv-mobile-menu summary {
        background: var(--bv-primary);
        border-radius: 999px;
        color: #fff;
        cursor: pointer;
        font-weight: 850;
        list-style: none;
        min-height: 38px;
        padding: 8px 14px;
    }

    .bv-mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .bv-mobile-menu > div {
        background: var(--bv-surface);
        border: 1px solid var(--bv-border);
        border-radius: 18px;
        box-shadow: 0 18px 44px rgba(24, 35, 30, 0.16);
        display: grid;
        gap: 6px;
        left: 14px;
        padding: 12px;
        position: absolute;
        right: 14px;
        top: calc(100% + 6px);
    }

    .bv-mobile-menu a,
    .bv-mobile-menu span {
        border-radius: 12px;
        color: var(--bv-text);
        font-weight: 800;
        padding: 10px;
        text-decoration: none;
    }

    .bv-mobile-menu a.active {
        color: var(--bv-primary-dark);
    }

    .bv-hero-card {
        max-width: none;
    }

    .bv-dynamic-section,
    .bv-services-section,
    .bv-usecase-section,
    .bv-final-cta {
        padding: 24px 0;
    }

    .bv-dynamic-card,
    .bv-final-cta-inner {
        padding: 18px;
    }
}
