/* =====================================================================
   Backlink Hut — Design System
   Slate (#0F172A) + Emerald (#10B981). SaaS-inspired, no framework.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
	/* Colors */
	--bh-bg:           #ffffff;
	--bh-bg-alt:       #f8fafc;
	--bh-bg-dark:      #0f172a;
	--bh-text:         #0f172a;
	--bh-text-light:   #1e293b;
	--bh-muted:        #64748b;
	--bh-muted-light:  #94a3b8;
	--bh-border:       #e2e8f0;
	--bh-border-dark:  #cbd5e1;

	--bh-primary:      #0f172a;
	--bh-accent:       #10b981;
	--bh-accent-dark:  #059669;
	--bh-accent-soft:  #d1fae5;

	--bh-warn:         #f59e0b;
	--bh-danger:       #ef4444;

	/* Typography */
	--bh-font:         'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--bh-mono:         ui-monospace, "SF Mono", Menlo, Consolas, monospace;
	--bh-size-base:    16px;
	--bh-leading:      1.6;

	/* Spacing scale (4px base) */
	--bh-1: 4px;  --bh-2: 8px;   --bh-3: 12px; --bh-4: 16px;
	--bh-5: 20px; --bh-6: 24px;  --bh-8: 32px; --bh-10: 40px;
	--bh-12: 48px; --bh-16: 64px; --bh-20: 80px; --bh-24: 96px;

	/* Radii */
	--bh-r-sm: 6px;
	--bh-r-md: 10px;
	--bh-r-lg: 16px;
	--bh-r-pill: 9999px;

	/* Shadows */
	--bh-shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
	--bh-shadow-md: 0 4px 6px -1px rgba(15,23,42,.08), 0 2px 4px -1px rgba(15,23,42,.04);
	--bh-shadow-lg: 0 10px 15px -3px rgba(15,23,42,.10), 0 4px 6px -2px rgba(15,23,42,.05);
	--bh-shadow-xl: 0 20px 25px -5px rgba(15,23,42,.12), 0 10px 10px -5px rgba(15,23,42,.04);

	/* Transitions */
	--bh-tx: 200ms ease;
	--bh-tx-slow: 400ms cubic-bezier(.2,.8,.2,1);

	/* Container */
	--bh-container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
	margin: 0 !important;
	padding: 0 !important;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	font-family: var(--bh-font);
	font-size: var(--bh-size-base);
	line-height: var(--bh-leading);
	color: var(--bh-text);
	background: var(--bh-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/* Defensive — anything WordPress/Hostinger injects between <body> and our
   header should not push content down. Keep our header flush to the top. */
.bh-header { margin-top: 0 !important; }
.bh-main { margin: 0; padding: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--bh-accent-dark); text-decoration: none; transition: color var(--bh-tx); }
@media (hover: hover) and (pointer: fine) {
	a:hover { color: var(--bh-accent); }
}
ul, ol { padding-left: var(--bh-5); }

/* ---------- Accessibility ---------- */
.bh-sr {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.bh-skip {
	position: absolute; left: -9999px; top: 0; padding: var(--bh-3) var(--bh-5);
	background: var(--bh-bg-dark); color: #fff; z-index: 999;
}
.bh-skip:focus { left: var(--bh-4); top: var(--bh-4); border-radius: var(--bh-r-md); }

/* ---------- Layout ---------- */
.bh-container { max-width: var(--bh-container); margin: 0 auto; padding: 0 var(--bh-6); }
@media (min-width: 768px) { .bh-container { padding: 0 var(--bh-8); } }

.bh-section { padding: var(--bh-12) 0; }
@media (min-width: 768px) { .bh-section { padding: var(--bh-16) 0; } }
.bh-section--alt {
	background: var(--bh-bg-alt);
	border-top: 1px solid var(--bh-border);
	border-bottom: 1px solid var(--bh-border);
}
.bh-section--cta {
	background:
		radial-gradient(ellipse 70% 50% at 50% 0%, rgba(16,185,129,.18), transparent 70%),
		linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.bh-section--cta::before {
	/* Decorative emerald orb behind CTA */
	content: "";
	position: absolute;
	top: -150px; right: -150px;
	width: 400px; height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(16,185,129,.20), transparent 70%);
	pointer-events: none;
}
.bh-section--cta > .bh-container { position: relative; z-index: 1; }
.bh-section--cta h2 {
	color: #fff;
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -.025em;
	margin-bottom: var(--bh-3);
}
.bh-section--cta p {
	color: rgba(255,255,255,.75);
	margin-bottom: var(--bh-6);
	font-size: 18px;
	max-width: 560px;
	margin-left: auto; margin-right: auto;
}

.bh-section__head {
	max-width: 760px; margin: 0 auto var(--bh-12); text-align: center;
}
.bh-section__head h2 {
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.15;
	margin: 0 0 var(--bh-3);
	letter-spacing: -.025em;
	font-weight: 800;
	color: var(--bh-text);
}
.bh-section__head p {
	color: var(--bh-muted);
	margin: 0;
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.55;
}
.bh-section__cta { text-align: center; margin-top: var(--bh-10); }

@media (max-width: 767px) {
	.bh-section { padding: var(--bh-12) 0; }
	.bh-section__head h2 { font-size: 28px; }
	.bh-section--cta h2 { font-size: 28px; }
}

.bh-grid { display: grid; gap: var(--bh-6); }
.bh-grid--2 { grid-template-columns: 1fr; }
.bh-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
	.bh-grid--2 { grid-template-columns: 1fr 1fr; gap: var(--bh-10); }
	.bh-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Header ---------- */
.bh-header {
	position: sticky; top: 0; z-index: 100;
	/* SOLID white background — no backdrop-filter, no transform, no isolation.
	   These properties (transform, filter, backdrop-filter, perspective,
	   will-change, contain) all create a CONTAINING BLOCK for any
	   position:fixed descendant — which would trap the mobile nav drawer
	   inside the header's tiny bounding box (collapsed to a thin strip
	   instead of covering the viewport).
	   Header stays sticky on top via:
	   1. position: sticky (creates own stacking context regardless of z-index)
	   2. z-index: 100 (above page content)
	   3. Solid background (no transparency means page content can't bleed through) */
	background: #ffffff;
	border-bottom: 1px solid var(--bh-border);
}
.bh-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 52px; gap: var(--bh-6);
}
@media (min-width: 1024px) {
	.bh-header__inner { min-height: 60px; }
}
.bh-logo { display: inline-flex; align-items: center; }
.bh-logo svg { height: 32px; width: auto; }
.bh-logo--footer svg { filter: brightness(0) invert(1); opacity: .9; }

.bh-burger {
	display: inline-flex !important; /* defeat any plugin/admin-bar override */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 10px;
	margin: 0;
	width: 44px;          /* explicit hit target size — Apple touch min 44px */
	height: 44px;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: var(--bh-r-sm);
	z-index: 101;
	position: relative;
	cursor: pointer;
	color: var(--bh-text); /* sets currentColor for the lines */
	-webkit-tap-highlight-color: rgba(0,0,0,.06);
}
.bh-burger:focus-visible {
	background: var(--bh-bg-alt) !important;
	background-color: var(--bh-bg-alt) !important;
	outline: 0;
}
@media (hover: hover) and (pointer: fine) {
	.bh-burger:hover {
		background: var(--bh-bg-alt) !important;
		background-color: var(--bh-bg-alt) !important;
		outline: 0;
	}
}
.bh-burger span:not(.bh-sr) {
	display: block;
	width: 22px;
	height: 3px;            /* slightly thicker for visibility */
	background: currentColor;
	border-radius: 2px;
	transition: transform var(--bh-tx), opacity var(--bh-tx);
}
.bh-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.bh-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.bh-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 1024px) { .bh-burger { display: none !important; } }

/* Mobile default — nav is hidden until burger is clicked. !important
   defeats any leak-through from third-party plugins / admin bar styles. */
.bh-nav { display: none !important; }
.bh-nav.is-open { display: block !important; }

@media (min-width: 1024px) {
	.bh-nav { display: flex !important; align-items: center; gap: var(--bh-6); }
	.bh-nav.is-open { display: flex !important; } /* desktop: don't apply mobile drawer styles */
	.bh-nav__list {
		display: flex; align-items: center; gap: var(--bh-6);
		list-style: none; margin: 0; padding: 0;
	}
	.bh-nav__list a {
		color: var(--bh-text); font-weight: 500; font-size: 15px;
		padding: var(--bh-2) 0; position: relative;
		text-decoration: none;
	}
	@media (hover: hover) and (pointer: fine) {
		.bh-nav__list a:hover { color: var(--bh-accent-dark); }
	}
}

/* Universal — never let nav links inherit a global text-decoration: underline */
.bh-nav a, .bh-nav__list a, .bh-mega a { text-decoration: none !important; }

/* Mobile open-drawer — scoped to <1024px so desktop layout never gets
   accidentally hit by drawer styles (e.g. if user resizes from mobile to
   desktop with menu open). Every property has !important to defeat any
   cached/leaked CSS, third-party plugin override, or specificity quirks
   that might be making the drawer collapse or sit behind page content.
   z-index 9000 is well above the header (100) and product image stickies. */
@media (max-width: 1023px) {
	.bh-nav.is-open {
		display: block !important;
		position: fixed !important;
		top: 52px !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: calc(100vh - 52px) !important;  /* fallback */
		height: calc(100dvh - 52px) !important; /* dynamic viewport — accounts for mobile address bar */
		background: #ffffff !important;
		padding: var(--bh-6) !important;
		border-top: 1px solid var(--bh-border) !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		z-index: 9000 !important;
		animation: bh-nav-slide-in .2s ease-out;
		-webkit-overflow-scrolling: touch;
	}
	.bh-nav.is-open .bh-nav__list {
		display: flex; flex-direction: column; gap: var(--bh-3);
		list-style: none; margin: 0 0 var(--bh-6); padding: 0;
	}
	.bh-nav.is-open .bh-nav__list a {
		display: block; padding: var(--bh-3) 0; font-size: 18px; font-weight: 500; color: var(--bh-text);
		border-bottom: 1px solid var(--bh-border);
	}
}
@keyframes bh-nav-slide-in {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero ---------- */
.bh-hero {
	padding: var(--bh-8) 0 var(--bh-12);
	background:
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,.10), transparent 60%),
		radial-gradient(ellipse 60% 50% at 20% 50%, rgba(99,102,241,.04), transparent 60%),
		radial-gradient(ellipse 60% 50% at 80% 50%, rgba(14,116,144,.04), transparent 60%),
		var(--bh-bg);
	text-align: center;
	position: relative;
	overflow: hidden;
}
/* Subtle decorative dots in the hero corners (desktop only — on mobile they
   would push the hero off-screen and add layout cost for tiny visual gain). */
.bh-hero::before,
.bh-hero::after {
	content: "";
	position: absolute;
	width: 280px; height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(16,185,129,.08), transparent 70%);
	pointer-events: none;
	z-index: 0;
	display: none;
}
@media (min-width: 768px) {
	.bh-hero::before, .bh-hero::after { display: block; }
}
.bh-hero::before { top: -100px; left: -100px; }
.bh-hero::after  { bottom: -100px; right: -100px; }
.bh-hero > .bh-container { position: relative; z-index: 1; }
@media (min-width: 768px) {
	.bh-hero { padding: var(--bh-12) 0 var(--bh-16); }
}

.bh-eyebrow {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px var(--bh-4);
	background: var(--bh-accent-soft);
	color: var(--bh-accent-dark);
	font-size: 13px; font-weight: 700;
	border-radius: var(--bh-r-pill);
	margin-bottom: var(--bh-5);
	letter-spacing: .02em;
	border: 1px solid rgba(16,185,129,.18);
}
.bh-eyebrow::before {
	content: "";
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--bh-accent);
	box-shadow: 0 0 0 3px rgba(16,185,129,.18);
	animation: bh-eyebrow-pulse 2.4s ease-in-out infinite;
}
@keyframes bh-eyebrow-pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
	50%      { box-shadow: 0 0 0 5px rgba(16,185,129,.28); }
}

.bh-hero__title {
	font-size: clamp(34px, 5.5vw, 56px);
	line-height: 1.05;
	letter-spacing: -.035em;
	max-width: 920px;
	margin: 0 auto var(--bh-6);
	font-weight: 800;
	color: var(--bh-text);
	/* Subtle text shadow for depth on white */
	text-shadow: 0 1px 0 rgba(15,23,42,.02);
}
.bh-hero__sub {
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
	color: var(--bh-muted);
	max-width: 720px;
	margin: 0 auto var(--bh-8);
}
.bh-hero__ctas {
	display: flex; gap: var(--bh-4); justify-content: center; flex-wrap: wrap;
	margin-bottom: var(--bh-6);
}
.bh-hero__trust {
	display: inline-flex; align-items: center; gap: var(--bh-3);
	flex-wrap: wrap; justify-content: center;
	font-size: 14px; color: var(--bh-muted); margin: 0;
	padding: var(--bh-2) var(--bh-5);
	background: rgba(255,255,255,.6);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-pill);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.bh-hero__trust span { color: var(--bh-warn); letter-spacing: 1px; }
.bh-hero__trust strong { color: var(--bh-text); font-weight: 700; }

/* ---------- Buttons ---------- */
.bh-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: var(--bh-2);
	padding: var(--bh-3) var(--bh-6);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.005em;
	border-radius: var(--bh-r-md);
	transition: transform 200ms cubic-bezier(.2,.8,.2,1),
				background 200ms ease,
				box-shadow 200ms ease,
				border-color 200ms ease;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}
/* Hero-area buttons get a slight bump in size + weight */
.bh-hero__ctas .bh-btn {
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 700;
}

/* Primary — emerald gradient with depth + glow on hover */
.bh-btn--primary {
	background: linear-gradient(180deg, var(--bh-accent) 0%, var(--bh-accent-dark) 100%);
	color: #fff;
	box-shadow:
		0 1px 2px rgba(15,23,42,.08),
		0 4px 12px -2px rgba(16,185,129,.30),
		inset 0 1px 0 rgba(255,255,255,.20),
		inset 0 -1px 0 rgba(0,0,0,.12);
}
@media (hover: hover) and (pointer: fine) {
	.bh-btn--primary:hover {
		color: #fff;
		transform: translateY(-2px);
		background: linear-gradient(180deg, #14c094 0%, var(--bh-accent) 100%);
		box-shadow:
			0 1px 2px rgba(15,23,42,.10),
			0 8px 20px -4px rgba(16,185,129,.45),
			inset 0 1px 0 rgba(255,255,255,.25);
	}
}
.bh-btn--primary:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(15,23,42,.10), inset 0 1px 2px rgba(0,0,0,.15);
}

