/* =========================================================
   The BNM Hub — Main Stylesheet
   Palette: deep navy, bright blue, cyan, purple, white, light grey
   ========================================================= */

:root {
	--navy: #0b1437;
	--navy-soft: #111f4d;
	--blue: #2563eb;
	--cyan: #06b6d4;
	--purple: #7c3aed;
	--white: #ffffff;
	--grey-light: #f5f7fc;
	--grey-border: #e6e9f5;
	--text-dark: #1a2140;
	--text-muted: #5b6584;
	--gradient-brand: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 50%, var(--purple) 100%);
	--gradient-brand-soft: linear-gradient(135deg, rgba(37,99,235,0.10) 0%, rgba(6,182,212,0.10) 50%, rgba(124,58,237,0.10) 100%);
	--shadow-soft: 0 10px 30px rgba(11,20,55,0.08);
	--shadow-card: 0 4px 16px rgba(11,20,55,0.06);
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 10px;
	--font-heading: 'Manrope', sans-serif;
	--font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text-dark);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy); margin: 0 0 16px; line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--text-muted); }
button { font-family: var(--font-body); cursor: pointer; }
.screen-reader-text { position: absolute; left: -9999px; }

.bnm-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.bnm-container-narrow { max-width: 860px; }

.text-gradient {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ---------- Buttons & Links ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	border: none;
	transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn-gradient {
	background: var(--gradient-brand);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(37,99,235,0.25);
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,99,235,0.35); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-outline {
	background: transparent;
	border: 1.5px solid var(--grey-border);
	color: var(--text-dark);
}
.btn-disabled { opacity: 0.55; cursor: not-allowed; }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--blue);
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow:hover { color: var(--purple); }
.link-arrow-light { color: var(--cyan); }
.link-arrow-light:hover { color: var(--white); }

.badge-soon {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 50px;
	background: rgba(124,58,237,0.1);
	color: var(--purple);
	margin-left: 6px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.glass-card {
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

/* ---------- Header ---------- */
.bnm-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--grey-border);
}
.bnm-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 78px;
}
.bnm-logo img { max-height: 44px; width: auto; }
.bnm-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.bnm-nav-list { display: flex; gap: 32px; align-items: center; }
.bnm-nav-list a { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); position: relative; padding: 6px 0; }
.bnm-nav-list a:hover { color: var(--blue); }
.bnm-nav-list .current-menu-item > a,
.bnm-nav-list .current_page_item > a { color: var(--navy); border-bottom: 2px solid var(--navy); padding-bottom: 4px; }
.bnm-header-cta { display: flex; }
.bnm-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 6px;
}
.bnm-mobile-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .2s ease; }

/* ---------- Hero ---------- */
.bnm-hero { padding: 80px 0 60px; overflow: hidden; }
.bnm-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.bnm-hero-headline { margin-bottom: 20px; }
.bnm-hero-subtext { font-size: 1.05rem; max-width: 480px; }
.bnm-hero-ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 28px; }

