@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
	--bm-teal: #00c2c2;
	--bm-teal-dark: #008080;
	--bm-ink: #2f2f2f;
	--bm-muted: #737f97;
	--bm-bg-grey: #F2F2F2;
	--bm-bg: white;
	--bm-soft: #eaf5f6;
	--bm-soft-accent: rgba(178, 240, 240, 0.2);
	--bm-surface: #ffffff;
	--bm-border: #d8e5e9;
	--bm-radius-sm: 6px;
	--bm-radius-md: 10px;
	--bm-radius-lg: 18px;
	--bm-radius-xl: 25px;
	--bm-shadow-soft: 0 6px 24px rgba(47, 47, 47, 0.08);
	--bm-max: 1280px;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	color: var(--bm-ink);
	background: var(--bm-bg);
}

body {
	overflow-x: hidden;
}

a {
	color: inherit;
}

body a:hover,
body a:focus-visible {
	color: var(--bm-teal-dark);
}

.bm-page {
	min-height: 100vh;
}

.bm-container {
	width: min(var(--bm-max), calc(100% - 40px));
	margin: 0 auto;
}

.bm-content-stack {
	display: grid;
	gap: 96px;
	padding-block: 88px;
}

.bm-section {
	display: grid;
	gap: 34px;
}

.bm-section h2,
.bm-section-title {
	margin: 0;
	font-size: clamp(26px, 3.2vw, 42px);
	line-height: 1.1;
	font-weight: 500;
}

.bm-eyebrow {
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.08em;
	color: var(--bm-teal-dark);
	text-transform: uppercase;
	font-weight: 600;
}

.bm-btn {
	border: 0;
	border-radius: var(--bm-radius-sm);
	background: var(--bm-teal);
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	padding: 20px 28px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 20px rgba(0, 194, 194, 0.26);
}

.bm-btn:hover {
	background: #00abab;
	color: #fff;
	transform: translateY(-1px);
}

.bm-btn:focus-visible {
	outline: 2px solid #003f3f;
	outline-offset: 2px;
}

.bm-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.bm-btn-outline {
	background: transparent;
	border: 1px solid var(--bm-teal);
	color: var(--bm-teal-dark);
	box-shadow: none;
}

.bm-btn-outline:hover {
	background: rgba(0, 194, 194, 0.08);
	color: var(--bm-teal-dark);
}

.bm-btn-block {
	width: 100%;
}

.bm-btn img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	display: block;
}

.bm-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	backdrop-filter: blur(8px);
}

.bm-header-inner {
	min-height: 127px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.bm-logo {
	display: block;
	width: 220px;
	max-width: 42vw;
	flex: 0 0 auto;
	line-height: 0;
}

.bm-logo img {
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 2420 / 370;
	object-fit: contain;
	display: block;
}

.bm-nav {
	display: flex;
	align-items: center;
	gap: 34px;
}

.bm-nav-collapse {
	display: block;
}

.bm-nav-collapse.collapse:not(.show) {
	display: block;
}

.bm-nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.bm-nav-links a {
	text-decoration: none;
	font-size: 16px;
	color: var(--bm-ink);
}

.bm-nav-links a:hover,
.bm-nav-links a.active {
	color: var(--bm-teal-dark);
}

.bm-nav-cta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bm-menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	font-size: 24px;
}

.bm-hero {
	background: var(--bm-soft-accent);
	padding: 90px 0 66px;
	position: relative;
	overflow: visible;
}

.bm-hero-content {
	position: relative;
	display: grid;
	gap: 44px;
}

.bm-hero h1 {
	margin: 0;
	max-width: 670px;
	font-size: clamp(38px, 16vw, 50px);
	line-height: 0.95;
	font-weight: 400;
	animation: bm-rise 0.55s ease-out both;
}

.bm-search-shell {
	background: var(--bm-surface);
	border-radius: 0;
	padding: 18px 22px;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.3fr auto;
	gap: 18px;
	align-items: end;
	box-shadow: var(--bm-shadow-soft);
	position: relative;
}

.bm-field {
	display: grid;
	gap: 8px;
	position: relative;
}

.bm-field label,
.bm-input-caption {
	margin: 0;
	font-size: 13px;
	color: var(--bm-muted);
	font-weight: 500;
}

.bm-field select,
.bm-field input,
.bm-auth-field input {
	width: 100%;
	border: 1px solid transparent;
	border-bottom: 1px solid var(--bm-border);
	background: transparent;
	min-height: 42px;
	padding: 4px 8px 4px 0;
	border-radius: 0;
	color: var(--bm-ink);
	font-size: 16px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.bm-select-arrow {
	position: absolute;
	right: 0;
	bottom: 14px;
	width: 18px;
	height: 18px;
	pointer-events: none;
	object-fit: contain;
	display: block;
}

.bm-field select:focus,
.bm-field input:focus,
.bm-auth-field input:focus {
	outline: none;
	border-bottom-color: var(--bm-teal);
}

.bm-search-shell .nice-select {
	width: 100%;
	float: none;
	border: 0;
	border-bottom: 1px solid var(--bm-border);
	border-radius: 0;
	padding: 0 24px 0 0;
	height: 42px;
	line-height: 42px;
	font-size: 16px;
	color: var(--bm-ink);
	background: transparent;
}

.bm-search-shell .nice-select::after {
	display: none;
}

.bm-search-shell .nice-select.open {
	border-bottom-color: transparent;
}

.bm-search-shell .nice-select.open .list {
	left: 0;
	right: auto;
	width: 100% !important;
	margin-top: 4px;
	padding: 8px 8px 6px;
	border-radius: 8px;
	border-color: var(--bm-border);
	box-shadow: var(--bm-shadow-soft);
	z-index: 1200;
}

.bm-search-shell .nice-select .list {
	left: 0;
	right: auto;
	width: 100% !important;
	padding: 8px 8px 6px;
	z-index: 1200;
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
}

.bm-search-shell .nice-select-search-input {
	display: block;
	width: 100%;
	height: 36px;
	margin: 0 0 6px;
	padding: 0 12px;
	border: 1px solid var(--bm-border);
	border-radius: 10px;
	background: #f7fbfc;
	color: var(--bm-ink);
	font-size: 14px;
	line-height: 1.2;
	box-sizing: border-box;
}

.bm-search-shell .nice-select .option {
	padding-right: 14px;
}

.bm-search-shell .nice-select-search-input::placeholder {
	color: var(--bm-muted);
}

.bm-search-shell .nice-select-search-input:focus {
	border-color: var(--bm-teal);
}

.bm-content-stack {
	position: relative;
	z-index: 1;
}

.bm-search-results-wrap {
	position: relative;
}

.bm-logos-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.bm-featured-partners-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 28px;
	align-items: center;
}

.bm-featured-partners-link {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bm-logo-card {
	border: 1px solid var(--bm-teal);
	border-radius: var(--bm-radius-xl);
	background: #fff;
	min-height: 166px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bm-logo-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--bm-shadow-soft);
}

.bm-logo-card img {
	max-width: 100%;
	width: 100%;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	display: block;
}

.bm-link-inline {
	color: var(--bm-teal-dark);
	font-size: 18px;
	text-decoration: underline;
	text-underline-offset: 3px;
	line-height: 1.4;
}

.bm-partners-page {
	background: #fff;
}

.bm-partners-hero {
	padding-bottom: 58px;
}

.bm-logos-grid-partners {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.bm-logos-grid-partners .bm-logo-card {
	min-height: 140px;
	padding: 20px;
}

.bm-partners-grid-section {
	gap: 28px;
}

.bm-partners-cta {
	align-items: center;
}

.bm-cards-5 {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.bm-service-card {
	display: grid;
	gap: 14px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease;
}

.bm-service-card:hover {
	transform: translateY(-2px);
}

.bm-service-image {
	height: 266px;
	border-radius: var(--bm-radius-xl);
	overflow: hidden;
}

.bm-service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bm-service-card h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 500;
}

.bm-benefits {
	background: var(--bm-teal);
	color: #fff;
}

.bm-benefits-wrap {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 34px;
	align-items: center;
}

.bm-benefits h2 {
	margin: 0 0 28px;
	color: #fff;
	font-size: 45px;
	line-height: 1.08;
	font-weight: 600;
}

.bm-benefits ul {
	margin-top: 60px;
	padding: 0;
	display: grid;
	gap: 28px;
}

.bm-benefits li {
	list-style: none;
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	align-items: center;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 200;
}

.bm-benefits li img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
}

.bm-benefits-image {
	justify-self: end;
	width: min(560px, 100%);
	height: 520px;
	border-radius: 34px;
}

.bm-benefits-image img {
	height: 100%;
	object-fit: cover;
}

.bm-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.bm-stat {
	background: var(--bm-soft-accent);
	border-radius: var(--bm-radius-sm);
	min-height: 220px;
	display: grid;
	place-content: start;
	justify-content: center;
	text-align: center;
	gap: 30px;
	padding: 40px 10px;
}

