:root {
	--bk-color-primary: #086ad8;
	--bk-color-primary-dark: #0655ad;
	--bk-color-primary-rgb: 8, 106, 216;
	--bk-color-primary-soft: #e6f0fb;
	--bk-color-secondary: #d2a98e;
	--bk-color-secondary-rgb: 210, 169, 142;
	--bk-color-secondary-soft: #f9f3ef;
	--bk-color-accent: var(--bk-color-secondary);
	--bk-color-tint: var(--bk-color-primary-soft);
	--bk-header-logo-width: 150px;
	--bk-footer-logo-width: 160px;
	--bk-color-ink: #10233f;
	--bk-color-muted: #627089;
	--bk-color-surface: #ffffff;
	--bk-color-soft: #f4f7fb;
	--bk-color-line: #e7edf5;
	--bk-radius-sm: 12px;
	--bk-radius-md: 16px;
	--bk-radius-lg: 20px;
	--bk-shadow-sm: 0 8px 24px rgba(16, 35, 63, 0.08);
	--bk-shadow-md: 0 18px 50px rgba(16, 35, 63, 0.12);
	--bk-container: 1400px;
	--bk-transition: 180ms ease;
}

html {
	scroll-behavior: smooth;
}

body.bk-site {
	background: var(--bk-color-surface);
	color: var(--bk-color-ink);
	font-family: "Rubik", Arial, sans-serif;
	overflow-x: hidden;
}

.bk-site *,
.bk-site *::before,
.bk-site *::after {
	box-sizing: border-box;
}

.bk-site a {
	transition: color var(--bk-transition), background-color var(--bk-transition), transform var(--bk-transition), box-shadow var(--bk-transition);
}

.bk-container {
	margin-inline: auto;
	max-width: var(--bk-container);
	padding-inline: 20px;
	width: 100%;
}

.bk-icon {
	display: inline-block;
	flex: 0 0 auto;
	height: 24px;
	vertical-align: middle;
	width: 24px;
}

.bk-skip-link:focus {
	background: var(--bk-color-surface);
	border-radius: 0 0 var(--bk-radius-sm) 0;
	color: var(--bk-color-ink);
	left: 0;
	padding: 12px 18px;
	position: fixed;
	top: 0;
	z-index: 10000;
}

.bk-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--bk-color-line);
	position: relative;
	z-index: 1000;
}

.bk-topbar {
	background: var(--bk-color-soft);
	color: var(--bk-color-muted);
	font-size: 13px;
}

.bk-topbar__inner,
.bk-header__inner,
.bk-topbar__contacts,
.bk-header__actions,
.bk-contact-link {
	align-items: center;
	display: flex;
}

.bk-topbar__inner {
	justify-content: space-between;
	min-height: 36px;
}

.bk-topbar__contacts {
	gap: 16px;
}

.bk-contact-link {
	color: var(--bk-color-ink);
	font-weight: 600;
	gap: 7px;
}

.bk-contact-link .bk-icon {
	color: var(--bk-color-primary);
	height: 17px;
	width: 17px;
}

.bk-messenger-link,
.bk-language {
	color: var(--bk-color-muted);
	font-weight: 600;
}