/* Ghost — solid bg + border, lifts on hover */
.bh-btn--ghost {
	background: #ffffff;
	color: var(--bh-text);
	border: 1px solid var(--bh-border-dark);
	box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
@media (hover: hover) and (pointer: fine) {
	.bh-btn--ghost:hover {
		background: var(--bh-bg);
		color: var(--bh-accent-dark);
		border-color: var(--bh-accent);
		transform: translateY(-2px);
		box-shadow: 0 4px 12px -2px rgba(16,185,129,.18);
	}
}
.bh-btn--ghost:active { transform: translateY(0); }

/* Inverse buttons (used in dark CTA sections) */
.bh-section--cta .bh-btn--ghost {
	color: #fff;
	background: transparent;
	border-color: rgba(255,255,255,.3);
	box-shadow: none;
}
@media (hover: hover) and (pointer: fine) {
	.bh-section--cta .bh-btn--ghost:hover {
		background: rgba(255,255,255,.1);
		color: #fff;
		border-color: rgba(255,255,255,.6);
	}
}

/* ---------- Trust strip ---------- */
.bh-trust {
	padding: var(--bh-8) 0;
	background: var(--bh-bg-alt);
	border-top: 1px solid var(--bh-border);
	border-bottom: 1px solid var(--bh-border);
	position: relative;
}
.bh-trust__label {
	text-align: center; color: var(--bh-muted-light);
	font-size: 12px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	margin: 0 0 var(--bh-5);
}
.bh-trust__row {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: var(--bh-2) var(--bh-6);
	align-items: center;
}
.bh-trust__row span {
	color: var(--bh-text-light);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.005em;
	padding: 6px 14px;
	background: #ffffff;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-pill);
	/* v0.8.2 perf: explicit properties instead of `all` */
	transition: color var(--bh-tx), border-color var(--bh-tx), transform var(--bh-tx), box-shadow var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-trust__row span:hover {
		color: var(--bh-accent-dark);
		border-color: var(--bh-accent);
		transform: translateY(-1px);
		box-shadow: 0 2px 6px -1px rgba(16,185,129,.15);
	}
}

/* ---------- Card ---------- */
.bh-card {
	display: block;
	background: #ffffff;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	padding: var(--bh-6);
	transition: border-color 200ms ease,
				box-shadow 200ms ease,
				transform 200ms cubic-bezier(.2,.8,.2,1);
	color: var(--bh-text);
	position: relative;
	overflow: hidden;
}
/* Gradient accent strip at the top, revealed on hover */
.bh-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--bh-accent) 0%, #14b8a6 50%, var(--bh-accent-dark) 100%);
	opacity: 0;
	transition: opacity 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
	.bh-card:hover {
		border-color: var(--bh-accent);
		box-shadow: 0 12px 32px -8px rgba(15,23,42,.10), 0 4px 12px -2px rgba(16,185,129,.10);
		transform: translateY(-3px);
		color: var(--bh-text);
	}
	.bh-card:hover::before { opacity: 1; }
}
.bh-card h3 { margin: 0 0 var(--bh-2); font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.bh-card p { margin: 0; color: var(--bh-muted); font-size: 15px; }
.bh-card__arrow {
	position: absolute; right: var(--bh-6); bottom: var(--bh-6);
	color: var(--bh-accent); font-size: 20px; transition: transform var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-card:hover .bh-card__arrow { transform: translateX(4px); }
}

.bh-card--plan { text-align: center; }
.bh-card--plan h3 { margin-bottom: var(--bh-1); }
.bh-card__price { font-size: 32px; font-weight: 800; color: var(--bh-text); margin: var(--bh-2) 0; }
.bh-card--plan .bh-btn { margin-top: var(--bh-4); width: 100%; }

.bh-card--product { text-align: left; padding: var(--bh-4); }
.bh-card--product img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ffffff 100%);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	padding: var(--bh-2);
	margin-bottom: var(--bh-3);
}
.bh-card--product h3 { font-size: 16px; line-height: 1.3; }
.bh-card--product .bh-card__price { font-size: 20px; margin-top: var(--bh-2); color: var(--bh-accent-dark); }

.bh-card--nap h3 { margin-bottom: var(--bh-3); }
.bh-card--nap address { font-style: normal; color: var(--bh-muted); margin: var(--bh-3) 0; }

/* ---------- Steps ---------- */
.bh-steps {
	list-style: none; padding: 0; margin: 0;
	display: grid; gap: var(--bh-8); grid-template-columns: 1fr;
	counter-reset: bh-step;
}
@media (min-width: 768px) { .bh-steps { grid-template-columns: repeat(3, 1fr); gap: var(--bh-10); } }
.bh-steps li { text-align: center; }
.bh-steps__num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px;
	border-radius: var(--bh-r-pill);
	background: linear-gradient(135deg, var(--bh-accent-soft) 0%, #ffffff 100%);
	color: var(--bh-accent-dark);
	font-weight: 800; font-size: 22px;
	margin-bottom: var(--bh-4);
	border: 2px solid rgba(16,185,129,.2);
	box-shadow: 0 4px 12px -2px rgba(16,185,129,.15);
	transition: transform var(--bh-tx), box-shadow var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-steps li:hover .bh-steps__num {
		transform: translateY(-2px) scale(1.05);
		box-shadow: 0 8px 16px -2px rgba(16,185,129,.25);
	}
}
.bh-steps h3 {
	margin: 0 0 var(--bh-2);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -.01em;
}
.bh-steps p { margin: 0; color: var(--bh-muted); line-height: 1.55; }

/* ---------- Breadcrumb ---------- */
.bh-breadcrumb { font-size: 13px; color: var(--bh-muted); margin: 0 0 var(--bh-5); }
.bh-breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 2px; }
.bh-breadcrumb li:not(:last-child)::after {
	content: "›";
	margin: 0 var(--bh-2);
	color: var(--bh-muted-light);
	font-weight: 500;
}
.bh-breadcrumb a { color: var(--bh-muted); transition: color var(--bh-tx); }
@media (hover: hover) and (pointer: fine) {
	.bh-breadcrumb a:hover { color: var(--bh-accent-dark); }
}
.bh-breadcrumb li:last-child { color: var(--bh-text); font-weight: 500; }

/* ---------- Prose (long-form content from the editor) ---------- */
.bh-prose {
	max-width: 760px; margin: 0 auto;
}
.bh-prose h1 { font-size: clamp(32px, 4vw, 44px); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 var(--bh-6); }
.bh-prose h2 { font-size: 28px; line-height: 1.25; margin: var(--bh-12) 0 var(--bh-3); letter-spacing: -.01em; }
.bh-prose h3 { font-size: 22px; margin: var(--bh-8) 0 var(--bh-3); }
.bh-prose p { margin: 0 0 var(--bh-5); color: var(--bh-text-light); }
.bh-prose ul, .bh-prose ol { margin: 0 0 var(--bh-5); padding-left: var(--bh-6); }
.bh-prose li { margin-bottom: var(--bh-2); color: var(--bh-text-light); }
.bh-prose img, .bh-prose__img {
	width: 100%;
	height: auto;
	max-height: 540px;
	object-fit: contain;
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ffffff 60%, var(--bh-accent-soft) 160%);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	box-shadow: var(--bh-shadow-md);
	padding: var(--bh-3);
	margin: var(--bh-6) 0;
}
.bh-prose figure {
	margin: var(--bh-6) 0;
}
.bh-prose figure img {
	margin: 0;
}
.bh-prose figcaption {
	font-size: 14px;
	color: var(--bh-muted);
	margin-top: var(--bh-2);
	text-align: center;
	font-style: italic;
}
.bh-prose blockquote {
	border-left: 4px solid var(--bh-accent); padding-left: var(--bh-5);
	font-style: italic; color: var(--bh-muted); margin: var(--bh-6) 0;
}

/* ---------- Product page ---------- */
/* Sticky image is desktop-only — on mobile (single column), sticky positioning
   makes content appear to scroll BEHIND the image which is confusing.
   On mobile we use natural flow: image at top, description below, both scroll
   together normally. */
.bh-product__media { position: static; }
@media (min-width: 768px) {
	.bh-product__media { position: sticky; top: 80px; }
}
.bh-product__img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ffffff 60%, var(--bh-accent-soft) 160%);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	box-shadow: var(--bh-shadow-md);
	padding: var(--bh-4);
}
.bh-product__placeholder {
	display: grid; place-items: center;
	aspect-ratio: 1; background: var(--bh-bg-alt);
	border-radius: var(--bh-r-lg); border: 1px dashed var(--bh-border);
}
.bh-product__placeholder svg { opacity: .25; max-width: 60%; }
.bh-product__price { font-size: 32px; font-weight: 800; margin: var(--bh-3) 0 var(--bh-2); }
.bh-product__compare { color: var(--bh-muted); text-decoration: line-through; font-size: 18px; font-weight: 500; margin-left: var(--bh-2); }
.bh-product__delivery { color: var(--bh-muted); margin-bottom: var(--bh-5); font-size: 14px; }
.bh-product__cta { display: flex; gap: var(--bh-3); flex-wrap: wrap; margin-bottom: var(--bh-8); }

/* ---------- Case-study cards (case-studies index) ---------- */
.bh-cases { gap: var(--bh-6); }
.bh-case-card {
	display: flex; flex-direction: column;
	padding: 0;
	overflow: hidden;
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	transition: border-color var(--bh-tx), box-shadow var(--bh-tx), transform var(--bh-tx);
	color: var(--bh-text);
}
@media (hover: hover) and (pointer: fine) {
	.bh-case-card:hover {
		border-color: var(--bh-accent);
		box-shadow: var(--bh-shadow-lg);
		transform: translateY(-3px);
		color: var(--bh-text);
	}
}
.bh-case-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ffffff 60%, var(--bh-accent-soft) 160%);
	border-bottom: 1px solid var(--bh-border);
}
.bh-case-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.bh-case-card__placeholder {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--bh-accent) 0%, var(--bh-primary) 100%);
}
.bh-case-card__placeholder span {
	font-family: var(--bh-mono);
	font-size: 36px; font-weight: 800;
	color: rgba(255,255,255,.85);
	letter-spacing: -.02em;
}
.bh-case-card__chip {
	position: absolute;
	top: var(--bh-3); left: var(--bh-3);
	padding: 4px 10px;
	background: rgba(255,255,255,.95);
	color: var(--bh-text);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-radius: var(--bh-r-pill);
	box-shadow: var(--bh-shadow-sm);
}
.bh-case-card__body {
	padding: var(--bh-5) var(--bh-5) var(--bh-6);
	display: flex; flex-direction: column;
	gap: var(--bh-2);
	flex: 1;
}
.bh-case-card__body h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--bh-text);
}
.bh-case-card__body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--bh-muted);
	flex: 1;
}
.bh-case-card__cta {
	display: inline-flex;
	align-items: center;
	margin-top: var(--bh-3);
	color: var(--bh-accent-dark);
	font-size: 14px;
	font-weight: 600;
	transition: color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-case-card:hover .bh-case-card__cta { color: var(--bh-accent); }
}

/* ---------- First-visit Language Picker ---------- */
.bh-langpicker {
	position: fixed; inset: 0; z-index: 9999;
	display: grid; place-items: center;
	padding: var(--bh-4);
}
.bh-langpicker[hidden] { display: none; }
.bh-langpicker__overlay {
	position: absolute; inset: 0;
	background: rgba(15, 23, 42, .72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	animation: bh-langpicker-fade .25s ease-out;
}
.bh-langpicker__card {
	position: relative;
	background: #ffffff;
	border-radius: var(--bh-r-lg);
	padding: var(--bh-10) var(--bh-8);
	max-width: 520px; width: 100%;
	box-shadow: 0 24px 60px -12px rgba(15,23,42,.30), 0 12px 24px -6px rgba(15,23,42,.18);
	border: 1px solid var(--bh-border);
	text-align: center;
	animation: bh-langpicker-pop .35s cubic-bezier(.2, .8, .2, 1);
}
.bh-langpicker__brand {
	display: flex; justify-content: center;
	margin-bottom: var(--bh-5);
}
.bh-langpicker__brand svg {
	height: 36px; width: auto;
}
.bh-langpicker__title {
	font-size: 24px; font-weight: 700;
	letter-spacing: -.01em;
	color: var(--bh-text);
	margin: 0 0 var(--bh-2);
	line-height: 1.25;
}
.bh-langpicker__sub {
	font-size: 15px;
	color: var(--bh-muted);
	margin: 0 0 var(--bh-6);
	line-height: 1.5;
}
.bh-langpicker__choices {
	display: grid; gap: var(--bh-3);
	grid-template-columns: 1fr;
	margin-bottom: var(--bh-5);
}
@media (min-width: 480px) {
	.bh-langpicker__choices { grid-template-columns: 1fr 1fr; }
}
.bh-langpicker__btn {
	display: flex; flex-direction: column; align-items: center;
	gap: 4px;
	padding: var(--bh-5) var(--bh-4);
	background: var(--bh-bg-alt);
	border: 2px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	cursor: pointer;
	/* v0.8.2 perf: explicit properties instead of `all` */
	transition: background var(--bh-tx), border-color var(--bh-tx), box-shadow var(--bh-tx), transform var(--bh-tx);
	font-family: var(--bh-font);
	color: var(--bh-text);
}
@media (hover: hover) and (pointer: fine) {
	.bh-langpicker__btn:hover {
		background: #ffffff;
		border-color: var(--bh-accent);
		box-shadow: 0 8px 16px -4px rgba(16, 185, 129, .25);
		transform: translateY(-2px);
	}
}
.bh-langpicker__btn:focus-visible {
	outline: 3px solid var(--bh-accent);
	outline-offset: 2px;
}
.bh-langpicker__flag {
	font-size: 32px;
	line-height: 1;
	margin-bottom: var(--bh-1);
	display: block;
}
.bh-langpicker__btn-main {
	font-size: 17px;
	font-weight: 700;
	color: var(--bh-text);
	letter-spacing: -.01em;
}
.bh-langpicker__btn-sub {
	font-size: 12px;
	color: var(--bh-muted);
	font-weight: 500;
}
.bh-langpicker__note {
	font-size: 12px;
	color: var(--bh-muted-light);
	margin: 0;
	line-height: 1.6;
}
@keyframes bh-langpicker-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes bh-langpicker-pop {
	from { opacity: 0; transform: translateY(12px) scale(.98); }
	to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
@media (max-width: 480px) {
	.bh-langpicker__card { padding: var(--bh-8) var(--bh-5); }
	.bh-langpicker__title { font-size: 20px; }
}

/* ---------- Footer (HTML sitemap) ---------- */
.bh-footer {
	background: var(--bh-bg-dark);
	color: rgba(255,255,255,.7);
	padding: var(--bh-16) 0 0;
	margin-top: var(--bh-20);
	position: relative;
}
.bh-footer::before {
	/* Subtle emerald glow at the top of the footer to anchor the section */
	content: "";
	position: absolute; left: 0; right: 0; top: 0; height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--bh-accent) 50%, transparent 100%);
	opacity: .35;
}