.bm-stat i {
	color: var(--bm-teal);
	font-size: 44px;
}

.bm-stat-icon {
	max-height: 96px;
	margin-inline: auto;
	object-fit: contain;
	display: block;
}

.bm-stat strong {
	font-size: 56px;
	line-height: 1;
	font-weight: 400;
}

.bm-stat span {
	color: var(--bm-teal-dark);
	font-size: 24px;
	line-height: 1.2;
	font-weight: 500;
}

.bm-partner,
.bm-register-cta {
	background: #fff;
	border-radius: var(--bm-radius-sm);
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 34px;
	align-items: stretch;
	overflow: hidden;
}

.bm-partner-media,
.bm-register-media {
	min-height: 420px;
}

.bm-partner-media img,
.bm-register-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bm-partner-copy,
.bm-register-copy {
	padding: 48px;
	display: grid;
	align-content: center;
	gap: 40px;
}

.bm-partner-copy h2,
.bm-register-copy h2 {
	font-size: clamp(32px, 4vw, 60px);
	line-height: 1.05;
	font-weight: 400;
}

.bm-copy {
	margin: 0;
	color: var(--bm-muted);
	font-size: 16px;
	line-height: 1.5;
}

.bm-register-cta {
	background: var(--bm-soft-accent);
	grid-template-columns: 1fr 0.95fr;
}

.bm-register-cta .bm-register-copy {
	padding-inline: 56px;
}

.bm-register-cta .bm-register-media {
	padding: 40px 40px 40px 0;
}

.bm-register-cta .bm-register-media img {
	border-radius: var(--bm-radius-sm);
}

.bm-partner-page {
	background: #fff;
}

.bm-partner-hero {
	background: var(--bm-soft-accent);
	padding: 48px 0 58px;
}

.bm-partner-hero-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
	gap: 56px;
	align-items: center;
}

.bm-partner-hero-copy {
	display: grid;
	gap: 26px;
	max-width: 420px;
}

.bm-partner-hero-copy h1 {
	margin: 0;
	font-size: clamp(42px, 4.6vw, 60px);
	line-height: 1.04;
	font-weight: 400;
}

.bm-partner-hero-copy .bm-copy {
	max-width: 320px;
	font-size: 18px;
	line-height: 1.5;
}

.bm-partner-hero-media {
	background: rgba(255, 255, 255, 0.72);
	min-height: 396px;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.bm-partner-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bm-partner-benefits {
	background: var(--bm-teal);
	border-radius: 0;
}

.bm-partner-benefits .bm-benefits-wrap {
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	gap: 52px;
	padding-block: 56px 0;
}

.bm-partner-benefits li {
	align-items: start;
}

.bm-partner-benefits li span {
	color: #fff;
}

.bm-partner-benefits li strong {
	font-weight: 700;
}

.bm-partner-benefits-image {
	height: 420px;
	align-self: end;
}

.bm-partner-benefits-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
}

.bm-partner-content {
	padding-top: 46px;
}

.bm-partner-offer {
	display: grid;
	place-items: center;
}

.bm-partner-offer-card {
	width: min(616px, 100%);
	background: var(--bm-soft-accent);
	padding: 64px 48px;
	text-align: center;
	display: grid;
	gap: 18px;
}

.bm-partner-offer-card h2 {
	margin: 0;
	font-size: clamp(32px, 3.2vw, 38px);
	line-height: 1.15;
	font-weight: 400;
}

.bm-partner-offer-card .bm-copy {
	max-width: 510px;
	margin: 0 auto;
}

.bm-partner-offer-card .bm-copy strong {
	color: var(--bm-teal);
	font-weight: 700;
}

.bm-partner-offer-note {
	color: var(--bm-ink);
}

.bm-partner-offer-card .bm-btn {
	margin: 10px auto 0;
}

.bm-partner-steps {
	gap: 28px;
}

.bm-partner-steps-list {
	margin: 0;
	padding-left: 22px;
	color: var(--bm-muted);
	font-size: 16px;
	line-height: 1.6;
}

.bm-partner-steps-list strong {
	color: var(--bm-ink);
}

.bm-partner-form-section {
	background: var(--bm-soft-accent);
	padding: 68px 0 96px;
}

.bm-partner-form-section .bm-section-title {
	text-align: center;
	margin-bottom: 48px;
}

.bm-partner-form-card {
	width: min(548px, 100%);
	margin: 0 auto;
	background: #fff;
	padding: 34px 28px 30px;
	display: grid;
	gap: 24px;
	box-shadow: 0 10px 30px rgba(47, 47, 47, 0.06);
}

.bm-partner-form-brand img {
	width: 182px;
	height: auto;
	display: block;
}

.bm-partner-form-card h3,
.bm-partner-branches h4 {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 500;
}

.bm-partner-form {
	display: grid;
	gap: 8px;
}

.bm-partner-form-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 8px;
}

.bm-partner-form-grid-single {
	grid-template-columns: 1fr;
}

.bm-partner-form-grid-vat {
	align-items: end;
}

.bm-partner-form-field {
	display: grid;
	gap: 6px;
}

.bm-partner-form-field span {
	font-size: 12px;
	line-height: 1.2;
	color: var(--bm-muted);
}

.bm-partner-form-field input,
.bm-partner-form-field textarea {
	width: 100%;
	border: 0;
	border-radius: 4px;
	background: #ececec;
	padding: 12px 14px;
	min-height: 44px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--bm-ink);
}

.bm-partner-form-field textarea {
	resize: vertical;
	min-height: 72px;
}

.bm-partner-form-check {
	min-height: 44px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	line-height: 1.35;
	color: var(--bm-muted);
}

.bm-partner-form-check input {
	width: 14px;
	height: 14px;
	margin: 0;
}

.bm-partner-form-divider {
	height: 1px;
	background: rgba(47, 47, 47, 0.12);
	margin: 12px 0 4px;
}

.bm-partner-branches {
	display: grid;
	gap: 14px;
	text-align: center;
}

.bm-partner-branch-check {
	justify-content: center;
}

.bm-partner-branches-copy {
	margin: 0;
	font-size: 11px;
	line-height: 1.45;
	color: var(--bm-muted);
}

.bm-partner-add-branch {
	border: 0;
	background: transparent;
	color: var(--bm-teal);
	font-size: 12px;
	line-height: 1.2;
	justify-self: center;
}

.bm-partner-form .bm-btn {
	margin-top: 10px;
}

.bm-about-page {
	background: #fff;
}

.bm-about-content {
	gap: 74px;
}

.bm-about-hero {
	background: var(--bm-soft-accent);
	overflow: hidden;
}

.bm-about-hero-grid {
	min-height: 620px;
	display: grid;
	grid-template-columns: minmax(560px, 0.92fr) minmax(580px, 1.08fr);
	gap: 28px;
	align-items: center;
}

.bm-about-hero-copy {
	max-width: 620px;
	display: grid;
	gap: 28px;
	position: relative;
	z-index: 2;
	padding-block: 54px;
}

.bm-about-hero-copy h1 {
	margin: 0;
	font-size: clamp(54px, 4.4vw, 66px);
	line-height: 0.98;
	font-weight: 400;
	max-width: 740px;
}

.bm-about-hero-copy .bm-copy {
	max-width: 520px;
	font-size: 17px;
	line-height: 1.58;
}

.bm-about-hero-media {
	min-height: 620px;
	position: relative;
	display: block;
	overflow: visible;
}

.bm-about-hero-wave {
	position: absolute;
	right: calc((100vw - min(var(--bm-max), calc(230% - 40px))) / -2 - 28px);
	bottom: -1px;
	width: min(1180px, 148%);
	max-width: none;
	height: auto;
}

.bm-about-hero-phone {
	position: absolute;
	z-index: 1;
	right: 78px;
	bottom: -44px;
	width: 80%;
	height: auto;
	object-fit: contain;
	display: block;
}

.bm-about-intro {
	gap: 34px;
}

.bm-about-intro-copy {
	display: grid;
	gap: 18px;
	max-width: 1120px;
}