.bnm-hero-visual { position: relative; min-height: 380px; }
.bnm-abstract-graphic { position: relative; width: 100%; height: 420px; }
.bnm-abstract-graphic .shape { position: absolute; border-radius: 18px; }
.shape-cube { background: linear-gradient(145deg, #ffffff, #e3e8fb); box-shadow: var(--shadow-card); }
.shape-1 { width: 160px; height: 160px; top: 30px; right: 60px; transform: rotate(8deg); }
.shape-2 { width: 110px; height: 110px; top: 160px; right: 220px; transform: rotate(-6deg); }
.shape-3 { width: 90px; height: 90px; bottom: 40px; right: 40px; transform: rotate(14deg); }
.shape-sphere {
	width: 70px; height: 70px; border-radius: 50%;
	background: var(--gradient-brand);
	top: 120px; right: 130px;
	box-shadow: 0 10px 30px rgba(124,58,237,0.35);
}
.shape-ribbon {
	width: 320px; height: 320px;
	border: 26px solid transparent;
	border-radius: 50%;
	border-top-color: var(--cyan);
	border-right-color: var(--blue);
	border-bottom-color: var(--purple);
	bottom: -40px;
	left: -20px;
	transform: rotate(35deg);
	opacity: 0.9;
}

/* ---------- Section Heading ---------- */
.bnm-section-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.bnm-section-heading-row { display: flex; align-items: center; justify-content: space-between; text-align: left; max-width: 100%; margin-bottom: 36px; }
.bnm-section-heading-row h2 { margin: 0; }
.bnm-section-cta { text-align: center; margin-top: 40px; }

section { padding: 80px 0; }

/* ---------- Brands ---------- */
.bnm-brands { background: var(--white); }
.bnm-brands-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.bnm-brands-header h2 { margin: 0; white-space: nowrap; }
.bnm-brand-tabs { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--grey-border); border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.bnm-brand-tab { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--white); border: none; border-right: 1.5px solid var(--grey-border); padding: 14px 28px; font-weight: 700; font-size: 0.9rem; color: var(--text-muted); transition: all .2s ease; white-space: nowrap; }
.bnm-brand-tab:last-child { border-right: none; }
.bnm-brand-tab .bnm-tab-logo { height: 28px; width: auto; max-width: 120px; object-fit: contain; }
.bnm-brand-tab:hover { background: var(--grey-light); color: var(--navy); }
.bnm-brand-tab.is-active { background: var(--white); color: var(--navy); box-shadow: inset 0 -3px 0 var(--blue); }
.bnm-brand-tab.is-soon { color: var(--text-muted); opacity: 0.8; }
.bnm-brand-panel { animation: fadeIn .3s ease; }
.bnm-brand-panel[hidden] { display: none; }
.bnm-brand-panel-inner { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 40px; align-items: center; padding: 36px 40px; border: 1.5px solid var(--grey-border); border-radius: var(--radius-md); background: var(--white); }
.bnm-brand-panel-logo { display: flex; align-items: center; justify-content: center; }
.bnm-brand-panel-logo img { max-width: 140px; max-height: 100px; object-fit: contain; }
.bnm-logo-placeholder { width: 80px; height: 80px; border-radius: 18px; background: var(--gradient-brand); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-heading); font-weight: 800; font-size: 2rem; }
.bnm-brand-panel-text p { font-size: 0.95rem; margin: 0; }
.bnm-benefit-list { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.bnm-benefit-list li { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--text-dark); font-size: 0.9rem; }
.bnm-benefit-list .dashicons { color: var(--blue); font-size: 18px; width: 18px; height: 18px; flex-shrink: 0; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Services ---------- */
.bnm-services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bnm-service-card {
	background: var(--white);
	border: 1px solid var(--grey-border);
	border-radius: var(--radius-md);
	padding: 24px 18px;
	box-shadow: var(--shadow-card);
	transition: transform .25s ease, box-shadow .25s ease;
}
.bnm-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.bnm-service-icon {
	width: 54px; height: 54px;
	border-radius: 14px;
	background: var(--gradient-brand-soft);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
}
.bnm-service-icon .dashicons { font-size: 26px; width: 26px; height: 26px; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bnm-service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.bnm-service-card p { margin: 0; font-size: 0.93rem; }

/* ---------- Why Partner ---------- */
.bnm-why-partner { background: var(--grey-light); }
.bnm-why-partner .bnm-section-heading { text-align: left; margin-left: 0; }
.bnm-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bnm-why-block { text-align: center; padding: 12px; }
.bnm-why-icon {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--gradient-brand);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 18px;
	box-shadow: 0 10px 24px rgba(37,99,235,0.25);
}
.bnm-why-icon .dashicons { color: var(--white); font-size: 28px; width: 28px; height: 28px; }
.bnm-why-block h3 { font-size: 1.05rem; }
.bnm-why-block p { font-size: 0.9rem; }

/* ---------- Metrics ---------- */
.bnm-metrics { background: var(--navy); padding: 64px 0; }
.bnm-metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.bnm-metric { display: flex; flex-direction: column; gap: 8px; }
.bnm-metric-number {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 2.6rem;
	background: linear-gradient(135deg, #60a5fa, #67e8f9, #c4b5fd);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.bnm-metric-label { color: rgba(255,255,255,0.7); font-weight: 500; font-size: 0.95rem; }

/* ---------- Founder + Partnership split ---------- */
.bnm-founder-partner-section { background: var(--white); }
.bnm-split-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: stretch; }

.bnm-founder-card {
	background: var(--navy);
	border-radius: var(--radius-lg);
	padding: 40px;
	color: rgba(255,255,255,0.85);
	position: relative;
	overflow: hidden;
}
.bnm-founder-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gradient-brand-soft);
	opacity: 0.4;
	pointer-events: none;
}
.bnm-founder-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--cyan); margin-bottom: 18px; position: relative; }
.bnm-founder-portrait { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin-bottom: 20px; position: relative; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.bnm-founder-placeholder .dashicons { font-size: 40px; width: 40px; height: 40px; color: rgba(255,255,255,0.5); }
.bnm-founder-card h2 { color: var(--white); margin-bottom: 4px; position: relative; }
.bnm-founder-title { color: var(--cyan); font-weight: 600; margin-bottom: 16px; position: relative; }
.bnm-founder-card p { color: rgba(255,255,255,0.75); position: relative; }

.bnm-founder-card-standalone { padding: 0; }
.bnm-founder-card-standalone .bnm-founder-card { border-radius: var(--radius-lg); }

.bnm-partnership-card {
	background: var(--grey-light);
	border-radius: var(--radius-lg);
	padding: 40px;
}
.bnm-partnership-card h2 { margin-bottom: 12px; }
.bnm-partnership-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.bnm-partner-cat {
	display: flex; align-items: center; gap: 10px;
	background: var(--white);
	border: 1px solid var(--grey-border);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	font-weight: 600;
	font-size: 0.9rem;
}
.bnm-partner-cat .dashicons { color: var(--purple); }
.bnm-partnership-standalone { padding-top: 0; }

/* ---------- Blog Section ---------- */
.bnm-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bnm-blog-grid-archive { margin-bottom: 40px; }
.bnm-blog-card {
	background: var(--white);
	border: 1px solid var(--grey-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform .25s ease, box-shadow .25s ease;
}
.bnm-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.bnm-blog-card-img { display: block; aspect-ratio: 3/2; overflow: hidden; }
.bnm-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bnm-blog-card-placeholder { width: 100%; height: 100%; background: var(--gradient-brand); }
.bnm-blog-card-body { padding: 24px; }
.bnm-blog-cat {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--blue);
	background: rgba(37,99,235,0.08);
	padding: 4px 10px;
	border-radius: 50px;
	margin-bottom: 12px;
}
.bnm-blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.bnm-blog-card-body h3 a:hover { color: var(--blue); }
.bnm-blog-card-body p { font-size: 0.9rem; }
.bnm-no-posts { text-align: center; color: var(--text-muted); }

/* ---------- Contact CTA ---------- */
.bnm-contact-cta {
	background: var(--gradient-brand);
	border-radius: var(--radius-lg);
	margin: 0 24px;
	padding: 0;
}
.bnm-contact-cta-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 56px 48px;
	max-width: 1192px;
}
.bnm-contact-cta-icon {
	width: 64px; height: 64px; flex-shrink: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: flex; align-items: center; justify-content: center;
}
.bnm-contact-cta-icon .dashicons { color: var(--white); font-size: 28px; width: 28px; height: 28px; }
.bnm-contact-cta-content { flex: 1; }
.bnm-contact-cta-content h2 { color: var(--white); margin-bottom: 10px; }
.bnm-contact-cta-content p { color: rgba(255,255,255,0.85); margin: 0; }
.bnm-contact-cta-content a { color: var(--white); text-decoration: underline; }
.bnm-contact-cta-action .btn { background: var(--white); color: var(--navy); box-shadow: none; }
.bnm-contact-cta-action .btn:hover { transform: translateY(-2px); }

