/**
 * Business Consultant demo — flagship modern strategy firm theme
 *
 * Slate, white & signal blue. Bento-grid engagement booking hub.
 * Fully redesigned — distinct from Lawyer and all other demos.
 */

:root {
	--demo-font-body: "Inter", system-ui, sans-serif;
	--demo-font-display: "Newsreader", Georgia, serif;

	--demo-primary: #0f172a;
	--demo-primary-dark: #020617;
	--demo-accent: #2563eb;
	--demo-accent-light: #3b82f6;
	--demo-accent-glow: rgba(37, 99, 235, 0.12);
	--demo-heading: #0f172a;
	--demo-text: #334155;
	--demo-muted: #64748b;
	--demo-bg: #ffffff;
	--demo-bg-alt: #f8fafc;
	--demo-bg-dark: #0f172a;
	--demo-surface: #ffffff;
	--demo-border: #e2e8f0;
	--demo-radius-lg: 16px;
	--demo-radius-sm: 8px;
	--demo-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
	--demo-shadow-md: 0 20px 50px rgba(15, 23, 42, 0.1);
	--demo-shadow-lg: 0 32px 64px rgba(15, 23, 42, 0.14);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.demo-consultant .demo-btn-primary {
	background: var(--demo-accent);
	color: #fff;
	border-radius: var(--demo-radius-sm);
	font-size: 14px;
	font-weight: 600;
	padding: 14px 28px;
	box-shadow: none;
}

.demo-consultant .demo-btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.demo-consultant .demo-btn-outline {
	border: 1.5px solid var(--demo-border);
	color: var(--demo-heading);
	border-radius: var(--demo-radius-sm);
	font-weight: 600;
	font-size: 14px;
	background: transparent;
}

.demo-consultant .demo-btn-outline:hover {
	border-color: var(--demo-primary);
	background: var(--demo-bg-alt);
}

/* Announcement bar */
.bc-announce {
	background: var(--demo-bg-dark);
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	padding: 11px 0;
	text-align: center;
}

.bc-announce strong {
	color: #93c5fd;
	font-weight: 600;
}

/* Nav */
.bc-nav {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--demo-border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.bc-nav.is-scrolled {
	box-shadow: var(--demo-shadow-sm);
}

.bc-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}

.bc-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bc-brand-mark {
	width: 36px;
	height: 36px;
	background: var(--demo-primary);
	border-radius: 8px;
	display: grid;
	place-items: center;
}

.bc-brand-mark svg {
	width: 18px;
	height: 18px;
}

.bc-brand-text strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--demo-heading);
	letter-spacing: -0.02em;
}

.bc-brand-text span {
	font-size: 11px;
	color: var(--demo-muted);
	font-weight: 500;
}

.bc-nav-links {
	display: flex;
	gap: 32px;
}

.bc-nav-links a {
	font-size: 14px;
	font-weight: 500;
	color: var(--demo-text);
}

.bc-nav-links a:hover {
	color: var(--demo-accent);
}

/* Hero — editorial split, abstract visual */
.bc-hero {
	padding: clamp(64px, 10vw, 100px) 0 clamp(48px, 6vw, 72px);
	background: var(--demo-bg);
	overflow: hidden;
}

.bc-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.bc-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--demo-accent);
	margin-bottom: 24px;
}

.bc-hero-eyebrow::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--demo-accent);
}

.bc-hero-title {
	font-family: var(--demo-font-display);
	font-size: clamp(2.75rem, 5.5vw, 4.25rem);
	line-height: 1.08;
	color: var(--demo-heading);
	margin-bottom: 24px;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.bc-hero-title em {
	font-style: italic;
	color: var(--demo-accent);
}

.bc-hero-lead {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--demo-muted);
	max-width: 520px;
	margin-bottom: 36px;
}

.bc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.bc-hero-visual {
	position: relative;
	aspect-ratio: 1;
	max-width: 480px;
	margin-left: auto;
}