.bm-about-pillars {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bm-about-pillar {
	background: var(--bm-soft-accent);
	min-height: 256px;
	border-radius: 14px;
	padding: 34px 28px;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.bm-about-pillar-label {
	color: var(--bm-teal);
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.04em;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	justify-self: center;
}

.bm-about-pillar .bm-copy {
	max-width: 350px;
}

.bm-about-benefits {
	background: var(--bm-teal);
	color: #fff;
	padding: 52px 0;
}

.bm-about-benefits-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	gap: 36px;
	align-items: center;
}

.bm-about-benefits-copy h2 {
	margin: 0 0 34px;
	color: #fff;
	font-size: clamp(36px, 3.8vw, 54px);
	line-height: 1.08;
	font-weight: 600;
}

.bm-about-benefits-list {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.bm-about-benefits-list li {
	list-style: none;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	font-size: 17px;
	line-height: 1.45;
}

.bm-about-benefits-list li img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-top: 4px;
}

.bm-about-benefits-list li strong {
	font-weight: 700;
}

.bm-about-benefits-media {
	display: grid;
	justify-items: end;
}

.bm-about-benefits-media img {
	width: min(510px, 100%);
	height: auto;
	object-fit: contain;
	display: block;
}

.bm-about-partners {
	background: var(--bm-soft-accent);
	padding: 56px 48px;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
	gap: 42px;
	align-items: center;
}

.bm-about-partners-copy {
	display: grid;
	gap: 20px;
	max-width: 420px;
}

.bm-about-partners-copy h2 {
	margin: 0;
	font-size: clamp(36px, 3.2vw, 52px);
	line-height: 0.98;
	font-weight: 400;
}

.bm-about-partners-list {
	margin: 0;
	padding-left: 18px;
	color: var(--bm-muted);
	font-size: 15px;
	line-height: 1.55;
}

.bm-about-partners-media img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.bm-profile-page {
	background: #fff;
}

.bm-profile-stage {
	background: var(--bm-soft-accent);
	padding: 88px 0 110px;
}

.bm-profile-shell {
	display: grid;
	gap: 56px;
}

.bm-profile-title {
	margin: 0;
	font-size: clamp(42px, 4vw, 62px);
	line-height: 1.05;
	font-weight: 400;
}

.bm-profile-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}

.bm-profile-tabs {
	display: grid;
	gap: 18px;
	padding-top: 28px;
}