/* ---------- Footer ---------- */
.bnm-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding-top: 72px; }
.bnm-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.bnm-footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.bnm-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.bnm-footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.bnm-footer-col a:hover { color: var(--cyan); }
.bnm-footer-logo { display: block; margin-bottom: 16px; }
.bnm-footer-logo .bnm-logo-text { color: var(--white); }
.bnm-footer-logo .custom-logo-link { display: inline-block; mix-blend-mode: multiply; line-height: 0; }
.bnm-footer-logo img.custom-logo { max-height: 50px; width: auto; display: block; }
.bnm-footer-logo img { max-height: 52px; width: auto; mix-blend-mode: multiply; }
.bnm-footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 280px; }
.bnm-social-icons { display: flex; gap: 12px; margin-top: 16px; }
.bnm-social-icons a {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	display: flex; align-items: center; justify-content: center;
}
.bnm-social-icons a:hover { background: var(--gradient-brand); }
.bnm-social-icons .dashicons { color: var(--white); font-size: 16px; }
.bnm-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.bnm-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.bnm-footer-bottom-inner p { margin: 0; font-size: 0.85rem; }
.bnm-footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.bnm-footer-bottom-links .sep { margin: 0 8px; color: rgba(255,255,255,0.3); }

/* ---------- Generic Pages ---------- */
.bnm-page-hero { background: var(--grey-light); padding: 72px 0 48px; text-align: center; }
.bnm-page-hero-sub { max-width: 600px; margin: 0 auto; }
.bnm-page-section { padding: 64px 0; }
.bnm-page-header h1 { margin-bottom: 24px; }
.bnm-content { font-size: 1rem; }
.bnm-content h2 { margin-top: 40px; }
.bnm-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.bnm-content ul li { margin-bottom: 6px; color: var(--text-muted); }
.bnm-page-thumb { margin-bottom: 32px; border-radius: var(--radius-md); overflow: hidden; }