.bc-hero-visual-grid {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(4, 1fr);
	gap: 8px;
}

.bc-hero-visual-cell {
	background: var(--demo-bg-alt);
	border-radius: var(--demo-radius-sm);
	border: 1px solid var(--demo-border);
}

.bc-hero-visual-cell.accent {
	background: var(--demo-accent-glow);
	border-color: rgba(37, 99, 235, 0.2);
}

.bc-hero-visual-cell.dark {
	background: var(--demo-primary);
	grid-row: span 2;
}

.bc-hero-visual-cell.tall {
	grid-row: span 2;
}

.bc-hero-visual-cell.wide {
	grid-column: span 2;
}

.bc-hero-visual-stat {
	position: absolute;
	bottom: 24px;
	left: -24px;
	background: var(--demo-surface);
	padding: 20px 24px;
	border-radius: var(--demo-radius-lg);
	box-shadow: var(--demo-shadow-lg);
	border: 1px solid var(--demo-border);
	min-width: 180px;
}

.bc-hero-visual-stat strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 2.25rem;
	color: var(--demo-accent);
	line-height: 1;
	margin-bottom: 4px;
}

.bc-hero-visual-stat span {
	font-size: 12px;
	color: var(--demo-muted);
	font-weight: 500;
}

/* Impact strip */
.bc-impact {
	background: var(--demo-bg-alt);
	border-top: 1px solid var(--demo-border);
	border-bottom: 1px solid var(--demo-border);
	padding: 32px 0;
}

.bc-impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.bc-impact-item strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 2rem;
	color: var(--demo-heading);
	line-height: 1;
	margin-bottom: 6px;
}

.bc-impact-item span {
	font-size: 12px;
	font-weight: 600;
	color: var(--demo-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Services — numbered typographic list */
.bc-services {
	background: var(--demo-bg);
}

.bc-services-list {
	max-width: 800px;
	margin: 0 auto;
}

.bc-service-row {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 24px;
	align-items: start;
	padding: 32px 0;
	border-bottom: 1px solid var(--demo-border);
	transition: padding-left 0.2s;
}

.bc-service-row:first-child {
	padding-top: 0;
}

.bc-service-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bc-service-row:hover {
	padding-left: 8px;
}

.bc-service-num {
	font-family: var(--demo-font-display);
	font-size: 2.5rem;
	color: var(--demo-border);
	line-height: 1;
	font-weight: 500;
}

.bc-service-row:hover .bc-service-num {
	color: var(--demo-accent);
}

.bc-service-row h3 {
	font-family: var(--demo-font-display);
	font-size: 1.375rem;
	color: var(--demo-heading);
	margin-bottom: 8px;
	font-weight: 500;
}

.bc-service-row p {
	font-size: 15px;
	color: var(--demo-muted);
	line-height: 1.65;
}

.bc-service-arrow {
	font-size: 20px;
	color: var(--demo-border);
	align-self: center;
	transition: color 0.2s, transform 0.2s;
}

.bc-service-row:hover .bc-service-arrow {
	color: var(--demo-accent);
	transform: translateX(4px);
}

/* ===== BENTO BOOKING HUB (unique placement) ===== */
.bc-engage {
	background: var(--demo-bg-dark);
	padding: clamp(64px, 8vw, 96px) 0;
	color: #fff;
}

.bc-engage-header {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 48px;
}

.bc-engage-header .demo-eyebrow {
	color: #93c5fd;
}

.bc-engage-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	margin-bottom: 12px;
	font-weight: 500;
}

.bc-engage-header p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.65;
	font-size: 15px;
}

.bc-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	gap: 16px;
}

.bc-bento-tile {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--demo-radius-lg);
	padding: 28px;
	transition: border-color 0.2s, background 0.2s;
}

.bc-bento-tile:hover {
	border-color: rgba(37, 99, 235, 0.4);
	background: rgba(37, 99, 235, 0.08);
}