.bm-profile-tabs a {
	min-height: 52px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	color: #9a9a9a;
	text-decoration: none;
	font-size: 18px;
	line-height: 1.25;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.bm-profile-tabs a:hover {
	color: var(--bm-teal-dark);
}

.bm-profile-tabs a.active {
	background: var(--bm-teal);
	color: #fff;
}

.bm-profile-card {
	background: #fff;
	padding: 56px 60px 64px;
	box-shadow: 0 8px 24px rgba(47, 47, 47, 0.08);
	display: grid;
	gap: 52px;
}

.bm-profile-card-section {
	display: grid;
	gap: 28px;
}

.bm-profile-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.bm-profile-card-header h2,
.bm-profile-card-section h2 {
	margin: 0;
	font-size: clamp(30px, 2.6vw, 42px);
	line-height: 1.12;
	font-weight: 400;
}

.bm-profile-inline-link {
	color: var(--bm-teal);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.35;
}

.bm-profile-info-list {
	display: grid;
	gap: 22px;
}

.bm-profile-info-row {
	display: grid;
	grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.bm-profile-info-row dt,
.bm-profile-info-row dd {
	margin: 0;
}

.bm-profile-info-row dt {
	color: var(--bm-ink);
	font-size: 16px;
	line-height: 1.35;
	font-weight: 500;
}

.bm-profile-info-row dd {
	color: #9a9a9a;
	font-size: 16px;
	line-height: 1.45;
}

.bm-profile-info-row dd.is-strong {
	color: var(--bm-teal);
	font-size: clamp(34px, 3vw, 48px);
	line-height: 1.08;
	font-weight: 400;
}

.bm-profile-info-row--triple {
	grid-template-columns: minmax(230px, 1.1fr) minmax(150px, 0.8fr) minmax(150px, 0.9fr);
}

.bm-profile-info-row--triple dt {
	grid-column: 1;
}

.bm-profile-info-row--triple dd:nth-of-type(1) {
	grid-column: 2;
}

.bm-profile-info-row--triple dd:nth-of-type(2) {
	grid-column: 3;
}

.bm-profile-dd-flex {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.bm-profile-copy {
	margin: 0;
	color: #9a9a9a;
	font-size: 16px;
	line-height: 1.6;
}

.bm-profile-form-inline {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0;
	border: 1px solid var(--bm-teal);
	border-radius: 4px;
	overflow: hidden;
	max-width: 660px;
}

.bm-profile-form-inline input {
	min-height: 58px;
	border: 0;
	padding: 0 18px;
	font-size: 18px;
	line-height: 1.2;
}

.bm-profile-form-inline input:focus {
	outline: none;
}

.bm-profile-form-inline .bm-btn {
	border-radius: 0;
	min-width: 194px;
	box-shadow: none;
}

.bm-profile-table-wrap {
	border: 1px solid rgba(47, 47, 47, 0.08);
}

.bm-profile-table-toolbar {
	background: var(--bm-teal);
	color: #fff;
	padding: 8px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.bm-profile-table-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 600;
}

.bm-profile-table-title a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 400;
}

.bm-profile-table-search {
	position: relative;
	width: min(210px, 100%);
}

.bm-profile-table-search input {
	width: 100%;
	height: 22px;
	border: 0;
	border-radius: 0;
	padding: 0 24px 0 8px;
	font-size: 11px;
}

.bm-profile-table-search span {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	color: #8fa2a9;
	font-size: 12px;
}

.bm-profile-table {
	width: 100%;
	border-collapse: collapse;
}

.bm-profile-table th,
.bm-profile-table td {
	padding: 8px 10px;
	border-bottom: 1px solid rgba(47, 47, 47, 0.08);
	font-size: 11px;
	line-height: 1.3;
	text-align: left;
}

.bm-profile-table th {
	color: var(--bm-ink);
	font-weight: 500;
	background: #fff;
}

.bm-profile-table td {
	color: #666;
}

.bm-profile-table-footer {
	padding: 8px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: #888;
	font-size: 10px;
	line-height: 1.2;
}

.bm-profile-table-pagination {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bm-profile-table-pagination .is-current {
	color: var(--bm-teal);
	border-bottom: 2px solid var(--bm-teal);
	padding-bottom: 2px;
}

.bm-profile-orders-meta {
	padding: 16px 22px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(47, 47, 47, 0.06);
	color: var(--bm-ink);
	font-size: 16px;
	line-height: 1.35;
	font-weight: 600;
}

.bm-profile-orders {
	display: grid;
	gap: 26px;
}

.bm-profile-orders + .bm-results-pagination,
.bm-profile-points-ledger + .bm-results-pagination {
	margin-top: 28px;
	justify-content: center;
}

.bm-profile-order-card {
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.5fr) minmax(210px, 0.85fr);
	gap: 22px;
	align-items: center;
	padding: 22px 24px;
	border: 2px solid #c6ccd8;
	border-radius: 22px;
	background: #fff;
}

.bm-profile-order-card--active {
	border-color: #ff9500;
}

.bm-profile-order-brand {
	display: grid;
	gap: 14px;
}

.bm-profile-order-logo {
	width: 200px;
	max-width: 100%;
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.bm-profile-order-logo img {
	max-width: 100%;
	width: auto;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	display: block;
}

.bm-profile-order-logo--placeholder {
	padding: 10px 18px;
	border-radius: 18px;
	background: #f7f9fb;
	border: 1px solid rgba(47, 47, 47, 0.08);
}

.bm-profile-order-brand-copy {
	display: grid;
	gap: 4px;
}

.bm-profile-order-brand-copy h3,
.bm-profile-order-main h3 {
	margin: 0;
}

.bm-profile-order-brand-copy h3 {
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
}

.bm-profile-order-brand-copy p {
	margin: 0;
	color: var(--bm-ink);
	font-size: 14px;
	line-height: 1.35;
}

.bm-profile-order-main {
	display: grid;
	gap: 8px;
}

.bm-profile-order-status {
	margin: 0;
	color: var(--bm-ink);
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
}

.bm-profile-order-main h3 {
	font-size: clamp(22px, 1.8vw, 30px);
	line-height: 1.02;
	font-weight: 600;
}

.bm-profile-order-term,
.bm-profile-order-reward {
	margin: 0;
	font-size: 14px;
	line-height: 1.35;
	color: var(--bm-ink);
}

.bm-profile-order-price {
	margin: 0;
	color: var(--bm-ink);
	font-size: clamp(18px, 1.5vw, 24px);
	line-height: 1.15;
	font-weight: 700;
}

.bm-profile-order-side {
	display: grid;
	gap: 14px;
	justify-items: end;
}

.bm-profile-order-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.bm-profile-order-invoice {
	min-width: 104px;
}

@media (max-width: 1100px) {
	.bm-profile-order-card {
		grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.4fr);
	}

	.bm-profile-order-side {
		grid-column: 1 / -1;
		grid-template-columns: 1fr auto;
		align-items: center;
		justify-items: start;
	}
}

.bm-profile-points-summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bm-profile-points-pill {
	padding: 20px 24px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(47, 47, 47, 0.06);
	color: var(--bm-ink);
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
}

.bm-profile-form-inline-wide {
	max-width: none;
}

.bm-profile-points-ledger {
	display: grid;
	gap: 26px;
}

.bm-profile-points-item {
	padding: 28px 22px;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(47, 47, 47, 0.06);
	display: grid;
	gap: 18px;
}

.bm-profile-points-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bm-profile-points-head strong {
	font-size: clamp(24px, 2vw, 34px);
	line-height: 1.1;
	font-weight: 600;
}

.bm-profile-points-place {
	margin: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(47, 47, 47, 0.08);
	color: var(--bm-muted);
	font-size: 16px;
	line-height: 1.45;
}

.bm-profile-points-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.bm-profile-points-row time {
	color: var(--bm-teal);
	font-size: 18px;
	line-height: 1.35;
	font-weight: 600;
}

.bm-profile-points-amount {
	font-size: clamp(28px, 2vw, 34px);
	line-height: 1.1;
	font-weight: 700;
}

.bm-profile-points-amount.is-positive,
.bm-profile-points-amount.is-negative {
	color: var(--bm-teal);
}

.bm-profile-purchase-intro {
	display: grid;
	gap: 20px;
	max-width: 980px;
}

.bm-profile-consent-grid {
	display: grid;
	gap: 34px;
}

.bm-profile-actions {
	display: grid;
	gap: 18px;
	max-width: 540px;
}

.bm-profile-subform {
	gap: 16px;
	padding-top: 10px;
}

.bm-profile-subform-label {
	margin: 0;
	color: var(--bm-ink);
	font-size: 16px;
	line-height: 1.4;
}

.bm-profile-btn-outline {
	background: #fff;
	border: 1px solid var(--bm-teal);
	color: var(--bm-teal);
	box-shadow: none;
}

.bm-profile-btn-outline:hover {
	background: rgba(0, 194, 194, 0.06);
	color: var(--bm-teal);
}

.bm-profile-btn-outline-danger {
	background: #fff;
	border: 1px solid #dd5144;
	color: #dd5144;
	box-shadow: none;
}

.bm-profile-btn-outline-danger:hover {
	background: rgba(221, 81, 68, 0.06);
	color: #dd5144;
}

.bm-profile-btn-danger {
	background: #dd5144;
	box-shadow: none;
}

.bm-profile-btn-danger:hover {
	background: #c24438;
}

.bm-footer {
	margin-top: 80px;
	background: var(--bm-bg);
	border-top: 1px solid rgba(47, 47, 47, 0.08);
	background: var(--bm-bg-grey);
}

.bm-profile-page + .bm-footer {
	margin-top: 0;
}

.bm-partner-page + .bm-footer {
	margin-top: 0;
}

.bm-footer-top {
	min-height: 420px;
	display: grid;
	grid-template-columns: minmax(320px, 1.45fr) repeat(3, minmax(160px, auto)) auto;
	gap: 72px;
	align-items: start;
	padding: 76px 0 56px;
}

.bm-footer-brand {
	display: grid;
	gap: 28px;
}

.bm-footer-brand > :first-child {
	padding-bottom: 34px;
}

.bm-footer-brand img {
	width: 246px;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.bm-contact-item {
	color: var(--bm-muted);
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	line-height: 1.5;
	text-decoration: none;
}

.bm-contact-item:hover {
	color: var(--bm-teal-dark);
}

a.bm-contact-item:not([href]):hover {
	color: var(--bm-muted);
}

.bm-contact-item i {
	width: 23px;
	min-width: 23px;
	height: 23px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--bm-teal);
	font-style: normal;
	margin-top: 2px;
}

.bm-contact-item:hover i {
	color: var(--bm-teal-dark);
}

a.bm-contact-item:not([href]):hover i {
	color: var(--bm-teal);
}

.bm-contact-item i img {
	width: auto;
	height: auto;
	max-width: 23px;
	max-height: 23px;
	object-fit: contain;
	display: block;
}

.bm-footer-col ul {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.bm-footer-col li {
	list-style: none;
}

.bm-footer-col a {
	color: var(--bm-muted);
	text-decoration: none;
	font-size: 18px;
	line-height: 1.3;
}

.bm-footer-col a:hover {
	color: var(--bm-teal-dark);
}

.bm-footer-social {
	display: flex;
	gap: 10px;
	justify-self: end;
	align-self: start;
}

.bm-footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 3px;
	background: var(--bm-teal);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.bm-footer-social img {
	object-fit: contain;
	display: block;
}

.bm-footer-bar {
	border-top: 1px solid rgba(47, 47, 47, 0.2);
	padding: 18px 0;
	color: var(--bm-muted);
	font-size: 15px;
}

.bm-auth-page {
	background: var(--bm-soft);
}

.bm-auth-wrap {
	padding: 90px 0 120px;
}

.bm-auth-card {
	width: min(788px, calc(100% - 28px));
	margin: 0 auto;
	background: var(--bm-surface);
	border-radius: 8px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
	padding: 58px 58px 42px;
	display: grid;
	gap: 26px;
}

.bm-auth-title {
	display: grid;
	place-items: center;
	text-align: center;
	gap: 14px;
}

.bm-auth-title h1 {
	margin: 0;
	font-size: 42px;
	line-height: 1.2;
	font-weight: 500;
}

.bm-auth-title img {
	width: 271px;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.bm-auth-form,
.bm-auth-inline-form {
	display: grid;
	gap: 14px;
}

.bm-auth-field {
	background: #ececec;
	border-radius: 8px;
	min-height: 77px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 10px 16px;
}

.bm-auth-field > i {
	font-size: 18px;
	color: #000;
}

.bm-auth-field label {
	display: block;
	font-size: 12px;
	line-height: 1.2;
	color: var(--bm-ink);
}

.bm-auth-field input {
	border: 0;
	padding: 0;
	min-height: 28px;
	background: transparent;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
}

.bm-auth-field button {
	border: 0;
	background: transparent;
	color: var(--bm-ink);
}

.bm-auth-toggle {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.bm-auth-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--bm-ink);
}

.bm-auth-options .form-check {
	margin: 0;
}

.bm-auth-options .form-check-label,
.bm-auth-options a {
	color: var(--bm-ink);
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
}

.bm-auth-options a {
	color: var(--bm-teal);
}

.bm-auth-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--bm-ink);
	font-size: 11px;
	line-height: 1.35;
}

.bm-auth-checkbox input {
	margin-top: 2px;
}

.bm-auth-checkbox a {
	color: var(--bm-teal-dark);
}

.bm-auth-sep {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #2f2f2f;
	font-size: 14px;
}

.bm-auth-sep::before,
.bm-auth-sep::after {
	content: '';
	height: 1px;
	flex: 1;
	background: #c8c8c8;
}

.bm-provider-btn {
	width: 100%;
	min-height: 78px;
	border-radius: 8px;
	border: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.11);
	background: #fff;
	color: var(--bm-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.bm-provider-btn i {
	font-size: 24px;
}

.bm-provider-btn img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	display: block;
}

.bm-auth-bottom {
	text-align: center;
	font-size: 14px;
}

.bm-auth-bottom a {
	color: var(--bm-teal);
	text-decoration: none;
}

.bm-search-results-wrap {
	padding-block: 56px 50px;
	background: #fff;
}

.bm-results-hero .bm-hero-content {
	gap: 32px;
}

.bm-results-hero h1 {
	max-width: 1180px;
	line-height: 1;
}

.bm-results-title-inline {
	white-space: nowrap;
	max-width: none;
}

.bm-results-hero-copy {
	display: grid;
	gap: 16px;
	max-width: 1180px;
}

.bm-back-link {
	width: fit-content;
	color: var(--bm-teal);
	text-decoration: none;
	font-size: 15px;
	line-height: 1.4;
}

.bm-back-link::before {
	content: '<';
	margin-right: 8px;
}

.bm-results-kicker {
	margin: 0;
	color: var(--bm-ink);
	font-size: 18px;
	line-height: 1.3;
}

.bm-results-summary {
	max-width: 620px;
}

.bm-results-hero-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: min(860px, 100%);
	margin-top: 10px;
}