/* ---------- Single Post ---------- */
.bnm-single-post-section { padding: 64px 0; }
.bnm-single-post-grid { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; }
.bnm-single-post-header h1 { margin: 14px 0; }
.bnm-single-post-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.bnm-single-post-meta .sep { margin: 0 8px; }
.bnm-single-post-thumb { margin-bottom: 32px; border-radius: var(--radius-md); overflow: hidden; }
.widget { background: var(--grey-light); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
.widget-title { font-size: 1rem; margin-bottom: 12px; }

/* ---------- Comments ---------- */
.bnm-comments-area { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--grey-border); }
.bnm-comment-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.bnm-comment { display: flex; gap: 14px; }
.bnm-comment-avatar img { border-radius: 50%; }
.bnm-comment-meta { display: flex; gap: 10px; font-size: 0.85rem; margin-bottom: 6px; }
.bnm-comment-author { font-weight: 700; color: var(--navy); }
.bnm-comment-date { color: var(--text-muted); }

/* ---------- Search ---------- */
.bnm-search-form { display: flex; border: 1.5px solid var(--grey-border); border-radius: 50px; overflow: hidden; }
.bnm-search-field { flex: 1; border: none; padding: 10px 18px; outline: none; }
.bnm-search-submit { background: var(--gradient-brand); border: none; color: var(--white); padding: 0 18px; }

/* ---------- Contact Page ---------- */
.bnm-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.bnm-contact-details { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.bnm-contact-details li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.bnm-contact-details .dashicons { color: var(--purple); }
.bnm-contact-form-wrap { padding: 36px; }
.bnm-form-row { margin-bottom: 18px; }
.bnm-form-row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.bnm-form-row input, .bnm-form-row textarea {
	width: 100%;
	border: 1.5px solid var(--grey-border);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	font-family: var(--font-body);
	outline: none;
}
.bnm-form-row input:focus, .bnm-form-row textarea:focus { border-color: var(--blue); }

/* ---------- 404 ---------- */
.bnm-404-section { padding: 100px 0; text-align: center; }
.bnm-404-content h1 { font-size: 5rem; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Pagination ---------- */
.bnm-pagination { display: flex; justify-content: center; gap: 12px; }
.bnm-pagination .page-numbers {
	display: flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid var(--grey-border);
	font-weight: 600;
}
.bnm-pagination .page-numbers.current { background: var(--gradient-brand); color: var(--white); border-color: transparent; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
	.bnm-services-grid { grid-template-columns: repeat(3, 1fr); }
	.bnm-why-grid { grid-template-columns: repeat(2, 1fr); }
	.bnm-brands-header { flex-direction: column; align-items: flex-start; }
	.bnm-brand-panel-inner { grid-template-columns: 130px 1fr 1fr; gap: 24px; padding: 28px; }
	.bnm-blog-grid { grid-template-columns: repeat(2, 1fr); }
	.bnm-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
	.bnm-split-row { grid-template-columns: 1fr; }
	.bnm-single-post-grid { grid-template-columns: 1fr; }
	.bnm-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 860px) {
	.bnm-hero-grid { grid-template-columns: 1fr; }
	.bnm-hero-visual { order: -1; min-height: 280px; }
	.bnm-brand-panel-inner { grid-template-columns: 1fr; text-align: left; padding: 32px; }
	.bnm-benefit-list { grid-template-columns: 1fr; }
	.bnm-brand-panel-inner { grid-template-columns: 1fr; text-align: left; padding: 24px; }
	.bnm-brand-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
	.bnm-contact-grid { grid-template-columns: 1fr; }
	.bnm-contact-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
	.bnm-nav { position: fixed; top: 78px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--grey-border); padding: 16px 24px; transform: translateY(-110%); opacity: 0; transition: all .25s ease; pointer-events: none; }
	.bnm-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
	.bnm-nav-list { flex-direction: column; align-items: flex-start; gap: 16px; }
	.bnm-mobile-toggle { display: flex; }
	.bnm-header-cta { display: none; }
	.bnm-services-grid { grid-template-columns: repeat(2, 1fr); }
	.bnm-why-grid, .bnm-blog-grid { grid-template-columns: 1fr; }
	.bnm-metrics-grid { grid-template-columns: 1fr 1fr; }
	.bnm-footer-grid { grid-template-columns: 1fr 1fr; }
	section { padding: 56px 0; }
	.bnm-section-heading-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
	.bnm-metrics-grid { grid-template-columns: 1fr; }
	.bnm-footer-grid { grid-template-columns: 1fr; }
	.bnm-contact-cta-inner { padding: 40px 28px; }
}