.bc-bento-tile-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #93c5fd;
	margin-bottom: 12px;
}

.bc-bento-tile h3 {
	font-family: var(--demo-font-display);
	font-size: 1.25rem;
	margin-bottom: 8px;
	font-weight: 500;
}

.bc-bento-tile p {
	font-size: 13px;
	opacity: 0.75;
	line-height: 1.55;
	margin-bottom: 16px;
}

.bc-bento-tile-meta {
	font-size: 12px;
	font-weight: 600;
	color: #93c5fd;
}

.bc-bento-booking {
	grid-column: span 3;
	background: var(--demo-surface);
	border: none;
	padding: clamp(28px, 4vw, 40px);
	color: var(--demo-heading);
}

.bc-bento-booking:hover {
	background: var(--demo-surface);
	border-color: transparent;
}

.bc-bento-booking-header {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--demo-border);
}

.bc-bento-booking-header h3 {
	font-family: var(--demo-font-display);
	font-size: 1.375rem;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.bc-bento-booking-header p {
	font-size: 14px;
	color: var(--demo-muted);
	opacity: 1;
}

.demo-consultant .bc-bento-booking .bookora-wizard {
	max-width: none;
	margin: 0;
	box-shadow: none;
	border: none;
	--bookora-primary: #2563eb;
	--bookora-primary-dark: #1d4ed8;
	--bookora-accent: #0f172a;
	--bookora-radius: 8px;
}

.demo-consultant .bc-bento-booking .demo-shortcode-placeholder {
	border: 2px dashed var(--demo-border);
	border-radius: var(--demo-radius-sm);
	padding: 36px 24px;
	text-align: center;
	background: var(--demo-bg-alt);
}

/* Featured transformation — deep dive, not 3 cards */
.bc-featured {
	background: var(--demo-bg-alt);
}

.bc-featured-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	align-items: start;
}

.bc-featured-tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--demo-accent);
	margin-bottom: 16px;
}

.bc-featured-copy h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--demo-heading);
	margin-bottom: 20px;
	line-height: 1.25;
	font-weight: 500;
}

.bc-featured-copy p {
	font-size: 15px;
	color: var(--demo-muted);
	line-height: 1.75;
	margin-bottom: 16px;
}

.bc-featured-metrics {
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	border-radius: var(--demo-radius-lg);
	padding: 28px;
	position: sticky;
	top: 100px;
}

.bc-featured-metrics h3 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--demo-muted);
	margin-bottom: 20px;
}

.bc-metric {
	padding: 16px 0;
	border-bottom: 1px solid var(--demo-border);
}

.bc-metric:first-of-type {
	padding-top: 0;
}

.bc-metric:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bc-metric strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 2rem;
	color: var(--demo-accent);
	line-height: 1;
	margin-bottom: 4px;
}

.bc-metric span {
	font-size: 13px;
	color: var(--demo-muted);
}

/* Framework — 5 pillars */
.bc-framework {
	background: var(--demo-bg);
}

.bc-framework-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.bc-pillar {
	text-align: center;
	padding: 28px 16px;
	background: var(--demo-bg-alt);
	border-radius: var(--demo-radius-lg);
	border: 1px solid var(--demo-border);
	transition: border-color 0.2s, transform 0.2s;
}

.bc-pillar:hover {
	border-color: var(--demo-accent);
	transform: translateY(-4px);
}

.bc-pillar-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 16px;
	background: var(--demo-accent-glow);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 18px;
}

.bc-pillar h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.bc-pillar p {
	font-size: 12px;
	color: var(--demo-muted);
	line-height: 1.45;
}

/* Logos */
.bc-logos {
	padding: 40px 0;
	border-top: 1px solid var(--demo-border);
}

.bc-logos-label {
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--demo-muted);
	margin-bottom: 24px;
}

.bc-logos-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 56px;
	font-weight: 700;
	font-size: 15px;
	color: var(--demo-muted);
	opacity: 0.55;
}

