/* Belgrein Modern — landing styles v3 (2026-06-08 24-fix pack) */

:root {
	--bm-navy: #0B1D3E;
	--bm-navy-2: #102A55;
	--bm-navy-3: #1B3163;
	--bm-ink: #1A1A1A;
	--bm-ink-2: #3D3D3D;
	--bm-muted: #6E6E6E;
	--bm-line: #E5E7EB;
	--bm-paper: #F6F4EE;
	--bm-bg: #FFFFFF;
	--bm-gold: #D4A017;
	--bm-gold-2: #B6860E;
	--bm-green: #1F5D45;
	--bm-green-2: #154132;
	--bm-radius: 18px;
	--bm-radius-sm: 12px;
	--bm-radius-btn: 12px;
	--bm-shadow: 0 18px 48px rgba(11,29,62,0.10);
	--bm-shadow-sm: 0 8px 18px rgba(11,29,62,0.06);
	--bm-max: 1840px;
	--bm-side: clamp(20px, 4vw, 64px);
	--bm-gap: clamp(16px, 2.4vw, 28px);
}

/* hide standard theme chrome on this template */
body.bm-landing {
	margin: 0;
	background: #fff;
	color: var(--bm-ink);
	font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body.bm-landing .site-header,
body.bm-landing .site-footer,
body.bm-landing header#masthead,
body.bm-landing footer#colophon,
body.bm-landing .elementor-location-header,
body.bm-landing .elementor-location-footer {
	display: none !important;
}

body.bm-landing * { box-sizing: border-box; }
body.bm-landing a { color: inherit; text-decoration: none; }
body.bm-landing button { font-family: inherit; cursor: pointer; }
body.bm-landing img { max-width: 100%; height: auto; display: block; }

.bm-skip {
	position: absolute; left: -9999px; top: 0;
	background: #000; color: #fff; padding: 8px 12px;
}
.bm-skip:focus { left: 12px; top: 12px; z-index: 99999; }

.bm-container {
	width: 100%;
	max-width: var(--bm-max);
	margin: 0 auto;
	padding: 0 var(--bm-side);
}

/* =================== TOPBAR =================== */
.bm-topbar {
	background: var(--bm-navy);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 200;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	backdrop-filter: saturate(140%) blur(6px);
}
.bm-topbar__inner {
	max-width: var(--bm-max);
	margin: 0 auto;
	padding: 0 var(--bm-side);
	height: 84px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 32px;
	align-items: center;
}
.bm-logo-wrap {
	display: inline-flex;
	align-items: center;
	background: #fff;
	padding: 8px 22px;
	border-radius: 10px;
	height: 64px;
	transition: transform .15s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.bm-logo-wrap:hover { transform: translateY(-1px); }
.bm-logo-img {
	max-height: 48px;
	width: auto;
	display: block;
}
.bm-nav {
	display: flex;
	gap: 28px;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
}
.bm-nav a {
	color: rgba(255,255,255,0.85);
	white-space: nowrap;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: color .2s, border-color .2s, letter-spacing .2s;
	position: relative;
}
.bm-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: var(--bm-gold);
	transition: width .25s ease, left .25s ease;
}
.bm-nav a:hover { color: #fff; }
.bm-nav a:hover::after { width: 100%; left: 0; }
.bm-topbar__right {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: flex-end;
}
.bm-phone {
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.01em;
	white-space: nowrap;
}
.bm-phone:hover { color: var(--bm-gold); }

/* =================== BUTTONS =================== */
body.bm-landing .bm-btn,
.bm-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	padding: 14px 26px !important;
	min-height: 52px !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em !important;
	border-radius: 12px !important;
	border: 0 !important;
	cursor: pointer;
	transition: background-color .15s, color .15s, transform .15s, box-shadow .15s, border-color .15s;
	white-space: nowrap;
	line-height: 1 !important;
	text-align: center;
	text-transform: none !important;
	width: auto !important;
	max-width: none !important;
	box-sizing: border-box !important;
}
.bm-btn .bm-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: rgba(255,255,255,0.18);
	font-size: 15px;
	line-height: 1;
	transform: translateY(-1px);
}
.bm-btn--gold .bm-arrow,
.bm-btn--accent .bm-arrow,
.bm-btn--green .bm-arrow { background: rgba(255,255,255,0.22); color: #fff; }
.bm-btn--ghost .bm-arrow,
.bm-btn--gold-outline .bm-arrow { background: rgba(11,29,62,0.10); color: var(--bm-navy); }

body.bm-landing .bm-btn--accent,
.bm-btn--accent { background: var(--bm-green) !important; color: #fff !important; box-shadow: 0 6px 16px rgba(31,93,69,0.35) !important; }
.bm-btn--accent:hover { background: var(--bm-green-2) !important; transform: translateY(-1px); }

body.bm-landing .bm-btn--gold,
.bm-btn--gold { background: var(--bm-gold) !important; color: var(--bm-navy) !important; box-shadow: 0 6px 16px rgba(212,160,23,0.35) !important; }
.bm-btn--gold:hover { background: var(--bm-gold-2) !important; color: #fff !important; transform: translateY(-1px); }
.bm-btn--gold .bm-arrow { background: rgba(11,29,62,0.18) !important; color: var(--bm-navy) !important; }
.bm-btn--gold:hover .bm-arrow { background: rgba(255,255,255,0.25) !important; color: #fff !important; }

body.bm-landing .bm-btn--ghost,
.bm-btn--ghost {
	background: transparent !important;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,0.45) !important;
}
.bm-btn--ghost:hover { background: rgba(255,255,255,0.10) !important; border-color: #fff !important; }

body.bm-landing .bm-btn--gold-outline,
.bm-btn--gold-outline {
	background: transparent !important;
	color: var(--bm-gold) !important;
	border: 2px solid var(--bm-gold) !important;
}
.bm-btn--gold-outline:hover { background: var(--bm-gold) !important; color: var(--bm-navy) !important; }

body.bm-landing .bm-btn--green,
.bm-btn--green { background: var(--bm-green) !important; color: #fff !important; }
.bm-btn--green:hover { background: var(--bm-green-2) !important; }

.bm-burger {
	display: none;
	background: transparent;
	border: 0;
	width: 44px;
	height: 44px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.bm-burger span { display: block; width: 24px; height: 2px; background: #fff; transition: .2s; }

/* =================== HERO =================== */
.bm-hero {
	position: relative;
	min-height: clamp(560px, 78vh, 820px);
	overflow: hidden;
	color: #fff;
	display: flex;
	flex-direction: column;
}
.bm-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness(0.62) saturate(1.1);
	transform: scale(1.02);
	z-index: 0;
	transition: transform 1.2s ease;
}
.bm-hero:hover .bm-hero__bg { transform: scale(1.05); }
.bm-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(11,29,62,0.30) 0%, rgba(11,29,62,0.55) 60%, rgba(11,29,62,0.82) 100%),
		linear-gradient(90deg, rgba(11,29,62,0.55) 0%, rgba(11,29,62,0.20) 50%, rgba(11,29,62,0.05) 100%);
	z-index: 1;
}
.bm-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--bm-max);
	margin: 0 auto;
	padding: clamp(56px, 9vh, 140px) var(--bm-side) clamp(60px, 6vh, 100px);
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.bm-hero__kicker {
	display: inline-block;
	margin: 0 0 28px;
	padding: 0;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bm-gold);
	font-weight: 700;
}
.bm-hero__title {
	margin: 0;
	font-size: clamp(40px, 5.6vw, 78px);
	line-height: 1.04;
	letter-spacing: -0.02em;
	font-weight: 800;
	max-width: 18em;
}
.bm-hero__lead {
	margin: 28px 0 36px;
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.55;
	max-width: 60ch;
	color: rgba(255,255,255,0.88);
}
.bm-hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* hex row */
.bm-hex-row {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 0 0 28px;
}
.bm-hex-row__inner {
	max-width: var(--bm-max);
	margin: 0 auto;
	padding: 0 var(--bm-side);
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: clamp(14px, 1.6vw, 24px);
}
.bm-hex {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 14px 6px 16px;
	text-align: center;
	color: #fff;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 14px;
	backdrop-filter: blur(2px);
	transition: background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.bm-hex:hover {
	background: rgba(212,160,23,0.10);
	border-color: rgba(212,160,23,0.65);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(212,160,23,0.20);
}
.bm-hex__shape {
	width: 64px;
	height: 70px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: rgba(255,255,255,0.06);
	color: #fff;
	transition: background-color .25s, color .25s, transform .35s;
}
.bm-hex:hover .bm-hex__shape {
	background: var(--bm-gold);
	color: var(--bm-navy);
	transform: scale(1.08) rotate(-3deg);
}
.bm-hex__shape svg { width: 36px; height: 36px; }
.bm-hex:hover .bm-hex__label { color: var(--bm-gold); }
.bm-hex__label { transition: color .2s; }
.bm-hex__label {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.25;
	color: rgba(255,255,255,0.92);
}

/* =================== SECTIONS COMMON =================== */
.bm-section { padding: clamp(64px, 8vh, 120px) 0; }
.bm-kicker {
	display: inline-block;
	margin: 0 0 16px;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bm-gold);
	font-weight: 700;
}
.bm-section h2 {
	margin: 0 0 24px;
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.015em;
	font-weight: 800;
	color: var(--bm-navy);
}
.bm-section h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--bm-navy);
}
.bm-lead {
	font-size: clamp(16px, 1.1vw, 18px);
	color: var(--bm-ink-2);
	margin: 0 0 20px;
	line-height: 1.6;
}

