:root {
	--bv-ink: #15161a;
	--bv-muted: #5e6573;
	--bv-soft: #f7f5f0;
	--bv-surface: #ffffff;
	--bv-line: #e8e4dc;
	--bv-teal: #0f8b8d;
	--bv-coral: #e85d4f;
	--bv-amber: #e5a931;
	--bv-indigo: #4f5bd5;
	--bv-green: #228b5a;
	--bv-shadow: 0 18px 46px rgba(21, 22, 26, 0.1);
	--bv-radius: 8px;
	--bv-width: 1180px;
}

.bv-store,
.bv-store * {
	box-sizing: border-box;
}

.bv-store {
	width: 100%;
	margin: 0 auto;
	color: var(--bv-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
	background: linear-gradient(180deg, #fffaf3 0%, #ffffff 42%, #f7fbfa 100%);
}

.bv-store a {
	color: inherit;
	text-decoration: none;
}

.bv-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(var(--bv-width), calc(100% - 32px));
	margin: 0 auto;
	padding: 16px 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(18px);
}

.bv-nav__brand,
.bv-nav__links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.bv-nav__brand {
	font-weight: 800;
}

.bv-nav__logo,
.bv-product-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: var(--bv-radius);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--bv-ink), var(--bv-teal));
	box-shadow: 0 10px 26px rgba(15, 139, 141, 0.22);
}

.bv-nav__links a {
	color: var(--bv-muted);
	font-size: 14px;
	font-weight: 650;
}

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

.bv-nav__toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: var(--bv-surface);
}

.bv-nav__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--bv-ink);
}

.bv-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.bv-button--primary {
	color: #fff !important;
	background: linear-gradient(135deg, var(--bv-ink), #2f7d75);
	box-shadow: 0 12px 30px rgba(21, 22, 26, 0.2);
}

.bv-button--secondary,
.bv-button--light,
.bv-button--ghost {
	color: var(--bv-ink) !important;
	background: #fff;
	border: 1px solid var(--bv-line);
}

.bv-button--ghost {
	min-height: 38px;
	padding: 0 12px;
	background: transparent;
}

.bv-button--nav {
	min-height: 40px;
	color: #fff !important;
	background: var(--bv-ink);
}

.bv-button--compact {
	min-height: 38px;
	padding: 0 13px;
	font-size: 13px;
}

.bv-button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
	transform: none;
}

.bv-hero,
.bv-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
	gap: 54px;
	align-items: center;
	width: min(var(--bv-width), calc(100% - 32px));
	margin: 0 auto;
	padding: 64px 0 52px;
}

.bv-hero h1,
.bv-page-hero h1,
.bv-product-hero h1,
.bv-final-cta h2,
.bv-message-card h1 {
	margin: 0;
	font-size: 56px;
	line-height: 1.02;
	letter-spacing: 0;
}

.bv-hero p,
.bv-page-hero p,
.bv-product-hero p,
.bv-final-cta p,
.bv-message-card p {
	max-width: 680px;
	color: var(--bv-muted);
	font-size: 18px;
}

.bv-eyebrow,
.bv-kicker {
	margin: 0 0 12px;
	color: var(--bv-teal);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.bv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.bv-hero__metrics,
.bv-product-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.bv-hero__metrics span,
.bv-product-facts span,
.bv-plan-summary span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border: 1px solid var(--bv-line);
	border-radius: 999px;
	color: var(--bv-muted);
	background: rgba(255, 255, 255, 0.74);
	font-size: 13px;
	font-weight: 700;
}

.bv-hero__metrics strong {
	color: var(--bv-ink);
}

.bv-hero__visual {
	min-height: 430px;
	padding: 28px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background:
		linear-gradient(135deg, rgba(15, 139, 141, 0.12), transparent 40%),
		linear-gradient(315deg, rgba(232, 93, 79, 0.13), transparent 45%),
		#fff;
	box-shadow: var(--bv-shadow);
}

.bv-interface {
	height: 100%;
	min-height: 374px;
	overflow: hidden;
	border: 1px solid #d9e2dd;
	border-radius: var(--bv-radius);
	background: #fbfcfb;
}

.bv-interface__top {
	display: flex;
	gap: 6px;
	padding: 14px;
	border-bottom: 1px solid #e2e8e3;
	background: #fff;
}

.bv-interface__top span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--bv-coral);
}

.bv-interface__top span:nth-child(2) {
	background: var(--bv-amber);
}

.bv-interface__top span:nth-child(3) {
	background: var(--bv-green);
}

.bv-interface__body {
	display: grid;
	grid-template-columns: 82px 1fr;
	height: calc(100% - 39px);
}