.bm-results-hero-meta-wide {
	width: min(860px, 100%);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bm-results-city-strip {
	display: grid;
	gap: 14px;
	width: min(1120px, 100%);
	margin-top: 6px;
}

.bm-results-city-label {
	margin: 0;
	color: var(--bm-muted);
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
}

.bm-results-hero-meta-item {
	min-height: 92px;
	background: rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(0, 194, 194, 0.18);
	padding: 18px 20px;
	display: grid;
	gap: 7px;
	align-content: start;
}

.bm-results-hero-meta-item strong {
	color: var(--bm-ink);
	font-size: 22px;
	line-height: 1.15;
	font-weight: 500;
}

.bm-results-hero-meta-wide .bm-results-hero-meta-item strong {
	font-size: 20px;
}

.bm-results-hero-meta-item span {
	color: var(--bm-muted);
	font-size: 14px;
	line-height: 1.45;
}

.bm-results-title-row {
	display: flex;
	align-items: baseline;
	gap: 18px;
	margin-bottom: 30px;
}

.bm-institution-hero-section {
	padding: 42px 0 34px;
	background: #fff;
}

.bm-institution-hero-section .bm-back-link {
	margin-bottom: 20px;
}

.bm-institution-hero-banner {
	min-height: 420px;
	border-radius: 26px;
	background-size: cover;
	background-position: center;
	padding: 52px 42px 118px;
	color: #fff;
	display: grid;
	align-content: end;
	box-shadow: var(--bm-shadow-soft);
}

.bm-institution-hero-head {
	display: flex;
	align-items: center;
	gap: 22px;
}

.bm-institution-logo-box {
	width: 92px;
	height: 92px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid rgba(20, 31, 45, 0.08);
	box-shadow: 0 14px 28px rgba(17, 26, 36, 0.12);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.bm-institution-logo-box img {
	width: 78%;
	height: 78%;
	object-fit: contain;
}

.bm-institution-hero-copy {
	display: grid;
	gap: 8px;
}

.bm-institution-hero-copy h1 {
	margin: 0;
	color: #fff;
	max-width: 760px;
}

.bm-institution-city {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 22px;
	line-height: 1.25;
	font-weight: 500;
}

.bm-institution-selected-service {
	margin: 2px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	line-height: 1.45;
}

.bm-institution-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	margin-top: 28px;
}

.bm-institution-stat {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
}

.bm-institution-stat i {
	color: #fff;
	font-size: 15px;
}

.bm-institution-overview-card {
	width: min(1080px, calc(100% - 56px));
	margin: -72px auto 0;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 22px 54px rgba(47, 47, 47, 0.14);
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.8fr) minmax(220px, 0.72fr);
	gap: 28px;
	padding: 34px 34px 30px;
	position: relative;
	z-index: 1;
}

.bm-institution-overview-main,
.bm-institution-overview-col {
	display: grid;
	align-content: start;
	gap: 14px;
}

.bm-institution-overview-card h2,
.bm-institution-overview-card h3 {
	margin: 0;
}

.bm-institution-overview-card h2 {
	font-size: 34px;
	line-height: 1.08;
}

.bm-institution-overview-card h3 {
	font-size: 15px;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.bm-institution-overview-card .bm-copy {
	margin: 0;
}

.bm-institution-activity-list {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
	color: var(--bm-ink);
}

.bm-institution-overview-block {
	display: grid;
	gap: 6px;
}

.bm-institution-overview-block p,
.bm-institution-overview-block strong {
	margin: 0;
}

.bm-institution-overview-block p {
	color: var(--bm-muted);
}

.bm-search-results-wrap .bm-search-shell {
	margin-bottom: 30px;
}

@media (max-width: 1199px) {
	.bm-institution-overview-card {
		grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
	}

	.bm-institution-overview-col:last-child {
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.bm-institution-hero-banner {
		min-height: 380px;
		padding: 40px 28px 108px;
	}

	.bm-institution-hero-head {
		align-items: flex-start;
	}

	.bm-institution-overview-card {
		width: min(100%, calc(100% - 24px));
		margin-top: -54px;
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 26px 24px 24px;
	}

	.bm-institution-overview-col:last-child {
		grid-column: auto;
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.bm-institution-hero-section {
		padding-top: 24px;
	}

	.bm-institution-hero-banner {
		min-height: 340px;
		border-radius: 22px;
		padding: 28px 18px 92px;
	}

	.bm-institution-hero-head {
		flex-direction: column;
		gap: 14px;
	}

	.bm-institution-logo-box {
		width: 76px;
		height: 76px;
		border-radius: 18px;
	}

	.bm-institution-city {
		font-size: 18px;
	}

	.bm-institution-hero-stats {
		gap: 12px;
		margin-top: 20px;
	}

	.bm-institution-stat {
		width: 100%;
		font-size: 14px;
	}

	.bm-institution-overview-card {
		width: 100%;
		margin-top: -42px;
		border-radius: 20px;
		padding: 22px 18px 20px;
	}

	.bm-institution-overview-card h2 {
		font-size: 28px;
	}

	.bm-institution-overview-col:last-child {
		grid-template-columns: 1fr;
	}
}

.bm-seo-city-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.bm-seo-city-link {
	min-height: 44px;
	padding: 12px 18px;
	border: 1px solid var(--bm-teal);
	color: var(--bm-teal-dark);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--bm-radius-sm);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.bm-seo-city-link:hover,
.bm-seo-city-link.is-active {
	background: rgba(0, 194, 194, 0.08);
	color: var(--bm-teal-dark);
}

.bm-results-title {
	margin: 0;
	font-size: 32px;
	line-height: 1.1;
	font-weight: 400;
}

.bm-results-count {
	color: #9a9a9a;
	font-size: 24px;
	line-height: 1;
}

.bm-results-grid {
	display: grid;
	gap: 24px;
}

.bm-results-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.bm-pagination-btn {
	min-width: 46px;
	height: 46px;
	border: 1px solid var(--bm-border);
	border-radius: 12px;
	background: #fff;
	color: var(--bm-ink);
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	padding: 0 16px;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.bm-pagination-btn:hover:not(:disabled),
.bm-pagination-btn:focus-visible:not(:disabled) {
	border-color: var(--bm-teal);
	color: var(--bm-teal-dark);
}

.bm-pagination-btn.is-active {
	background: var(--bm-teal);
	border-color: var(--bm-teal);
	color: #fff;
}

.bm-pagination-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.bm-results-empty {
	margin: 8px 0 0;
	color: var(--bm-muted);
}

.bm-result-card {
	background: var(--bm-surface);
	border-radius: var(--bm-radius-sm);
	border: 1px solid var(--bm-teal);
	padding: 22px 20px;
	display: grid;
	grid-template-columns: minmax(180px, 235px) minmax(0, 1fr) minmax(130px, 170px) minmax(180px, 210px);
	gap: 26px;
	align-items: center;
}

.bm-result-badge {
	width: auto;
	height: 40px;
	object-fit: contain;
	display: block;
	margin-bottom: 6px;
}

.bm-result-brand {
	display: grid;
	gap: 14px;
	align-content: start;
}

.bm-result-logo {
	width: 100%;
	max-width: 170px;
	height: 54px;
	object-fit: contain;
	display: block;
}

.bm-result-address {
	margin: 0;
	color: var(--bm-muted);
	font-size: 11px;
	line-height: 1.45;
}

.bm-result-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--bm-muted);
	font-size: 13px;
	line-height: 1;
}

.bm-stars {
	color: var(--bm-teal);
	font-size: 20px;
	letter-spacing: 2px;
}

.bm-result-copy {
	display: grid;
	gap: 10px;
	align-content: center;
}

.bm-result-copy h3 {
	margin: 0;
	font-size: 28px;
	line-height: 1.12;
	font-weight: 500;
	max-width: 720px;
}

.bm-result-meta {
	margin: 0;
	color: var(--bm-ink);
	font-size: 18px;
	line-height: 1.4;
}

.bm-result-reward {
	margin: 0;
	color: var(--bm-muted);
	font-size: 14px;
	line-height: 1.4;
}

.bm-result-reward-secondary {
	color: var(--bm-muted);
}

.bm-result-price-col {
	display: grid;
	justify-items: start;
	gap: 8px;
	min-width: 0;
	align-content: center;
}

.bm-result-price-old {
	margin: 0;
	color: var(--bm-muted);
	font-size: 15px;
	line-height: 1.2;
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
}

.bm-result-price-line {
	margin: 0;
	color: var(--bm-ink);
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
}

.bm-result-actions {
	display: grid;
	justify-items: end;
	gap: 14px;
	min-width: 180px;
	align-content: center;
}

.bm-result-pick-btn {
	min-width: 180px;
	min-height: 54px;
	padding-inline: 24px;
}

.bm-result-alt-btn {
	min-width: 180px;
	min-height: 54px;
	padding-inline: 24px;
}

.bm-result-more {
	color: var(--bm-teal-dark);
	font-size: 12px;
	line-height: 1.4;
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.bm-overlay-open {
	overflow: hidden;
}

.bm-register-overlay {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(18, 29, 36, 0.42);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow-y: auto;
}

.bm-register-panel {
	width: min(700px, 100%);
	background: var(--bm-bg);
	border-radius: var(--bm-radius-sm);
	padding: 2rem;
	position: relative;
}

.bm-register-panel .bm-register-copy {
	display: grid;
	align-content: center;
	gap: 40px;
}

.bm-service-overlay {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(18, 29, 36, 0.42);
	padding: 24px;
	overflow-y: auto;
}

.bm-service-panel {
	width: min(1128px, 100%);
	margin: 0 auto;
	background: var(--bm-soft);
	min-height: calc(100vh - 48px);
	padding: 56px 56px 48px;
	position: relative;
}

.bm-service-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
	color: var(--bm-ink);
	font-size: 30px;
	line-height: 1;
}

.bm-service-overlay-label {
	margin: 0 0 22px;
	color: #9a9a9a;
	font-size: 16px;
}

.bm-service-overlay-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 64px;
	align-items: start;
}

.bm-service-main {
	display: grid;
	gap: 28px;
}

.bm-service-back {
	margin-bottom: 6px;
}

.bm-service-main h2 {
	margin: 0;
	font-size: clamp(32px, 2vw, 60px);
	line-height: 1.12;
	font-weight: 400;
}

.bm-service-note {
	margin: 14px 0 0;
	color: var(--bm-ink);
	font-size: 16px;
	line-height: 1.65;
	font-style: italic;
}

.bm-service-sidepanel {
	display: grid;
	gap: 34px;
}

.bm-service-location h3,
.bm-service-location p {
	margin: 0;
}

.bm-service-location h3 {
	font-size: 18px;
	line-height: 1.3;
	font-weight: 500;
}

.bm-service-location p {
	margin-top: 12px;
	color: var(--bm-ink);
	font-size: 18px;
	line-height: 1.5;
}

.bm-service-facts {
	display: grid;
	gap: 22px;
	margin: 0;
}

.bm-service-facts div {
	display: grid;
	gap: 6px;
}

.bm-service-facts dt,
.bm-service-facts dd {
	margin: 0;
}

.bm-service-facts dt {
	color: var(--bm-ink);
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
}

.bm-service-facts dd {
	color: var(--bm-ink);
	font-size: 20px;
	line-height: 1.4;
}

.bm-service-purchase {
	display: grid;
	gap: 18px;
	align-items: center;
}

.bm-service-price-stack {
	display: grid;
	gap: 14px;
}

.bm-service-price-copy,
.bm-service-reward-copy {
	display: grid;
	gap: 6px;
}

.bm-service-price-label,
.bm-service-reward-label {
	color: #8f96b3;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 500;
}

.bm-service-price-stack strong {
	font-size: 26px;
	line-height: 1.2;
	font-weight: 500;
}

.bm-service-reward-copy span:last-child {
	color: #ffb400;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
}

.bm-service-badge {
	width: auto;
	height: 42px;
	object-fit: contain;
}

.bm-service-actions {
	display: grid;
	gap: 14px;
}

.bm-calendar-panel {
	width: min(980px, 100%);
	min-height: auto;
	padding: 24px 28px 30px;
}

.bm-calendar-shell {
	display: grid;
	gap: 24px;
}

.bm-calendar-header h2 {
	margin: 0;
	max-width: 500px;
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.08;
	font-weight: 400;
}

.bm-calendar-card {
	background: #fff;
	border-radius: 26px;
	padding: 34px 42px 32px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 240px;
	gap: 36px;
	align-items: stretch;
}

.bm-calendar-grid-wrap {
	display: grid;
	gap: 22px;
}

.bm-calendar-month-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bm-calendar-arrow {
	border: 0;
	background: transparent;
	color: #8190af;
	font-size: 34px;
	line-height: 1;
	padding: 0;
}

.bm-calendar-arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

.bm-calendar-month-row h3 {
	margin: 0;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.08;
	font-weight: 500;
	margin-right: auto;
}

.bm-calendar-weekdays,
.bm-calendar-days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.bm-calendar-weekdays {
	gap: 12px;
	margin-top: 12px;
}

.bm-calendar-weekdays span {
	text-align: center;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.bm-calendar-days {
	gap: 10px 12px;
}

.bm-calendar-day {
	width: 50px;
	height: 50px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--bm-ink);
	display: grid;
	place-items: center;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
}

.bm-calendar-day.is-active {
	background: var(--bm-teal);
	color: #fff;
}

.bm-calendar-day.is-available:not(.is-active):not(.is-disabled) {
	box-shadow: inset 0 0 0 1px rgba(61, 196, 203, 0.38);
}

.bm-calendar-day.is-disabled {
	color: #cfcfcf;
	cursor: default;
}

.bm-calendar-day.is-muted {
	color: #cfcfcf;
}

.bm-calendar-side {
	border-left: 1px solid rgba(129, 144, 175, 0.6);
	padding-left: 28px;
	display: grid;
	align-content: space-between;
	gap: 28px;
}

.bm-calendar-summary {
	display: grid;
	gap: 4px;
}

.bm-calendar-summary p,
.bm-calendar-summary strong {
	margin: 0;
}

.bm-calendar-summary p {
	font-size: 16px;
	line-height: 1.25;
	font-weight: 500;
}

.bm-calendar-summary strong {
	color: var(--bm-teal);
	font-size: 16px;
	line-height: 1.35;
	font-weight: 500;
}

.bm-calendar-slots {
	display: grid;
	gap: 12px;
}

.bm-calendar-slot {
	border: 0;
	background: transparent;
	color: var(--bm-ink);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}

.bm-calendar-no-slots {
	margin: 0;
	color: var(--bm-muted);
	font-size: 15px;
	line-height: 1.4;
}

.bm-calendar-slot::before {
	content: '';
	width: 16px;
	height: 16px;
	border-radius: 4px;
	background: #ececec;
	flex: 0 0 auto;
}

.bm-calendar-slot.is-active::before {
	background: var(--bm-teal);
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.7);
}