/* =================== ABOUT =================== */
.bm-about__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: clamp(32px, 4vw, 80px);
	align-items: start;
}
.bm-about__copy p { margin: 0 0 14px; color: var(--bm-ink-2); }
.bm-about__signoff {
	margin-top: 22px !important;
	padding: 16px 20px;
	background: var(--bm-paper);
	border-left: 4px solid var(--bm-gold);
	border-radius: 0 12px 12px 0;
	font-size: 16px;
	color: var(--bm-navy);
}
.bm-about__stats {
	background: var(--bm-navy);
	color: #fff;
	border-radius: var(--bm-radius);
	padding: 36px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	box-shadow: var(--bm-shadow);
}
.bm-stat { display: flex; flex-direction: column; gap: 4px; }
.bm-stat__num {
	font-size: 38px;
	font-weight: 800;
	color: var(--bm-gold);
	line-height: 1;
}
.bm-stat__label {
	font-size: 13px;
	color: rgba(255,255,255,0.82);
	line-height: 1.4;
}

/* =================== CATEGORIES =================== */
.bm-categories { background: var(--bm-paper); }
.bm-categories__grid {
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: clamp(14px, 1.4vw, 22px);
}
.bm-cat {
	background: #fff;
	border-radius: var(--bm-radius);
	overflow: hidden;
	box-shadow: var(--bm-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform .3s ease, box-shadow .3s ease;
	cursor: pointer;
}
.bm-cat:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,29,62,0.18); }
.bm-cat__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	transition: transform .5s ease;
}
.bm-cat:hover .bm-cat__media { transform: scale(1.06); }
.bm-cat__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,29,62,0) 60%, rgba(11,29,62,0.22) 100%);
	opacity: 0;
	transition: opacity .3s;
}
.bm-cat:hover .bm-cat__media::after { opacity: 1; }
.bm-cat__hex {
	position: absolute;
	left: 14px;
	top: 14px;
	width: 50px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: #fff;
	color: var(--bm-navy);
	z-index: 2;
	transition: background-color .25s, color .25s, transform .35s;
}
.bm-cat:hover .bm-cat__hex {
	background: var(--bm-gold);
	color: var(--bm-navy);
	transform: scale(1.08) rotate(-4deg);
}
.bm-cat__hex svg { width: 26px; height: 26px; }
.bm-cat__body { padding: 20px 18px 22px; }
.bm-cat__body h3 {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 8px;
	color: var(--bm-navy);
}
.bm-cat__body p {
	margin: 0;
	font-size: 13px;
	color: var(--bm-muted);
	line-height: 1.45;
}

/* =================== AUDIENCE =================== */
.bm-audience { background: #fff; }
.bm-audience__grid {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 1.8vw, 24px);
}
.bm-audience__item {
	background: var(--bm-paper);
	border-radius: var(--bm-radius-sm);
	padding: 28px 24px;
	border-top: 4px solid var(--bm-gold);
	transition: transform .25s ease, box-shadow .25s ease, border-top-width .25s ease;
}
.bm-audience__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(11,29,62,0.10);
	border-top-width: 6px;
}
.bm-audience__item h3 {
	font-size: 17px;
	margin: 0 0 10px;
	font-weight: 700;
	color: var(--bm-navy);
}
.bm-audience__item p {
	margin: 0;
	color: var(--bm-ink-2);
	font-size: 14px;
	line-height: 1.55;
}