.bv-interface__sidebar {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 18px;
	border-right: 1px solid #e2e8e3;
	background: #f3f6f4;
}

.bv-interface__sidebar i,
.bv-interface__tile,
.bv-interface__list b {
	display: block;
	border-radius: var(--bv-radius);
	background: #dfeae5;
}

.bv-interface__sidebar i {
	width: 40px;
	height: 40px;
}

.bv-interface__main {
	display: grid;
	gap: 16px;
	padding: 20px;
}

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

.bv-interface__tile {
	height: 82px;
	background: linear-gradient(135deg, #f4ce72, #fff4d5);
}

.bv-interface__tile.wide {
	background: linear-gradient(135deg, #a6e2da, #eefaf8);
}

.bv-chart {
	display: flex;
	align-items: end;
	gap: 12px;
	height: 142px;
	padding: 16px;
	border: 1px solid #e2e8e3;
	border-radius: var(--bv-radius);
	background: #fff;
}

.bv-chart span {
	flex: 1;
	border-radius: 6px 6px 0 0;
	background: linear-gradient(180deg, var(--bv-indigo), var(--bv-teal));
}

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

.bv-interface__list b {
	height: 16px;
	background: #e9eee9;
}

.bv-trust-bar,
.bv-section,
.bv-final-cta,
.bv-page-hero,
.bv-dashboard-grid,
.bv-message-card {
	width: min(var(--bv-width), calc(100% - 32px));
	margin: 0 auto;
}

.bv-trust-bar {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	padding: 16px 0 40px;
}

.bv-trust-bar span {
	min-height: 72px;
	padding: 16px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: rgba(255, 255, 255, 0.76);
	color: var(--bv-muted);
	font-size: 13px;
	font-weight: 800;
}

.bv-section {
	padding: 54px 0;
}

.bv-section--soft {
	width: 100%;
	max-width: none;
	padding-right: max(16px, calc((100% - var(--bv-width)) / 2));
	padding-left: max(16px, calc((100% - var(--bv-width)) / 2));
	background: #f6faf8;
}

.bv-section--split {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 40px;
	align-items: start;
}

.bv-section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.bv-section h2,
.bv-section__header h2,
.bv-pricing-explain h2 {
	margin: 0;
	font-size: 34px;
	line-height: 1.12;
	letter-spacing: 0;
}

.bv-link {
	color: var(--bv-teal) !important;
	font-weight: 800;
}

.bv-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.bv-product-card,
.bv-feature-card,
.bv-category-card,
.bv-price-card,
.bv-account-card,
.bv-doc-card {
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: var(--bv-surface);
	box-shadow: 0 12px 30px rgba(21, 22, 26, 0.06);
}

.bv-product-card {
	display: grid;
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.bv-product-card:hover {
	transform: translateY(-3px);
	border-color: rgba(15, 139, 141, 0.28);
	box-shadow: var(--bv-shadow);
}

.bv-product-card__cover,
.bv-product-shot {
	position: relative;
	min-height: 150px;
	padding: 18px;
	background: #f4f7f4;
}

.bv-cover-0 { background: linear-gradient(135deg, #f8d986, #fff8df); }
.bv-cover-1 { background: linear-gradient(135deg, #a9e3d7, #f2fffb); }
.bv-cover-2 { background: linear-gradient(135deg, #f4afa5, #fff2ee); }
.bv-cover-3 { background: linear-gradient(135deg, #c8cdfa, #f6f7ff); }
.bv-cover-4 { background: linear-gradient(135deg, #bae5bd, #f6fff3); }
.bv-cover-5 { background: linear-gradient(135deg, #f0c58a, #fff6e8); }

.bv-product-badge,
.bv-price-card__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 10px;
	border-radius: 999px;
	color: #fff;
	background: var(--bv-ink);
	font-size: 11px;
	font-weight: 900;
}

.bv-product-card__body {
	padding: 18px;
}

.bv-product-card__body h3,
.bv-feature-card h3,
.bv-price-card h3,
.bv-account-card h3,
.bv-doc-card h2 {
	margin: 6px 0 8px;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0;
}

.bv-product-card__body p,
.bv-feature-card p,
.bv-price-card p,
.bv-doc-card p {
	margin: 0;
	color: var(--bv-muted);
}

.bv-product-card__meta {
	color: var(--bv-teal);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.bv-mini-list,
.bv-price-card ul {
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	color: var(--bv-muted);
	font-size: 14px;
}

.bv-mini-list li,
.bv-price-card li {
	position: relative;
	padding-left: 18px;
}

.bv-mini-list li::before,
.bv-price-card li::before {
	position: absolute;
	left: 0;
	color: var(--bv-green);
	content: "+";
	font-weight: 900;
}

.bv-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-top: 1px solid var(--bv-line);
}

.bv-card-price {
	display: block;
	font-size: 22px;
	font-weight: 900;
}

.bv-card-price-note {
	color: var(--bv-muted);
	font-size: 12px;
}

.bv-card-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.bv-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.bv-category-card {
	display: grid;
	gap: 8px;
	padding: 18px;
}

.bv-category-card span,
.bv-feature-card span {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: var(--bv-radius);
	color: #fff;
	background: var(--bv-teal);
	font-size: 12px;
	font-weight: 900;
}

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

.bv-feature-grid,
.bv-use-case-grid,
.bv-doc-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.bv-feature-card,
.bv-doc-card {
	padding: 20px;
}

.bv-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.bv-steps div {
	min-height: 96px;
	padding: 18px;
	border-radius: var(--bv-radius);
	color: #fff;
	background: linear-gradient(135deg, var(--bv-ink), var(--bv-teal));
	font-weight: 900;
}

.bv-pricing-explain {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	padding: 32px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
}

.bv-plan-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

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

.bv-faq-list details {
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
}

.bv-faq-list summary {
	padding: 18px;
	cursor: pointer;
	font-weight: 850;
}

.bv-faq-list p {
	margin: 0;
	padding: 0 18px 18px;
	color: var(--bv-muted);
}

.bv-final-cta,
.bv-message-card {
	margin-bottom: 54px;
	padding: 44px;
	border-radius: var(--bv-radius);
	color: #fff;
	background:
		linear-gradient(135deg, rgba(232, 93, 79, 0.25), transparent 45%),
		linear-gradient(315deg, rgba(229, 169, 49, 0.22), transparent 45%),
		var(--bv-ink);
	text-align: center;
}

.bv-final-cta p,
.bv-message-card p {
	margin-right: auto;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.78);
}

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

.bv-page-hero h1 {
	max-width: 860px;
	font-size: 48px;
}

.bv-shop-controls {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr;
	gap: 12px;
	width: min(var(--bv-width), calc(100% - 32px));
	margin: 0 auto 24px;
	padding: 14px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
}

.bv-shop-controls label,
.bv-admin-wrap label {
	display: grid;
	gap: 6px;
	color: var(--bv-muted);
	font-size: 12px;
	font-weight: 800;
}

.bv-shop-controls input,
.bv-shop-controls select {
	width: 100%;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fbfaf7;
	color: var(--bv-ink);
}

.bv-empty-state {
	width: min(var(--bv-width), calc(100% - 32px));
	margin: 24px auto 54px;
	padding: 28px;
	border: 1px dashed #c9c2b6;
	border-radius: var(--bv-radius);
	background: #fff;
	text-align: center;
}

.bv-modal[hidden],
.bv-empty-state[hidden] {
	display: none;
}

.bv-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(21, 22, 26, 0.42);
}

.bv-modal__panel {
	position: relative;
	width: min(560px, 100%);
	padding: 28px;
	border-radius: var(--bv-radius);
	background: #fff;
	box-shadow: var(--bv-shadow);
}

.bv-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
	cursor: pointer;
}

.bv-product-shot {
	display: grid;
	align-content: center;
	min-height: 360px;
	box-shadow: var(--bv-shadow);
}

.bv-product-icon--large {
	width: 76px;
	height: 76px;
	font-size: 18px;
}

.bv-shot-lines {
	display: grid;
	gap: 12px;
	margin-top: 34px;
}

.bv-shot-lines span {
	height: 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
}

.bv-shot-lines span:nth-child(2) { width: 74%; }
.bv-shot-lines span:nth-child(3) { width: 88%; }
.bv-shot-lines span:nth-child(4) { width: 58%; }

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

.bv-gallery__item {
	min-height: 190px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
	overflow: hidden;
}

.bv-gallery__placeholder {
	display: grid;
	align-content: end;
	height: 100%;
	min-height: 190px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(15, 139, 141, 0.16), transparent 45%),
		linear-gradient(315deg, rgba(229, 169, 49, 0.18), transparent 42%),
		#f7f6f1;
}

.bv-gallery__placeholder span {
	font-weight: 900;
}

.bv-gallery__placeholder small {
	color: var(--bv-muted);
	word-break: break-word;
}

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

.bv-feature-list div,
.bv-use-case-grid div {
	display: flex;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
	color: var(--bv-muted);
	font-weight: 700;
}

.bv-feature-list span {
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	margin-top: 7px;
	border-radius: 50%;
	background: var(--bv-coral);
}

.bv-pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.bv-price-card {
	position: relative;
	display: grid;
	gap: 14px;
	padding: 22px;
}

.bv-price-card.is-recommended {
	border-color: rgba(15, 139, 141, 0.48);
	box-shadow: 0 18px 42px rgba(15, 139, 141, 0.14);
}

.bv-price-card__price span {
	display: block;
	font-size: 34px;
	font-weight: 950;
}

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

.bv-price-matrix {
	display: grid;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	overflow: hidden;
	background: #fff;
}

.bv-price-matrix__head,
.bv-price-matrix__row {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 0.65fr);
	gap: 12px;
	align-items: center;
	padding: 14px 16px;
	border-bottom: 1px solid var(--bv-line);
}

.bv-price-matrix__head {
	color: var(--bv-muted);
	background: #f3f6f4;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.bv-price-matrix__row:hover {
	background: #fffaf0;
}

.bv-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 18px;
}

.bv-dashboard-stat {
	padding: 22px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
}

.bv-dashboard-stat span {
	display: block;
	font-size: 36px;
	font-weight: 950;
}

.bv-dashboard-stat small {
	color: var(--bv-muted);
	font-weight: 800;
}

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

.bv-account-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 16px;
	align-items: center;
	padding: 18px;
}

.bv-account-card__meta,
.bv-account-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.bv-account-card__meta span,
.bv-muted {
	color: var(--bv-muted);
	font-size: 13px;
	font-weight: 750;
}

.bv-account-card code,
.bv-table code {
	padding: 6px 8px;
	border-radius: 6px;
	background: #f4f3ee;
}

.bv-status {
	display: inline-flex;
	padding: 6px 9px;
	border-radius: 999px;
	color: #fff !important;
	background: var(--bv-muted);
	font-size: 12px;
	font-weight: 900;
}

.bv-status--active { background: var(--bv-green); }
.bv-status--pending,
.bv-status--past_due { background: var(--bv-amber); }
.bv-status--expired,
.bv-status--canceled { background: var(--bv-coral); }

.bv-account-details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.bv-account-details span {
	display: grid;
	gap: 4px;
	padding: 18px;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
	color: var(--bv-muted);
}

.bv-account-details strong {
	color: var(--bv-ink);
}

.bv-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--bv-line);
	border-radius: var(--bv-radius);
	background: #fff;
}

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

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

.bv-table th {
	color: var(--bv-muted);
	background: #f3f6f4;
	font-size: 12px;
	text-transform: uppercase;
}

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

.bv-doc-card pre {
	max-height: 160px;
	overflow: auto;
	padding: 12px;
	border-radius: var(--bv-radius);
	background: #f4f3ee;
	color: var(--bv-muted);
	white-space: pre-wrap;
}

.bv-policy-content {
	max-width: 850px;
}

.bv-footer {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	width: min(var(--bv-width), calc(100% - 32px));
	margin: 0 auto;
	padding: 34px 0 48px;
	border-top: 1px solid var(--bv-line);
	color: var(--bv-muted);
}

.bv-footer p {
	max-width: 560px;
	margin: 6px 0 0;
}

.bv-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-weight: 800;
}

@media (max-width: 980px) {
	.bv-hero,
	.bv-product-hero,
	.bv-section--split,
	.bv-pricing-explain {
		grid-template-columns: 1fr;
	}

	.bv-product-grid,
	.bv-feature-grid,
	.bv-category-grid,
	.bv-pricing-grid,
	.bv-doc-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bv-trust-bar,
	.bv-steps,
	.bv-dashboard-grid,
	.bv-account-details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.bv-price-matrix__head,
	.bv-price-matrix__row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.bv-nav__toggle {
		display: block;
	}

	.bv-nav__links {
		position: absolute;
		top: 70px;
		right: 0;
		left: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
		border: 1px solid var(--bv-line);
		border-radius: var(--bv-radius);
		background: #fff;
		box-shadow: var(--bv-shadow);
	}

	.bv-nav.is-open .bv-nav__links {
		display: flex;
	}

	.bv-hero h1,
	.bv-page-hero h1,
	.bv-product-hero h1,
	.bv-final-cta h2,
	.bv-message-card h1 {
		font-size: 38px;
	}

	.bv-product-grid,
	.bv-feature-grid,
	.bv-category-grid,
	.bv-pricing-grid,
	.bv-use-case-grid,
	.bv-doc-grid,
	.bv-trust-bar,
	.bv-steps,
	.bv-dashboard-grid,
	.bv-account-details,
	.bv-gallery {
		grid-template-columns: 1fr;
	}

	.bv-section__header,
	.bv-footer,
	.bv-product-card__footer,
	.bv-account-card {
		display: grid;
		grid-template-columns: 1fr;
	}

	.bv-card-actions {
		flex-wrap: wrap;
	}

	.bv-final-cta,
	.bv-message-card {
		padding: 30px 18px;
	}
}
