.business-building-page {
	--bb-bg: #0b1118;
	--bb-panel: #121b24;
	--bb-panel-2: #18232e;
	--bb-line: rgba(188, 199, 208, 0.26);
	--bb-text: #eef4f8;
	--bb-muted: #aebbc5;
	--bb-accent: #e27735;
	--bb-blue: #5f7d91;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
		radial-gradient(circle at 78% 10%, rgba(95, 125, 145, 0.22), transparent 34%),
		var(--bb-bg);
	background-size: 72px 72px, 72px 72px, auto, auto;
	color: var(--bb-text);
	padding-bottom: clamp(42px, 7vw, 90px);
}

.business-building-page + .site-footer {
	margin-top: 0;
}

.business-building-page ~ .site-footer {
	margin-top: 0;
}

.bb-section,
.bb-contact {
	width: min(100% - 32px, 1180px);
	margin-inline: auto;
}

.bb-kicker {
	margin: 0 0 12px;
	color: var(--bb-accent);
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bb-section {
	padding: clamp(54px, 8vw, 104px) 0;
	border-top: 1px solid var(--bb-line);
}

.bb-section__head {
	display: grid;
	gap: 10px;
	margin-bottom: clamp(22px, 4vw, 42px);
}

.bb-section__head h2,
.bb-contact h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.8rem, 4vw, 3.4rem);
	line-height: 1.12;
}

.bb-section__head > p:not(.bb-kicker) {
	max-width: 760px;
	margin: 0;
	color: #c3ced7;
	font-size: clamp(1.03rem, 1.6vw, 1.17rem);
	line-height: 1.95;
}

.bb-type-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(8px, 1vw, 12px);
	background: transparent;
	border: 0;
}

.bb-type-panel {
	position: relative;
	display: grid;
	align-content: end;
	min-height: clamp(154px, 14.5vw, 196px);
	padding: clamp(18px, 2.4vw, 28px);
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.033) 1px, transparent 1px),
		linear-gradient(135deg, rgba(226, 119, 53, 0.14), transparent 45%),
		var(--bb-panel);
	background-size: 28px 28px, 28px 28px, auto, auto;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bb-type-panel.has-image {
	background:
		linear-gradient(135deg, rgba(6, 12, 18, 0) 0%, rgba(6, 12, 18, 0.015) 46%, rgba(6, 12, 18, 0.05) 100%),
		var(--bb-type-image) center / cover no-repeat;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.14),
		0 18px 38px rgba(0, 0, 0, 0.18);
	filter: brightness(1.18) saturate(1.04) grayscale(0.02);
	transition:
		filter 0.28s ease,
		transform 0.28s ease,
		box-shadow 0.28s ease;
}

.bb-type-panel.has-image::before {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 0;
	display: block;
	height: 82%;
	background:
		linear-gradient(0deg, rgba(5, 10, 15, 0.58) 0%, rgba(5, 10, 15, 0.38) 36%, rgba(5, 10, 15, 0.14) 72%, rgba(5, 10, 15, 0) 100%);
	content: "";
	pointer-events: none;
}

.bb-type-panel.has-image:hover,
.bb-type-panel.has-image:focus-within {
	filter: brightness(1.18) saturate(1.04) grayscale(0.02);
	transform: none;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.14),
		0 18px 38px rgba(0, 0, 0, 0.18);
}

.bb-type-panel.has-image > :not(small) {
	position: relative;
	z-index: 1;
}

.bb-type-panel.has-image > span {
	display: none;
}

.bb-type-panel span,
.bb-check-item span,
.bb-flow span {
	color: var(--bb-accent);
	font-family: Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.bb-type-panel small {
	position: absolute;
	top: 12px;
	right: auto;
	bottom: auto;
	left: 14px;
	color: #f07822;
	font-family: Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.2em;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bb-type-panel.has-image small {
	position: absolute;
	top: 12px;
	right: auto;
	bottom: auto;
	left: 14px;
	z-index: 2;
}

.bb-type-panel h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.5rem, 2.05vw, 1.75rem);
	line-height: 1.22;
	text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.bb-type-panel p {
	display: none;
}

.bb-check-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--bb-line);
	border: 1px solid var(--bb-line);
}