/* Sitemap header — sits above the column grid */
.bh-footer__sitemap-head {
	padding-bottom: var(--bh-8);
	margin-bottom: var(--bh-2);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.bh-footer__sitemap-headline h3 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -.01em;
	margin: 0 0 var(--bh-2);
}
.bh-footer__sitemap-headline p {
	font-size: 14px;
	color: rgba(255,255,255,.55);
	margin: 0;
}
.bh-footer__sitemap-headline a {
	color: var(--bh-accent);
	font-weight: 600;
	margin-left: var(--bh-2);
}
@media (hover: hover) and (pointer: fine) {
	.bh-footer__sitemap-headline a:hover {
		color: #fff;
	}
}

/* Six-column grid — uses padding-top/bottom only so .bh-container's
   horizontal padding (left/right) is preserved. */
.bh-footer__grid {
	display: grid;
	gap: var(--bh-8);
	grid-template-columns: 1fr;
	padding-top: var(--bh-10);
	padding-bottom: var(--bh-12);
	border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) {
	.bh-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
	.bh-footer__grid { grid-template-columns: 2fr repeat(5, 1fr); gap: var(--bh-6); }
}
.bh-footer__col--brand { padding-right: var(--bh-4); }

.bh-footer__col h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 var(--bh-4);
	padding-bottom: var(--bh-2);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.bh-footer__col h4.bh-footer__h4--spaced {
	margin-top: var(--bh-6);
}
.bh-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--bh-2);
	display: grid;
	gap: var(--bh-2);
}
.bh-footer__col li { line-height: 1.4; }
.bh-footer__col a {
	color: rgba(255,255,255,.7);
	font-size: 14px;
	/* v0.8.2 perf: transition transform (GPU-compositor) instead of padding-left
	   (which triggers layout recalc on every hover state change). */
	transition: color var(--bh-tx), transform var(--bh-tx);
	display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
	.bh-footer__col a:hover {
		color: var(--bh-accent);
		transform: translateX(4px);
	}
}
.bh-footer__all a {
	color: var(--bh-accent) !important;
	font-weight: 600;
	font-size: 13px;
	margin-top: var(--bh-2);
}
@media (hover: hover) and (pointer: fine) {
	.bh-footer__all a:hover { color: #fff !important; transform: translateX(0) !important; }
}

.bh-footer__tagline {
	font-size: 14px;
	max-width: 280px;
	margin: var(--bh-4) 0;
	color: rgba(255,255,255,.6);
	line-height: 1.6;
}
.bh-footer__nap {
	font-style: normal;
	font-size: 13px;
	line-height: 1.8;
	color: rgba(255,255,255,.6);
}
.bh-footer__nap a {
	color: rgba(255,255,255,.85);
	transition: color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-footer__nap a:hover { color: var(--bh-accent); }
}

/* Mid-bar — Connect (social) on left, Language toggle on right.
   padding-top/bottom only — left/right comes from .bh-container. */
.bh-footer__midbar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: var(--bh-6);
	padding-top: var(--bh-6);
	padding-bottom: var(--bh-6);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.bh-footer__connect,
.bh-footer__lang {
	display: flex;
	align-items: center;
	gap: var(--bh-3);
	flex-wrap: wrap;
}
.bh-footer__midbar-label {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(255,255,255,.45);
	margin-right: var(--bh-2);
}
.bh-footer__social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-4);
}
.bh-footer__social a {
	color: rgba(255,255,255,.7);
	font-size: 13px;
	transition: color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-footer__social a:hover { color: var(--bh-accent); }
}

.bh-footer__lang-link {
	color: rgba(255,255,255,.7);
	font-size: 13px;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: var(--bh-r-pill);
	border: 1px solid transparent;
	/* v0.8.2 perf: explicit properties instead of `all` */
	transition: color var(--bh-tx), border-color var(--bh-tx), background var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-footer__lang-link:hover {
		color: var(--bh-accent);
		border-color: rgba(16,185,129,.3);
	}
}
.bh-footer__lang-link.is-active {
	color: #fff;
	background: rgba(16,185,129,.15);
	border-color: rgba(16,185,129,.4);
}

/* Bottom bar — copyright + legal */
.bh-footer__bar {
	padding: var(--bh-5) 0;
	font-size: 13px;
	color: rgba(255,255,255,.5);
}
.bh-footer__bar .bh-container {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-4);
	justify-content: space-between;
	align-items: center;
}
.bh-footer__bar p { margin: 0; }
.bh-footer__bar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-5);
}
.bh-footer__bar a {
	color: rgba(255,255,255,.5);
	transition: color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-footer__bar a:hover { color: var(--bh-accent); }
}

/* Mobile-friendly stacking */
@media (max-width: 640px) {
	.bh-footer__sitemap-headline h3 { font-size: 18px; }
	.bh-footer__midbar { flex-direction: column; align-items: flex-start; gap: var(--bh-4); }
	.bh-footer__bar .bh-container { flex-direction: column; align-items: flex-start; gap: var(--bh-3); }
}