.bm-calendar-submit {
	min-width: 0;
	width: 100%;
	min-height: 54px;
	justify-self: start;
	padding-inline: 18px;
}

.bm-calendar-submit.is-disabled {
	opacity: 0.45;
	pointer-events: none;
}

.bm-checkout-overlay {
	display: grid;
	place-items: center;
}

.bm-checkout-panel {
	width: min(500px, 100%);
	margin: 0 auto;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(18, 29, 36, 0.2);
	padding: 28px 28px 20px;
	position: relative;
	display: grid;
	gap: 22px;
}

.bm-checkout-panel .bm-service-close {
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	font-size: 24px;
	background: transparent;
}

.bm-checkout-copy {
	display: grid;
	gap: 18px;
}

.bm-checkout-copy h2,
.bm-checkout-copy p {
	margin: 0;
}

.bm-checkout-copy h2 {
	font-size: 28px;
	line-height: 1.15;
	font-weight: 700;
}

.bm-checkout-field {
	display: grid;
	gap: 8px;
}

.bm-checkout-field label {
	color: var(--bm-muted);
	font-size: 14px;
	line-height: 1.3;
	font-weight: 500;
}

.bm-checkout-field input {
	width: 100%;
	min-height: 62px;
	border-radius: 12px;
	border: 1px solid rgba(61, 196, 203, 0.55);
	padding: 16px 18px;
	color: var(--bm-ink);
	font-size: 18px;
	line-height: 1.3;
	background: #fff;
}

.bm-checkout-field input:focus {
	outline: 0;
	border-color: var(--bm-teal);
	box-shadow: 0 0 0 3px rgba(61, 196, 203, 0.16);
}

.bm-checkout-remaining {
	margin: 0;
	padding-top: 6px;
	color: var(--bm-muted);
	font-size: 18px;
	line-height: 1.35;
	font-weight: 500;
}

.bm-checkout-remaining strong {
	color: var(--bm-ink);
	font-weight: 700;
}

.bm-checkout-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid rgba(47, 47, 47, 0.08);
}

.bm-modal .modal-content,
.buy-fixed-termin-modal .modal-content {
	border-radius: 14px;
	border: 1px solid var(--bm-border);
}

.bm-modal .modal-footer,
.buy-fixed-termin-modal .modal-footer {
	border-top: 1px solid var(--bm-border);
}

#cb-cookie-banner {
	position: fixed;
	bottom: 14px;
	left: 14px;
	right: 14px;
	z-index: 60;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #2f2f2f;
	color: #fff;
}

#cb-cookie-banner a {
	color: #7cf0f0;
}

#cb-cookie-banner .btn-primary {
	border: 0;
	background: var(--bm-teal) !important;
}

.preloader {
	display: none;
}