.bb-check-item {
	display: grid;
	align-content: start;
	gap: 16px;
	min-height: 222px;
	padding: clamp(24px, 3vw, 30px);
	border: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
		rgba(255, 255, 255, 0.035);
	background-size: 24px 24px, 24px 24px, auto;
}

.bb-check-item strong {
	color: var(--bb-text);
	font-size: clamp(1.12rem, 1.7vw, 1.34rem);
	line-height: 1.45;
}

.bb-check-item__title {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
}

.bb-check-item__title img {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	margin-top: 0.2em;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(58%) sepia(62%) saturate(705%) hue-rotate(340deg) brightness(96%) contrast(89%);
	opacity: 0.95;
}

.bb-check-item span {
	color: rgba(226, 119, 53, 0.92);
	font-size: clamp(2.2rem, 4.4vw, 4.2rem);
	line-height: 0.9;
}

.bb-check-item p {
	margin: 0;
	color: rgba(238, 244, 248, 0.82);
	font-size: clamp(0.96rem, 1.18vw, 1.04rem);
	font-weight: 650;
	line-height: 1.85;
}

.bb-split {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(28px, 5vw, 86px);
	align-items: start;
}

.bb-section--thinking {
	position: relative;
}

.bb-section--thinking .bb-section__head {
	position: sticky;
	top: 96px;
	padding: clamp(22px, 3.5vw, 34px);
	border: 1px solid rgba(226, 119, 53, 0.36);
	background:
		linear-gradient(135deg, rgba(226, 119, 53, 0.18), transparent 46%),
		linear-gradient(120deg, rgba(8, 15, 22, 0.9), rgba(8, 15, 22, 0.68)),
		var(--bb-planning-image, none) center / cover no-repeat,
		rgba(18, 27, 36, 0.9);
	box-shadow: 0 28px 68px rgba(0, 0, 0, 0.26);
}

.bb-section--thinking.has-planning-image .bb-section__head {
	border-color: rgba(226, 119, 53, 0.46);
}

.bb-section--thinking .bb-section__head h2 {
	font-size: clamp(1.55rem, 2.7vw, 2.35rem);
	line-height: 1.24;
}

.bb-section--thinking .bb-section__head > p:not(.bb-kicker) {
	max-width: 34em;
	margin: 18px 0 0;
	color: rgba(238, 244, 248, 0.78);
	font-size: clamp(0.95rem, 1.1vw, 1rem);
	font-weight: 650;
	line-height: 1.9;
}

.bb-line-list {
	display: grid;
	border-top: 1px solid var(--bb-line);
}

.bb-line-list article {
	position: relative;
	margin: 0;
	padding: 24px 0 24px 42px;
	border-bottom: 1px solid var(--bb-line);
}

.bb-line-list h3 {
	margin: 0;
	color: var(--bb-text);
	font-size: clamp(1.08rem, 1.65vw, 1.26rem);
	font-weight: 900;
	line-height: 1.6;
}

.bb-line-list p {
	max-width: 760px;
	margin: 8px 0 0;
	color: rgba(238, 244, 248, 0.8);
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.9;
}

.bb-line-list article::before {
	position: absolute;
	top: 28px;
	bottom: 28px;
	left: 0;
	width: 4px;
	height: auto;
	background: var(--bb-accent);
	content: "";
}

.bb-consult-card::before {
	position: absolute;
	top: auto;
	right: 20px;
	bottom: 18px;
	left: 20px;
	width: auto;
	height: 1px;
	background: rgba(226, 119, 53, 0.55);
	content: "";
}

.bb-consult-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.bb-consult-card {
	position: relative;
	min-height: 138px;
	padding: 24px 20px 20px;
	border: 1px solid var(--bb-line);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
	background-size: 32px 32px, 32px 32px, auto;
}

.bb-consult-card p {
	margin: 0;
	color: var(--bb-text);
	font-weight: 800;
	line-height: 1.7;
}