/* ---------- Pagination ---------- */
.bh-pagination { margin-top: var(--bh-10); text-align: center; }
.bh-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 var(--bh-3);
	border-radius: var(--bh-r-md); border: 1px solid var(--bh-border);
	color: var(--bh-text); margin: 0 2px; font-weight: 500;
}
.bh-pagination .current { background: var(--bh-text); color: #fff; }

/* ---------- Lead paragraph (intro under H2 in alt sections) ---------- */
.bh-lead {
	max-width: 760px; margin: 0 auto var(--bh-10);
	font-size: 19px;
	line-height: 1.65;
	color: var(--bh-text-light);
	text-align: center;
	font-weight: 400;
}

/* ---------- Industries inline list ---------- */
.bh-industries {
	display: flex; flex-wrap: wrap; justify-content: center; gap: var(--bh-3);
	max-width: 920px; margin: 0 auto;
}
.bh-industries span {
	display: inline-block;
	padding: 10px 18px;
	background: #ffffff;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-pill);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -.005em;
	color: var(--bh-text-light);
	/* v0.8.2 perf: explicit properties instead of `all` */
	transition: color var(--bh-tx), border-color var(--bh-tx), background var(--bh-tx), transform var(--bh-tx), box-shadow var(--bh-tx);
	cursor: default;
}
@media (hover: hover) and (pointer: fine) {
	.bh-industries span:hover {
		border-color: var(--bh-accent);
		color: var(--bh-accent-dark);
		background: var(--bh-accent-soft);
		transform: translateY(-1px);
		box-shadow: 0 4px 8px -2px rgba(16,185,129,.18);
	}
}

/* ---------- Testimonial / quote card ---------- */
.bh-quote {
	background: #ffffff;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	padding: var(--bh-6);
	margin: 0;
	display: flex; flex-direction: column; gap: var(--bh-4);
	transition: border-color var(--bh-tx), box-shadow var(--bh-tx), transform var(--bh-tx);
	position: relative;
}
/* Subtle quote-mark decoration */
.bh-quote::before {
	content: """;
	position: absolute;
	top: -8px; left: var(--bh-6);
	font-size: 64px;
	/* v0.12.0 — was Georgia, now uses the Inter stack to keep the entire
	 * design system on one font family. The .25 opacity + 64px size still
	 * reads as the decorative curly quote glyph. */
	font-family: var(--bh-font);
	color: var(--bh-accent);
	opacity: .25;
	line-height: 1;
	pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
	.bh-quote:hover {
		border-color: var(--bh-accent);
		box-shadow: 0 8px 20px -4px rgba(16,185,129,.15);
		transform: translateY(-2px);
	}
}
.bh-quote p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: var(--bh-text);
	font-style: italic;
	position: relative;
	z-index: 1;
}
.bh-quote footer {
	font-size: 14px; color: var(--bh-muted); font-style: normal;
}
.bh-quote footer strong { color: var(--bh-text); font-weight: 600; }
.bh-quote footer span[aria-label] { color: var(--bh-warn); letter-spacing: 1px; }

/* ---------- Mega menu (Stage A1) ---------- */
.bh-mega { position: relative; }
.bh-mega__item { position: relative; }
.bh-mega__has-dropdown > a {
	display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
}
.bh-mega__dropdown {
	display: none;
	position: absolute; left: 0; top: calc(100% + 4px);
	min-width: 280px;
	background: #fff;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md, 12px);
	box-shadow: var(--bh-shadow-md, 0 16px 48px rgba(15,23,42,.12));
	padding: var(--bh-5) var(--bh-6);
	/* High z-index so the dropdown ALWAYS renders above page content
	   below the header — including hero sections, sticky product images,
	   case-study cards, image-frame components, etc. */
	z-index: 1000;
}
.bh-mega__dropdown ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 6px;
}
.bh-mega__dropdown a {
	display: block;
	padding: 6px 0;
	font-size: 14px;
	color: var(--bh-muted);
	font-weight: 400;
	border: 0;
}
@media (hover: hover) and (pointer: fine) {
	.bh-mega__dropdown a:hover { color: var(--bh-accent-dark); }
}
.bh-mega__dropdown h4 {
	font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
	color: var(--bh-text); font-weight: 700;
	margin: 0 0 var(--bh-2); padding-bottom: 8px;
	border-bottom: 1px solid var(--bh-border);
}
.bh-mega__dropdown--2col,
.bh-mega__dropdown--4col {
	display: none;
}
.bh-mega__dropdown--2col {
	width: 480px;
	grid-template-columns: 1fr 1fr;
	gap: var(--bh-6);
}
.bh-mega__dropdown--4col {
	width: 880px;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--bh-5);
	left: 50%;
	transform: translateX(-50%);
}

/* Hover-show on desktop only. Keyboard users keep access via :focus-within
   (the functional half of the pair); touch-laptop users won't trigger :hover
   anyway because tap doesn't generate it. We keep the :hover branch inside
   (min-width: 1024px) and the @media (hover: hover) sub-guards below ensure
   touch-screen laptops at desktop widths don't get stuck in dropdown-open
   state if a tap simulates hover. */
@media (min-width: 1024px) {
	@media (hover: hover) and (pointer: fine) {
		.bh-mega__has-dropdown:hover > .bh-mega__dropdown {
			display: block;
		}
		.bh-mega__has-dropdown:hover > .bh-mega__dropdown--2col,
		.bh-mega__has-dropdown:hover > .bh-mega__dropdown--4col {
			display: grid;
		}
		.bh-mega__has-dropdown:hover > a::after { transform: rotate(180deg); }
	}
	.bh-mega__has-dropdown:focus-within > .bh-mega__dropdown {
		display: block;
	}
	.bh-mega__has-dropdown:focus-within > .bh-mega__dropdown--2col,
	.bh-mega__has-dropdown:focus-within > .bh-mega__dropdown--4col {
		display: grid;
	}
	.bh-mega__has-dropdown > a::after {
		content: ""; display: inline-block;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 4px solid currentColor;
		margin-left: 6px; opacity: .6;
		transition: transform .2s ease;
	}
	.bh-mega__has-dropdown > a > span[aria-hidden] { display: none; } /* drop the textual ▾ */

	/* Hover-bridge — invisible 12px zone below the menu item that keeps
	   the parent in :hover state while the cursor travels down to the
	   dropdown card. Without this, the 8px visual gap between menu item
	   and dropdown causes :hover to drop and the dropdown to disappear
	   before the user can click anything inside it. */
	.bh-mega__has-dropdown::after {
		content: "";
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: 12px;
		/* transparent — purely extends the hover hit-area */
	}
	/* Tighten the visible gap to 4px now that the hover bridge handles travel time */
	.bh-mega__dropdown,
	.bh-mega__dropdown--2col,
	.bh-mega__dropdown--4col {
		top: calc(100% + 4px);
	}
}

/* Mobile: stack everything vertically inside the open drawer */
@media (max-width: 1023px) {
	.bh-mega__dropdown,
	.bh-mega__dropdown--2col,
	.bh-mega__dropdown--4col {
		display: block;
		position: static;
		min-width: 0; width: auto;
		transform: none;
		border: 0; box-shadow: none;
		padding: var(--bh-3) 0 var(--bh-3) var(--bh-4);
		background: transparent;
	}
	.bh-mega__dropdown--2col,
	.bh-mega__dropdown--4col {
		display: flex; flex-direction: column;
		gap: var(--bh-4);
	}
	.bh-mega__col + .bh-mega__col { padding-top: var(--bh-3); border-top: 1px solid var(--bh-border); }
	.bh-mega__has-dropdown > a > span[aria-hidden] {
		float: right; transform: none; opacity: .6;
	}
}

.bh-nav__list a.is-active { color: var(--bh-accent-dark); font-weight: 600; }

/* ---------- E-E-A-T byline ---------- */
.bh-eeat {
	display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
	font-size: 13px; color: var(--bh-muted);
	padding: 0 0 var(--bh-3); margin: 0 0 var(--bh-5);
	border-bottom: 1px dashed var(--bh-border);
}
.bh-eeat a { color: var(--bh-accent-dark); font-weight: 500; }
.bh-eeat time { font-feature-settings: "tnum"; }

/* ---------- FAQ <details> ---------- */
.bh-prose details {
	margin: var(--bh-3) 0;
	padding: var(--bh-4) var(--bh-5);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md, 12px);
	background: #fff;
	transition: border-color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-prose details:hover { border-color: var(--bh-accent); }
}
.bh-prose details summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--bh-text);
	list-style: none;
	display: flex; justify-content: space-between; align-items: center; gap: var(--bh-3);
}
.bh-prose details summary::-webkit-details-marker { display: none; }
.bh-prose details summary::after {
	content: "+"; font-size: 24px; line-height: 1; color: var(--bh-muted);
	flex-shrink: 0;
}
.bh-prose details[open] summary::after { content: "−"; }
.bh-prose details[open] summary { margin-bottom: var(--bh-2); }
.bh-prose details > p { margin: var(--bh-2) 0 0; color: var(--bh-muted); font-size: 14px; line-height: 1.65; }

/* ---------- Lead paragraph ---------- */
.bh-prose p.bh-lead {
	font-size: clamp(17px, 1.8vw, 19px);
	line-height: 1.55;
	color: var(--bh-text);
	font-weight: 400;
	margin: 0 0 var(--bh-6);
	padding-left: var(--bh-4);
	border-left: 3px solid var(--bh-accent);
}

/* ---------- Post hero (featured image OR gradient placeholder) ---------- */
.bh-post-hero {
	margin: 0 0 var(--bh-8);
	border-radius: var(--bh-r-lg);
	overflow: hidden;
	border: 1px solid var(--bh-border);
	box-shadow: var(--bh-shadow-md);
	aspect-ratio: 16 / 7;
	max-height: 360px;
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ffffff 60%, var(--bh-accent-soft) 160%);
	padding: var(--bh-3);
}
.bh-post-hero--photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: var(--bh-r-md);
}
.bh-post-hero--gradient {
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,.5);
	padding: 0;
	border: 0;
	overflow: hidden;
	position: relative;
}
.bh-post-hero--gradient svg {
	max-width: 360px; width: 78%; height: auto; opacity: .9;
}
.bh-hero-svg svg { display: block; }

/* ---------- Animated SVG hero variants ----------
   Each variant lives inside .bh-post-hero--gradient. Animations are subtle,
   GPU-friendly, and silenced when the user has prefers-reduced-motion. */

/* Network — pulsing nodes + faint connecting lines drawing in */
.bh-svg-pulse {
	transform-origin: center;
	transform-box: fill-box;
	animation: bh-pulse 2.4s ease-in-out infinite;
}
.bh-svg-pulse-strong {
	transform-origin: center;
	transform-box: fill-box;
	animation: bh-pulse-strong 2s ease-in-out infinite;
}
.bh-hero-svg--network .bh-svg-line {
	stroke-dasharray: 80;
	stroke-dashoffset: 80;
	animation: bh-stroke-draw 2.5s ease-out forwards;
}
@keyframes bh-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: .55; transform: scale(.65); }
}
@keyframes bh-pulse-strong {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: .8; transform: scale(.85); }
}
@keyframes bh-stroke-draw {
	to { stroke-dashoffset: 0; }
}

/* City — bars rise from the bottom on load, sun glows softly */
.bh-svg-rise {
	transform-origin: bottom;
	transform-box: fill-box;
	animation: bh-rise 1.8s cubic-bezier(.2,.8,.2,1) backwards;
}
.bh-hero-svg--city .bh-svg-rise:nth-child(1)  { animation-delay: 0s;    }
.bh-hero-svg--city .bh-svg-rise:nth-child(2)  { animation-delay: .05s;  }
.bh-hero-svg--city .bh-svg-rise:nth-child(3)  { animation-delay: .1s;   }
.bh-hero-svg--city .bh-svg-rise:nth-child(4)  { animation-delay: .15s;  }
.bh-hero-svg--city .bh-svg-rise:nth-child(5)  { animation-delay: .2s;   }
.bh-hero-svg--city .bh-svg-rise:nth-child(6)  { animation-delay: .25s;  }
.bh-hero-svg--city .bh-svg-rise:nth-child(7)  { animation-delay: .3s;   }
.bh-hero-svg--city .bh-svg-rise:nth-child(8)  { animation-delay: .35s;  }
.bh-hero-svg--city .bh-svg-rise:nth-child(9)  { animation-delay: .4s;   }
.bh-hero-svg--city .bh-svg-rise:nth-child(10) { animation-delay: .45s;  }
.bh-hero-svg--city .bh-svg-rise:nth-child(11) { animation-delay: .5s;   }
.bh-hero-svg--city .bh-svg-rise:nth-child(12) { animation-delay: .55s;  }
.bh-svg-glow {
	transform-origin: center;
	transform-box: fill-box;
	animation: bh-glow 4s ease-in-out infinite;
}
@keyframes bh-rise {
	from { transform: scaleY(0); opacity: 0; }
	to   { transform: scaleY(1); opacity: 1; }
}
@keyframes bh-glow {
	0%, 100% { opacity: .7; transform: scale(1); }
	50%      { opacity: 1; transform: scale(1.15); }
}

/* Building — windows light up in waves */
.bh-svg-window {
	animation: bh-window 4s ease-in-out infinite;
	transform-origin: center;
	transform-box: fill-box;
}
@keyframes bh-window {
	0%, 100% { opacity: .25; }
	35%, 65% { opacity: 1; }
}

/* Document — pages slide in, lines fade up */
.bh-svg-doc--1 { animation: bh-doc-slide 1.2s ease-out backwards; animation-delay: .3s; }
.bh-svg-doc--2 { animation: bh-doc-slide 1.2s ease-out backwards; animation-delay: .15s; }
.bh-svg-doc--3 { animation: bh-doc-slide 1.2s ease-out backwards; }
.bh-hero-svg--document .bh-svg-line {
	stroke-dasharray: 80;
	stroke-dashoffset: 80;
	animation: bh-stroke-draw 1.4s ease-out backwards;
}
.bh-hero-svg--document .bh-svg-line:nth-of-type(1) { animation-delay: .8s; }
.bh-hero-svg--document .bh-svg-line:nth-of-type(2) { animation-delay: .95s; }
.bh-hero-svg--document .bh-svg-line:nth-of-type(3) { animation-delay: 1.1s; }
.bh-hero-svg--document .bh-svg-line:nth-of-type(4) { animation-delay: 1.25s; }
.bh-hero-svg--document .bh-svg-line:nth-of-type(5) { animation-delay: 1.4s; }
@keyframes bh-doc-slide {
	from { transform: translateY(8px); opacity: 0; }
	to   { transform: translateY(0);   opacity: 1; }
}

/* Metrics — bars rise + trend line draws in */
.bh-svg-bar {
	transform-origin: bottom;
	transform-box: fill-box;
	animation: bh-rise 1.4s cubic-bezier(.2,.8,.2,1) backwards;
}
.bh-svg-trend {
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: bh-stroke-draw 1.6s ease-out forwards;
	animation-delay: .9s;
}

/* Person — soft halo breathes */
.bh-svg-halo {
	transform-origin: center;
	transform-box: fill-box;
	animation: bh-halo 4s ease-in-out infinite;
}
@keyframes bh-halo {
	0%, 100% { opacity: .35; transform: scale(1); }
	50%      { opacity: .7; transform: scale(1.08); }
}

/* Geometric — concentric rings rotate at slightly different speeds; dots drift */
.bh-svg-ring {
	transform-origin: center;
	transform-box: fill-box;
}
.bh-svg-ring--1 { animation: bh-spin 30s linear infinite; }
.bh-svg-ring--2 { animation: bh-spin 24s linear infinite reverse; }
.bh-svg-ring--3 { animation: bh-spin 18s linear infinite; }
.bh-svg-drift {
	animation: bh-drift 5s ease-in-out infinite;
}
@keyframes bh-spin { to { transform: rotate(360deg); } }
@keyframes bh-drift {
	0%, 100% { transform: translateY(0)    translateX(0); opacity: .6; }
	50%      { transform: translateY(-3px) translateX(2px); opacity: 1; }
}

/* Honour user motion preference — no animations for users who opt out */
@media (prefers-reduced-motion: reduce) {
	.bh-svg-pulse, .bh-svg-pulse-strong,
	.bh-svg-rise, .bh-svg-glow,
	.bh-svg-window, .bh-svg-doc--1, .bh-svg-doc--2, .bh-svg-doc--3,
	.bh-svg-line, .bh-svg-trend, .bh-svg-bar,
	.bh-svg-halo,
	.bh-svg-ring--1, .bh-svg-ring--2, .bh-svg-ring--3,
	.bh-svg-drift {
		animation: none !important;
		stroke-dashoffset: 0 !important;
		transform: none !important;
		opacity: 1 !important;
	}
}
@media (max-width: 640px) {
	.bh-post-hero { aspect-ratio: 16 / 9; max-height: 240px; padding: var(--bh-2); }
}

/* ---------- Image gallery (post-image-import) ---------- */
.bh-gallery { margin: var(--bh-8) 0; }
.bh-gallery .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--bh-4);
}
.bh-gallery .gallery-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ffffff 60%, var(--bh-accent-soft) 160%);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	box-shadow: var(--bh-shadow-sm);
	padding: var(--bh-2);
	transition: transform var(--bh-tx), box-shadow var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-gallery .gallery-item img:hover {
		transform: translateY(-2px);
		box-shadow: var(--bh-shadow-md);
	}
}

/* ---------- Universal image frame (auto-applied to editor <img>) ---------- */
.bh-img-frame {
	display: block;
	margin: var(--bh-6) 0;
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ffffff 60%, var(--bh-accent-soft) 160%);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	box-shadow: var(--bh-shadow-md);
	padding: var(--bh-3);
	overflow: hidden;
}
.bh-img-frame > img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 540px;
	object-fit: contain;
	border-radius: var(--bh-r-md);
	margin: 0;
	background: transparent;
	border: 0;
	padding: 0;
	box-shadow: none;
}
.bh-img-frame > figcaption {
	display: block;
	font-size: 14px;
	color: var(--bh-muted);
	text-align: center;
	margin-top: var(--bh-2);
	font-style: italic;
}
.bh-img-frame--tight {
	padding: var(--bh-2);
}
.bh-img-frame--flush {
	padding: 0;
}
.bh-img-frame--flush > img { border-radius: var(--bh-r-lg); }

/* ===========================================================================
   MOBILE POLISH (≤640px) — refinements specifically for small screens.
   Larger touch targets, better spacing rhythm, full-width primary CTAs,
   no horizontal overflow from decorative elements.
   =========================================================================== */
@media (max-width: 640px) {

	/* Prevent any decorative element from causing horizontal scroll */
	html, body { overflow-x: hidden; }

	/* Hero — tighter spacing, slightly bolder type */
	.bh-hero {
		padding: var(--bh-6) 0 var(--bh-10);
	}
	.bh-hero__title {
		font-size: clamp(28px, 8vw, 36px);
		line-height: 1.1;
		letter-spacing: -.025em;
	}
	.bh-hero__sub {
		font-size: 16px;
		line-height: 1.55;
		padding: 0 var(--bh-2);
	}
	.bh-eyebrow {
		font-size: 12px;
		padding: 5px var(--bh-3);
	}
	/* Hero CTAs full-width on mobile, stacked, with bigger touch targets */
	.bh-hero__ctas {
		flex-direction: column;
		gap: var(--bh-3);
		max-width: 360px;
		margin-left: auto; margin-right: auto;
	}
	.bh-hero__ctas .bh-btn {
		width: 100%;
		min-height: 48px;
		padding: 14px 20px;
		font-size: 15px;
	}
	/* Trust pill — smaller, wraps gracefully */
	.bh-hero__trust {
		font-size: 12px;
		padding: var(--bh-2) var(--bh-4);
		line-height: 1.5;
	}

	/* Sections — tighter vertical rhythm */
	.bh-section { padding: var(--bh-10) 0; }
	.bh-section__head {
		margin-bottom: var(--bh-8);
	}
	.bh-section__head h2 { font-size: 26px; }
	.bh-section__head p { font-size: 15px; }

	/* Buttons — sane touch targets */
	.bh-btn {
		min-height: 44px;
		padding: 12px 20px;
		font-size: 15px;
	}

	/* Cards — slightly tighter padding for mobile */
	.bh-card { padding: var(--bh-5); }
	.bh-card h3 { font-size: 17px; }
	.bh-card p { font-size: 14px; }

	/* Trust strip — smaller chips, tighter wrap */
	.bh-trust { padding: var(--bh-6) 0; }
	.bh-trust__row { gap: var(--bh-2); }
	.bh-trust__row span {
		padding: 5px 12px;
		font-size: 13px;
	}

	/* Steps — smaller circles to save vertical space */
	.bh-steps { gap: var(--bh-6); }
	.bh-steps__num {
		width: 48px; height: 48px;
		font-size: 18px;
		margin-bottom: var(--bh-3);
	}
	.bh-steps h3 { font-size: 18px; }
	.bh-steps p { font-size: 14px; }

	/* Industries chips — smaller padding for denser wrap */
	.bh-industries span {
		padding: 8px 14px;
		font-size: 13px;
	}

	/* CTA dark section — kill the decorative orb (would cause overflow) */
	.bh-section--cta::before { display: none; }
	.bh-section--cta h2 { font-size: 24px; }
	.bh-section--cta p { font-size: 15px; }
	.bh-section--cta .bh-hero__ctas { max-width: 320px; }

	/* Quote — smaller decorative quotemark */
	.bh-quote { padding: var(--bh-5); }
	.bh-quote::before {
		font-size: 48px;
		top: -4px; left: var(--bh-4);
	}
	.bh-quote p { font-size: 15px; }
	.bh-quote footer { font-size: 13px; }

	/* Lead paragraph */
	.bh-lead { font-size: 16px; line-height: 1.6; }

	/* Grids — single column on mobile (already in main rules but be explicit) */
	.bh-grid { gap: var(--bh-4); }
	.bh-grid--2, .bh-grid--3 { grid-template-columns: 1fr; }

	/* Container side padding — slightly tighter */
	.bh-container { padding: 0 var(--bh-4); }
}

/* ===========================================================================
   TABLET POLISH (641-1023px)
   =========================================================================== */
@media (min-width: 641px) and (max-width: 1023px) {
	.bh-hero__ctas .bh-btn { padding: 13px 24px; font-size: 15px; }
	.bh-section__head h2 { font-size: 30px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   v0.5.0 — Accessibility + Mobile UX
   ============================================================ */

/* WCAG 2.2 SC 2.5.8 — minimum 44×44 px touch target on mobile.
   Applied to ALL interactive elements on viewports ≤768px.
   Above 768px (desktop), targets can be smaller because input is precise. */
@media (max-width: 768px) {
	.bh-btn,
	.bh-card,
	.bh-mega__item > a,
	.bh-footer__col a,
	.bh-header__cta,
	button,
	input[type="submit"],
	input[type="button"],
	[role="button"] {
		min-height: 44px;
		min-width: 44px;
	}
	/* Form inputs need to be ≥44px tall AND ≥16px font-size to prevent iOS
	   from auto-zooming on focus (which kills perceived UX). */
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	textarea,
	select {
		min-height: 44px;
		font-size: 16px;
	}
	/* Footer link rows need 8px spacing between targets per WCAG 2.5.5 */
	.bh-footer__col li + li {
		margin-top: 8px;
	}
}

/* Focus indicator visible on all interactive elements (WCAG 2.4.7).
   Override browser default which is sometimes invisible against brand colors. */
:focus-visible {
	outline: 3px solid #10b981;
	outline-offset: 2px;
	border-radius: 4px;
}

/* (Skip-to-content link already shipped at .bh-skip rule line 92 +
    template at templates/parts/header.php line 48 — WCAG 2.4.1 satisfied.) */

/* Trust strip — small visual band reinforcing legitimacy.
   Renders the "4.5/5 stars · 200,000+ links · 20,000+ orders" copy used
   in the v0.5.0 home-page trust signal. Match existing brand palette. */
.bh-trust-strip {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	padding: 16px 0;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}
.bh-trust-strip__row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 32px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: #475569;
}
.bh-trust-strip__item {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}
.bh-trust-strip__item strong {
	color: #0f172a;
}
.bh-trust-strip__stars {
	color: #f59e0b;
	letter-spacing: 1px;
}

/* Byline strip — used by bh_byline_strip() helper on article-style pages.
   Subtle dotted underline on author link signals interactive without being loud. */
.bh-byline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: #64748b;
	font-size: 14px;
	margin: 8px 0 24px;
}
.bh-byline a {
	color: inherit;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
}
.bh-byline time {
	font-variant-numeric: tabular-nums;
}

/* =====================================================================
   v0.6.20 — Drop 1: engagement components
   Stats strip · Process timeline · FAQ accordion · Final CTA ·
   Floating contact dock · Sticky-on-scroll header.
   ===================================================================== */

/* ---------- Stats strip ---------- */
.bh-stats {
	background: var(--bh-bg-alt);
	border-block: 1px solid var(--bh-border);
	padding: var(--bh-8) 0;
}
.bh-stats__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--bh-6);
	text-align: center;
}
.bh-stats__grid[data-count="3"] { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
	.bh-stats__grid                    { grid-template-columns: repeat(4, 1fr); }
	.bh-stats__grid[data-count="3"]    { grid-template-columns: repeat(3, 1fr); }
}
.bh-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--bh-1);
}
.bh-stats__num {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	line-height: 1;
	color: var(--bh-primary);
	background: linear-gradient(180deg, var(--bh-primary) 0%, var(--bh-accent-dark) 140%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}
.bh-stats__lab {
	font-size: 14px;
	color: var(--bh-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 500;
}

/* ---------- Process timeline ---------- */
.bh-process__title {
	text-align: center;
	margin: 0 0 var(--bh-10);
	font-size: clamp(24px, 3vw, 32px);
}
.bh-process__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--bh-6);
	grid-template-columns: 1fr;
	counter-reset: bh-step;
	position: relative;
}
@media (min-width: 768px) {
	.bh-process__list                 { grid-template-columns: repeat(4, 1fr); }
	.bh-process__list[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
	.bh-process__list[data-count="5"] { grid-template-columns: repeat(5, 1fr); }
	.bh-process__list[data-count="6"] { grid-template-columns: repeat(3, 1fr); }
}
/* Connecting line on desktop */
@media (min-width: 768px) {
	.bh-process__list::before {
		content: "";
		position: absolute;
		top: 24px;
		left: 8%;
		right: 8%;
		height: 2px;
		background: linear-gradient(90deg, transparent 0%, var(--bh-border-dark) 12%, var(--bh-border-dark) 88%, transparent 100%);
		z-index: 0;
	}
}
.bh-process__item {
	position: relative;
	padding: var(--bh-6) var(--bh-4) var(--bh-4);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	box-shadow: var(--bh-shadow-sm);
	text-align: center;
	z-index: 1;
}
.bh-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bh-primary) 0%, var(--bh-accent-dark) 100%);
	color: #fff;
	font-weight: 800;
	font-size: 20px;
	margin: -36px auto var(--bh-3);
	box-shadow: var(--bh-shadow-md);
	font-variant-numeric: tabular-nums;
}
.bh-process__step {
	font-size: 18px;
	margin: 0 0 var(--bh-2);
	font-weight: 700;
	color: var(--bh-primary);
}
.bh-process__body {
	color: var(--bh-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

/* ---------- FAQ accordion ---------- */
.bh-faq__title {
	text-align: center;
	margin: 0 0 var(--bh-8);
	font-size: clamp(24px, 3vw, 32px);
}
.bh-faq__list {
	max-width: 820px;
	margin: 0 auto;
	display: grid;
	gap: var(--bh-3);
}
.bh-faq__item {
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	transition: border-color var(--bh-tx), box-shadow var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-faq__item:hover { border-color: var(--bh-border-dark); }
}
.bh-faq__item[open] {
	border-color: var(--bh-accent);
	box-shadow: var(--bh-shadow-sm);
}
.bh-faq__q {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bh-4);
	padding: var(--bh-5) var(--bh-6);
	cursor: pointer;
	font-weight: 600;
	font-size: 17px;
	color: var(--bh-primary);
	user-select: none;
}
.bh-faq__q::-webkit-details-marker { display: none; }
.bh-faq__q:focus-visible {
	outline: 2px solid var(--bh-accent);
	outline-offset: 2px;
	border-radius: var(--bh-r-md);
}
.bh-faq__icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--bh-bg-alt);
	color: var(--bh-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	transition: transform var(--bh-tx), background var(--bh-tx), color var(--bh-tx);
}
.bh-faq__item[open] .bh-faq__icon {
	transform: rotate(45deg);
	background: var(--bh-accent);
	color: #fff;
}
.bh-faq__a {
	padding: 0 var(--bh-6) var(--bh-5);
	color: var(--bh-text-light);
	font-size: 16px;
	line-height: 1.65;
}
.bh-faq__a p { margin: 0 0 var(--bh-3); }
.bh-faq__a p:last-child { margin-bottom: 0; }

/* ---------- Final CTA band ---------- */
.bh-finalcta {
	margin-top: var(--bh-10);
	padding: var(--bh-16) 0;
	background: linear-gradient(135deg, var(--bh-primary) 0%, #1e293b 60%, var(--bh-accent-dark) 140%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.bh-finalcta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(16,185,129,.18), transparent 50%);
	pointer-events: none;
}
.bh-finalcta__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--bh-6);
	align-items: center;
	text-align: center;
}
@media (min-width: 900px) {
	.bh-finalcta__inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
.bh-finalcta__copy { max-width: 640px; }
.bh-finalcta__eyebrow {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--bh-accent-soft);
	margin: 0 0 var(--bh-2);
	font-weight: 600;
}
.bh-finalcta__title {
	font-size: clamp(26px, 3.4vw, 36px);
	margin: 0 0 var(--bh-3);
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.01em;
}
.bh-finalcta__sub {
	color: rgba(255,255,255,.78);
	margin: 0;
	font-size: 16px;
}
.bh-finalcta__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-3);
	justify-content: center;
}
.bh-btn--lg {
	padding: var(--bh-4) var(--bh-8);
	font-size: 16px;
	font-weight: 600;
}
.bh-btn--ghost-light {
	background: rgba(255,255,255,.08);
	color: #fff;
	border: 1px solid rgba(255,255,255,.28);
	backdrop-filter: blur(2px);
}
@media (hover: hover) and (pointer: fine) {
	.bh-btn--ghost-light:hover {
		background: rgba(255,255,255,.16);
		border-color: rgba(255,255,255,.5);
		color: #fff;
	}
}

/* ---------- Floating contact dock (FAB) ---------- */
.bh-fab {
	position: fixed;
	right: var(--bh-4);
	bottom: var(--bh-4);
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: var(--bh-2);
	align-items: flex-end;
	pointer-events: none;
}
.bh-fab__btn {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: var(--bh-2);
	padding: var(--bh-3) var(--bh-4);
	border-radius: var(--bh-r-pill);
	background: var(--bh-primary);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	box-shadow: var(--bh-shadow-lg);
	transition: transform var(--bh-tx), box-shadow var(--bh-tx), background var(--bh-tx);
	border: none;
	cursor: pointer;
	text-decoration: none;
	line-height: 1;
}
.bh-fab__btn svg { flex: 0 0 auto; }
@media (hover: hover) and (pointer: fine) {
	.bh-fab__btn:hover {
		transform: translateY(-2px);
		box-shadow: var(--bh-shadow-xl);
		color: #fff;
	}
}
.bh-fab__btn--line { background: #06c755; }
.bh-fab__btn--wa   { background: #25d366; }
.bh-fab__btn--tel  { background: var(--bh-primary); }
@media (hover: hover) and (pointer: fine) {
	.bh-fab__btn--line:hover { background: #04a649; }
	.bh-fab__btn--wa:hover   { background: #1ebe5d; }
	.bh-fab__btn--tel:hover  { background: #1e293b; }
}
.bh-fab__btn--top  {
	background: rgba(15,23,42,.85);
	width: 44px;
	height: 44px;
	padding: 0;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--bh-tx), visibility var(--bh-tx), transform var(--bh-tx), background var(--bh-tx);
}
.bh-fab--scrolled .bh-fab__btn--top {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 640px) {
	/* On mobile we collapse to compact pill icons. */
	.bh-fab { right: 12px; bottom: 12px; gap: 6px; }
	.bh-fab__btn {
		width: 48px;
		height: 48px;
		padding: 0;
		justify-content: center;
	}
	.bh-fab__label { display: none; }
}

/* ---------- Sticky-on-scroll header ---------- */
/* v0.8.1 — Agent 7 fix: backdrop-filter on the sticky header caused
   stacking-context bugs (rotated mega-nav dropdown rendering in
   Safari/Firefox + perf hit on low-end mobile). Switched to a solid
   semi-opaque white background which gives the same "panel above
   content" cue without the GPU compositor cost. */
.bh-header[data-bh-sticky] {
	position: sticky;
	top: 0;
	z-index: 80;
	transition: background var(--bh-tx), box-shadow var(--bh-tx);
}
.bh-header[data-bh-sticky].is-scrolled {
	background: #ffffff;
	box-shadow: var(--bh-shadow-md);
}
@media (prefers-reduced-motion: reduce) {
	.bh-fab__btn,
	.bh-faq__icon,
	.bh-header[data-bh-sticky] { transition: none; }
}

/* =====================================================================
   v0.6.21 — Drop 1.5: visual richness components
   Trust microbar · Features grid · Why-us cards · Lead capture bar ·
   Partners strip · Related links · Data table · sr utility.
   ===================================================================== */

.bh-sr {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}

/* ---------- Trust microbar ---------- */
.bh-trustbar {
	margin: var(--bh-4) 0 var(--bh-6);
	padding: var(--bh-3) 0;
	border-block: 1px solid var(--bh-border);
	background: var(--bh-bg-alt);
	border-radius: var(--bh-r-md);
}
.bh-trustbar__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--bh-4) var(--bh-6);
}
.bh-trustbar__item {
	display: inline-flex;
	align-items: center;
	gap: var(--bh-1);
	font-size: 13px;
	color: var(--bh-muted);
	font-weight: 500;
}
.bh-trustbar__icon {
	display: inline-flex;
	color: var(--bh-accent-dark);
}
.bh-trustbar__icon svg { display: block; }

/* ---------- Features grid ---------- */
.bh-features__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--bh-10);
}
.bh-features__title {
	font-size: clamp(24px, 3vw, 32px);
	margin: 0 0 var(--bh-3);
	letter-spacing: -0.01em;
}
.bh-features__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 16px;
}
.bh-features__grid {
	display: grid;
	gap: var(--bh-5);
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.bh-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
	.bh-features__grid { grid-template-columns: repeat(3, 1fr); }
}
.bh-feature {
	padding: var(--bh-6);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	transition: transform var(--bh-tx), box-shadow var(--bh-tx), border-color var(--bh-tx);
	position: relative;
	overflow: hidden;
}
.bh-feature::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 3px;
	background: linear-gradient(90deg, var(--bh-accent) 0%, var(--bh-primary) 100%);
	transform: translateX(-100%);
	transition: transform var(--bh-tx-slow);
}
@media (hover: hover) and (pointer: fine) {
	.bh-feature:hover {
		transform: translateY(-2px);
		box-shadow: var(--bh-shadow-md);
		border-color: var(--bh-border-dark);
	}
	.bh-feature:hover::before { transform: translateX(0); }
}
.bh-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--bh-r-md);
	background: var(--bh-accent-soft);
	color: var(--bh-accent-dark);
	margin-bottom: var(--bh-4);
}
.bh-feature__title {
	font-size: 18px;
	margin: 0 0 var(--bh-2);
	color: var(--bh-primary);
	font-weight: 700;
}
.bh-feature__body {
	color: var(--bh-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* ---------- Why-us cards ---------- */
.bh-whyus__title {
	text-align: center;
	margin: 0 0 var(--bh-10);
	font-size: clamp(24px, 3vw, 32px);
}
.bh-whyus__grid {
	display: grid;
	gap: var(--bh-6);
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.bh-whyus__grid { grid-template-columns: repeat(3, 1fr); }
}
.bh-whyus__card {
	padding: var(--bh-8);
	background: var(--bh-bg);
	border-radius: var(--bh-r-lg);
	border: 1px solid var(--bh-border);
	text-align: center;
	transition: transform var(--bh-tx), box-shadow var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-whyus__card:hover {
		transform: translateY(-3px);
		box-shadow: var(--bh-shadow-lg);
	}
}
.bh-whyus__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bh-primary) 0%, var(--bh-accent-dark) 100%);
	color: #fff;
	margin-bottom: var(--bh-4);
	box-shadow: var(--bh-shadow-md);
}
.bh-whyus__h {
	font-size: 19px;
	margin: 0 0 var(--bh-3);
	color: var(--bh-primary);
	font-weight: 700;
}
.bh-whyus__b {
	color: var(--bh-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* ---------- Lead capture bar ---------- */
.bh-leadbar {
	padding: var(--bh-12) 0;
	background:
		radial-gradient(circle at 90% 0%, rgba(16,185,129,.06), transparent 50%),
		linear-gradient(180deg, var(--bh-bg) 0%, var(--bh-bg-alt) 100%);
	border-block: 1px solid var(--bh-border);
}
.bh-leadbar__inner {
	display: grid;
	gap: var(--bh-8);
	align-items: center;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.bh-leadbar__inner { grid-template-columns: 1fr 1.1fr; }
}
.bh-leadbar__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--bh-1);
	padding: 4px 10px;
	background: var(--bh-accent-soft);
	color: var(--bh-accent-dark);
	border-radius: var(--bh-r-pill);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--bh-3);
}
.bh-leadbar__title {
	font-size: clamp(24px, 3vw, 30px);
	margin: 0 0 var(--bh-3);
	line-height: 1.2;
	letter-spacing: -0.01em;
}
.bh-leadbar__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}
.bh-leadbar__form {
	display: flex;
	flex-direction: column;
	gap: var(--bh-3);
	padding: var(--bh-6);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	box-shadow: var(--bh-shadow-md);
}
.bh-leadbar__field {
	display: flex;
	align-items: center;
	gap: var(--bh-2);
	padding: var(--bh-3) var(--bh-4);
	border: 1px solid var(--bh-border-dark);
	border-radius: var(--bh-r-md);
	background: var(--bh-bg);
	transition: border-color var(--bh-tx), box-shadow var(--bh-tx);
}
.bh-leadbar__field:focus-within {
	border-color: var(--bh-accent);
	box-shadow: 0 0 0 4px rgba(16,185,129,.12);
}
.bh-leadbar__icon {
	color: var(--bh-muted);
	flex: 0 0 auto;
	display: inline-flex;
}
.bh-leadbar__form input[type="text"] {
	flex: 1;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 16px;
	font-family: inherit;
	color: var(--bh-text);
	padding: 0;
	min-width: 0;
}
.bh-leadbar__form input::placeholder { color: var(--bh-muted-light); }
.bh-leadbar__submit {
	width: 100%;
	justify-content: center;
	display: inline-flex;
	align-items: center;
	gap: var(--bh-2);
}
.bh-leadbar__micro {
	margin: 0;
	display: flex;
	align-items: center;
	gap: var(--bh-1);
	font-size: 13px;
	color: var(--bh-muted);
}

/* ---------- Partners strip ---------- */
.bh-partners {
	background: var(--bh-bg-alt);
}
.bh-partners__title {
	text-align: center;
	margin: 0 0 var(--bh-2);
	font-size: clamp(22px, 2.6vw, 28px);
}
.bh-partners__sub {
	text-align: center;
	color: var(--bh-muted);
	margin: 0 0 var(--bh-8);
}
.bh-partners__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--bh-3);
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .bh-partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .bh-partners__grid { grid-template-columns: repeat(6, 1fr); } }
.bh-partner {
	padding: var(--bh-4) var(--bh-3);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2px;
	transition: border-color var(--bh-tx), transform var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-partner:hover {
		border-color: var(--bh-accent);
		transform: translateY(-2px);
	}
}
.bh-partner__name {
	font-weight: 700;
	color: var(--bh-primary);
	font-size: 15px;
	letter-spacing: -0.01em;
}
.bh-partner__tag {
	font-size: 12px;
	color: var(--bh-muted);
}

/* ---------- Related strip ---------- */
.bh-related__title {
	text-align: center;
	margin: 0 0 var(--bh-8);
	font-size: clamp(22px, 2.6vw, 28px);
}
.bh-related__grid {
	display: grid;
	gap: var(--bh-4);
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .bh-related__grid { grid-template-columns: repeat(4, 1fr); } }
.bh-related__card {
	padding: var(--bh-5);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	display: flex;
	flex-direction: column;
	gap: var(--bh-2);
	text-decoration: none;
	color: inherit;
	transition: transform var(--bh-tx), box-shadow var(--bh-tx), border-color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-related__card:hover {
		transform: translateY(-3px);
		box-shadow: var(--bh-shadow-md);
		border-color: var(--bh-accent);
		color: inherit;
	}
}
.bh-related__icon {
	color: var(--bh-accent-dark);
	display: inline-flex;
}
.bh-related__h {
	font-weight: 700;
	color: var(--bh-primary);
	font-size: 16px;
}
.bh-related__s {
	font-size: 13px;
	color: var(--bh-muted);
}

/* ---------- Data table ---------- */
.bh-datatable__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--bh-8);
}
.bh-datatable__title {
	font-size: clamp(22px, 2.6vw, 28px);
	margin: 0 0 var(--bh-3);
}
.bh-datatable__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 15px;
}
.bh-datatable__wrap {
	max-width: 920px;
	margin: 0 auto;
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	overflow: hidden;
	box-shadow: var(--bh-shadow-sm);
}
.bh-datatable__t {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}
.bh-datatable__t th,
.bh-datatable__t td {
	padding: var(--bh-4) var(--bh-5);
	text-align: left;
	border-bottom: 1px solid var(--bh-border);
}
.bh-datatable__t thead th {
	background: var(--bh-bg-alt);
	color: var(--bh-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}
.bh-datatable__t tbody th {
	font-weight: 600;
	color: var(--bh-primary);
}
.bh-datatable__t tbody tr:last-child th,
.bh-datatable__t tbody tr:last-child td { border-bottom: 0; }
@media (hover: hover) and (pointer: fine) {
	.bh-datatable__t tbody tr:hover { background: var(--bh-bg-alt); }
}
.bh-datatable__num {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--bh-accent-dark);
	font-size: 18px;
	letter-spacing: -0.01em;
}
.bh-datatable__note {
	color: var(--bh-muted);
	font-size: 13px;
}
@media (max-width: 640px) {
	.bh-datatable__t,
	.bh-datatable__t thead,
	.bh-datatable__t tbody,
	.bh-datatable__t tr,
	.bh-datatable__t th,
	.bh-datatable__t td { display: block; }
	.bh-datatable__t thead { display: none; }
	.bh-datatable__t tbody tr {
		padding: var(--bh-4) var(--bh-5);
		border-bottom: 1px solid var(--bh-border);
	}
	.bh-datatable__t tbody th,
	.bh-datatable__t tbody td {
		padding: 4px 0;
		border: 0;
	}
	.bh-datatable__num { font-size: 20px; }
}

/* =====================================================================
   v0.6.22 — Drop 1.75: local-service polish (Lynix-inspired)
   Topbar · Quick-browse · Problems · Pricing · Areas · Benefits ·
   Activity · Popular searches.
   ===================================================================== */

/* ---------- Topbar ---------- */
.bh-topbar {
	background: var(--bh-bg-dark);
	color: rgba(255,255,255,.85);
	font-size: 12px;
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.bh-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-2) var(--bh-6);
	align-items: center;
	justify-content: space-between;
	padding: 7px var(--bh-6);
}
.bh-topbar__meta,
.bh-topbar__actions {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-2) var(--bh-5);
}
.bh-topbar__meta li,
.bh-topbar__actions li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.bh-topbar__meta li svg,
.bh-topbar__actions li svg { color: var(--bh-accent); opacity: .9; }
.bh-topbar__actions a {
	color: #fff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-topbar__actions a:hover { color: var(--bh-accent); }
}
@media (max-width: 640px) {
	.bh-topbar { font-size: 11px; }
	.bh-topbar__meta li:nth-child(3) { display: none; }
}

/* ---------- Quick-browse cards ---------- */
.bh-quickbrowse__title {
	text-align: center;
	margin: 0 0 var(--bh-8);
	font-size: clamp(22px, 2.6vw, 28px);
}
.bh-quickbrowse__grid {
	display: grid;
	gap: var(--bh-4);
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .bh-quickbrowse__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .bh-quickbrowse__grid { grid-template-columns: repeat(4, 1fr); } }
.bh-quickbrowse__card {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto auto;
	column-gap: var(--bh-3);
	padding: var(--bh-5);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	background: var(--bh-bg);
	text-decoration: none;
	color: inherit;
	transition: transform var(--bh-tx), box-shadow var(--bh-tx), border-color var(--bh-tx);
	position: relative;
}
@media (hover: hover) and (pointer: fine) {
	.bh-quickbrowse__card:hover {
		transform: translateY(-3px);
		box-shadow: var(--bh-shadow-md);
		border-color: var(--bh-accent);
		color: inherit;
	}
}
.bh-quickbrowse__icon {
	grid-row: 1 / span 3;
	display: inline-flex;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	border-radius: var(--bh-r-md);
	background: var(--bh-accent-soft);
	color: var(--bh-accent-dark);
}
.bh-quickbrowse__h {
	font-weight: 700;
	color: var(--bh-primary);
	font-size: 16px;
	line-height: 1.3;
}
.bh-quickbrowse__price {
	font-weight: 800;
	color: var(--bh-accent-dark);
	font-size: 15px;
	font-variant-numeric: tabular-nums;
}
.bh-quickbrowse__meta {
	font-size: 12px;
	color: var(--bh-muted);
}
.bh-quickbrowse__arrow {
	position: absolute;
	top: var(--bh-4);
	right: var(--bh-4);
	color: var(--bh-muted-light);
	transition: transform var(--bh-tx), color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-quickbrowse__card:hover .bh-quickbrowse__arrow {
		color: var(--bh-accent-dark);
		transform: translateX(4px);
	}
}

/* ---------- Problems list ---------- */
.bh-problems__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--bh-8);
}
.bh-problems__title {
	font-size: clamp(24px, 3vw, 32px);
	margin: 0 0 var(--bh-3);
	letter-spacing: -0.01em;
}
.bh-problems__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 16px;
}
.bh-problems__list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 980px;
	display: grid;
	gap: var(--bh-3);
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .bh-problems__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .bh-problems__list { grid-template-columns: repeat(3, 1fr); } }
.bh-problems__item {
	display: flex;
	align-items: flex-start;
	gap: var(--bh-3);
	padding: var(--bh-4);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	font-size: 15px;
	color: var(--bh-text-light);
	transition: border-color var(--bh-tx), background var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-problems__item:hover {
		border-color: var(--bh-accent);
		background: var(--bh-accent-soft);
	}
}
.bh-problems__check {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px; height: 24px;
	border-radius: 50%;
	background: var(--bh-accent);
	color: #fff;
}
.bh-problems__foot {
	text-align: center;
	color: var(--bh-muted);
	margin: var(--bh-6) 0 0;
	font-size: 14px;
	font-style: italic;
}

/* ---------- Pricing table ---------- */
.bh-pricing__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--bh-8);
}
.bh-pricing__title {
	font-size: clamp(24px, 3vw, 32px);
	margin: 0 0 var(--bh-3);
}
.bh-pricing__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 15px;
}
.bh-pricing__wrap {
	max-width: 920px;
	margin: 0 auto var(--bh-6);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	overflow: hidden;
	box-shadow: var(--bh-shadow-sm);
}
.bh-pricing__t {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}
.bh-pricing__t th,
.bh-pricing__t td {
	padding: var(--bh-4) var(--bh-5);
	text-align: left;
	border-bottom: 1px solid var(--bh-border);
}
.bh-pricing__t thead th {
	background: var(--bh-bg-alt);
	color: var(--bh-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}
.bh-pricing__t tbody th {
	font-weight: 600;
	color: var(--bh-primary);
}
.bh-pricing__t tbody tr:last-child th,
.bh-pricing__t tbody tr:last-child td { border-bottom: 0; }
@media (hover: hover) and (pointer: fine) {
	.bh-pricing__t tbody tr:hover { background: var(--bh-bg-alt); }
}
.bh-pricing__num {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--bh-accent-dark);
	font-size: 17px;
}
.bh-pricing__note {
	color: var(--bh-muted);
	font-size: 13px;
}
.bh-pricing__cta {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-3);
	justify-content: center;
}
@media (max-width: 640px) {
	.bh-pricing__t,
	.bh-pricing__t thead,
	.bh-pricing__t tbody,
	.bh-pricing__t tr,
	.bh-pricing__t th,
	.bh-pricing__t td { display: block; }
	.bh-pricing__t thead { display: none; }
	.bh-pricing__t tbody tr {
		padding: var(--bh-4) var(--bh-5);
		border-bottom: 1px solid var(--bh-border);
	}
	.bh-pricing__t tbody th,
	.bh-pricing__t tbody td {
		padding: 4px 0;
		border: 0;
	}
	.bh-pricing__num { font-size: 20px; }
}

/* ---------- Areas covered ---------- */
.bh-areas__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--bh-8);
}
.bh-areas__title {
	font-size: clamp(22px, 2.6vw, 28px);
	margin: 0 0 var(--bh-3);
}
.bh-areas__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 15px;
}
.bh-areas__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--bh-2);
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .bh-areas__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .bh-areas__grid { grid-template-columns: repeat(4, 1fr); } }
.bh-areas__item {
	display: inline-flex;
	align-items: center;
	gap: var(--bh-2);
	padding: var(--bh-3) var(--bh-4);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	font-size: 14px;
	color: var(--bh-text);
	transition: border-color var(--bh-tx), background var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-areas__item:hover {
		border-color: var(--bh-accent);
		background: var(--bh-accent-soft);
	}
}
.bh-areas__icon {
	color: var(--bh-accent-dark);
	display: inline-flex;
}

/* ---------- Benefit pills ---------- */
.bh-benefits {
	padding: var(--bh-6) 0;
	background: linear-gradient(180deg, var(--bh-bg-alt) 0%, var(--bh-bg) 100%);
	border-block: 1px solid var(--bh-border);
}
.bh-benefits__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--bh-2);
}
.bh-benefit {
	display: inline-flex;
	align-items: center;
	gap: var(--bh-2);
	padding: var(--bh-2) var(--bh-4);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-pill);
	font-size: 13px;
	font-weight: 600;
	color: var(--bh-text);
	box-shadow: var(--bh-shadow-sm);
	transition: transform var(--bh-tx), border-color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-benefit:hover {
		transform: translateY(-2px);
		border-color: var(--bh-accent);
	}
}
.bh-benefit__icon {
	color: var(--bh-accent-dark);
	display: inline-flex;
}

/* ---------- Activity feed ---------- */
.bh-activity__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--bh-8);
}
.bh-activity__title {
	font-size: clamp(22px, 2.6vw, 28px);
	margin: 0 0 var(--bh-3);
}
.bh-activity__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 15px;
}
.bh-activity__list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 720px;
	display: grid;
	gap: var(--bh-3);
}
.bh-activity__item {
	display: flex;
	align-items: center;
	gap: var(--bh-4);
	padding: var(--bh-4) var(--bh-5);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	transition: transform var(--bh-tx), border-color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-activity__item:hover {
		transform: translateX(4px);
		border-color: var(--bh-accent);
	}
}
.bh-activity__icon {
	flex: 0 0 auto;
	width: 36px; height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bh-accent-soft);
	color: var(--bh-accent-dark);
}
.bh-activity__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.bh-activity__text {
	font-weight: 600;
	color: var(--bh-primary);
	font-size: 15px;
}
.bh-activity__meta {
	color: var(--bh-muted);
	font-size: 13px;
}
.bh-activity__dot {
	flex: 0 0 auto;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--bh-accent);
	box-shadow: 0 0 0 4px var(--bh-accent-soft);
	animation: bh-pulse 2s ease-in-out infinite;
}
@keyframes bh-pulse {
	0%, 100% { box-shadow: 0 0 0 4px var(--bh-accent-soft); }
	50%      { box-shadow: 0 0 0 8px rgba(16,185,129,.12); }
}
@media (prefers-reduced-motion: reduce) {
	.bh-activity__dot { animation: none; }
}

/* ---------- Popular searches ---------- */
.bh-popular__title {
	text-align: center;
	margin: 0 0 var(--bh-6);
	font-size: clamp(20px, 2.4vw, 24px);
}
.bh-popular__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--bh-2);
}
.bh-popular__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-pill);
	font-size: 13px;
	color: var(--bh-text-light);
	text-decoration: none;
	transition: transform var(--bh-tx), border-color var(--bh-tx), background var(--bh-tx), color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-popular__chip:hover {
		transform: translateY(-1px);
		background: var(--bh-primary);
		border-color: var(--bh-primary);
		color: #fff;
	}
}
.bh-popular__chip svg { color: var(--bh-muted-light); transition: color var(--bh-tx); }
@media (hover: hover) and (pointer: fine) {
	.bh-popular__chip:hover svg { color: var(--bh-accent); }
}

/* =====================================================================
   v0.6.25 — Trust-on-top: page intro hierarchy + interlinking polish.
   Lift H1 + rating chip + benefit pills + stats ABOVE the body fold so
   the page leads with confidence instead of a wall of text.
   ===================================================================== */

.bh-page-intro {
	position: relative;
	padding-top: var(--bh-12);
	padding-bottom: var(--bh-10);
	overflow: hidden;
	background:
		radial-gradient(ellipse at 0% 0%,   rgba(16,185,129,.07), transparent 45%),
		radial-gradient(ellipse at 100% 0%, rgba(15,23,42,.04),  transparent 50%),
		linear-gradient(180deg, var(--bh-bg) 0%, var(--bh-bg-alt) 100%);
	border-bottom: 1px solid var(--bh-border);
}
@media (min-width: 768px) {
	.bh-page-intro {
		padding-top: var(--bh-20);
		padding-bottom: var(--bh-12);
	}
}
/* Subtle dot-grid pattern overlay — adds texture without an image */
.bh-page-intro::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(15,23,42,.05) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 70%);
	-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 70%);
	opacity: .6;
}
.bh-page-intro > .bh-container {
	position: relative;
	z-index: 1;
}
.bh-page-intro__title {
	font-size: clamp(34px, 5.5vw, 56px);
	line-height: 1.02;
	letter-spacing: -0.028em;
	font-weight: 800;
	color: var(--bh-primary);
	margin: var(--bh-3) 0 var(--bh-4);
	max-width: 920px;
}
/* v0.8.1 — Agent 15 fix: archive-post.php had an inline style block here
   that broke the "no inline styles, use CSS classes" rule. Lede paragraph
   now styled via this class. */
.bh-page-intro__lede {
	max-width: 720px;
	color: var(--bh-muted);
	font-size: 17px;
	margin-top: var(--bh-3);
	line-height: 1.55;
}
.bh-page-intro .bh-byline,
.bh-page-intro .bh-bylinestrip {
	margin-top: var(--bh-3);
}

/* ---------- Inline rating + counter chip under H1 ---------- */
.bh-introchip {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--bh-3);
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
}
.bh-introchip__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-pill);
	font-size: 12px;
	font-weight: 600;
	color: var(--bh-text-light);
	font-variant-numeric: tabular-nums;
	box-shadow: var(--bh-shadow-sm);
}
.bh-introchip__item:first-child {
	background: linear-gradient(135deg, var(--bh-accent-soft) 0%, #ecfdf5 100%);
	border-color: var(--bh-accent);
	color: var(--bh-accent-dark);
}
.bh-introchip__icon {
	color: var(--bh-accent-dark);
	display: inline-flex;
}
.bh-introchip__item:first-child .bh-introchip__icon { color: var(--bh-accent-dark); }

/* ---------- Polish: cleaner related-strip cards ---------- */
.bh-related {
	background: var(--bh-bg-alt);
	border-block: 1px solid var(--bh-border);
}
.bh-related__card {
	position: relative;
	padding-right: var(--bh-8);
}
.bh-related__card::after {
	content: "→";
	position: absolute;
	right: var(--bh-5);
	top: 50%;
	transform: translateY(-50%) translateX(0);
	color: var(--bh-muted-light);
	font-size: 18px;
	transition: transform var(--bh-tx), color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-related__card:hover::after {
		transform: translateY(-50%) translateX(4px);
		color: var(--bh-accent-dark);
	}
}

/* ---------- Polish: popular-searches with separator + grouping ---------- */
.bh-popular {
	background: var(--bh-bg);
}
.bh-popular::before {
	content: "";
	display: block;
	max-width: 920px;
	margin: 0 auto var(--bh-8);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--bh-border-dark), transparent);
}
.bh-popular__title {
	font-size: clamp(15px, 1.6vw, 17px);
	font-weight: 600;
	color: var(--bh-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.bh-popular__list { max-width: 920px; margin-left: auto; margin-right: auto; }

/* ---------- Inline body links polish (cleaner underline style) ---------- */
.bh-prose a:not(.bh-btn) {
	color: var(--bh-accent-dark);
	text-decoration: underline;
	text-decoration-color: rgba(5,150,105,.35);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: text-decoration-color var(--bh-tx), color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-prose a:not(.bh-btn):hover {
		color: var(--bh-accent);
		text-decoration-color: var(--bh-accent);
	}
}

/* =====================================================================
   v0.8.0 — Comprehensive services grid + per-city services grid
   ===================================================================== */
.bh-services-grid__head,
.bh-city-services__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--bh-8);
}
.bh-services-grid__title,
.bh-city-services__title {
	font-size: clamp(22px, 2.6vw, 28px);
	margin: 0 0 var(--bh-3);
}
.bh-services-grid__sub,
.bh-city-services__sub {
	color: var(--bh-muted);
	margin: 0;
	font-size: 15px;
}
.bh-services-grid__cols {
	display: grid;
	gap: var(--bh-5);
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .bh-services-grid__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .bh-services-grid__cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .bh-services-grid__cols { grid-template-columns: repeat(6, 1fr); } }
.bh-services-grid__col {
	padding: var(--bh-4);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
}
.bh-services-grid__h3 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bh-muted);
	font-weight: 700;
	margin: 0 0 var(--bh-3);
}
.bh-services-grid__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--bh-2);
}
.bh-services-grid__list a,
.bh-services-grid__current {
	font-size: 14px;
	font-weight: 500;
	color: var(--bh-text-light);
	text-decoration: none;
	line-height: 1.4;
	display: block;
}
@media (hover: hover) and (pointer: fine) {
	.bh-services-grid__list a:hover {
		color: var(--bh-accent-dark);
		text-decoration: underline;
		text-decoration-color: var(--bh-accent);
		text-underline-offset: 3px;
	}
}
.bh-services-grid__current {
	color: var(--bh-primary);
	font-weight: 700;
	cursor: default;
	border-left: 3px solid var(--bh-accent);
	padding-left: var(--bh-2);
}

/* Per-city services grid */
.bh-city-services__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--bh-3);
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .bh-city-services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .bh-city-services__grid { grid-template-columns: repeat(4, 1fr); } }
.bh-city-services__card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: var(--bh-4);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	text-decoration: none;
	color: inherit;
	transition: border-color var(--bh-tx);
	position: relative;
}
@media (hover: hover) and (pointer: fine) {
	.bh-city-services__card:hover {
		border-color: var(--bh-accent);
		color: inherit;
	}
}
.bh-city-services__icon {
	position: absolute;
	top: var(--bh-3);
	right: var(--bh-3);
	color: var(--bh-muted-light);
	transition: transform var(--bh-tx), color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-city-services__card:hover .bh-city-services__icon {
		color: var(--bh-accent-dark);
		transform: translateX(2px);
	}
}
.bh-city-services__label {
	font-weight: 700;
	color: var(--bh-primary);
	font-size: 15px;
	line-height: 1.25;
	padding-right: var(--bh-6);
}
.bh-city-services__hint {
	font-size: 12px;
	color: var(--bh-muted);
}

/* =====================================================================
   v0.8.0 — Blog archive grid
   ===================================================================== */
.bh-blog-grid {
	display: grid;
	gap: var(--bh-6);
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .bh-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .bh-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.bh-blog-card {
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	overflow: hidden;
	transition: border-color var(--bh-tx), box-shadow var(--bh-tx);
}
.bh-blog-card__img-link {
	display: block;
	aspect-ratio: 16/9;
	background: var(--bh-bg-alt);
}
.bh-blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bh-blog-card__img--placeholder {
	background: linear-gradient(135deg, var(--bh-bg-alt), var(--bh-accent-soft));
}
.bh-blog-card__body { padding: var(--bh-5); }
.bh-blog-card__cat {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bh-accent-dark);
	font-weight: 700;
	margin: 0 0 var(--bh-2);
}
.bh-blog-card__title {
	font-size: 19px;
	line-height: 1.3;
	margin: 0 0 var(--bh-3);
	letter-spacing: -0.01em;
}
.bh-blog-card__title a { color: var(--bh-primary); text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
	.bh-blog-card__title a:hover { color: var(--bh-accent-dark); }
}
.bh-blog-card__excerpt {
	color: var(--bh-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 var(--bh-3);
}
.bh-blog-card__meta {
	font-size: 13px;
	color: var(--bh-muted);
	margin: 0;
	display: flex;
	gap: var(--bh-2);
}
.bh-blog-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bh-2);
	justify-content: center;
	margin: var(--bh-12) 0 0;
}
.bh-blog-pagination .page-numbers {
	padding: var(--bh-2) var(--bh-4);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	text-decoration: none;
	color: var(--bh-text);
	font-weight: 600;
	transition: border-color var(--bh-tx), background var(--bh-tx);
}
.bh-blog-pagination .page-numbers.current {
	background: var(--bh-primary);
	color: #fff;
	border-color: var(--bh-primary);
}
@media (hover: hover) and (pointer: fine) {
	.bh-blog-pagination .page-numbers:hover:not(.current):not(.dots) {
		border-color: var(--bh-accent);
		color: var(--bh-accent-dark);
	}
}
.bh-empty-state {
	text-align: center;
	padding: var(--bh-16) var(--bh-6);
	background: var(--bh-bg-alt);
	border-radius: var(--bh-r-lg);
}
.bh-empty-state h2 { margin-top: 0; }
.bh-empty-state p { color: var(--bh-muted); max-width: 480px; margin: 0 auto var(--bh-6); }

/* =====================================================================
   v0.8.0 — Mobile + a11y polish (loyalty-audit consolidation)
   ===================================================================== */

/* Tertiary CTA — text-button variant, lower visual weight than primary/ghost.
   Audit A16 P2: tertiary was sharing the same .bh-btn--ghost-light .bh-btn--lg
   class as the secondary, killing visual rank in the final-CTA band. */
.bh-btn--text-light {
	background: transparent;
	color: rgba(255,255,255,.78);
	border: 0;
	padding: var(--bh-3) var(--bh-4);
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: rgba(255,255,255,.3);
	transition: color var(--bh-tx), text-decoration-color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-btn--text-light:hover {
		color: #fff;
		text-decoration-color: rgba(255,255,255,.7);
	}
}

/* Topbar rating chip class — replaces the fragile :nth-child(3) selector.
   Add data-bh-mobile-hide to hide on small screens. */
@media (max-width: 640px) {
	.bh-topbar__meta li[data-bh-mobile-hide],
	.bh-topbar__meta li.bh-topbar__rating { display: none; }
	/* Mobile FAB clearance — give footer legal-bar 80px room for the dock pills. */
	.bh-footer__bar { padding-bottom: 88px; }
}

/* @media (hover: hover) guards — sticky hover states on touch devices were
   causing ghost-selection problems on iOS Safari (audit A9 P1). Move every
   "lift on hover" transform behind a hover-capable-pointer guard. */
@media (hover: hover) and (pointer: fine) {
	.bh-card:hover               { transform: translateY(-2px); box-shadow: var(--bh-shadow-md); }
	.bh-feature:hover            { transform: translateY(-2px); }
	.bh-quickbrowse__card:hover  { transform: translateY(-3px); }
	.bh-whyus__card:hover        { transform: translateY(-3px); }
	.bh-related__card:hover      { transform: translateY(-3px); }
	.bh-popular__chip:hover      { transform: translateY(-1px); }
	.bh-fab__btn:hover           { transform: translateY(-2px); }
	.bh-partner:hover            { transform: translateY(-2px); }
	.bh-problems__item:hover     { background: var(--bh-accent-soft); border-color: var(--bh-accent); }
	.bh-activity__item:hover     { transform: translateX(4px); }
	.bh-areas__item:hover        { background: var(--bh-accent-soft); border-color: var(--bh-accent); }
	.bh-faq__item:hover          { border-color: var(--bh-border-dark); }
}
/* On touch / pointer-coarse devices the hover transforms become :active flicks
   instead — short-lived, visually obvious tap feedback only. */
@media (hover: none), (pointer: coarse) {
	.bh-card,
	.bh-feature,
	.bh-quickbrowse__card,
	.bh-whyus__card,
	.bh-related__card,
	.bh-popular__chip,
	.bh-fab__btn,
	.bh-partner,
	.bh-activity__item {
		transition: transform 80ms ease;
	}
	.bh-card:active,
	.bh-feature:active,
	.bh-quickbrowse__card:active,
	.bh-whyus__card:active,
	.bh-related__card:active,
	.bh-fab__btn:active,
	.bh-partner:active { transform: scale(.985); }
}

/* =============================================================
 * v0.12.0 — Design-audit fixes
 * Replaces a layer of inline styles in templates (homepage stats,
 * comparison table, case-study card grid, 404, contact NAP) with
 * tokenised utility classes. Also adds new brand-page templates'
 * supporting CSS (pricing page hero, team grid, FAQ accordion list,
 * glossary A–Z jump nav).
 * ============================================================= */

/* Section-head — centered variant (was inline text-align:center). */
.bh-section__head--center { text-align: center; }
.bh-section__head--center > * { margin-left: auto; margin-right: auto; }

/* ---------- Homepage stats strip ---------- */
.bh-home-stats {
	background: var(--bh-bg-dark);
	color: #fff;
	padding: var(--bh-8) 0;
}
.bh-home-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--bh-6);
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}
.bh-home-stats__cell { padding: var(--bh-2) 0; }
.bh-home-stats__num {
	font-size: 36px;
	font-weight: 800;
	color: var(--bh-accent);
	line-height: 1;
	letter-spacing: -0.02em;
}
.bh-home-stats__label {
	font-size: 13px;
	color: var(--bh-muted-light);
	margin-top: var(--bh-1);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}
@media (min-width: 768px) {
	.bh-home-stats__grid { grid-template-columns: repeat(4, 1fr); gap: var(--bh-8); }
	.bh-home-stats__num  { font-size: 44px; }
}

/* ---------- Homepage case-study card grid ---------- */
.bh-home-cs {
	background: linear-gradient(135deg, var(--bh-bg-alt) 0%, #ecfdf5 100%);
}
.bh-home-cs__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--bh-4);
	margin: var(--bh-8) 0;
}
.bh-home-cs__card {
	display: block;
	padding: var(--bh-6);
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	text-decoration: none;
	color: var(--bh-text);
	transition: transform var(--bh-tx), box-shadow var(--bh-tx), border-color var(--bh-tx);
}
@media (hover: hover) and (pointer: fine) {
	.bh-home-cs__card:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 16px -4px rgba(16,185,129,0.15);
		border-color: var(--bh-accent);
	}
}
.bh-home-cs__card:focus-visible {
	outline: 2px solid var(--bh-accent);
	outline-offset: 2px;
}
.bh-home-cs__head {
	font-size: 13px;
	color: var(--bh-muted);
	margin-bottom: var(--bh-2);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}
.bh-home-cs__body {
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--bh-text);
}
.bh-home-cs__all { text-align: center; margin-top: var(--bh-4); }

/* ---------- Homepage comparison table ---------- */
.bh-home-compare__wrap { overflow-x: auto; margin: var(--bh-8) 0; }
.bh-home-compare__table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bh-bg);
	border-radius: var(--bh-r-md);
	overflow: hidden;
	border: 1px solid var(--bh-border);
	min-width: 640px;
}
.bh-home-compare__table thead { background: var(--bh-bg-dark); color: #fff; }
.bh-home-compare__table thead th {
	padding: var(--bh-4);
	text-align: center;
	font-weight: 600;
	font-size: 14px;
}
.bh-home-compare__table thead th.bh-home-compare__th--row { text-align: left; }
.bh-home-compare__table thead th.bh-home-compare__th--us {
	background: var(--bh-accent);
	color: #fff;
	font-weight: 700;
}
.bh-home-compare__table tbody tr { border-top: 1px solid var(--bh-border); }
.bh-home-compare__table tbody tr.bh-home-compare__row--alt { background: var(--bh-bg-alt); }
.bh-home-compare__table tbody th[scope="row"] {
	padding: 14px var(--bh-4);
	font-size: 14px;
	color: var(--bh-text);
	text-align: left;
	font-weight: 500;
}
.bh-home-compare__cell {
	padding: 14px var(--bh-4);
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: var(--bh-muted-light);
}
.bh-home-compare__cell--us { background: var(--bh-accent-soft); }
.bh-home-compare__cell--yes { color: var(--bh-accent); font-weight: 700; }
.bh-home-compare__cell--us.bh-home-compare__cell--yes { color: #065f46; }
.bh-home-compare__cell--partial { color: var(--bh-warn); }
.bh-home-compare__cell--no { color: var(--bh-muted-light); font-weight: 500; }

/* ---------- 404 page ---------- */
.bh-404 {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.bh-404__hero {
	margin: 0 auto var(--bh-8);
	max-width: 480px;
}
.bh-404__hero img {
	width: 100%;
	height: auto;
	border-radius: var(--bh-r-lg);
	box-shadow: 0 12px 32px -16px rgba(15,23,42,0.18);
}
.bh-404__kicker {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--bh-muted);
	margin: 0 0 var(--bh-2);
}
.bh-404__lede {
	font-size: 18px;
	color: var(--bh-text-light);
}
.bh-404__search {
	margin: var(--bh-8) auto;
	max-width: 480px;
	display: flex;
	gap: var(--bh-2);
}
.bh-404__search input[type="search"] {
	flex: 1;
	padding: 12px var(--bh-4);
	border: 1px solid var(--bh-border-dark);
	border-radius: var(--bh-r-sm);
	font-size: 16px;
	font-family: var(--bh-font);
}
.bh-404__search button {
	padding: 12px var(--bh-6);
	border-radius: var(--bh-r-sm);
	background: var(--bh-accent);
	color: #fff;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-family: var(--bh-font);
}
.bh-404__search button:hover { background: var(--bh-accent-dark); }
.bh-404__list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--bh-4);
	text-align: left;
}
.bh-404__list a { color: var(--bh-text); text-decoration: none; }
.bh-404__list a:hover strong { color: var(--bh-accent); }
.bh-404__list small {
	color: var(--bh-muted);
	font-size: 14px;
	display: block;
	margin-top: var(--bh-1);
}
.bh-404__h2 { margin-top: var(--bh-12); }
.bh-404__foot { margin-top: var(--bh-12); color: var(--bh-muted); }

/* ---------- Contact NAP card heading ---------- */
.bh-card--nap h2 {
	margin: 0 0 var(--bh-3);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* ---------- Brand-page templates (pricing/team/faq/process/glossary) ----- */
/* Team page — avatars + named bios in a clean grid. */
.bh-team-page__lede {
	max-width: 720px;
	margin: 0 auto var(--bh-12);
	font-size: 18px;
	color: var(--bh-text-light);
	text-align: center;
}
.bh-team-page__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bh-6);
	margin: var(--bh-12) 0;
}
@media (min-width: 640px)  { .bh-team-page__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bh-team-page__grid { grid-template-columns: repeat(3, 1fr); } }
.bh-team-card {
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	padding: var(--bh-6);
	display: flex;
	gap: var(--bh-4);
	align-items: flex-start;
	transition: transform var(--bh-tx), border-color var(--bh-tx), box-shadow var(--bh-tx);
}
.bh-team-card:hover {
	transform: translateY(-2px);
	border-color: var(--bh-accent);
	box-shadow: var(--bh-shadow-md);
}
.bh-team-card__avatar {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--bh-accent) 0%, var(--bh-accent-dark) 100%);
	letter-spacing: -0.02em;
}
.bh-team-card__avatar--alt  { background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%); }
.bh-team-card__avatar--alt2 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.bh-team-card__avatar--alt3 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.bh-team-card__avatar--alt4 { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
.bh-team-card__avatar--alt5 { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }
.bh-team-card__body { flex: 1; min-width: 0; }
.bh-team-card__name {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}
.bh-team-card__role {
	font-size: 12px;
	color: var(--bh-accent-dark);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	margin: var(--bh-1) 0 var(--bh-2);
}
.bh-team-card__bio {
	font-size: 14px;
	color: var(--bh-muted);
	line-height: 1.5;
	margin: 0;
}

/* Pricing page — 3-tier card grid, premium feel matching home/services. */
.bh-pricing-page__intro {
	max-width: 720px;
	margin: 0 auto var(--bh-12);
	text-align: center;
}
.bh-pricing-page__intro p { font-size: 18px; color: var(--bh-text-light); }
.bh-pricing-page__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bh-6);
	margin: var(--bh-12) 0;
}
@media (min-width: 768px)  { .bh-pricing-page__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bh-pricing-page__grid { grid-template-columns: repeat(3, 1fr); } }
.bh-price-card {
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-lg);
	padding: var(--bh-8);
	display: flex;
	flex-direction: column;
	transition: transform var(--bh-tx), border-color var(--bh-tx), box-shadow var(--bh-tx);
	position: relative;
}
.bh-price-card--feat {
	border-color: var(--bh-accent);
	box-shadow: 0 12px 32px -16px rgba(16,185,129,0.25);
}
.bh-price-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--bh-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: var(--bh-r-pill);
}
.bh-price-card__name {
	font-size: 14px;
	color: var(--bh-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	margin: 0;
}
.bh-price-card__price {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: var(--bh-4) 0 var(--bh-1);
	line-height: 1;
}
.bh-price-card__price small {
	font-size: 14px;
	font-weight: 500;
	color: var(--bh-muted);
}
.bh-price-card__for {
	font-size: 14px;
	color: var(--bh-text-light);
	margin: 0 0 var(--bh-6);
}
.bh-price-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--bh-8);
	flex: 1;
}
.bh-price-card__features li {
	font-size: 14px;
	line-height: 1.5;
	padding: 8px 0 8px 24px;
	position: relative;
	border-top: 1px solid var(--bh-border);
}
.bh-price-card__features li:first-child { border-top: 0; }
.bh-price-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 8px;
	color: var(--bh-accent);
	font-weight: 700;
}
.bh-price-card__cta {
	display: block;
	text-align: center;
	padding: 12px var(--bh-4);
	background: var(--bh-text);
	color: #fff;
	border-radius: var(--bh-r-sm);
	text-decoration: none;
	font-weight: 600;
	transition: background var(--bh-tx);
}
.bh-price-card__cta:hover { background: var(--bh-accent-dark); }
.bh-price-card--feat .bh-price-card__cta { background: var(--bh-accent); }
.bh-price-card--feat .bh-price-card__cta:hover { background: var(--bh-accent-dark); }

/* FAQ page — accordion list, max-width readable. */
.bh-faq-page__list {
	max-width: 800px;
	margin: var(--bh-12) auto 0;
	display: flex;
	flex-direction: column;
	gap: var(--bh-3);
}
.bh-faq-page__item {
	background: var(--bh-bg);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-r-md);
	padding: var(--bh-4) var(--bh-6);
	transition: border-color var(--bh-tx);
}
.bh-faq-page__item[open] { border-color: var(--bh-accent); }
.bh-faq-page__item summary {
	font-weight: 600;
	font-size: 17px;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--bh-4);
	padding: var(--bh-2) 0;
	min-height: 48px;
}
.bh-faq-page__item summary::-webkit-details-marker { display: none; }
.bh-faq-page__item summary::after {
	content: "+";
	font-size: 24px;
	font-weight: 300;
	color: var(--bh-accent);
	transition: transform var(--bh-tx);
}
.bh-faq-page__item[open] summary::after { content: "−"; }
.bh-faq-page__answer {
	font-size: 15px;
	line-height: 1.65;
	color: var(--bh-text-light);
	padding: var(--bh-3) 0 var(--bh-2);
}

/* Glossary page — A–Z jump nav + alphabetised list. */
.bh-glossary__nav {
	position: sticky;
	top: 64px;
	z-index: 5;
	background: var(--bh-bg);
	border-bottom: 1px solid var(--bh-border);
	padding: var(--bh-3) 0;
	margin: var(--bh-6) 0 var(--bh-8);
}
.bh-glossary__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
}
.bh-glossary__nav-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	border-radius: var(--bh-r-sm);
	background: var(--bh-bg-alt);
	color: var(--bh-text);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background var(--bh-tx), color var(--bh-tx);
}
.bh-glossary__nav-list a:hover { background: var(--bh-accent); color: #fff; }
.bh-glossary__group { margin-bottom: var(--bh-12); }
.bh-glossary__letter {
	font-size: 32px;
	font-weight: 800;
	color: var(--bh-accent);
	letter-spacing: -0.02em;
	margin: 0 0 var(--bh-4);
	border-bottom: 2px solid var(--bh-border);
	padding-bottom: var(--bh-2);
}
.bh-glossary__term {
	margin: 0 0 var(--bh-6);
	padding-left: var(--bh-4);
	border-left: 3px solid var(--bh-accent-soft);
}
.bh-glossary__term dt {
	font-size: 17px;
	font-weight: 700;
	color: var(--bh-text);
	margin: 0;
}
.bh-glossary__term dd {
	margin: var(--bh-1) 0 0;
	color: var(--bh-muted);
	font-size: 15px;
	line-height: 1.55;
}

/* Process page — uses existing bh-process timeline helper; just ensure
 * intro lede is constrained. */
.bh-process-page__intro {
	max-width: 720px;
	margin: 0 auto var(--bh-12);
	font-size: 18px;
	color: var(--bh-text-light);
	text-align: center;
}

/* ---------- Footer density tighten (v0.12.0) ---------- */
/* Was margin-top:--bh-20 (80px) + padding-top:--bh-16 (64px) = 144px dead air. */
.bh-footer {
	margin-top: var(--bh-12);
}
.bh-footer__top { padding-top: var(--bh-12); }
@media (min-width: 768px) {
	.bh-footer__top { padding-top: var(--bh-16); }
}

/* Section-head margin tighten — was --bh-12 (48px) below H2; trimmed to
 * --bh-8 (32px) so the rhythm between H2 and the grid is denser. */
.bh-section__head { margin-bottom: var(--bh-8); }

/* ---------- Mobile padding tighten for v2 stylesheets ----------
 * Each v2 file owns its own .bh-XX-section padding declarations. To avoid
 * cross-scope leakage we add a 480px tier here as a defensive trim for
 * cases where v2 files lack a narrow-phone breakpoint. */
@media (max-width: 480px) {
	.bh-v2 .bh-v2-section,
	.bh-product .bh-pr-section,
	.bh-service .bh-sv-section {
		padding-left: var(--bh-4);
		padding-right: var(--bh-4);
	}
	.bh-v2 .bh-v2-section--alt,
	.bh-product .bh-pr-section--alt,
	.bh-service .bh-sv-section--alt {
		padding-left: var(--bh-4);
		padding-right: var(--bh-4);
	}
}