.bk-language ul {
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bk-header__main {
	background: var(--bk-color-surface);
}

.bk-header__inner {
	justify-content: space-between;
	min-height: 72px;
	position: relative;
}

.bk-brand {
	flex: 0 0 auto;
	max-width: calc(100vw - 168px);
	width: var(--bk-header-logo-width);
}

.bk-brand .custom-logo,
.bk-brand .bk-header-logo {
	display: block;
	height: auto;
	max-height: 68px;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
	width: var(--bk-header-logo-width);
}

.bk-brand__text {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
}

.bk-primary-nav {
	background: var(--bk-color-surface);
	box-shadow: var(--bk-shadow-md);
	left: 20px;
	opacity: 0;
	padding: 12px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: calc(100% + 8px);
	transform: translateY(-8px);
	transition: opacity var(--bk-transition), transform var(--bk-transition);
	visibility: hidden;
}

.bk-primary-nav.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.bk-menu,
.bk-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bk-menu a {
	border-radius: 9px;
	color: var(--bk-color-ink);
	display: block;
	font-size: 15px;
	font-weight: 600;
	padding: 12px;
}

.bk-menu a:hover,
.bk-menu .current-menu-item > a {
	background: var(--bk-color-soft);
	color: var(--bk-color-primary);
}

.bk-menu .sub-menu {
	padding-left: 14px;
}

.bk-header__actions {
	gap: 8px;
}

.bk-header .bk-header__desktop-actions {
	float: none;
	margin: 0;
}

.bk-header__phone {
	align-items: center;
	color: var(--bk-color-primary);
	display: flex;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
}

.bk-header__phone span {
	display: none;
}

.bk-button {
	align-items: center;
	background: var(--bk-color-primary);
	border: 0;
	border-radius: var(--bk-radius-sm);
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 13px 20px;
}

.bk-button:hover,
.bk-button:focus {
	background: var(--bk-color-primary-dark);
	box-shadow: 0 10px 24px rgba(var(--bk-color-primary-rgb), 0.22);
	color: #fff;
	transform: translateY(-1px);
}

.bk-button--account {
	display: none;
}

.bk-menu-toggle {
	align-items: center;
	background: var(--bk-color-ink);
	border: 0;
	border-radius: 10px;
	color: #fff;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.bk-menu-toggle .bk-icon {
	height: 22px;
	width: 22px;
}

.bk-menu-toggle__close,
.bk-menu-toggle[aria-expanded="true"] .bk-menu-toggle__open {
	display: none;
}

.bk-menu-toggle[aria-expanded="true"] .bk-menu-toggle__close {
	display: inline-flex;
}

@media (min-width: 768px) {
	.bk-container {
		padding-inline: 30px;
	}

	.bk-header__inner {
		min-height: 82px;
	}

	.bk-button--account {
		display: inline-flex;
	}
}

@media (min-width: 992px) {
	.bk-header {
		position: sticky;
		top: 0;
	}

	.admin-bar .bk-header {
		top: 32px;
	}

	.bk-header__inner {
		gap: 28px;
	}

	.bk-primary-nav {
		background: transparent;
		box-shadow: none;
		flex: 1 1 auto;
		left: auto;
		opacity: 1;
		padding: 0;
		pointer-events: auto;
		position: static;
		right: auto;
		transform: none;
		visibility: visible;
	}

	.bk-menu {
		align-items: center;
		display: flex;
		justify-content: center;
	}

	.bk-menu > li {
		position: relative;
	}

	.bk-menu > li > a {
		padding: 14px 10px;
	}

	.bk-menu .sub-menu {
		background: var(--bk-color-surface);
		border-radius: var(--bk-radius-sm);
		box-shadow: var(--bk-shadow-md);
		left: 0;
		min-width: 220px;
		opacity: 0;
		padding: 8px;
		position: absolute;
		top: 100%;
		transform: translateY(8px);
		transition: opacity var(--bk-transition), transform var(--bk-transition);
		visibility: hidden;
	}

	.bk-menu li:hover > .sub-menu,
	.bk-menu li:focus-within > .sub-menu {
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
	}

	.bk-header__phone {
		display: none;
	}

	.bk-header .bk-header__desktop-actions.d-lg-block {
		display: flex !important;
	}
}

.bk-faq {
	background: var(--bk-color-soft);
}

.bk-faq-tabs {
	display: flex;
	gap: 8px;
	margin: 0 0 22px;
	overflow-x: auto;
	padding: 2px 2px 8px;
	scrollbar-width: thin;
}

.bk-faq-tab {
	background: var(--bk-color-surface);
	border: 1px solid var(--bk-color-line);
	border-radius: 999px;
	color: var(--bk-color-muted);
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	padding: 11px 18px;
	transition: background-color var(--bk-transition), border-color var(--bk-transition), color var(--bk-transition);
}

.bk-faq-tab:hover,
.bk-faq-tab:focus,
.bk-faq-tab.is-active {
	background: var(--bk-color-primary);
	border-color: var(--bk-color-primary);
	color: #fff;
}

.bk-faq-panel {
	max-width: 900px;
}

.bk-faq-panel[hidden] {
	display: none;
}

.bk-faq-item {
	background: var(--bk-color-surface);
	border-radius: var(--bk-radius-sm);
	box-shadow: 0 5px 16px rgba(16, 35, 63, 0.05);
	margin-bottom: 10px;
	overflow: clip;
}

.bk-faq-item summary {
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: 12px;
	grid-template-columns: 34px minmax(0, 1fr) 24px;
	list-style: none;
	min-height: 72px;
	padding: 16px;
}

.bk-faq-item summary::-webkit-details-marker {
	display: none;
}

.bk-faq-item__question-icon {
	align-items: center;
	background: var(--bk-color-primary-soft);
	border-radius: 10px;
	color: var(--bk-color-primary);
	display: flex;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.bk-faq-item__question-icon .bk-icon {
	height: 19px;
	width: 19px;
}

.bk-faq-item__title {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.bk-faq-item__toggle {
	height: 20px;
	position: relative;
	width: 20px;
}

.bk-faq-item__toggle::before,
.bk-faq-item__toggle::after {
	background: var(--bk-color-primary);
	border-radius: 1px;
	content: "";
	height: 2px;
	left: 3px;
	position: absolute;
	top: 9px;
	transition: opacity var(--bk-transition), transform var(--bk-transition);
	width: 14px;
}

.bk-faq-item__toggle::after {
	transform: rotate(90deg);
}

.bk-faq-item[open] .bk-faq-item__toggle::after {
	opacity: 0;
	transform: rotate(0);
}

.bk-faq-item__answer {
	animation: bk-faq-reveal 220ms ease both;
	padding: 0 54px 20px 62px;
}

.bk-faq-item__answer p {
	color: var(--bk-color-muted);
	line-height: 1.65;
	margin: 0;
}

@keyframes bk-faq-reveal {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 768px) {
	.bk-faq-tabs {
		gap: 10px;
		margin-bottom: 28px;
	}

	.bk-faq-tab {
		font-size: 15px;
		padding: 13px 22px;
	}

	.bk-faq-item summary {
		gap: 18px;
		grid-template-columns: 42px minmax(0, 1fr) 28px;
		min-height: 84px;
		padding: 18px 22px;
	}

	.bk-faq-item__question-icon {
		height: 42px;
		width: 42px;
	}

	.bk-faq-item__title {
		font-size: 17px;
	}

	.bk-faq-item__answer {
		padding: 0 68px 24px 82px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

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

.bk-footer {
	background: var(--bk-color-ink);
	color: rgba(255, 255, 255, 0.72);
	padding: 64px 0 0;
}

.bk-footer__top {
	display: grid;
	gap: 38px 24px;
	padding-bottom: 54px;
}

.bk-footer__brand .custom-logo,
.bk-footer__brand .bk-footer-logo {
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
	width: var(--bk-footer-logo-width);
}

.bk-footer__brand .custom-logo {
	filter: brightness(0) invert(1);
}

.bk-footer__brand-text {
	color: #fff;
	font-family: "Poppins", Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
}

.bk-footer__brand p,
.bk-footer__note {
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.65;
	margin: 18px 0 0;
	max-width: 300px;
}

.bk-footer__socials {
	display: flex;
	gap: 8px;
	margin-top: 20px;
}

.bk-footer__socials a {
	align-items: center;
	background: rgba(255, 255, 255, 0.09);
	border-radius: 9px;
	color: #fff;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	height: 38px;
	justify-content: center;
	text-transform: uppercase;
	width: 38px;
}

.bk-footer__socials a:hover {
	background: var(--bk-color-primary);
	color: #fff;
	transform: translateY(-2px);
}

.bk-footer__column h2 {
	color: #fff;
	font-family: "Poppins", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 18px;
}

.bk-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bk-footer-menu li + li {
	margin-top: 10px;
}

.bk-footer-menu a,
.bk-footer__inline-link {
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.5;
}

.bk-footer-menu a:hover,
.bk-footer__inline-link:hover {
	color: #fff;
}

.bk-footer__inline-link {
	color: var(--bk-color-accent);
	display: inline-block;
	font-weight: 700;
	margin-top: 12px;
}

.bk-footer__contacts > a,
.bk-footer__contacts > p {
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.72);
	display: flex;
	font-size: 14px;
	gap: 10px;
	line-height: 1.55;
	margin: 0 0 13px;
}

.bk-footer__contacts > a:hover {
	color: #fff;
}

.bk-footer__contacts .bk-icon {
	color: var(--bk-color-accent);
	height: 19px;
	margin-top: 1px;
	width: 19px;
}

.bk-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	min-height: 76px;
	padding: 18px 0;
}

.bk-footer__bottom p {
	font-size: 13px;
	margin: 0;
}

.bk-payment-systems {
	display: flex;
	gap: 8px;
}

.bk-payment-systems span {
	background: #fff;
	border-radius: 7px;
	color: var(--bk-color-ink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 7px 12px;
}

@media (min-width: 576px) {
	.bk-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bk-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (min-width: 992px) {
	.bk-footer {
		padding-top: 78px;
	}

	.bk-footer__top {
		grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
	}

	.bk-footer__brand {
		grid-column: auto;
	}
}

.bk-elementor-content {
	min-height: 1px;
}

.bk-product-page__hero {
	background:
		radial-gradient(circle at 85% 30%, rgba(var(--bk-color-primary-rgb), 0.18), transparent 18rem),
		var(--bk-color-soft);
	padding: 54px 0 140px;
}

.bk-product-page__hero h1,
.bk-standard-page__header h1 {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: clamp(36px, 9vw, 64px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin: 0;
}

.bk-product-page__hero > .bk-container > p:last-child {
	color: var(--bk-color-muted);
	font-size: 18px;
	line-height: 1.6;
	margin: 18px 0 0;
	max-width: 680px;
}

.bk-calculator-section {
	margin-top: -92px;
	position: relative;
	z-index: 2;
}

.bk-calculator-shell {
	background: var(--bk-color-surface);
	border-radius: var(--bk-radius-lg);
	box-shadow: var(--bk-shadow-md);
	min-height: 160px;
	padding: 18px;
}

.bk-calculator-shell > :first-child {
	margin-top: 0;
}

.bk-calculator-shell > :last-child {
	margin-bottom: 0;
}

.bk-product-benefits {
	padding-top: 70px;
}

.bk-benefit-grid {
	display: grid;
	gap: 14px;
}

.bk-benefit-grid article {
	background: var(--bk-color-soft);
	border-radius: var(--bk-radius-md);
	padding: 25px;
}

.bk-benefit-grid article > span {
	align-items: center;
	background: var(--bk-color-surface);
	border-radius: 11px;
	box-shadow: var(--bk-shadow-sm);
	color: var(--bk-color-primary);
	display: flex;
	height: 46px;
	justify-content: center;
	margin-bottom: 22px;
	width: 46px;
}

.bk-benefit-grid h3 {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 9px;
}

.bk-benefit-grid p {
	color: var(--bk-color-muted);
	line-height: 1.6;
	margin: 0;
}

.bk-product-info {
	background: var(--bk-color-soft);
}

.bk-product-info__grid {
	display: grid;
	gap: 32px;
}

.bk-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bk-check-list li {
	align-items: flex-start;
	color: var(--bk-color-ink);
	display: flex;
	gap: 12px;
	line-height: 1.55;
	margin-bottom: 16px;
}

.bk-check-list .bk-icon {
	background: var(--bk-color-primary-soft);
	border-radius: 50%;
	color: var(--bk-color-primary);
	height: 24px;
	padding: 4px;
	width: 24px;
}

.bk-documents-card {
	align-self: start;
	background: var(--bk-color-primary);
	border-radius: var(--bk-radius-lg);
	box-shadow: 0 22px 50px rgba(var(--bk-color-primary-rgb), 0.22);
	color: #fff;
	padding: 30px;
}

.bk-documents-card__icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.16);
	border-radius: 13px;
	display: flex;
	height: 52px;
	justify-content: center;
	margin-bottom: 24px;
	width: 52px;
}

.bk-documents-card h2 {
	color: #fff;
	font-family: "Poppins", Arial, sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 12px;
}

.bk-documents-card p {
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
	margin: 0;
}

.bk-product-faq {
	background: var(--bk-color-surface);
}

.bk-standard-page {
	padding: 62px 0 80px;
}

.bk-standard-page__header {
	border-bottom: 1px solid var(--bk-color-line);
	margin-bottom: 34px;
	padding-bottom: 28px;
}

.bk-entry-content {
	color: var(--bk-color-ink);
	font-size: 16px;
	line-height: 1.75;
}

.bk-entry-content img {
	border-radius: var(--bk-radius-md);
	height: auto;
	max-width: 100%;
}

@media (min-width: 768px) {
	.bk-product-page__hero {
		padding: 80px 0 160px;
	}

	.bk-calculator-shell {
		padding: 30px;
	}

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

	.bk-product-info__grid {
		align-items: start;
		grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	}

	.bk-documents-card {
		padding: 38px;
	}
}

/*
 * Reusable zebra-section utilities. Only the section underlay changes; nested
 * cards, icons and illustrations retain their component colors.
 */
.section--white {
	background-color: var(--bk-color-surface);
}

.section--tinted {
	background-color: var(--bk-color-tint);
}

.bk-context-nav {
	background: var(--bk-color-surface);
	border-bottom: 1px solid var(--bk-color-line);
}

.bk-context-nav__inner {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 14px;
	padding-top: 14px;
}

.bk-context-nav__crumbs {
	min-width: 0;
	width: 100%;
}

.bk-breadcrumbs {
	color: var(--bk-color-muted);
	font-size: 13px;
	line-height: 1.5;
}

.bk-breadcrumbs ol {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 5px 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bk-breadcrumbs li {
	align-items: center;
	display: inline-flex;
	min-width: 0;
}

.bk-breadcrumbs li + li::before {
	color: #a7b1c0;
	content: "→";
	flex: 0 0 auto;
	margin-inline: 8px;
}

.bk-breadcrumbs a {
	color: var(--bk-color-muted);
	text-decoration: none;
}

.bk-breadcrumbs a:hover,
.bk-breadcrumbs a:focus {
	color: var(--bk-color-primary);
}

.bk-breadcrumbs [aria-current="page"],
.bk-breadcrumbs .breadcrumb_last,
.bk-breadcrumbs .last {
	color: var(--bk-color-ink);
	font-weight: 600;
	text-decoration: none;
}

.bk-back-button {
	align-items: center;
	background: var(--bk-color-soft);
	border: 1px solid var(--bk-color-line);
	border-radius: 10px;
	color: var(--bk-color-muted);
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 700;
	gap: 7px;
	min-height: 38px;
	padding: 8px 14px;
	transition: background-color var(--bk-transition), border-color var(--bk-transition), color var(--bk-transition), transform var(--bk-transition);
}

.bk-back-button:hover,
.bk-back-button:focus {
	background: var(--bk-color-primary-soft);
	border-color: rgba(var(--bk-color-primary-rgb), 0.24);
	color: var(--bk-color-primary);
	transform: translateX(-2px);
}

@media (min-width: 768px) {
	.bk-context-nav__inner {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
		min-height: 64px;
		padding-bottom: 12px;
		padding-top: 12px;
	}

	.bk-context-nav__crumbs {
		width: auto;
	}

	.bk-breadcrumbs {
		font-size: 14px;
	}
}

.bk-trust {
	background: var(--bk-color-surface);
}

.bk-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.bk-logo-wall {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.bk-logo-wall li {
	align-items: center;
	background: var(--bk-color-soft);
	border-radius: var(--bk-radius-sm);
	display: flex;
	justify-content: center;
	min-height: 96px;
	padding: 20px;
	transition: background-color var(--bk-transition), box-shadow var(--bk-transition), transform var(--bk-transition);
}

.bk-logo-wall img {
	filter: grayscale(1);
	height: auto;
	max-height: 42px;
	max-width: 128px;
	opacity: 0.58;
	transition: filter var(--bk-transition), opacity var(--bk-transition), transform var(--bk-transition);
	width: auto;
}

.bk-logo-wall li:hover,
.bk-logo-wall li:focus-within {
	background: var(--bk-color-surface);
	box-shadow: var(--bk-shadow-sm);
	transform: translateY(-2px);
}

.bk-logo-wall li:hover img {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.04);
}

@media (min-width: 576px) {
	.bk-logo-wall {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.bk-logo-wall {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.bk-logo-wall {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.bk-products {
	background: var(--bk-color-soft);
}

.bk-product-list {
	display: grid;
	gap: 20px;
}

.bk-product-card {
	background: var(--bk-color-surface);
	border-radius: var(--bk-radius-lg);
	box-shadow: var(--bk-shadow-sm);
	display: grid;
	overflow: hidden;
}

.bk-product-card__art {
	align-items: center;
	background:
		radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.85) 0 7%, transparent 7.5%),
		linear-gradient(135deg, var(--bk-color-primary-soft), #fff);
	display: flex;
	justify-content: center;
	min-height: 210px;
	overflow: hidden;
	position: relative;
}

.bk-product-card--green-card .bk-product-card__art {
	background: linear-gradient(135deg, var(--bk-color-secondary-soft), #fff);
}

.bk-product-card--tourism .bk-product-card__art {
	background: linear-gradient(135deg, var(--bk-color-primary-soft), #fff);
}

.bk-product-card--dcv .bk-product-card__art {
	background: linear-gradient(135deg, var(--bk-color-secondary-soft), #fff);
}

.bk-product-card__orb {
	border: 2px solid rgba(var(--bk-color-primary-rgb), 0.15);
	border-radius: 50%;
	height: 230px;
	position: absolute;
	right: -70px;
	top: -105px;
	width: 230px;
}

.bk-product-card__orb::before,
.bk-product-card__orb::after {
	border: 2px solid currentColor;
	border-radius: 50%;
	content: "";
	opacity: 0.2;
	position: absolute;
}

.bk-product-card__orb::before {
	bottom: -80px;
	height: 120px;
	left: -165px;
	width: 120px;
}

.bk-product-card__orb::after {
	bottom: -35px;
	height: 44px;
	left: -38px;
	width: 44px;
}

.bk-product-card__symbol {
	align-items: center;
	background: var(--bk-color-surface);
	border-radius: 32px;
	box-shadow: var(--bk-shadow-md);
	color: var(--bk-color-primary);
	display: flex;
	height: 128px;
	justify-content: center;
	position: relative;
	transform: rotate(-4deg);
	width: 128px;
}

.bk-product-card--green-card .bk-product-card__symbol {
	color: var(--bk-color-secondary);
}

.bk-product-card--tourism .bk-product-card__symbol {
	color: var(--bk-color-primary);
}

.bk-product-card--dcv .bk-product-card__symbol {
	color: var(--bk-color-secondary);
}

.bk-product-card__symbol .bk-icon {
	height: 64px;
	width: 64px;
}

.bk-product-card__content {
	align-self: center;
	padding: 30px 24px 34px;
}

.bk-product-card__tagline {
	color: var(--bk-color-primary) !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 9px !important;
	text-transform: uppercase;
}

.bk-product-card__content h3 {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: clamp(25px, 7vw, 38px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0;
}

.bk-product-card__content > p:not(.bk-product-card__tagline) {
	color: var(--bk-color-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 15px 0 24px;
	max-width: 540px;
}

.bk-button--outline {
	background: transparent;
	border: 1px solid var(--bk-color-primary);
	color: var(--bk-color-primary);
}

.bk-button--outline .bk-icon {
	height: 18px;
	width: 18px;
}

@media (min-width: 768px) {
	.bk-product-card {
		grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
		min-height: 340px;
	}

	.bk-product-card--reverse {
		grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
	}

	.bk-product-card--reverse .bk-product-card__art {
		grid-column: 2;
		grid-row: 1;
	}

	.bk-product-card--reverse .bk-product-card__content {
		grid-column: 1;
		grid-row: 1;
	}

	.bk-product-card__content {
		padding: 42px;
	}
}

@media (min-width: 992px) {
	.bk-product-list {
		gap: 28px;
	}

	.bk-product-card {
		grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
		min-height: 390px;
	}

	.bk-product-card--reverse {
		grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	}

	.bk-product-card__symbol {
		height: 164px;
		width: 164px;
	}

	.bk-product-card__symbol .bk-icon {
		height: 82px;
		width: 82px;
	}

	.bk-product-card__content {
		padding: 58px;
	}
}

.bk-section {
	padding: 70px 0;
}

.bk-section-heading {
	margin-bottom: 34px;
	max-width: 680px;
}

.bk-section-heading h2 {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: clamp(30px, 8vw, 48px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 0;
}

.bk-section-heading > p:last-child {
	color: var(--bk-color-muted);
	font-size: 17px;
	line-height: 1.6;
	margin: 15px 0 0;
}

.bk-how {
	background: var(--bk-color-surface);
}

.bk-steps {
	display: grid;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bk-step {
	background: var(--bk-color-soft);
	border-radius: var(--bk-radius-md);
	min-height: 190px;
	overflow: hidden;
	padding: 24px 24px 24px 82px;
	position: relative;
}

.bk-step__number {
	color: rgba(var(--bk-color-primary-rgb), 0.16);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 40px;
	font-weight: 700;
	left: 18px;
	line-height: 1;
	position: absolute;
	top: 24px;
}

.bk-step__icon {
	align-items: center;
	background: var(--bk-color-surface);
	border-radius: 11px;
	box-shadow: var(--bk-shadow-sm);
	color: var(--bk-color-primary);
	display: inline-flex;
	height: 46px;
	justify-content: center;
	margin-bottom: 18px;
	width: 46px;
}

.bk-step__icon .bk-icon {
	height: 23px;
	width: 23px;
}

.bk-step h3 {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 8px;
}

.bk-step p {
	color: var(--bk-color-muted);
	line-height: 1.55;
	margin: 0;
}

@media (min-width: 768px) {
	.bk-section {
		padding: 90px 0;
	}

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

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

	.bk-step {
		min-height: 270px;
		padding: 78px 24px 28px;
	}

	.bk-step::after {
		background: var(--bk-color-line);
		content: "";
		height: 2px;
		position: absolute;
		right: -18px;
		top: 46px;
		width: 18px;
	}

	.bk-step:last-child::after {
		display: none;
	}

	.bk-step__number {
		font-size: 34px;
		left: 24px;
		top: 25px;
	}

	.bk-step__icon {
		margin-bottom: 24px;
	}
}

@media (min-width: 1200px) {
	.bk-menu > li > a {
		padding-inline: 14px;
	}
}

.bk-main {
	display: block;
}

.bk-hero {
	background:
		radial-gradient(circle at 10% 20%, rgba(255, 184, 0, 0.1), transparent 24rem),
		linear-gradient(180deg, #fff 0%, var(--bk-color-soft) 100%);
	overflow: hidden;
	padding: 54px 0 64px;
	position: relative;
}

.bk-hero::before {
	background-image: radial-gradient(rgba(var(--bk-color-primary-rgb), 0.2) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
	content: "";
	height: 180px;
	opacity: 0.55;
	position: absolute;
	right: -35px;
	top: 20px;
	width: 180px;
}

.bk-hero__intro {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	position: relative;
	z-index: 1;
}

.bk-hero__copy {
	max-width: 700px;
}

.bk-eyebrow {
	color: var(--bk-color-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.bk-hero h1 {
	color: var(--bk-color-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: clamp(38px, 10vw, 72px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.02;
	margin: 0;
	max-width: 760px;
}

.bk-hero__lead {
	color: var(--bk-color-muted);
	font-size: clamp(17px, 4.5vw, 21px);
	line-height: 1.55;
	margin: 22px 0 0;
	max-width: 660px;
}

.bk-hero__art {
	display: none;
}

.bk-product-tiles {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 38px;
	position: relative;
	z-index: 2;
}

.bk-product-tile {
	min-width: 0;
}

.bk-product-tile > a,
.bk-product-tile__disabled {
	align-items: flex-start;
	background: var(--bk-color-surface);
	border: 1px solid rgba(231, 237, 245, 0.7);
	border-radius: var(--bk-radius-md);
	box-shadow: var(--bk-shadow-sm);
	color: var(--bk-color-ink);
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 150px;
	padding: 18px;
	position: relative;
}

.bk-product-tile > a:hover,
.bk-product-tile > a:focus {
	box-shadow: var(--bk-shadow-md);
	color: var(--bk-color-primary);
	transform: translateY(-4px);
}

.bk-product-tile__icon {
	align-items: center;
	background: var(--bk-color-primary-soft);
	border-radius: 12px;
	color: var(--bk-color-primary);
	display: inline-flex;
	height: 48px;
	justify-content: center;
	margin-bottom: 22px;
	width: 48px;
}

.bk-product-tile--green-card .bk-product-tile__icon {
	background: var(--bk-color-secondary-soft);
	color: var(--bk-color-secondary);
}

.bk-product-tile--tourism .bk-product-tile__icon {
	background: var(--bk-color-primary-soft);
	color: var(--bk-color-primary);
}

.bk-product-tile--dcv .bk-product-tile__icon {
	background: var(--bk-color-secondary-soft);
	color: var(--bk-color-secondary);
}

.bk-product-tile__title {
	font-family: "Poppins", Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	padding-right: 24px;
}

.bk-product-tile__arrow {
	bottom: 15px;
	color: var(--bk-color-muted);
	position: absolute;
	right: 15px;
}

.bk-product-tile__arrow .bk-icon {
	height: 18px;
	width: 18px;
}

@media (min-width: 768px) {
	.bk-hero {
		padding: 72px 0 80px;
	}

	.bk-product-tiles {
		gap: 18px;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		margin-top: 50px;
	}

	.bk-product-tile > a,
	.bk-product-tile__disabled {
		min-height: 176px;
		padding: 22px;
	}

	.bk-product-tile__title {
		font-size: 17px;
	}
}

@media (min-width: 992px) {
	.bk-hero__intro {
		grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
		min-height: 390px;
	}

	.bk-hero__art {
		display: block;
		margin-right: -30px;
	}

	.bk-hero__art svg {
		display: block;
		height: auto;
		width: min(520px, 42vw);
	}
}