.bb-consult-card span {
	display: block;
	margin-bottom: 20px;
	color: var(--bb-accent);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.bb-work-grid {
	gap: clamp(16px, 2.4vw, 24px);
}

.business-building-page .work-card {
	border-color: rgba(188, 199, 208, 0.24);
	background: var(--bb-panel);
	box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.business-building-page .work-card__image {
	background: #0f1720;
}

.business-building-page .work-card__image img {
	filter: none;
}

.business-building-page .work-card__body {
	background:
		linear-gradient(135deg, rgba(226, 119, 53, 0.1), transparent 42%),
		var(--bb-panel);
}

.business-building-page .work-card__title {
	color: #fff;
}

.business-building-page .work-card__meta span {
	border-color: rgba(188, 199, 208, 0.24);
	background: rgba(255, 255, 255, 0.055);
	color: rgba(238, 244, 248, 0.74);
}

.business-building-page .work-card:hover .work-card__meta span,
.business-building-page .work-card:focus-within .work-card__meta span {
	border-color: rgba(226, 119, 53, 0.42);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
}

.business-building-page .work-card__more {
	min-height: 42px;
	padding: 10px 16px;
	border-color: rgba(226, 119, 53, 0.72);
	background: rgba(226, 119, 53, 0.18);
	color: #ffc08f !important;
	font-weight: 900;
}

.business-building-page .work-card:hover .work-card__more,
.business-building-page .work-card:focus-within .work-card__more {
	border-color: rgba(226, 119, 53, 0.9);
	background: #e27735;
	color: #101721 !important;
}

.bb-section__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: clamp(18px, 3vw, 28px);
}

.bb-empty-panel {
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid var(--bb-line);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
		rgba(255, 255, 255, 0.035);
	background-size: 32px 32px, 32px 32px, auto;
}

.bb-empty-panel h3,
.bb-empty-panel p {
	margin: 0;
}

.bb-empty-panel h3 {
	color: #fff;
	font-size: clamp(1.18rem, 2vw, 1.45rem);
	line-height: 1.45;
}

.bb-empty-panel p {
	margin-top: 10px;
	color: var(--bb-muted);
	line-height: 1.85;
}

.bb-faq-list {
	display: grid;
	gap: 10px;
}

.bb-faq-item {
	overflow: hidden;
	border: 1px solid rgba(188, 199, 208, 0.24);
	border-left: 3px solid rgba(226, 119, 53, 0.22);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
		rgba(255, 255, 255, 0.035);
	background-size: 28px 28px, 28px 28px, auto;
}

.bb-faq-item[open] {
	border-color: rgba(226, 119, 53, 0.54);
	border-left-color: var(--bb-accent);
	background:
		linear-gradient(135deg, rgba(226, 119, 53, 0.16), transparent 44%),
		rgba(255, 255, 255, 0.07);
}

.bb-faq-item summary {
	position: relative;
	display: block;
	padding: 20px 58px 20px 22px;
	color: #fff;
	font-size: clamp(1rem, 1.35vw, 1.08rem);
	font-weight: 900;
	line-height: 1.65;
	cursor: pointer;
	list-style: none;
}

.bb-faq-item summary::-webkit-details-marker {
	display: none;
}

.bb-faq-item summary::after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(226, 119, 53, 0.42);
	border-radius: 999px;
	background:
		linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
		linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat,
		rgba(226, 119, 53, 0.1);
	color: var(--bb-accent);
	transform: translateY(-50%);
	content: "";
}

.bb-faq-item[open] summary::after {
	background:
		linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
		rgba(226, 119, 53, 0.16);
}

.bb-faq-item__body {
	overflow: hidden;
	padding: 0 22px;
	color: rgba(238, 244, 248, 0.84);
	font-size: 1rem;
	line-height: 1.95;
	transition: height 0.32s ease;
	will-change: height;
}

.bb-faq-item__content {
	padding-bottom: 20px;
}

.bb-faq-item__content > *:first-child {
	margin-top: 0;
}

.bb-faq-item__content > *:last-child {
	margin-bottom: 0;
}

.bb-flow {
	display: grid;
	gap: 0;
	width: min(1080px, 100%);
	margin: 0 auto;
	padding: 0;
	border: 0;
	list-style: none;
}