/* =================== APPROACH =================== */
.bm-approach {
	background: var(--bm-navy);
	color: #fff;
}
.bm-approach .bm-kicker { color: var(--bm-gold); }
.bm-approach h2 { color: #fff; }
.bm-approach__lead { color: rgba(255,255,255,0.85); max-width: 70ch; }
.bm-approach__grid {
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 1.8vw, 26px);
}
.bm-approach__item {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.10);
	padding: 24px 22px 26px;
	border-radius: var(--bm-radius-sm);
	transition: background-color .25s, border-color .25s, transform .25s;
}
.bm-approach__item:hover {
	background: rgba(255,255,255,0.09);
	border-color: rgba(212,160,23,0.45);
	transform: translateY(-3px);
}
.bm-approach__icon {
	display: inline-flex;
	width: 52px;
	height: 58px;
	align-items: center;
	justify-content: center;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: var(--bm-gold);
	color: var(--bm-navy);
	margin-bottom: 14px;
	transition: transform .35s ease;
}
.bm-approach__item:hover .bm-approach__icon { transform: scale(1.08) rotate(-4deg); }
.bm-approach__icon svg { width: 28px; height: 28px; }
.bm-approach__item h3 { color: #fff; font-size: 16px; margin: 0 0 8px; }
.bm-approach__item p { margin: 0; color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.5; }
.bm-approach__cta {
	margin-top: 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 26px 32px;
	background: rgba(255,255,255,0.06);
	border-radius: var(--bm-radius-sm);
	border: 1px solid rgba(255,255,255,0.10);
	flex-wrap: wrap;
}
.bm-approach__cta h3 { color: #fff; margin: 0 0 6px; font-size: 18px; }
.bm-approach__cta p { margin: 0; color: rgba(255,255,255,0.78); font-size: 14px; }

/* =================== METRION =================== */
.bm-metrion { background: var(--bm-paper); }
.bm-metrion__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(28px, 3.4vw, 56px);
	align-items: start;
}
.bm-metrion__logo {
	max-height: 56px;
	width: auto;
	margin-bottom: 18px;
}
.bm-metrion__benefits {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 26px;
}
.bm-metrion__benefits li {
	font-size: 14px;
	color: var(--bm-ink-2);
	padding-left: 22px;
	position: relative;
	line-height: 1.45;
}
.bm-metrion__benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 13px;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: var(--bm-gold);
}
.bm-metrion__lines {
	background: #fff;
	border-radius: var(--bm-radius);
	padding: 32px;
	box-shadow: var(--bm-shadow-sm);
}
.bm-metrion__lines h3 { margin: 0 0 18px; font-size: 18px; color: var(--bm-navy); }
.bm-metrion__lines ul { list-style: none; margin: 0 0 22px; padding: 0; }
.bm-metrion__lines li {
	padding: 12px 0;
	border-bottom: 1px solid var(--bm-line);
	color: var(--bm-ink);
	font-size: 14px;
	font-weight: 600;
}
.bm-metrion__lines li:last-child { border-bottom: 0; }

/* =================== HPL =================== */
.bm-hpl { background: #fff; }
.bm-hpl__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(28px, 3.4vw, 56px);
	align-items: start;
}
.bm-hpl__copy p { margin: 0 0 14px; color: var(--bm-ink-2); }
.bm-hpl__specs {
	margin-top: 22px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.bm-hpl__specs div {
	background: var(--bm-paper);
	border-radius: 10px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.bm-hpl__specs span {
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--bm-muted);
	text-transform: uppercase;
}
.bm-hpl__specs b {
	font-size: 17px;
	color: var(--bm-navy);
	font-weight: 700;
}
.bm-hpl__features {
	background: var(--bm-paper);
	padding: 32px;
	border-radius: var(--bm-radius);
}
.bm-hpl__features h3 { margin: 0 0 16px; font-size: 18px; color: var(--bm-navy); }
.bm-hpl__features ul { list-style: none; margin: 0; padding: 0; }
.bm-hpl__features li {
	padding: 8px 0 8px 28px;
	position: relative;
	font-size: 14px;
	color: var(--bm-ink-2);
}
.bm-hpl__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 16px;
	height: 18px;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: var(--bm-gold);
}