@keyframes bm-rise {
	from {
		transform: translateY(18px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 1399px) {
	.bm-cards-5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bm-service-image {
		height: 210px;
	}
}

@media (max-width: 1199px) {
	.bm-about-hero-media {
		display: none;
	}

	.bm-benefits-wrap {
		padding-top: 80px;
	}

	.bm-header-inner {
		min-height: 86px;
	}

	.bm-logo {
		width: 186px;
	}

	.bm-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
	}

	.bm-nav-collapse,
	.bm-nav-collapse.collapse:not(.show) {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		background: #fff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
	}

	.bm-nav-collapse.show {
		display: block;
	}

	.bm-nav {
		display: grid;
		gap: 18px;
		padding: 20px;
	}

	.bm-nav-links,
	.bm-nav-cta {
		flex-wrap: wrap;
	}

	.bm-search-shell {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bm-benefits-wrap,
	.bm-partner,
	.bm-register-cta,
	.bm-partner-hero-grid,
	.bm-partner-benefits .bm-benefits-wrap,
	.bm-about-hero-grid,
	.bm-about-benefits-grid,
	.bm-about-partners,
	.bm-profile-layout {
		grid-template-columns: 1fr;
	}

	.bm-footer-top {
		grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(150px, 1fr));
		gap: 40px 28px;
	}

	.bm-footer-social {
		grid-column: 2 / -1;
		justify-self: start;
	}

	.bm-benefits-image,
	.bm-partner-media,
	.bm-register-media,
	.bm-partner-hero-media,
	.bm-about-benefits-media,
	.bm-about-hero-media {
		width: 100%;
		justify-self: stretch;
	}

	.bm-result-card {
		grid-template-columns: 1fr;
	}

	.bm-profile-card {
		padding: 34px 28px 40px;
		gap: 40px;
	}

	.bm-profile-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-top: 0;
	}

	.bm-profile-info-row {
		grid-template-columns: minmax(140px, 170px) minmax(0, 1fr);
	}

	.bm-profile-info-row--triple {
		grid-template-columns: minmax(180px, 1fr) minmax(140px, 0.8fr) minmax(140px, 0.8fr);
	}

	.bm-result-copy h3 {
		font-size: 26px;
	}

	.bm-result-price-col,
	.bm-result-actions {
		justify-items: start;
		min-width: 0;
	}

	.bm-result-actions {
		padding-top: 0;
	}

	.bm-result-badge {
		margin-bottom: 2px;
	}

	.bm-service-overlay-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.bm-calendar-card {
		grid-template-columns: 1fr;
		padding: 28px 22px 24px;
		gap: 26px;
	}

	.bm-calendar-side {
		border-left: 0;
		border-top: 1px solid rgba(129, 144, 175, 0.6);
		padding-left: 0;
		padding-top: 22px;
	}
}