/* Insights — thought leadership, not FAQ */
.bc-insights {
	background: var(--demo-bg-alt);
}

.bc-insights-list {
	display: grid;
	gap: 0;
	max-width: 720px;
	margin: 0 auto;
}

.bc-insight {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid var(--demo-border);
	align-items: start;
}

.bc-insight:last-child {
	border-bottom: none;
}

.bc-insight-date {
	font-size: 12px;
	font-weight: 600;
	color: var(--demo-muted);
	line-height: 1.4;
}

.bc-insight h3 {
	font-family: var(--demo-font-display);
	font-size: 1.125rem;
	color: var(--demo-heading);
	margin-bottom: 6px;
	font-weight: 500;
	line-height: 1.35;
}

.bc-insight p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.55;
}

/* CEO quote */
.bc-quote {
	background: var(--demo-primary);
	color: #fff;
	padding: clamp(64px, 8vw, 88px) 0;
}

.bc-quote-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.bc-quote q {
	display: block;
	font-family: var(--demo-font-display);
	font-size: clamp(1.375rem, 2.5vw, 1.875rem);
	line-height: 1.55;
	margin-bottom: 28px;
	font-style: italic;
	opacity: 0.95;
	color: #fff !important;
}

.bc-quote-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.bc-quote-author img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.bc-quote-author strong {
	display: block;
	font-size: 14px;
	text-align: left;
	color: #fff !important;
}
.bc-engage-header h2{
	color: #fff !important;
}
.bc-quote-author span {
	font-size: 12px;
	opacity: 0.7;
	text-align: left;
	color: #fff !important;
}

/* Questions — visible 2-col */
.bc-questions-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px 48px;
	max-width: 900px;
	margin: 0 auto;
}

.bc-question h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--demo-heading);
	margin-bottom: 8px;
}

.bc-question p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.65;
}

/* Footer CTA */
.bc-footer-cta {
	background: var(--demo-bg-alt);
	padding: 56px 0;
	text-align: center;
	border-top: 1px solid var(--demo-border);
}

.bc-footer-cta h2 {
	font-family: var(--demo-font-display);
	font-size: 1.75rem;
	color: var(--demo-heading);
	margin-bottom: 12px;
}

.bc-footer-cta p {
	color: var(--demo-muted);
	margin-bottom: 24px;
}

/* Footer */
.bc-footer {
	background: var(--demo-bg-dark);
	color: rgba(255, 255, 255, 0.65);
	padding: 48px 0 24px;
}

.bc-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 36px;
}

.bc-footer h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 16px;
}

.bc-footer a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 14px;
}

.bc-footer a:hover {
	color: #93c5fd;
}

.bc-footer-links {
	display: grid;
	gap: 8px;
}

.bc-footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

/* Mobile CTA */
.bc-mobile-cta {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	display: none;
}

.bc-mobile-cta .demo-btn {
	width: 100%;
	box-shadow: var(--demo-shadow-lg);
}

@media (max-width: 1024px) {
	.bc-hero-grid,
	.bc-featured-grid {
		grid-template-columns: 1fr;
	}

	.bc-hero-visual {
		max-width: 100%;
		margin: 0;
	}

	.bc-bento {
		grid-template-columns: 1fr;
	}

	.bc-bento-booking {
		grid-column: span 1;
	}

	.bc-framework-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bc-impact-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bc-featured-metrics {
		position: static;
	}

	.bc-questions-grid {
		grid-template-columns: 1fr;
	}

	.bc-footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bc-nav-links {
		display: none;
	}

	.bc-service-row {
		grid-template-columns: 48px 1fr;
	}

	.bc-service-arrow {
		display: none;
	}

	.bc-framework-grid,
	.bc-impact-grid {
		grid-template-columns: 1fr;
	}

	.bc-insight {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bc-mobile-cta {
		display: block;
	}

	body.demo-consultant {
		padding-bottom: 80px;
	}
}