.bb-flow li {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	column-gap: clamp(12px, 2vw, 22px);
	row-gap: 2px;
	min-height: auto;
	margin-bottom: clamp(6px, 1vw, 10px);
	padding: clamp(12px, 1.6vw, 16px) clamp(16px, 2.2vw, 24px);
	border: 1px solid rgba(188, 199, 208, 0.16);
	border-left: 3px solid rgba(226, 119, 53, 0.54);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
		rgba(255, 255, 255, 0.036);
	background-size: 28px 28px, 28px 28px, auto;
}

.bb-flow li::before {
	display: none;
}

.bb-flow li:last-child {
	margin-bottom: 0;
}

.bb-flow li:last-child::before {
	display: none;
}

.bb-flow span {
	display: none;
}

.bb-flow__icon {
	display: block;
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: start;
	width: 48px;
	height: 48px;
	padding: 9px;
	border: 1px solid rgba(226, 119, 53, 0.28);
	background: rgba(7, 15, 22, 0.42);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(1045%) hue-rotate(342deg) brightness(99%) contrast(91%);
	opacity: 1;
}

.bb-flow strong {
	display: block;
	margin: 0;
	color: #fff;
	font-size: clamp(1.12rem, 1.45vw, 1.28rem);
	line-height: 1.32;
}

.bb-flow__title {
	display: flex;
	grid-column: 2;
	align-items: center;
	min-width: 0;
	margin: 0 0 2px;
}

.bb-flow p {
	grid-column: 2;
	max-width: 860px;
	margin: 0;
	color: rgba(238, 244, 248, 0.78);
	font-size: clamp(0.95rem, 1.12vw, 1.04rem);
	font-weight: 650;
	line-height: 1.58;
}

.bb-section--flow .bb-section__head > p:not(.bb-kicker) {
	max-width: none;
	white-space: nowrap;
}

.bb-cg-note {
	position: relative;
	margin-top: clamp(34px, 5vw, 54px);
	padding: clamp(24px, 3.8vw, 38px) clamp(24px, 4vw, 42px);
	border: 1px solid rgba(226, 119, 53, 0.34);
	border-left: 4px solid rgba(226, 119, 53, 0.88);
	background:
		linear-gradient(135deg, rgba(226, 119, 53, 0.18), transparent 46%),
		rgba(255, 255, 255, 0.06);
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.bb-cg-note h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.28rem, 2vw, 1.6rem);
	font-weight: 900;
	line-height: 1.5;
}

.bb-cg-note p {
	max-width: 900px;
	margin: 12px 0 0;
	color: rgba(238, 244, 248, 0.78);
	font-weight: 650;
	line-height: 1.9;
}

.bb-contact {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0;
	padding: clamp(36px, 5.5vw, 66px);
	border: 1px solid rgba(226, 119, 53, 0.52);
	background:
		linear-gradient(135deg, rgba(226, 119, 53, 0.24), transparent 46%),
		var(--bb-panel-2);
	box-shadow: 0 30px 82px rgba(0, 0, 0, 0.28);
}

.bb-contact p:not(.bb-kicker) {
	max-width: 760px;
	margin: 18px 0 0;
	color: #c3ced7;
	font-size: clamp(1rem, 1.25vw, 1.08rem);
	line-height: 2;
}

.bb-contact__button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 16px 28px;
	border: 1px solid var(--bb-accent);
	background: var(--bb-accent);
	color: #111820;
	font-weight: 900;
	font-size: 1rem;
	text-decoration: none;
	transition: transform 0.18s ease, background-color 0.18s ease;
}

.bb-contact__button:hover,
.bb-contact__button:focus-visible {
	background: #f08a49;
	transform: translateY(-2px);
}

.bb-editor-content {
	color: var(--bb-text);
}

@media (max-width: 980px) {
	.bb-split {
		grid-template-columns: 1fr;
	}

	.bb-section--thinking .bb-section__head {
		position: static;
	}

	.bb-type-grid,
	.bb-consult-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bb-check-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bb-contact {
		align-items: flex-start;
		flex-direction: column;
	}

	.lu-feature {
		grid-template-columns: 1fr;
	}

	.lu-feature__head {
		position: static;
	}

	.lu-check-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lu-consult-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lu-flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lu-cta {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.bb-section--flow .bb-section__head > p:not(.bb-kicker) {
		white-space: normal;
	}
}