@media (max-width: 900px) {
	.bm-content-stack {
		gap: 74px;
		padding-block: 62px;
	}

	.bm-container {
		width: calc(100% - 24px);
	}

	.bm-logos-grid,
	.bm-stats-grid,
	.bm-cards-5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bm-featured-partners-layout {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.bm-featured-partners-link {
		justify-content: flex-start;
	}

	.bm-logos-grid-partners {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bm-auth-wrap {
		padding: 54px 0 70px;
	}

	.bm-auth-card {
		padding: 32px 18px 28px;
	}

	.bm-auth-title h1 {
		font-size: 34px;
	}

	.bm-auth-title img {
		width: 220px;
		height: auto;
	}

	.bm-register-cta .bm-register-copy,
	.bm-partner-copy,
	.bm-register-copy {
		padding: 24px;
	}

	.bm-register-cta .bm-register-media {
		padding: 0 24px 24px;
	}

	.bm-benefits li {
		font-size: 18px;
	}

	.bm-results-title {
		font-size: 28px;
	}

	.bm-results-count {
		font-size: 20px;
	}

	.bm-service-panel {
		padding: 48px 28px 32px;
	}

	.bm-partner-hero-copy {
		max-width: none;
	}

	.bm-partner-hero-copy .bm-copy {
		max-width: none;
	}

	.bm-about-hero-copy {
		max-width: none;
	}

	.bm-about-hero-copy .bm-copy {
		max-width: 520px;
	}

	.bm-partner-hero-media {
		min-height: 320px;
	}

	.bm-about-hero-media {
		min-height: 500px;
	}

	.bm-about-hero-wave {
		display: none;
	}

	.bm-about-hero-phone {
		right: 38px;
		bottom: -28px;
		width: min(430px, 56%);
	}

	.bm-partner-benefits .bm-benefits-wrap {
		padding-top: 48px;
	}

	.bm-partner-benefits-image {
		height: 340px;
	}

	.bm-partner-offer-card {
		padding: 42px 28px;
	}

	.bm-about-benefits {
		padding-block: 42px;
	}

	.bm-about-partners {
		padding: 34px 28px;
	}
}

@media (max-width: 767px) {
	.bm-nav {
		gap: 16px;
	}

	.bm-nav-links,
	.bm-nav-cta {
		display: grid;
		gap: 12px;
	}

	.bm-nav-links a,
	.bm-nav-cta .bm-btn {
		width: 100%;
	}

	.bm-nav-cta .bm-btn {
		justify-content: center;
	}

	.bm-footer-top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.bm-about-pillars {
		grid-template-columns: 1fr;
	}

	.bm-profile-tabs {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.bm-profile-stage {
		padding: 54px 0 68px;
	}

	.bm-profile-shell {
		gap: 30px;
	}

	.bm-profile-card-header {
		align-items: start;
		flex-direction: column;
	}

	.bm-profile-info-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.bm-profile-info-row--triple {
		grid-template-columns: 1fr;
	}

	.bm-profile-info-row--triple dd:nth-of-type(1),
	.bm-profile-info-row--triple dd:nth-of-type(2) {
		grid-column: auto;
	}

	.bm-profile-form-inline {
		grid-template-columns: 1fr;
	}

	.bm-profile-form-inline .bm-btn {
		width: 100%;
	}

	.bm-profile-table-toolbar,
	.bm-profile-table-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.bm-profile-table-wrap {
		overflow-x: auto;
	}

	.bm-profile-orders-meta {
		padding: 16px 18px;
		font-size: 16px;
	}

	.bm-profile-points-summary {
		grid-template-columns: 1fr;
	}

	.bm-profile-points-pill {
		padding: 16px 18px;
		font-size: 16px;
	}

	.bm-profile-points-item {
		padding: 22px 18px;
		gap: 14px;
	}

	.bm-profile-points-head strong {
		font-size: 24px;
	}

	.bm-profile-points-row time,
	.bm-profile-points-place {
		font-size: 16px;
	}

	.bm-profile-points-amount {
		font-size: 24px;
	}

	.bm-profile-order-card {
		grid-template-columns: 1fr;
		padding: 22px 18px;
		gap: 18px;
	}

	.bm-profile-order-logo {
		min-height: 72px;
	}

	.bm-profile-order-brand-copy h3 {
		font-size: 16px;
	}

	.bm-profile-order-main h3 {
		font-size: 24px;
	}

	.bm-profile-order-price {
		font-size: 24px;
	}

	.bm-profile-order-side,
	.bm-profile-order-actions {
		justify-items: start;
		justify-content: flex-start;
	}

	.bm-partner-form-grid,
	.bm-partner-form-grid-vat {
		grid-template-columns: 1fr;
	}

	.bm-footer-brand > :first-child {
		padding-bottom: 20px;
	}

	.bm-footer-col ul {
		gap: 16px;
	}

	.bm-footer-social {
		grid-column: auto;
		justify-self: start;
	}
}

@media (max-width: 575px) {

	.bm-logo {
		width: 164px;
	}

	.bm-hero {
		padding-top: 54px;
	}

	.bm-search-shell,
	.bm-cards-5 {
		grid-template-columns: 1fr;
	}

	.bm-partner-hero {
		padding-top: 36px;
	}

	.bm-about-hero {
		padding-top: 32px;
	}

	.bm-about-hero-grid {
		min-height: auto;
		gap: 24px;
	}

	.bm-about-hero-copy h1 {
		font-size: 38px;
	}

	.bm-about-hero-copy .bm-copy {
		max-width: none;
		font-size: 16px;
		line-height: 1.55;
	}

	.bm-about-hero-media {
		min-height: 280px;
	}

	.bm-about-hero-wave {
		display: none;
	}

	.bm-about-hero-phone {
		right: 50%;
		bottom: -10px;
		transform: translateX(50%);
		width: min(260px, 66%);
	}

	.bm-about-pillar {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.bm-about-pillar-label {
		writing-mode: initial;
		transform: none;
		justify-self: start;
	}

	.bm-about-benefits-copy h2 {
		font-size: 34px;
	}

	.bm-about-benefits-list li {
		font-size: 15px;
	}

	.bm-about-partners {
		padding: 24px 18px;
	}

	.bm-about-partners-copy h2 {
		font-size: 36px;
	}

	.bm-profile-title {
		font-size: 34px;
	}

	.bm-profile-card {
		padding: 24px 16px 28px;
	}

	.bm-profile-card-header h2,
	.bm-profile-card-section h2 {
		font-size: 26px;
	}

	.bm-profile-info-row dt,
	.bm-profile-info-row dd,
	.bm-profile-copy {
		font-size: 15px;
	}

	.bm-profile-info-row dd.is-strong {
		font-size: 34px;
	}

	.bm-partner-hero-copy h1 {
		font-size: 38px;
	}

	.bm-partner-benefits h2 {
		font-size: 34px;
	}

	.bm-partner-form-section {
		padding: 56px 0 72px;
	}

	.bm-partner-form-card {
		padding: 26px 16px 22px;
	}

	.bm-results-kicker {
		font-size: 16px;
	}

	.bm-results-hero h1 {
		font-size: 34px;
		line-height: 1;
	}

	.bm-results-title-inline {
		white-space: normal;
	}

	.bm-seo-overview-card {
		padding: 24px 18px;
	}

	.bm-seo-overview-card h2 {
		font-size: 24px;
	}

	.bm-results-title-row {
		gap: 10px;
		flex-wrap: wrap;
	}

	.bm-logos-grid,
	.bm-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.bm-logos-grid-partners {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bm-logo-card {
		min-height: 118px;
		padding: 14px;
	}


	.bm-stat {
		min-height: 148px;
		gap: 8px;
		padding: 12px;
	}

	.bm-stat-icon {
		max-width: 56px;
		max-height: 56px;
	}

	.bm-stat strong {
		font-size: 42px;
	}

	.bm-stat span {
		font-size: 18px;
		line-height: 1.2;
	}

	.bm-service-image {
		height: 190px;
	}

	.bm-result-card {
		padding: 18px 16px;
		gap: 18px;
	}

	.bm-result-logo {
		max-width: 150px;
		height: 48px;
	}

	.bm-result-copy h3 {
		font-size: 22px;
	}

	.bm-result-meta,
	.bm-result-reward,
	.bm-result-price-line {
		font-size: 14px;
	}

	.bm-result-pick-btn,
	.bm-result-alt-btn {
		width: 100%;
		min-width: 0;
	}

	.bm-service-overlay {
		padding: 10px;
	}

	.bm-service-panel {
		min-height: calc(100vh - 20px);
		padding: 54px 18px 24px;
	}

	.bm-service-main h2 {
		font-size: 32px;
	}

	.bm-service-location h3,
	.bm-service-location p,
	.bm-service-facts dt,
	.bm-service-facts dd,
	.bm-service-price-stack strong {
		font-size: 18px;
	}

	.bm-service-price-stack span,
	.bm-service-note {
		font-size: 15px;
	}

	.bm-calendar-panel {
		padding: 44px 14px 18px;
	}

	.bm-calendar-header h2 {
		font-size: 28px;
	}

	.bm-calendar-card {
		border-radius: 20px;
		padding: 22px 14px 18px;
	}

	.bm-calendar-weekdays span {
		font-size: 15px;
	}

	.bm-calendar-day {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.bm-calendar-month-row h3 {
		font-size: 28px;
	}

	.bm-calendar-summary p,
	.bm-calendar-summary strong,
	.bm-calendar-slot {
		font-size: 15px;
	}

	.bm-calendar-submit {
		width: 100%;
		min-width: 0;
	}

	.bm-btn {
		min-height: 52px;
		font-size: 16px;
		padding: 16px 20px;
	}

	.bm-footer-top {
		gap: 28px;
		padding-top: 56px;
	}

	.bm-footer-social {
		grid-column: auto;
	}

	.bm-footer-col a {
		font-size: 16px;
	}
}

.bm-detail-page {
	background: #fff;
}

.bm-detail-hero {
	background: var(--bm-soft-accent);
	padding: 72px 0 64px;
}

.bm-detail-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 36px;
	align-items: start;
}

.bm-detail-copy {
	display: grid;
	gap: 24px;
}

.bm-detail-copy h1 {
	margin: 0;
	max-width: 740px;
	font-size: clamp(42px, 4.6vw, 64px);
	line-height: 0.98;
	font-weight: 400;
}

.bm-detail-brand-row {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
}

.bm-detail-brand-logo {
	width: 100%;
	max-width: 120px;
	height: auto;
	object-fit: contain;
}

.bm-detail-meta-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.bm-detail-stat {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(0, 194, 194, 0.18);
	padding: 18px 20px;
	display: grid;
	gap: 6px;
}

.bm-detail-stat strong {
	font-size: 24px;
	line-height: 1.1;
	font-weight: 500;
	color: var(--bm-ink);
}

.bm-detail-stat span {
	color: var(--bm-muted);
	font-size: 14px;
	line-height: 1.45;
}

.bm-detail-sidecard {
	align-self: stretch;
}

.bm-detail-sidecard-inner {
	background: #fff;
	box-shadow: var(--bm-shadow-soft);
	padding: 28px;
	display: grid;
	gap: 20px;
}

.bm-detail-sidecard-inner h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.12;
	font-weight: 400;
}

.bm-search-shell-compact {
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding: 0;
	box-shadow: none;
}

.bm-search-shell-compact .bm-search-btn {
	grid-column: 1 / -1;
}

.bm-detail-content {
	gap: 54px;
}

.bm-detail-info-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.bm-detail-card,
.bm-detail-offer-card {
	background: #fff;
	box-shadow: var(--bm-shadow-soft);
	padding: 34px;
	display: grid;
	gap: 18px;
}

.bm-detail-card h2,
.bm-detail-offer-card h3 {
	margin: 0;
}

.bm-detail-facts {
	margin: 0;
	display: grid;
	gap: 14px;
}

.bm-detail-facts div {
	display: grid;
	gap: 6px;
}

.bm-detail-facts dt {
	color: var(--bm-muted);
	font-size: 13px;
	line-height: 1.2;
	font-weight: 500;
}

.bm-detail-facts dd {
	margin: 0;
	color: var(--bm-ink);
	font-size: 16px;
	line-height: 1.45;
}

.bm-cards-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.bm-detail-offer-logo {
	width: 160px;
	max-width: 100%;
	height: 52px;
	object-fit: contain;
}

.bm-press-page {
	background: #fff;
}

.bm-press-content {
	gap: 72px;
	padding-block: 76px 88px;
}

.bm-press-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 44px;
	align-items: center;
}

.bm-press-intro-copy {
	display: grid;
	gap: 20px;
	max-width: 760px;
}

.bm-press-intro-copy h1 {
	margin: 0;
	max-width: 740px;
	font-size: clamp(42px, 4.4vw, 60px);
	line-height: 1;
	font-weight: 600;
}

.bm-press-summary {
	max-width: 920px;
}

.bm-press-actions {
	display: grid;
	gap: 12px;
	justify-items: stretch;
}

.bm-press-actions-full .bm-btn {
	min-height: 50px;
	padding: 15px 18px;
	box-shadow: none;
}

.bm-press-media {
	background: var(--bm-soft-accent);
	padding: 58px 30px 28px;
}

.bm-press-media-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
	gap: 48px;
	align-items: center;
}

.bm-press-contact-copy {
	display: grid;
	gap: 24px;
	max-width: 430px;
	align-content: start;
}

.bm-press-contact-copy h2 {
	margin: 0;
	font-size: clamp(34px, 3.2vw, 52px);
	line-height: 1.04;
	font-weight: 500;
}

.bm-press-contact-list {
	display: grid;
	gap: 14px;
}

.bm-press-contact-list .bm-contact-item,
.bm-press-contact-list .bm-contact-item:hover {
	color: var(--bm-muted);
}

.bm-press-contact-list .bm-contact-item i {
	color: var(--bm-teal);
}

.bm-press-contact-list .bm-contact-item i.fa-solid {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 194, 194, 0.12);
	display: grid;
	place-items: center;
	color: var(--bm-teal);
	font-size: 17px;
}

.bm-press-contact-btn {
	width: fit-content;
	min-width: 156px;
	box-shadow: none;
}

.bm-press-image-wrap {
	min-height: 320px;
}

.bm-press-image-wrap img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	display: block;
	object-fit: cover;
}

@media (max-width: 1100px) {
	.bm-detail-hero-grid,
	.bm-press-intro-grid,
	.bm-press-media-grid {
		grid-template-columns: 1fr;
	}

	.bm-detail-info-grid,
	.bm-cards-3,
	.bm-detail-meta-row,
	.bm-seo-overview-grid,
	.bm-results-hero-meta,
	.bm-results-hero-meta-wide {
		grid-template-columns: 1fr;
	}

	.bm-press-actions-full {
		width: min(360px, 100%);
	}
}

@media (max-width: 575px) {
	.bm-detail-hero {
		padding: 48px 0 42px;
	}

	.bm-detail-brand-row {
		grid-template-columns: 1fr;
	}

	.bm-detail-sidecard-inner,
	.bm-detail-card,
	.bm-detail-offer-card,
	.bm-press-media {
		padding: 24px 18px;
	}

	.bm-press-content {
		gap: 52px;
		padding-block: 54px 64px;
	}

	.bm-press-intro-copy h1 {
		font-size: 34px;
		line-height: 1.08;
	}

	.bm-results-hero-meta-item strong {
		font-size: 18px;
	}

	.bm-press-contact-copy h2 {
		font-size: 32px;
	}

	.bm-press-image-wrap,
	.bm-press-image-wrap img {
		min-height: 240px;
	}
}