/* =================== FORM SECTION =================== */
.bm-form { background: var(--bm-navy); color: #fff; }
.bm-form .bm-kicker { color: var(--bm-gold); }
.bm-form h2 { color: #fff; }
.bm-form .bm-lead { color: rgba(255,255,255,0.82); }
.bm-form__grid {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: clamp(28px, 3.4vw, 56px);
	align-items: start;
}
.bm-form__perks { list-style: none; margin: 16px 0 0; padding: 0; }
.bm-form__perks li {
	padding: 10px 0 10px 28px;
	position: relative;
	color: rgba(255,255,255,0.88);
	font-size: 15px;
}
.bm-form__perks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 14px;
	height: 16px;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	background: var(--bm-gold);
}
.bm-form__card {
	background: #fff;
	color: var(--bm-ink);
	padding: 36px 32px;
	border-radius: var(--bm-radius);
	box-shadow: 0 30px 80px rgba(0,0,0,0.35);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.bm-form__card h3 {
	margin: 0 0 4px;
	font-size: 26px;
	font-weight: 800;
	color: var(--bm-navy);
}
.bm-field { display: flex; flex-direction: column; gap: 4px; }
.bm-field__label {
	font-size: 12.5px;
	letter-spacing: 0.06em;
	color: var(--bm-muted);
	text-transform: uppercase;
	font-weight: 600;
}
.bm-field__label em { color: var(--bm-gold); font-style: normal; }
.bm-field__label i { color: #B0B4BD; font-style: normal; font-weight: 400; font-size: 11px; text-transform: none; letter-spacing: 0; }
.bm-field input,
.bm-field textarea {
	border: 0;
	border-bottom: 1px solid var(--bm-line);
	background: transparent;
	padding: 10px 0;
	font-size: 16px;
	font-family: inherit;
	color: var(--bm-ink);
	resize: vertical;
	outline: none;
	transition: border-color .15s;
}
.bm-field input:focus,
.bm-field textarea:focus { border-bottom-color: var(--bm-green); }
.bm-field input::placeholder,
.bm-field textarea::placeholder { color: #C3C6CC; }
.bm-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: var(--bm-muted);
	line-height: 1.5;
}
.bm-consent input[type="checkbox"] {
	width: 18px; height: 18px;
	margin: 1px 0 0;
	accent-color: var(--bm-green);
	flex-shrink: 0;
}
.bm-consent a { color: var(--bm-green); text-decoration: underline; }
.bm-form__status {
	margin: 4px 0 0;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 14px;
}
.bm-form__status.is-ok    { background: #E8F4EE; color: var(--bm-green); }
.bm-form__status.is-error { background: #FBE6E6; color: #B23A3A; }

/* =================== CONTACTS =================== */
.bm-contacts { background: var(--bm-paper); }
.bm-contacts__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(28px, 3vw, 56px);
	align-items: stretch;
}
.bm-contacts__phone {
	display: inline-block;
	font-size: 28px;
	font-weight: 800;
	color: var(--bm-navy);
	margin: 6px 0;
}
.bm-contacts__hours { color: var(--bm-muted); margin: 0 0 12px; }
.bm-contacts__mail { color: var(--bm-green); display: inline-block; margin-bottom: 24px; }
.bm-contacts__map { min-height: 420px; border-radius: var(--bm-radius); overflow: hidden; box-shadow: var(--bm-shadow-sm); }

/* =================== FOOTER =================== */
.bm-footer {
	background: var(--bm-navy);
	color: rgba(255,255,255,0.78);
	padding: 48px 0 28px;
	font-size: 14px;
}
.bm-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 32px;
	align-items: start;
}
.bm-footer__logo {
	background: #fff;
	padding: 8px 14px;
	border-radius: 8px;
	max-height: 56px;
	width: auto;
	margin-bottom: 14px;
	display: block;
}
.bm-footer__brand p { margin: 0; line-height: 1.55; }
.bm-footer__nav { display: flex; flex-direction: column; gap: 8px; }
.bm-footer__nav a:hover { color: var(--bm-gold); }
.bm-footer__contacts { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
.bm-footer__contacts span { font-size: 12px; opacity: 0.7; margin-top: 12px; }
.bm-footer__contacts a:hover { color: var(--bm-gold); }

/* =================== CONTENT PAGES (policy etc) =================== */
.bm-landing--content { background: #fff; }
.bm-page__hero {
	background: linear-gradient(135deg, var(--bm-navy) 0%, var(--bm-navy-3) 100%);
	color: #fff;
	padding: clamp(48px, 8vh, 96px) 0 clamp(40px, 6vh, 72px);
	border-bottom: 4px solid var(--bm-gold);
}
.bm-page__hero .bm-kicker { color: var(--bm-gold); margin-bottom: 14px; }
.bm-page__title {
	margin: 0;
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: #fff;
	max-width: 28em;
}
.bm-prose {
	max-width: 920px;
	padding-top: clamp(40px, 6vh, 72px);
	padding-bottom: clamp(48px, 8vh, 96px);
	font-size: 17px;
	line-height: 1.7;
	color: var(--bm-ink-2);
}
.bm-prose h2 {
	margin: 36px 0 16px;
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 700;
	color: var(--bm-navy);
	line-height: 1.2;
	letter-spacing: -0.01em;
}
.bm-prose h3 {
	margin: 28px 0 12px;
	font-size: 19px;
	font-weight: 700;
	color: var(--bm-navy);
}
.bm-prose h4 { margin: 24px 0 8px; font-size: 17px; font-weight: 700; color: var(--bm-navy); }
.bm-prose p { margin: 0 0 16px; }
.bm-prose ul,
.bm-prose ol { margin: 0 0 18px; padding-left: 22px; }
.bm-prose ul li,
.bm-prose ol li { margin: 6px 0; }
.bm-prose ul li::marker { color: var(--bm-gold); }
.bm-prose ol li::marker { color: var(--bm-gold); font-weight: 700; }
.bm-prose a { color: var(--bm-green); text-decoration: underline; text-underline-offset: 3px; }
.bm-prose a:hover { color: var(--bm-green-2); }
.bm-prose strong, .bm-prose b { color: var(--bm-navy); font-weight: 700; }
.bm-prose blockquote {
	margin: 22px 0;
	padding: 16px 22px;
	background: var(--bm-paper);
	border-left: 4px solid var(--bm-gold);
	border-radius: 0 10px 10px 0;
	color: var(--bm-navy);
	font-style: italic;
}
.bm-prose hr {
	border: 0;
	border-top: 1px solid var(--bm-line);
	margin: 28px 0;
}
.bm-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 22px 0;
	font-size: 15px;
}
.bm-prose th,
.bm-prose td {
	border-bottom: 1px solid var(--bm-line);
	padding: 10px 12px;
	text-align: left;
}
.bm-prose th { background: var(--bm-paper); color: var(--bm-navy); font-weight: 700; }

/* =================== SCROLL TO TOP =================== */
.bm-toup {
	position: fixed;
	right: clamp(16px, 2vw, 32px);
	bottom: clamp(16px, 2vw, 32px);
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--bm-gold);
	color: var(--bm-navy);
	border: 0;
	box-shadow: 0 10px 24px rgba(0,0,0,0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 150;
	transition: transform .15s, background-color .15s, opacity .2s;
	opacity: 0;
	pointer-events: none;
}
.bm-toup[data-visible="1"] { opacity: 1; pointer-events: auto; }
.bm-toup:hover { background: var(--bm-gold-2); transform: translateY(-2px); color: #fff; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1240px) {
	.bm-categories__grid { grid-template-columns: repeat(3, 1fr); }
	.bm-hex-row__inner { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1100px) {
	.bm-about__grid,
	.bm-metrion__grid,
	.bm-hpl__grid,
	.bm-form__grid,
	.bm-contacts__grid {
		grid-template-columns: 1fr;
	}
	.bm-audience__grid { grid-template-columns: repeat(2, 1fr); }
	.bm-approach__grid { grid-template-columns: repeat(2, 1fr); }
	.bm-metrion__benefits { grid-template-columns: 1fr; }
	.bm-footer__inner { grid-template-columns: 1fr 1fr; }
	.bm-footer__contacts { align-items: flex-start; text-align: left; }
}
@media (max-width: 860px) {
	.bm-nav { display: none; }
	.bm-burger { display: inline-flex; order: 3; }
	.bm-topbar__inner {
		grid-template-columns: auto 1fr auto;
		height: 70px;
		gap: 12px;
	}
	.bm-topbar__right .bm-phone { display: none; }
	.bm-topbar__right .bm-btn { padding: 10px 16px; min-height: 42px; font-size: 13px; }
	.bm-logo-wrap { height: 50px; padding: 6px 14px; }
	.bm-logo-img { max-height: 36px; }
	.bm-nav.is-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 70px; left: 0; right: 0;
		background: var(--bm-navy-2);
		padding: 20px;
		gap: 16px;
		border-bottom: 1px solid rgba(255,255,255,0.08);
	}
	.bm-hex-row__inner { grid-template-columns: repeat(3, 1fr); }
	.bm-categories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.bm-hex-row__inner { grid-template-columns: repeat(2, 1fr); }
	.bm-categories__grid { grid-template-columns: 1fr; }
	.bm-audience__grid,
	.bm-approach__grid { grid-template-columns: 1fr; }
	.bm-about__stats { grid-template-columns: 1fr 1fr; }
	.bm-footer__inner { grid-template-columns: 1fr; }
	.bm-form__perks li,
	.bm-hpl__features li { padding-left: 22px; }
	.bm-section { padding: 56px 0; }
	.bm-hero__actions { flex-direction: column; align-items: stretch; }
	.bm-hero__actions .bm-btn { width: 100%; }
	.bm-approach__cta { flex-direction: column; align-items: flex-start; }
}

/* =================== [adhoc 2026-06-08] OVERRIDES === */
/* 1. White topbar */
.bm-topbar.bm-topbar--white,
body.bm-landing .bm-topbar.bm-topbar--white {
	background: #fff !important;
	color: var(--bm-navy) !important;
	border-bottom: 1px solid rgba(11,29,62,0.08) !important;
	box-shadow: 0 1px 4px rgba(11,29,62,0.06);
}
.bm-topbar--white .bm-logo-wrap { background: transparent !important; box-shadow: none !important; padding: 4px 0 !important; }
.bm-topbar--white .bm-nav a { color: var(--bm-navy) !important; }
.bm-topbar--white .bm-nav a:hover { color: var(--bm-gold) !important; }
.bm-topbar--white .bm-burger span { background: var(--bm-navy) !important; }

/* 4. Two phones stack — без рамки, просто 2 номера */
.bm-topbar--white .bm-phones {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
}
.bm-topbar--white .bm-phones .bm-phone {
	color: var(--bm-navy) !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}
.bm-topbar--white .bm-phones .bm-phone:hover { color: var(--bm-gold) !important; }

/* 2. Accent button — green → navy */
body.bm-landing .bm-btn--accent,
.bm-btn--accent {
	background: var(--bm-navy) !important;
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(11,29,62,0.25) !important;
}
.bm-btn--accent:hover {
	background: var(--bm-navy-2) !important;
}
.bm-btn--accent .bm-arrow { background: rgba(255,255,255,0.18) !important; color: #fff !important; }

/* 22. Less rounded buttons — 5px (fixed) */
body.bm-landing .bm-btn,
.bm-btn { border-radius: 5px !important; }
body.bm-landing .bm-btn .bm-arrow,
body.bm-landing .bm-btn--accent .bm-arrow { border-radius: 5px !important; }
body.bm-landing input,
body.bm-landing textarea,
body.bm-landing select { border-radius: 5px !important; }

/* 16. Form "Заказать звонок" — green → navy/blue */
body.bm-landing .bm-btn--green,
.bm-btn--green {
	background: var(--bm-navy) !important;
	color: #fff !important;
}
.bm-btn--green:hover { background: var(--bm-navy-2) !important; }
.bm-field input:focus,
.bm-field textarea:focus { border-bottom-color: var(--bm-navy) !important; }
.bm-consent input[type="checkbox"] { accent-color: var(--bm-navy) !important; }
.bm-consent a { color: var(--bm-navy) !important; }

/* 5. Hero — background photo + 50/50 left blue gradient → right transparent */
.bm-hero__bg {
	filter: brightness(0.95) saturate(1.05) !important;
}
.bm-hero__overlay {
	background:
		linear-gradient(90deg, var(--bm-navy) 0%, rgba(11,29,62,0.86) 30%, rgba(11,29,62,0.45) 55%, rgba(11,29,62,0.0) 80%) !important;
}
/* hero content — шире и в 2-3 строки */
.bm-hero__content {
	max-width: 1200px;
	margin-left: 0 !important;
	margin-right: auto !important;
	text-align: left !important;
}
.bm-hero__content > * { text-align: left !important; }
.bm-hero__title {
	font-size: clamp(31px, 3.2vw, 47px) !important;
	max-width: none !important;
	text-align: left !important;
	line-height: 1.15 !important;
}
.bm-hero__lead {
	font-size: clamp(15px, 1.1vw, 18px) !important;
	max-width: 60em;
	text-align: left !important;
}
.bm-hero__actions { justify-content: flex-start !important; }
/* 7. Hero иконки-полоса (клиентский референс) */
.bm-hero__photo {
	position: relative;
	z-index: 3;
	width: 100%;
	margin-top: auto;
	padding: 0 var(--bm-side) clamp(16px, 2vh, 28px);
}
.bm-hero__photo img {
	display: block;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	height: auto;
	background: #fff;
	border-radius: var(--bm-radius-sm);
	padding: 14px 18px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
@media (max-width: 860px) {
	.bm-hero__content { max-width: 100%; }
	.bm-hero__photo img { padding: 8px 10px; }
}

/* 6. Hero buttons — remove arrows + ghost button styling */
.bm-hero__actions .bm-arrow { display: none !important; }
.bm-hero__actions .bm-btn--ghost {
	background: rgba(255,255,255,0.10) !important;
	border-color: rgba(255,255,255,0.65) !important;
	color: #fff !important;
}
.bm-hero__actions .bm-btn--gold { color: var(--bm-navy) !important; }

/* 9. Section h2 sizing: smaller by ~1-2 steps (bar hero) */
.bm-section h2 {
	font-size: clamp(22px, 2.4vw, 34px) !important;
}
.bm-section h3 { font-size: 16px !important; }
.bm-hero__title { /* hero unchanged per Каролина */ }

/* 10. Categories — золотые хексагоны SVG в левом нижнем углу фото (через body) */
.bm-cat__body {
	position: relative;
	padding-top: 50px !important;
	text-align: left;
}
.bm-cat__body h3 { text-align: left; }
.bm-cat__body p { text-align: left; }
.bm-cat__hex-wrap {
	position: absolute;
	left: 18px;
	top: -34px;
	width: 64px;
	height: 64px;
	z-index: 3;
	pointer-events: none;
	transition: transform .35s ease;
	display: block;
}
.bm-cat__hex-svg,
.bm-cat__hex-png {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 4px 8px rgba(11,29,62,0.18));
	object-fit: contain;
}
.bm-cat:hover .bm-cat__hex-wrap { transform: translateY(-2px); }
/* убираем legacy: PNG-иконки и старый хексагон в media */
.bm-cat__icon-img { display: none !important; }
.bm-cat__hex { display: none !important; }

/* 12. Approach — empty icon slots (light empty boxes) */
.bm-approach__icon--empty {
	width: 52px;
	height: 52px;
	clip-path: none !important;
	background: rgba(255,255,255,0.08) !important;
	border: 1px dashed rgba(255,255,255,0.25);
	border-radius: 12px;
}
.bm-approach__cta .bm-btn .bm-arrow {
	background: rgba(255,255,255,0.22) !important;
	color: #fff !important;
}

/* 14. Metrion block — white background */
.bm-metrion { background: #fff !important; }
.bm-metrion__lines { background: var(--bm-paper) !important; }

/* 18. Contacts — white background + address */
.bm-contacts { background: #fff !important; }
.bm-contacts__phones { display: flex; flex-direction: column; gap: 4px; margin: 6px 0; }
.bm-contacts__phone {
	display: inline-block;
	font-size: 26px;
	font-weight: 800;
	color: var(--bm-navy);
	letter-spacing: 0.01em;
}
.bm-contacts__phone:hover { color: var(--bm-gold); }
.bm-contacts__address {
	margin: 14px 0 6px;
	font-size: 15px;
	color: var(--bm-ink-2);
	line-height: 1.5;
	max-width: 34ch;
}
.bm-contacts__socials {
	display: flex;
	gap: 10px;
	margin: 12px 0 18px;
}
.bm-contacts__socials a {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	background: var(--bm-navy);
	color: #fff;
	border-radius: 10px;
	transition: background-color .15s, transform .15s;
}
.bm-contacts__socials a:hover { background: var(--bm-gold); color: var(--bm-navy); transform: translateY(-2px); }

/* 19. Contacts CTA arrow → white */
.bm-contacts .bm-btn--gold .bm-arrow {
	background: rgba(255,255,255,0.28) !important;
	color: #fff !important;
}

/* 23. Scroll to top — own button with up arrow */
.bm-toup {
	position: fixed;
	right: clamp(16px, 2vw, 32px);
	bottom: clamp(16px, 2vw, 32px);
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--bm-gold);
	color: var(--bm-navy);
	border: 0;
	box-shadow: 0 10px 24px rgba(0,0,0,0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s, background-color .15s, transform .15s;
}
.bm-toup[data-visible="1"] { opacity: 1; pointer-events: auto; }
.bm-toup:hover { background: var(--bm-gold-2); color: #fff; transform: translateY(-2px); }
.bm-toup svg { display: block; }
/* hide any existing 3rd-party scroll-top buttons */
body.bm-landing #scrollUp,
body.bm-landing .elementor-element-totop,
body.bm-landing .scroll-top,
body.bm-landing .back-to-top,
body.bm-landing .e-scroll-to-top { display: none !important; }

/* 24. Footer logo — то же, что в шапке: цветной логотип в белой плашке со скруглёнными углами */
.bm-footer__logo {
	background: #fff !important;
	padding: 8px 22px !important;
	border-radius: 10px !important;
	max-height: 72px !important;
	width: auto !important;
	filter: none !important;
	display: inline-block !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
	margin-bottom: 14px;
}
.bm-footer__socials {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}
.bm-footer__socials a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.10);
	color: #fff;
	border-radius: 10px;
	transition: background-color .15s, color .15s;
}
.bm-footer__socials a:hover { background: var(--bm-gold); color: var(--bm-navy); }

/* 25. Brands block (new) */
.bm-brands { background: var(--bm-paper); }
.bm-brands__grid {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(16px, 1.8vw, 28px);
}
.bm-brand {
	background: #fff;
	border-radius: var(--bm-radius-sm);
	padding: 28px 28px;
	box-shadow: var(--bm-shadow-sm);
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px;
	align-items: center;
	transition: transform .25s, box-shadow .25s;
}
.bm-brand:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(11,29,62,0.10); }
.bm-brand__logo {
	width: 180px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bm-paper);
	border-radius: 10px;
	overflow: hidden;
}
.bm-brand__logo img { max-width: 90%; max-height: 90%; object-fit: contain; }
.bm-brand__logo--empty {
	background: var(--bm-paper);
	color: var(--bm-muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.bm-brand__name {
	font-size: 18px;
	font-weight: 800;
	color: var(--bm-navy);
	margin: 0 0 6px;
}
.bm-brand__desc {
	font-size: 14px;
	color: var(--bm-ink-2);
	line-height: 1.5;
	margin: 0;
}
@media (max-width: 860px) {
	.bm-brands__grid { grid-template-columns: 1fr; }
	.bm-brand { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
	.bm-brand__logo { width: 100%; height: 90px; }
}

/* responsive 2nd phone hide */
@media (max-width: 1100px) {
	.bm-topbar--white .bm-phones { padding: 4px 10px; }
	.bm-topbar--white .bm-phones .bm-phone { font-size: 13px; }
}
@media (max-width: 860px) {
	.bm-topbar--white .bm-phones { display: none; }
	.bm-topbar--white .bm-burger span { background: var(--bm-navy) !important; }
}

/* ====== [adhoc 2026-06-08 v2 — fix pack] ====== */

/* B2. About — на полную ширину контейнера (как остальные блоки), но строки не длиннее 64ch */
.bm-about__grid {
	max-width: none !important;
}
.bm-about__copy { max-width: 100%; }
.bm-about__copy p { max-width: 64ch; }

/* C. Hero иконки-полоса — повыше и уже, без огромных белых отступов */
.bm-hero__photo {
	padding: 0 var(--bm-side) clamp(8px, 1vh, 14px) !important;
	text-align: center;
}
.bm-hero__photo img {
	max-width: 1150px !important;
	width: auto !important;
	padding: 12px 24px !important;
	max-height: 140px !important;
	height: auto;
	object-fit: contain;
	margin: 0 auto !important;
}
@media (max-width: 860px) {
	.bm-hero__photo { padding: 0 0 14px !important; }
	.bm-hero__photo img {
		border-radius: 0 !important;
		padding: 6px 8px !important;
		max-width: 100% !important;
		box-shadow: 0 -2px 8px rgba(0,0,0,0.12) !important;
	}
}

/* D. Mobile header — большое лого + бургер, скрываем CTA. Меню с тёмным фоном — фикс контраста */
@media (max-width: 860px) {
	.bm-topbar__inner { padding: 0 14px !important; }
	.bm-topbar__right .bm-btn,
	.bm-topbar--white .bm-topbar__right .bm-btn,
	body.bm-landing .bm-topbar__right .bm-btn.bp-trigger { display: none !important; }
	.bm-topbar__right { display: none !important; }
	.bm-logo-wrap { height: 60px !important; padding: 0 !important; }
	.bm-logo-img { max-height: 48px !important; height: 48px !important; width: auto !important; }
	.bm-burger { width: 44px; height: 44px; }
	.bm-nav.is-open {
		background: #fff !important;
		padding: 24px 20px !important;
		box-shadow: 0 8px 18px rgba(11,29,62,0.10);
	}
	.bm-nav.is-open a {
		color: var(--bm-navy) !important;
		font-size: 17px !important;
		font-weight: 700 !important;
		padding: 10px 0;
		border-bottom: 1px solid rgba(11,29,62,0.08);
	}
	.bm-nav.is-open a:last-child { border-bottom: 0; }
}

/* E. Scroll-to-top — большая стрелка на десктопе */
.bm-toup {
	width: 60px !important;
	height: 60px !important;
}
.bm-toup svg {
	width: 32px !important;
	height: 32px !important;
	stroke-width: 3 !important;
}

/* F. Contacts — phones hover (НЕ белые!), соцсети контраст */
body.bm-landing .bm-contacts .bm-contacts__phone,
body.bm-landing .bm-contacts__phone { color: var(--bm-navy) !important; }
body.bm-landing .bm-contacts .bm-contacts__phone:hover,
body.bm-landing .bm-contacts__phone:hover { color: var(--bm-gold) !important; }

/* Соцсети в контактах — полностью скрыть (по запросу клиента) */
body.bm-landing .bm-contacts__socials,
.bm-contacts__socials { display: none !important; }

/* === 2026-06-12 final additions === */
/* gs-feat (preimushchestva block on hero) */
.gs-feat {
    position: absolute;          /* лежит поверх баннера */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 5;
    background: transparent;     /* фон прозрачный — виден баннер */
    padding: 22px 70px 26px;     /* 70px — поля от краёв экрана */
  }
  /* вариант B: блок вставлен ПОСЛЕ баннера, а не внутрь */
  .gs-feat.gs-feat--after {
    position: relative;
    margin-top: -107px;          /* высота блока */
  }
  .gs-feat__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .gs-feat__item {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .gs-feat__icon {
    height: 59px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  .gs-feat__text {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: .2px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
  }
  .gs-feat__divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
  }

  /* ---- адаптив ---- */
  @media (max-width: 1280px) {
    .gs-feat { padding-left: 30px; padding-right: 30px; }
  }
  @media (max-width: 1100px) {
    .gs-feat__item { gap: 12px; }
    .gs-feat__icon { height: 50px; }
    .gs-feat__text { font-size: 13px; line-height: 16px; }
  }
  @media (max-width: 900px) {
    .gs-feat,
    .gs-feat.gs-feat--after {
      position: static;            /* выходит из баннера в поток */
      margin-top: 0;
      background: #192241;         /* фон, чтобы белое не пропало; убрать, если секция ниже тоже тёмная */
      padding: 24px 20px;
    }
    .gs-feat__inner { flex-wrap: wrap; justify-content: center; gap: 22px 40px; }
    .gs-feat__divider { display: none; }
  }
  @media (max-width: 560px) {
    .gs-feat__inner {
      flex-direction: column;
      align-items: flex-start;
      width: max-content;
      margin: 0 auto;
      gap: 18px;
    }
  }

.gs-feat__text { font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif !important; }
.bm-hero { position: relative !important; }

/* (2) Лого в шапке чуть крупнее (только max-height) */
.bm-topbar .bm-logo-img { max-height: 72px !important; max-width: 340px !important; height: auto !important; width: auto !important; }
@media (max-width: 768px) { .bm-topbar .bm-logo-img { max-height: 46px !important; max-width: 180px !important; } }

/* (6) Соцсети в шапке */
.bm-topbar__socials { display: inline-flex; align-items: center; gap: 8px; margin-left: 12px; }
.bm-topbar__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: var(--bm-navy, #0B1D3E); background: transparent;
  border: 1px solid rgba(11,29,62,.12); transition: all .2s ease;
}
.bm-topbar__socials a:hover { background: var(--bm-navy, #0B1D3E); color: #fff; border-color: transparent; }
@media (max-width: 1024px) { .bm-topbar__socials { display: none; } }

/* (8) Лого партнёров — чисто белая плашка */
.bm-brand,
.bm-brand__logo,
.bm-brand__logo--empty { background: #fff !important; background-color: #fff !important; }
.bm-brand__logo img { background: transparent !important; }

/* (10) Фон секции «Сферы применения» белый */
.bm-categories { background: #fff !important; }


/* (1) gs-feat icon size override (fix): перебиваем глобальное body.bm-landing img{height:auto} */
.gs-feat .gs-feat__icon{height:59px!important;width:auto!important;max-width:none!important}
@media (max-width:1100px){.gs-feat .gs-feat__icon{height:50px!important}}
@media (max-width:900px){.gs-feat .gs-feat__icon{height:54px!important}}


/* === Pravki belgrein 2026-06-16: подвал лого крупнее + шапка меню крупнее === */
.bm-footer__logo {
	max-height: 108px !important;
	padding: 12px 26px !important;
	border-radius: 12px !important;
}
@media (max-width: 768px) {
	.bm-footer__logo { max-height: 88px !important; padding: 10px 22px !important; }
}

.bm-nav {
	gap: 32px;
	font-size: 16px !important;
	font-weight: 600;
}
.bm-nav a {
	font-size: 16px;
	letter-spacing: 0.01em;
}
@media (max-width: 1100px) {
	.bm-nav { gap: 24px; font-size: 15px !important; }
	.bm-nav a { font-size: 15px; }
}


/* === Belgrein правки 2026-06-19 (v2): 4×2 carousel + центр стрелки + лого меньше + аккордеоны === */

/* === GALLERY === */
.bm-gallery .bm-kicker { color: var(--bm-gold); }
.bm-gallery__viewport {
    position: relative;
    margin-top: 32px;
}
.bm-gallery__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, calc(25% - 18px));
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding: 0 12px;
    padding: 6px 4px 10px;
    margin: 0 -4px;
    scrollbar-width: none;
}
.bm-gallery__track::-webkit-scrollbar { display: none; }
.bm-gallery__slide {
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
    background: var(--bm-paper);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 14px rgba(11,29,62,0.06);
    transition: transform .35s ease, box-shadow .35s ease;
    text-decoration: none;
    cursor: zoom-in;
    display: block;
}
.bm-gallery__slide:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -10px rgba(11,29,62,0.18); }
.bm-gallery__slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform .8s ease;
    display: block;
}
.bm-gallery__slide:hover img { transform: scale(1.04); }

/* Стрелки по центру вертикали слева/справа поверх ленты */
.bm-gallery__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 100px;
    border: 1.5px solid var(--bm-gold);
    background: #fff;
    color: var(--bm-gold);
    cursor: pointer;
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 18px -6px rgba(11,29,62,0.12);
}
.bm-gallery__nav-btn:hover {
    background: var(--bm-gold); color: #fff;
    transform: translateY(-50%) scale(1.06);
}
.bm-gallery__nav-btn--prev { left: -26px; }
.bm-gallery__nav-btn--next { right: -26px; }
.bm-gallery__nav-btn svg { display: block; }
@media (max-width: 1280px) {
    .bm-gallery__nav-btn--prev { left: -10px; }
    .bm-gallery__nav-btn--next { right: -10px; }
}
@media (max-width: 1024px) {
    .bm-gallery__track { grid-auto-columns: minmax(0, calc(50% - 12px)); gap: 18px; }
    .bm-gallery__nav-btn { width: 48px; height: 48px; }
}
@media (max-width: 640px) {
    .bm-gallery__track { grid-auto-columns: minmax(0, 80%); gap: 14px; }
    .bm-gallery__nav-btn { width: 42px; height: 42px; }
    .bm-gallery__nav-btn--prev { left: 4px; }
    .bm-gallery__nav-btn--next { right: 4px; }
}

/* === LIGHTBOX === */
.bm-lightbox-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(8, 13, 25, 0.94);
    display: none;
    align-items: center; justify-content: center;
    padding: 40px;
}
.bm-lightbox-overlay.is-open { display: flex; animation: bmLbFadeIn .25s ease both; }
@keyframes bmLbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.bm-lightbox-overlay__img {
    max-width: min(1200px, 92vw);
    max-height: 82vh;
    border-radius: 14px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
    object-fit: contain;
    background: var(--bm-paper);
}
.bm-lightbox-overlay__caption {
    position: absolute; left: 50%; bottom: 30px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px; font-weight: 600;
    text-align: center; max-width: 80vw;
}
.bm-lightbox-overlay__close,
.bm-lightbox-overlay__prev,
.bm-lightbox-overlay__next {
    position: absolute;
    width: 50px; height: 50px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 22px; line-height: 1;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.bm-lightbox-overlay__close { top: 24px; right: 24px; font-size: 26px; }
.bm-lightbox-overlay__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.bm-lightbox-overlay__next { right: 24px; top: 50%; transform: translateY(-50%); }
.bm-lightbox-overlay__close:hover, .bm-lightbox-overlay__prev:hover, .bm-lightbox-overlay__next:hover {
    background: var(--bm-gold); color: var(--bm-navy); border-color: var(--bm-gold);
}
@media (max-width: 640px) {
    .bm-lightbox-overlay { padding: 20px; }
    .bm-lightbox-overlay__close { top: 14px; right: 14px; }
    .bm-lightbox-overlay__prev { left: 8px; width: 42px; height: 42px; }
    .bm-lightbox-overlay__next { right: 8px; width: 42px; height: 42px; }
}

/* === METRION + HPL === */
.bm-metrion-hpl { background: var(--bm-paper); }
.bm-mh__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; align-items: stretch;
}
.bm-mh__card {
    background: #fff; border-radius: 22px;
    padding: 32px 30px;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 6px 26px -10px rgba(11,29,62,0.12);
    border: 1px solid rgba(11,29,62,0.05);
}
.bm-mh__head { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.bm-mh__logo {
    height: 64px; width: auto; max-width: 180px;
    object-fit: contain; object-position: left center;
    flex: 0 0 auto;
}
.bm-mh__head .bm-kicker {
    color: var(--bm-gold) !important;
    font-size: 12.5px;
    margin: 0;
}
.bm-mh__card h2 {
    font-size: clamp(20px, 1.7vw, 24px);
    line-height: 1.22;
    margin: 4px 0 0;
    color: var(--bm-navy);
}
.bm-mh__card .bm-lead {
    font-size: 14.5px; line-height: 1.55;
    color: var(--bm-ink-2); margin: 0;
}
.bm-mh__benefits, .bm-mh__lines ul, .bm-mh__features ul {
    list-style: none; margin: 4px 0 0; padding: 0;
    display: grid; gap: 8px;
}
.bm-mh__benefits li, .bm-mh__lines li, .bm-mh__features li {
    font-size: 14px; line-height: 1.5;
    color: var(--bm-ink-2);
    padding-left: 20px; position: relative;
}
.bm-mh__benefits li::before, .bm-mh__lines li::before, .bm-mh__features li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 8px; height: 8px; border-radius: 100px;
    background: var(--bm-gold);
}
.bm-mh__benefits b { color: var(--bm-navy); font-weight: 700; }
.bm-mh__lines h4, .bm-mh__features h4 {
    margin: 16px 0 4px;
    font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--bm-navy); font-weight: 700;
}
.bm-mh__specs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 4px;
}
.bm-mh__specs > div {
    background: var(--bm-paper); border-radius: 12px;
    padding: 12px 14px;
}
.bm-mh__specs span {
    font-size: 12px; color: var(--bm-muted);
    text-transform: uppercase; letter-spacing: 0.04em;
    display: block; margin-bottom: 4px;
}
.bm-mh__specs b { font-size: 14px; color: var(--bm-navy); font-weight: 700; }
.bm-mh__card .bm-btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 980px) {
    .bm-mh__grid { grid-template-columns: 1fr; gap: 22px; }
    .bm-mh__card { padding: 24px 20px; }
    .bm-mh__logo { height: 54px; }
}

/* === АККОРДЕОНЫ в карточках брендов === */
.bm-brand__accordion {
    margin-top: 14px;
    border-top: 1px solid rgba(11,29,62,0.08);
    padding-top: 10px;
}
/* Кнопка аккордеона — в стиле .bm-btn--gold-outline сайта */
html body .bm-brand__accordion-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 22px !important;
    min-height: 46px !important;
    background: transparent !important;
    border: 2px solid var(--bm-gold) !important;
    border-radius: 12px !important;
    color: var(--bm-gold) !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    font-family: inherit !important;
    cursor: pointer !important;
    transition: background .2s, color .2s, transform .2s, box-shadow .2s !important;
    text-decoration: none !important;
}
html body .bm-brand__accordion-toggle:hover {
    background: var(--bm-gold) !important;
    color: var(--bm-navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(212,160,23,0.30);
}
html body .bm-brand__accordion-toggle::after {
    content: '+' !important;
    display: inline-flex !important;
    align-items: center !important; justify-content: center !important;
    width: 22px !important; height: 22px !important;
    border-radius: 8px !important;
    background: rgba(212,160,23,0.18) !important;
    color: var(--bm-gold) !important;
    font-size: 18px !important; line-height: 1 !important;
    font-weight: 700 !important;
    transition: transform .3s ease, background .2s, color .2s !important;
}
html body .bm-brand__accordion-toggle:hover::after {
    background: rgba(11,29,62,0.18) !important;
    color: var(--bm-navy) !important;
}
html body .bm-brand__accordion-toggle[aria-expanded="true"] {
    background: var(--bm-gold) !important;
    color: var(--bm-navy) !important;
}
html body .bm-brand__accordion-toggle[aria-expanded="true"]::after {
    content: '−' !important;
    background: rgba(11,29,62,0.22) !important;
    color: var(--bm-navy) !important;
    transform: rotate(180deg);
}
.bm-brand__accordion-content {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
}
.bm-brand__accordion-content > div { padding-top: 12px; }
.bm-brand__accordion-content h5 {
    margin: 10px 0 6px;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--bm-navy);
    font-weight: 700;
}
.bm-brand__accordion-content ul {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 5px;
}
.bm-brand__accordion-content li {
    font-size: 13.5px; line-height: 1.5;
    color: var(--bm-ink-2);
    padding-left: 16px; position: relative;
}
.bm-brand__accordion-content li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 100px;
    background: var(--bm-gold);
}


/* === Belgrein правки 2026-06-19 (v3 hard fix): tiny logos, contain images, transform-based carousel === */

/* Жёсткое уменьшение лого: высокая специфичность + !important */
html body .bm-metrion-hpl .bm-mh__head img.bm-mh__logo,
html body .bm-metrion-hpl img.bm-mh__logo {
    height: 48px !important;
    width: auto !important;
    max-width: 160px !important;
    max-height: 48px !important;
    object-fit: contain !important;
    object-position: left center !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    display: inline-block !important;
}
html body .bm-metrion-hpl .bm-mh__head {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 4px !important;
    flex-wrap: wrap;
}

/* Карусель: фото целиком, не обрезаются */
html body .bm-gallery .bm-gallery__slide {
    background: #f3f5f9 !important;
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
html body .bm-gallery .bm-gallery__slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}

/* Transform-based carousel — не зависит от scrollBy */
html body .bm-gallery .bm-gallery__viewport {
    position: relative !important;
    overflow: hidden !important;
    padding: 6px 0 10px !important;
    margin: 24px 0 0 !important;
}
html body .bm-gallery .bm-gallery__track {
    display: flex !important;
    gap: 24px !important;
    transition: transform .45s cubic-bezier(.4,.0,.2,1) !important;
    will-change: transform !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-auto-flow: unset !important;
    grid-auto-columns: unset !important;
}
html body .bm-gallery .bm-gallery__track > .bm-gallery__slide {
    flex: 0 0 calc((100% - 72px) / 4) !important;
    scroll-snap-align: none !important;
}
@media (max-width: 1024px) {
    html body .bm-gallery .bm-gallery__track > .bm-gallery__slide {
        flex: 0 0 calc((100% - 18px) / 2) !important;
    }
    html body .bm-gallery .bm-gallery__track { gap: 18px !important; }
}
@media (max-width: 640px) {
    html body .bm-gallery .bm-gallery__track > .bm-gallery__slide {
        flex: 0 0 80% !important;
    }
    html body .bm-gallery .bm-gallery__track { gap: 14px !important; }
}

/* === Approach icons (2026-06-24): white line icons, identical-canvas PNGs === */
.bm-approach__icon:has(img) {
    width: 72px;
    height: 72px;
    clip-path: none;
    background: transparent;
    padding: 0;
    margin-bottom: 18px;
    overflow: visible;
}
.bm-approach__item:hover .bm-approach__icon:has(img) {
    transform: scale(1.08);
}
.bm-approach__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
