/**
 * BOOOM Criative 0.22.1 — final visual alignment with the approved XD.
 * Loaded after xd-system.css so these rules are intentionally decisive.
 */

:root {
	--booom-final-yellow: #ffc21f;
	--booom-final-ink: #0d0d0d;
	--booom-final-paper: #f7f1eb;
	--booom-final-safe: clamp(22px, 4vw, 64px);
}

/* --------------------------------------------------------------------------
 * Sticky navigation: true glassmorphism and horizontal services expansion.
 * -------------------------------------------------------------------------- */
body .booom-site-header {
	background: rgba(255, 255, 255, .72);
	border-bottom-color: rgba(13, 13, 13, .08);
	box-shadow: 0 12px 38px rgba(13, 13, 13, .06);
	-webkit-backdrop-filter: blur(24px) saturate(155%);
	backdrop-filter: blur(24px) saturate(155%);
}
body .booom-header-frame,
body .booom-header-inner {
	background: transparent;
}
body .booom-header-inner {
	position: relative;
}
body .booom-header-cta,
body .booom-xd-button,
body .booom-button {
	transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
body .booom-header-cta:hover,
body .booom-xd-button:hover,
body .booom-button:hover,
body .booom-xd-home-blog__featured-cta:hover {
	box-shadow: 0 8px 18px rgba(255, 194, 31, .42), 0 0 34px rgba(255, 194, 31, .42);
	transform: translateY(-2px);
}

@media (min-width: 901px) {
	body .booom-primary-navigation,
	body .booom-primary-menu,
	body .booom-primary-menu > li.menu-item-has-children {
		position: static;
	}
	body .booom-primary-menu > li.menu-item-has-children > .sub-menu {
		top: 100%;
		right: 0;
		left: 0;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 8px;
		width: auto;
		min-width: 0;
		padding: 18px;
		border: 1px solid rgba(13, 13, 13, .09);
		border-top-color: rgba(13, 13, 13, .05);
		border-radius: 0 0 18px 18px;
		background: rgba(255, 255, 255, .82);
		box-shadow: 0 24px 58px rgba(13, 13, 13, .12);
		-webkit-backdrop-filter: blur(28px) saturate(150%);
		backdrop-filter: blur(28px) saturate(150%);
		transform: translateY(10px) scaleY(.98);
		transform-origin: top center;
	}
	body .booom-primary-menu > li.menu-item-has-children:hover > .sub-menu,
	body .booom-primary-menu > li.menu-item-has-children:focus-within > .sub-menu {
		transform: translateY(0) scaleY(1);
	}
	body .booom-primary-menu > li.menu-item-has-children > .sub-menu::before {
		top: -22px;
		height: 22px;
	}
	body .booom-primary-menu .sub-menu a {
		display: flex;
		min-height: 54px;
		align-items: center;
		padding: 11px 14px;
		border: 1px solid rgba(13, 13, 13, .07);
		border-radius: 6px;
		background: rgba(250, 247, 243, .62);
		font-size: 12px;
		line-height: 1.25;
	}
	body .booom-primary-menu .sub-menu a:hover,
	body .booom-primary-menu .sub-menu a:focus {
		background: var(--booom-final-yellow);
		color: var(--booom-final-ink);
	}
}

/* --------------------------------------------------------------------------
 * Home hero: exact 1920 × 800 artwork without a theme tint hiding the design.
 * -------------------------------------------------------------------------- */
body .booom-xd-hero {
	padding-top: 0;
}
body .booom-xd-hero__slides {
	height: auto;
	min-height: 0;
	max-height: none;
	aspect-ratio: 12 / 5;
	border-radius: 0 0 8px 8px;
	background: #fff;
}
body .booom-xd-hero__slide img {
	object-fit: cover;
	filter: none;
}
body .booom-xd-hero__slides::after {
	display: none;
}

/* Services cards follow the XD: yellow reveal instead of black on hover. */
body .booom-xd-pain-card {
	isolation: isolate;
	background: var(--booom-final-yellow);
	color: #fff;
}
body .booom-xd-pain-card::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: var(--booom-final-yellow);
	content: "";
	opacity: 0;
	transition: opacity .3s ease;
}
body .booom-xd-pain-card::after {
	z-index: 1;
	background: linear-gradient(180deg, rgba(13, 13, 13, .04) 15%, rgba(13, 13, 13, .78) 100%);
	transition: opacity .3s ease;
}
body .booom-xd-pain-card:hover::before,
body .booom-xd-pain-card:focus-visible::before {
	opacity: .92;
}
body .booom-xd-pain-card:hover::after,
body .booom-xd-pain-card:focus-visible::after {
	opacity: 0;
}
body .booom-xd-pain-card:hover img,
body .booom-xd-pain-card:focus-visible img {
	filter: grayscale(1) contrast(1.02);
	mix-blend-mode: multiply;
	opacity: .22;
}
body .booom-xd-pain-card:hover span,
body .booom-xd-pain-card:focus-visible span,
body .booom-xd-pain-card:hover i,
body .booom-xd-pain-card:focus-visible i {
	color: var(--booom-final-ink);
}
body .booom-xd-pain-card:hover i,
body .booom-xd-pain-card:focus-visible i {
	border-color: var(--booom-final-ink);
}

/* FAQ buttons receive the yellow glow requested in the final review. */
body .booom-xd-faq-section__list .booom-faq__item {
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body .booom-xd-faq-section__list .booom-faq__item:hover,
body .booom-xd-faq-section__list .booom-faq__item:focus-within {
	box-shadow: 0 9px 24px rgba(255, 194, 31, .22), 0 0 30px rgba(255, 194, 31, .24);
	transform: translateY(-2px);
}
body .booom-xd-faq-section__list .booom-faq__question:hover::after,
body .booom-xd-faq-section__list .booom-faq__question:focus-visible::after {
	color: #c88f00;
	text-shadow: 0 0 16px rgba(255, 194, 31, .9);
}

/* --------------------------------------------------------------------------
 * Home blog: white XD composition, one yellow CTA under the first card.
 * -------------------------------------------------------------------------- */
body .booom-xd-home-blog {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-bottom: clamp(170px, 18vw, 245px);
	background: #fff;
}
body .booom-xd-home-blog::after {
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: -0.17em;
	left: 0;
	content: "BOOOM Criative";
	color: rgba(255, 194, 31, .16);
	font-size: clamp(92px, 15vw, 224px);
	font-weight: 400;
	letter-spacing: -.075em;
	line-height: .82;
	text-align: center;
	white-space: nowrap;
}
body .booom-xd-home-blog__header {
	grid-template-columns: 1fr;
	margin-bottom: clamp(42px, 5vw, 68px);
	padding-bottom: 30px;
}
body .booom-xd-home-blog__header h2 {
	max-width: 980px;
	font-size: clamp(42px, 5vw, 68px);
}
body .booom-xd-home-blog__grid {
	align-items: start;
	gap: clamp(20px, 2.2vw, 32px);
}
body .booom-xd-blog-card {
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
body .booom-xd-blog-card:hover {
	box-shadow: none;
	transform: none;
}
body .booom-xd-blog-card__media {
	border-radius: 8px;
}
body .booom-xd-blog-card__body {
	padding: 18px 0 0;
}
body .booom-xd-blog-card h3 {
	font-size: clamp(22px, 2vw, 31px);
	line-height: 1.05;
}
body .booom-xd-blog-card__body > p:not(.booom-xd-blog-card__meta) {
	display: none;
}
body .booom-xd-blog-card__link {
	justify-content: flex-start;
	margin-top: 16px;
	padding-top: 0;
	font-size: 12px;
}
body .booom-xd-home-blog__featured-cta {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: 42px;
	padding: 12px 26px;
	border-radius: 999px;
	background: var(--booom-final-yellow);
	box-shadow: 0 9px 22px rgba(255, 194, 31, .42), 0 0 34px rgba(255, 194, 31, .35);
	color: var(--booom-final-ink);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .02em;
	text-decoration: none;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
 * Footer: reveal the full pale-yellow wordmark and use the current phone.
 * -------------------------------------------------------------------------- */
body .booom-xd-footer {
	margin-top: clamp(178px, 17vw, 250px);
}
body .booom-xd-footer::before {
	display: flex;
	height: clamp(178px, 17vw, 250px);
	align-items: flex-end;
	justify-content: center;
	overflow: visible;
	padding: 0 16px .03em;
	background: #fff;
	color: rgba(255, 194, 31, .18);
	font-size: clamp(86px, 14.5vw, 218px);
	line-height: .8;
}
body .booom-xd-home + .booom-xd-footer::before {
	background: #fff;
}

/* --------------------------------------------------------------------------
 * About page: one hero, rounded imagery, full original narrative and video.
 * -------------------------------------------------------------------------- */
body .booom-xd-about-hero {
	padding: clamp(72px, 8vw, 118px) 0 clamp(60px, 7vw, 96px);
	background: var(--booom-final-paper);
}
body .booom-xd-about-hero__heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(250px, .55fr);
	gap: clamp(42px, 8vw, 110px);
	align-items: end;
	margin-bottom: clamp(34px, 5vw, 62px);
}
body .booom-xd-about-hero__heading h1 {
	max-width: 860px;
	margin: 20px 0 0;
	font-size: clamp(44px, 5.2vw, 72px);
	letter-spacing: -.055em;
	line-height: .96;
}
body .booom-xd-about-hero__heading > p {
	margin: 0;
	color: #655f5a;
	font-size: 17px;
	line-height: 1.6;
}
body .booom-xd-about-hero__media {
	overflow: hidden;
	margin: 0 auto;
	border-radius: 18px;
}
body .booom-xd-about-hero__media img {
	display: block;
	width: 100%;
	max-height: 640px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
body .booom-xd-page--about .booom-xd-page-content {
	padding-top: clamp(54px, 7vw, 92px);
}
body .booom-xd-page--about .booom-asset {
	overflow: hidden;
	border: 0 !important;
	border-radius: 16px;
	background: transparent;
	box-shadow: none;
}
body .booom-xd-page--about .booom-asset img {
	display: block;
	width: 100%;
	border: 0 !important;
	border-radius: 16px;
	object-fit: cover;
}
body .booom-about-method__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
	gap: clamp(28px, 4vw, 58px);
	align-items: start;
}
body .booom-about-method__media {
	display: grid;
	gap: 20px;
}
body .booom-about-method__media .booom-asset:nth-child(2) {
	margin-left: 18%;
}
body .booom-about-video video {
	display: block;
	width: 100%;
	max-height: 690px;
	border-radius: 18px;
	object-fit: cover;
}
body .booom-about-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
body .booom-about-gallery__grid .booom-asset:nth-child(1),
body .booom-about-gallery__grid .booom-asset:nth-child(4) {
	grid-column: 1 / -1;
}
body .booom-about-gallery__grid .booom-asset img {
	min-height: 330px;
	aspect-ratio: 16 / 10;
}
body .booom-about-gallery__grid .booom-asset--portrait img {
	aspect-ratio: 4 / 5;
}

/* The Home about composition keeps the XD overlap but without white rings. */
body .booom-xd-about-home__media figure,
body .booom-xd-about-home__media figure:last-child {
	border-color: transparent;
	border-radius: 14px;
}

/* --------------------------------------------------------------------------
 * Service pages: tighter rhythm, visible Notion photos and black deliverables.
 * -------------------------------------------------------------------------- */
body .booom-xd-page--service .booom-xd-page-content {
	padding-top: clamp(38px, 5vw, 68px);
	padding-bottom: clamp(62px, 7vw, 96px);
}
body .booom-xd-page--service .booom-page-block {
	margin-block: clamp(30px, 4.5vw, 64px);
	padding: clamp(34px, 4.5vw, 62px);
}
body .booom-xd-page--service .booom-page-block + .booom-page-block {
	margin-top: clamp(24px, 3vw, 44px);
}
body .booom-service-visual-pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: clamp(26px, 4vw, 54px) 0;
}
body .booom-service-visual-pair .booom-asset {
	overflow: hidden;
	margin: 0;
	border-radius: 16px;
}
body .booom-service-visual-pair img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 340px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
body .booom-service-deliverables {
	background: transparent;
	color: var(--booom-final-ink);
}
body .booom-service-deliverables__layout {
	display: block;
}
body .booom-service-deliverables__layout > ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}
body .booom-service-deliverables__layout > ul > li {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
	margin: 0;
	padding: 24px;
	border: 0;
	border-radius: 10px;
	background: #0d0d0d;
	color: #fff;
}
body .booom-service-deliverables__layout > ul > li::before {
	display: none;
}
body .booom-service-deliverables__layout > ul > li span {
	color: var(--booom-final-yellow);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}
body .booom-service-deliverables__layout > ul > li strong {
	font-size: clamp(17px, 1.5vw, 22px);
	font-weight: 550;
	line-height: 1.2;
}

/* Global internal-page safety space: never let authored content hug the frame. */
body .booom-xd-page-content.grid-container {
	width: min(calc(100% - (2 * var(--booom-final-safe))), 1180px);
}

@media (max-width: 1100px) {
	body .booom-service-deliverables__layout > ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body .booom-xd-hero__slides {
		aspect-ratio: 12 / 5;
	}
	body .booom-xd-about-hero__heading,
	body .booom-about-method__layout {
		grid-template-columns: 1fr;
	}
	body .booom-about-method__media {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body .booom-about-method__media .booom-asset:nth-child(2) {
		margin-left: 0;
	}
	body .booom-xd-page--service .booom-page-block {
		padding: 34px;
	}
}

@media (max-width: 700px) {
	body .booom-xd-hero {
		width: 100%;
	}
	body .booom-xd-hero__slides {
		aspect-ratio: 12 / 5;
		border-radius: 0;
	}
	body .booom-xd-home-blog__grid,
	body .booom-service-visual-pair,
	body .booom-about-gallery__grid,
	body .booom-about-method__media,
	body .booom-service-deliverables__layout > ul {
		grid-template-columns: 1fr;
	}
	body .booom-about-gallery__grid .booom-asset:nth-child(1),
	body .booom-about-gallery__grid .booom-asset:nth-child(4) {
		grid-column: auto;
	}
	body .booom-xd-home-blog::after {
		font-size: 27vw;
	}
	body .booom-xd-home-blog__featured-cta {
		align-self: stretch;
	}
	body .booom-xd-about-hero__heading h1 {
		font-size: clamp(38px, 11vw, 52px);
	}
	body .booom-xd-page--service .booom-page-block {
		margin-block: 24px;
		padding: 26px 20px;
	}
	body .booom-service-visual-pair img {
		min-height: 0;
	}
	body .booom-service-deliverables__layout > ul > li {
		min-height: 126px;
	}
	body .booom-xd-page-content.grid-container {
		width: min(calc(100% - 32px), 1180px);
	}
	body .booom-xd-footer::before {
		overflow: hidden;
		font-size: 25vw;
	}
}

/* --------------------------------------------------------------------------
 * 0.22.1 — final XD corrections requested after visual review.
 * -------------------------------------------------------------------------- */

/* The Home already draws the large pale-yellow BOOOM wordmark below Blog.
 * Disable the footer's second copy there, avoiding the duplicated two-line
 * “BOOOM Criative” seen before the conversion banner. Internal pages keep one.
 */
body .booom-xd-home + .booom-xd-footer {
	margin-top: 0 !important;
}
body .booom-xd-home + .booom-xd-footer::before {
	display: none !important;
	content: none !important;
}

/* Yellow CTAs reproduce the soft illuminated treatment shown in the XD video.
 * The glow breathes gently and intensifies/changes on hover without hurting
 * legibility or creating layout shifts.
 */
@keyframes booom-xd-cta-breathe {
	0%, 100% {
		box-shadow: 0 9px 22px rgba(255, 194, 31, .34), 0 0 22px rgba(255, 194, 31, .24);
	}
	50% {
		box-shadow: 0 12px 30px rgba(255, 194, 31, .52), 0 0 48px rgba(255, 194, 31, .48);
	}
}
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta,
body .booom-header-cta {
	position: relative;
	isolation: isolate;
	background: linear-gradient(105deg, #ffc21f 0%, #ffd33f 48%, #ffc21f 100%) !important;
	background-size: 210% 100% !important;
	color: #0d0d0d !important;
	animation: booom-xd-cta-breathe 2.8s ease-in-out infinite;
	transition: background-position .32s ease, color .22s ease, transform .22s ease, box-shadow .22s ease !important;
}
body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible,
body .booom-header-cta:hover,
body .booom-header-cta:focus-visible {
	background-position: 100% 0 !important;
	box-shadow: 0 14px 34px rgba(255, 194, 31, .58), 0 0 58px rgba(255, 194, 31, .62) !important;
	transform: translateY(-3px) scale(1.015) !important;
	animation-play-state: paused;
}
body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active,
body .booom-header-cta:active {
	transform: translateY(0) scale(.99) !important;
}
@media (prefers-reduced-motion: reduce) {
	body .booom-xd-button,
	body .booom-xd-home-blog__featured-cta,
	body .booom-header-cta {
		animation: none;
	}
}

/* Home “Sobre” images: rounded corners only. Remove the white/transparent
 * frame, padding and pseudo-border that were still creating a visible margin.
 */
body .booom-xd-about-home__media,
body .booom-xd-about-home__media::before,
body .booom-xd-about-home__media::after {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
body .booom-xd-about-home__media::before,
body .booom-xd-about-home__media::after {
	display: none !important;
	content: none !important;
}
body .booom-xd-about-home__media figure,
body .booom-xd-about-home__media figure:first-child,
body .booom-xd-about-home__media figure:last-child,
body .booom-xd-about-home__photo--primary,
body .booom-xd-about-home__photo--secondary {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	outline: 0 !important;
	border-radius: 14px !important;
	background: transparent !important;
	box-shadow: none !important;
}
body .booom-xd-about-home__media img {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 14px !important;
}

/* Keep the secondary overlap visible without recreating a white frame. */
body .booom-xd-about-home__photo--secondary,
body .booom-xd-about-home__media figure:last-child {
	filter: drop-shadow(0 18px 28px rgba(13, 13, 13, .18));
}

@media (max-width: 767px) {
	body .booom-xd-home + .booom-xd-footer {
		margin-top: 0 !important;
	}
	body .booom-xd-button,
	body .booom-xd-home-blog__featured-cta,
	body .booom-header-cta {
		animation-duration: 3.4s;
	}
}

/* --------------------------------------------------------------------------
 * 0.22.2 — CTA frost-to-solid hover and XD footer wordmark composition.
 * -------------------------------------------------------------------------- */

/*
 * The four public conversion CTAs reproduce the supplied XD recording:
 * diffuse/frosted yellow while idle, then a defined yellow surface on hover
 * or keyboard focus. The header CTA keeps its existing navigation treatment.
 */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	background: rgba(255, 194, 31, .48) !important;
	background-image: none !important;
	background-size: auto !important;
	box-shadow: 0 0 20px 8px rgba(255, 194, 31, .32), 0 0 48px 18px rgba(255, 194, 31, .18) !important;
	color: var(--booom-final-ink) !important;
	filter: saturate(.9);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	animation: none !important;
	transition: background-color .28s ease, box-shadow .28s ease, color .28s ease, filter .28s ease, transform .28s ease !important;
}

body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: var(--booom-final-yellow) !important;
	background-image: none !important;
	box-shadow: 0 9px 22px rgba(255, 194, 31, .40), 0 0 24px rgba(255, 194, 31, .28) !important;
	color: var(--booom-final-ink) !important;
	filter: none;
	transform: translateY(-2px) !important;
}

/* The XD leaves the large pale wordmark higher and more visible above the
 * yellow conversion panel. Keep its full upper area exposed. */
body .booom-xd-footer::before {
	align-items: flex-start !important;
	padding-top: clamp(8px, 1.2vw, 18px) !important;
	line-height: .86 !important;
}

/* Matte state: distinctly yellow, with a soft diffused halo instead of a
 * gray/translucent appearance. Hover resolves to the brighter BOOOM yellow. */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	background: #f5c342 !important;
	box-shadow: 0 0 22px 8px rgba(255, 194, 31, .34), 0 0 48px 15px rgba(255, 194, 31, .18) !important;
	filter: saturate(1) brightness(1.02) !important;
}

body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	box-shadow: 0 12px 28px rgba(255, 194, 31, .58), 0 0 58px rgba(255, 194, 31, .68) !important;
	filter: saturate(1.16) brightness(1.06) !important;
}

/* 0.22.10-final-enforcement — must remain the last CTA rule in the file. */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	position: relative !important;
	isolation: isolate !important;
	overflow: visible !important;
	background: rgba(255, 194, 31, .84) !important;
	background-image: none !important;
	border-color: rgba(255, 194, 31, .58) !important;
	box-shadow: none !important;
	filter: none !important;
	animation: none !important;
	transition: background-color .28s ease, border-color .28s ease, transform .28s ease !important;
}
body .booom-xd-button::before,
body .booom-xd-home-blog__featured-cta::before {
	position: absolute !important;
	inset: -9px -18px !important;
	z-index: -1 !important;
	display: block !important;
	border-radius: inherit !important;
	background: rgba(255, 201, 35, .82) !important;
	box-shadow: 0 0 26px 11px rgba(255, 194, 31, .46), 0 0 52px 18px rgba(255, 194, 31, .26) !important;
	content: "" !important;
	filter: blur(18px) !important;
	opacity: .9 !important;
	transform: scaleX(1.06) scaleY(.9) !important;
	transition: opacity .28s ease, filter .28s ease, transform .28s ease, box-shadow .28s ease !important;
}
body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	background-image: none !important;
	border-color: #ffc21f !important;
	box-shadow: 0 0 0 1px rgba(255, 194, 31, .16) !important;
	filter: none !important;
	transform: translateY(-2px) !important;
}
body .booom-xd-button:hover::before,
body .booom-xd-button:focus-visible::before,
body .booom-xd-home-blog__featured-cta:hover::before,
body .booom-xd-home-blog__featured-cta:focus-visible::before {
	box-shadow: none !important;
	opacity: 0 !important;
	filter: blur(3px) !important;
	transform: scale(.96) !important;
}
body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active {
	transform: translateY(0) scale(.99) !important;
}

/* 0.22.12-final — last cascade layer for the requested visual state. */
body .booom-xd-created__cards {
	display: grid !important;
	grid-auto-flow: column !important;
	grid-auto-columns: minmax(280px, 31.5%) !important;
	grid-template-columns: none !important;
	gap: 18px !important;
	overflow-x: auto !important;
	padding-bottom: 12px !important;
	scroll-behavior: smooth !important;
	scroll-snap-type: x mandatory !important;
	scrollbar-width: none !important;
}
body .booom-xd-created__cards::-webkit-scrollbar { display: none; }
body .booom-xd-created-card { min-width: 0 !important; scroll-snap-align: start; }
body .booom-xd-created-card__media {
	position: relative;
	display: grid !important;
	height: clamp(280px, 27vw, 390px) !important;
	place-items: center;
	background: #fff !important;
}
body .booom-xd-created-card__media::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(13, 13, 13, .7);
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	color: #0d0d0d;
	content: "→";
	font-size: 24px;
	opacity: 0;
	transform: translate(-50%, -50%) scale(.82);
	transition: opacity .26s ease, transform .26s ease, background-color .26s ease;
}
body .booom-xd-created-card__media:hover::after,
body .booom-xd-created-card__media:focus-visible::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
body .booom-xd-created-card__media:hover::after { background: rgba(255, 213, 1, .82); }
body .booom-xd-created-card__media img {
	display: block;
	width: 82%;
	height: 82%;
	object-fit: contain;
	transition: transform .35s ease, filter .35s ease;
}
body .booom-xd-created-card__media:hover img,
body .booom-xd-created-card__media:focus-visible img { filter: saturate(1.08); transform: scale(1.035); }
body .booom-xd-partnerships__actions,
body .booom-xd-partnerships__case-links,
body .booom-xd-partnerships__secondary-link,
body .booom-xd-partnerships__testimonials > .booom-xd-partnerships__cta { display: none !important; }
body .booom-xd-partnerships__copy > .booom-xd-button { display: inline-flex; margin-top: 34px; }

body .booom-xd-faq-section { background: #eee9e2 !important; }
body .booom-xd-faq-section__list {
	display: grid !important;
	gap: 12px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
body .booom-xd-faq-section__list .booom-faq__item {
	border: 0 !important;
	border-radius: 8px !important;
	background: #fffdfb !important;
	box-shadow: none !important;
	transform: none !important;
}
body .booom-xd-faq-section__list .booom-faq__item:hover,
body .booom-xd-faq-section__list .booom-faq__item:focus-within { box-shadow: none !important; transform: none !important; }
body .booom-xd-faq-section__list .booom-faq__question {
	min-height: 96px !important;
	padding: 27px 88px 27px 42px !important;
	color: #161616 !important;
	font-size: clamp(18px, 2vw, 25px) !important;
	font-weight: 500 !important;
}
body .booom-xd-faq-section__list .booom-faq__question::after {
	right: 30px !important;
	width: 46px !important;
	height: 46px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #161616 !important;
	font-size: 30px !important;
}
body .booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"] { color: #d89d00 !important; }
body .booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"]::after { background: transparent !important; color: #777 !important; }
body .booom-xd-faq-section__list .booom-faq__answer { padding: 0 88px 30px 42px !important; color: #6b6b6b !important; font-size: 15px !important; }

/* The header button remains the solid XD button and does not inherit CTA blur. */
body .booom-header-cta { background: var(--booom-xd-yellow, #ffc21f) !important; box-shadow: none !important; filter: none !important; }
body .booom-header-cta::before { display: none !important; }

@media (max-width: 768px) {
	body .booom-xd-created__cards { grid-auto-columns: minmax(78vw, 1fr) !important; }
	body .booom-xd-created-card__media { height: 300px !important; }
	body .booom-xd-faq-section__list .booom-faq__question { min-height: 78px !important; padding: 22px 64px 22px 22px !important; }
	body .booom-xd-faq-section__list .booom-faq__question::after { right: 18px !important; }
	body .booom-xd-faq-section__list .booom-faq__answer { padding: 0 22px 24px !important; }
}

/* 0.22.12 — four individual case cards, XD-style slider and hover cue. */
body .booom-xd-created__cards {
	display: grid !important;
	grid-auto-flow: column !important;
	grid-auto-columns: minmax(280px, 31.5%) !important;
	grid-template-columns: none !important;
	gap: 18px !important;
	overflow-x: auto !important;
	padding: 0 0 12px !important;
	scroll-behavior: smooth !important;
	scroll-snap-type: x mandatory !important;
	scrollbar-width: none !important;
}
body .booom-xd-created__cards::-webkit-scrollbar { display: none; }
body .booom-xd-created-card {
	min-width: 0 !important;
	scroll-snap-align: start;
}
body .booom-xd-created-card__media {
	position: relative;
	display: grid !important;
	height: clamp(280px, 27vw, 390px) !important;
	place-items: center;
	background: #fff !important;
	box-shadow: inset 0 0 0 1px rgba(13, 13, 13, .08);
}
body .booom-xd-created-card__media::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(13, 13, 13, .7);
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	color: #0d0d0d;
	content: "→";
	font-size: 24px;
	line-height: 1;
	opacity: 0;
	transform: translate(-50%, -50%) scale(.82);
	transition: opacity .26s ease, transform .26s ease, background-color .26s ease;
}
body .booom-xd-created-card__media:hover::after,
body .booom-xd-created-card__media:focus-visible::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
body .booom-xd-created-card__media:hover::after { background: rgba(255, 213, 1, .82); }
body .booom-xd-created-card__media img {
	display: block;
	width: 82%;
	height: 82%;
	object-fit: contain;
	transition: transform .35s ease, filter .35s ease;
}
body .booom-xd-created-card__media:hover img,
body .booom-xd-created-card__media:focus-visible img {
	filter: saturate(1.08);
	transform: scale(1.035);
}
body .booom-xd-created-card > p { margin-top: 16px !important; }

/* The partnership column contains only the approved copy and CTA. */
body .booom-xd-partnerships__copy > .booom-xd-button {
	display: inline-flex;
	margin-top: 34px;
}
body .booom-xd-partnerships__actions,
body .booom-xd-partnerships__case-links,
body .booom-xd-partnerships__secondary-link { display: none !important; }
body .booom-xd-partnerships__testimonials > .booom-xd-partnerships__cta { display: none !important; }

/* FAQ rebuilt to match the XD: beige canvas, white cards and open first item. */
body .booom-xd-faq-section {
	background: #eee9e2 !important;
}
body .booom-xd-faq-section__header {
	max-width: 940px !important;
	margin-bottom: 54px !important;
}
body .booom-xd-faq-section__list {
	display: grid !important;
	gap: 12px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
body .booom-xd-faq-section__list .booom-faq__item {
	border: 0 !important;
	border-radius: 8px !important;
	background: #fffdfb !important;
	box-shadow: none !important;
	transform: none !important;
	transition: background-color .2s ease !important;
}
body .booom-xd-faq-section__list .booom-faq__item:hover,
body .booom-xd-faq-section__list .booom-faq__item:focus-within {
	box-shadow: none !important;
	transform: none !important;
}
body .booom-xd-faq-section__list .booom-faq__question {
	min-height: 96px !important;
	padding: 27px 88px 27px 42px !important;
	color: #161616 !important;
	font-size: clamp(18px, 2vw, 25px) !important;
	font-weight: 500 !important;
}
body .booom-xd-faq-section__list .booom-faq__question::after {
	right: 30px !important;
	width: 46px !important;
	height: 46px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #161616 !important;
	font-size: 30px !important;
	font-weight: 300 !important;
}
body .booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"] {
	color: #d89d00 !important;
}
body .booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"]::after {
	background: transparent !important;
	color: #777 !important;
}
body .booom-xd-faq-section__list .booom-faq__answer {
	padding: 0 88px 30px 42px !important;
	color: #6b6b6b !important;
	font-size: 15px !important;
}

@media (max-width: 768px) {
	body .booom-xd-created__cards {
		grid-auto-columns: minmax(78vw, 1fr) !important;
	}
	body .booom-xd-created-card__media { height: 300px !important; }
	body .booom-xd-faq-section__list .booom-faq__question {
		min-height: 78px !important;
		padding: 22px 64px 22px 22px !important;
	}
	body .booom-xd-faq-section__list .booom-faq__question::after { right: 18px !important; }
	body .booom-xd-faq-section__list .booom-faq__answer { padding: 0 22px 24px !important; }
}

/* 0.22.10-final — XD CTA interaction: diffuse at rest, clean on hover. */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	position: relative !important;
	isolation: isolate !important;
	overflow: visible !important;
	background: rgba(255, 194, 31, .84) !important;
	background-image: none !important;
	border-color: rgba(255, 194, 31, .58) !important;
	box-shadow: none !important;
	filter: none !important;
	animation: none !important;
	transition: background-color .28s ease, border-color .28s ease, transform .28s ease !important;
}

body .booom-xd-button::before,
body .booom-xd-home-blog__featured-cta::before {
	position: absolute !important;
	inset: -9px -18px !important;
	z-index: -1 !important;
	display: block !important;
	border-radius: inherit !important;
	background: rgba(255, 201, 35, .82) !important;
	box-shadow: 0 0 26px 11px rgba(255, 194, 31, .46), 0 0 52px 18px rgba(255, 194, 31, .26) !important;
	content: "" !important;
	filter: blur(18px) !important;
	opacity: .9 !important;
	transform: scaleX(1.06) scaleY(.9) !important;
	transition: opacity .28s ease, filter .28s ease, transform .28s ease, box-shadow .28s ease !important;
}

body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	background-image: none !important;
	border-color: #ffc21f !important;
	box-shadow: 0 0 0 1px rgba(255, 194, 31, .16) !important;
	filter: none !important;
	transform: translateY(-2px) !important;
}

body .booom-xd-button:hover::before,
body .booom-xd-button:focus-visible::before,
body .booom-xd-home-blog__featured-cta:hover::before,
body .booom-xd-home-blog__featured-cta:focus-visible::before {
	box-shadow: none !important;
	opacity: 0 !important;
	filter: blur(3px) !important;
	transform: scale(.96) !important;
}

body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active {
	transform: translateY(0) scale(.99) !important;
}

/* 0.22.10 — match the XD CTA interaction exactly.
 * Resting state: a yellow matte surface with a wide Photoshop-style diffuse
 * haze behind it. Hover state: the haze collapses and the button resolves to
 * a clean, stronger yellow surface. The header CTA is intentionally excluded;
 * its solid-yellow navigation treatment is defined above in 0.22.9.
 */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	position: relative !important;
	isolation: isolate !important;
	overflow: visible !important;
	background: rgba(255, 194, 31, .84) !important;
	background-image: none !important;
	border-color: rgba(255, 194, 31, .58) !important;
	box-shadow: none !important;
	filter: none !important;
	animation: none !important;
	transition: background-color .28s ease, border-color .28s ease, transform .28s ease !important;
}

body .booom-xd-button::before,
body .booom-xd-home-blog__featured-cta::before {
	position: absolute !important;
	inset: -9px -18px !important;
	z-index: -1 !important;
	display: block !important;
	border-radius: inherit !important;
	background: rgba(255, 201, 35, .82) !important;
	box-shadow: 0 0 26px 11px rgba(255, 194, 31, .46), 0 0 52px 18px rgba(255, 194, 31, .26) !important;
	content: "" !important;
	filter: blur(18px) !important;
	opacity: .9 !important;
	transform: scaleX(1.06) scaleY(.9) !important;
	transition: opacity .28s ease, filter .28s ease, transform .28s ease, box-shadow .28s ease !important;
}

body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	background-image: none !important;
	border-color: #ffc21f !important;
	box-shadow: 0 0 0 1px rgba(255, 194, 31, .16) !important;
	filter: none !important;
	transform: translateY(-2px) !important;
}

body .booom-xd-button:hover::before,
body .booom-xd-button:focus-visible::before,
body .booom-xd-home-blog__featured-cta:hover::before,
body .booom-xd-home-blog__featured-cta:focus-visible::before {
	box-shadow: none !important;
	opacity: 0 !important;
	filter: blur(3px) !important;
	transform: scale(.96) !important;
}

body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active {
	transform: translateY(0) scale(.99) !important;
}

@media (prefers-reduced-motion: reduce) {
	body .booom-xd-button,
	body .booom-xd-home-blog__featured-cta,
	body .booom-xd-button::before,
	body .booom-xd-home-blog__featured-cta::before {
		transition: none !important;
	}
}

/* 0.22.9 — the header diagnostic CTA stays solid yellow, without blur. */
body .booom-site-header .booom-header-cta,
body .booom-site-header .booom-header-cta:hover,
body .booom-site-header .booom-header-cta:focus,
body .booom-site-header .booom-header-cta:focus-visible {
	background: #ffc21f !important;
	background-image: none !important;
	border-color: #ffc21f !important;
	box-shadow: none !important;
	filter: none !important;
	transform: none !important;
}

body .booom-site-header .booom-header-cta::before,
body .booom-site-header .booom-header-cta:hover::before,
body .booom-site-header .booom-header-cta:focus::before,
body .booom-site-header .booom-header-cta:focus-visible::before {
	display: none !important;
	content: none !important;
}

/* 0.22.8 — XD navigation cascade: open horizontal bar, no item cards. */
@media (min-width: 1025px) {
	body .booom-primary-menu > li.menu-item-has-children > .sub-menu {
		top: 100%;
		right: 0;
		left: 0;
		width: auto;
		min-width: 0;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 0;
		padding: 0.58rem clamp(1rem, 2.4vw, 2rem);
		border: 0;
		border-top: 1px solid rgba(13, 13, 13, .08);
		border-bottom: 1px solid rgba(13, 13, 13, .08);
		border-radius: 0;
		background: rgba(255, 255, 255, .78);
		box-shadow: 0 16px 34px rgba(13, 13, 13, .08);
		-webkit-backdrop-filter: blur(24px) saturate(145%);
		backdrop-filter: blur(24px) saturate(145%);
		transform: translateY(-8px);
		transition: opacity .32s cubic-bezier(.22, 1, .36, 1), transform .42s cubic-bezier(.22, 1, .36, 1), visibility .32s ease;
	}

	body .booom-primary-menu .sub-menu li {
		display: flex;
		align-items: stretch;
		min-width: 0;
	}

	body .booom-primary-menu .sub-menu a,
	body .booom-primary-menu .sub-menu a:hover,
	body .booom-primary-menu .sub-menu a:focus {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 2.65rem;
		padding: .55rem .72rem;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		color: var(--booom-black);
		font-size: .74rem;
		font-weight: 650;
		line-height: 1.2;
		text-align: center;
		transform: none;
	}

	body .booom-primary-menu .sub-menu a::before {
		display: none;
	}

	body .booom-primary-menu .sub-menu a:hover,
	body .booom-primary-menu .sub-menu a:focus {
		color: var(--booom-final-yellow);
		text-decoration: none;
	}
}

/* Mobile keeps the approved accordion behavior, but removes the boxed links. */
@media (max-width: 1024px) {
	body .booom-primary-menu > li > a,
	body .booom-primary-menu > li > a:hover,
	body .booom-primary-menu > li > a:focus,
	body .booom-primary-menu > li > a.is-current {
		min-height: 3rem;
		padding: .72rem .5rem;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		color: var(--booom-black);
		transform: none;
	}

	body .booom-primary-menu > li + li > a {
		border-top: 1px solid rgba(13, 13, 13, .08);
	}

	body .booom-primary-menu .sub-menu,
	body .booom-primary-menu .sub-menu a,
	body .booom-primary-menu .sub-menu a:hover,
	body .booom-primary-menu .sub-menu a:focus {
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	body .booom-primary-menu .sub-menu {
		grid-template-columns: 1fr;
		gap: 0;
		margin: 0;
		padding: .18rem 0 .38rem 1rem;
		border-left: 2px solid var(--booom-final-yellow);
	}

	body .booom-primary-menu .sub-menu a {
		justify-content: flex-start;
		min-height: 2.5rem;
		padding: .55rem .5rem;
		color: #3f3f3f;
		font-size: .78rem;
		text-align: left;
	}

	body .booom-primary-menu .sub-menu a::before {
		display: none;
	}

	body .booom-primary-menu .sub-menu a:hover,
	body .booom-primary-menu .sub-menu a:focus {
		color: var(--booom-final-yellow);
	}
}

/* 0.22.6 — yellow Photoshop-style blur/frost treatment.
 * The CTA surface stays visibly yellow at rest. A separate blurred layer
 * supplies the soft diffuse halo; hover resolves both layers to a stronger
 * yellow and brighter glow. This covers the four public home CTAs:
 * Fale com um especialista, Solicite uma consulta grátis, Saiba mais and
 * Veja mais postagens.
 */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	position: relative !important;
	isolation: isolate !important;
	overflow: visible !important;
	background: rgba(255, 198, 38, .76) !important;
	background-image: none !important;
	border-color: rgba(255, 194, 31, .9) !important;
	box-shadow: 0 8px 18px rgba(255, 194, 31, .26) !important;
	filter: saturate(1.08) brightness(1.02) !important;
	transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease, transform .28s ease !important;
}

body .booom-xd-button::before,
body .booom-xd-home-blog__featured-cta::before {
	position: absolute;
	inset: -10px;
	z-index: -1;
	border-radius: inherit;
	background: rgba(255, 207, 60, .68);
	content: "";
	filter: blur(15px);
	opacity: .72;
	transform: translateZ(0);
	transition: background-color .28s ease, filter .28s ease, opacity .28s ease, inset .28s ease !important;
}

body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	border-color: #ffc21f !important;
	box-shadow: 0 13px 28px rgba(255, 194, 31, .48), 0 0 34px rgba(255, 194, 31, .42) !important;
	filter: saturate(1.18) brightness(1.07) !important;
	transform: translateY(-2px) !important;
}

body .booom-xd-button:hover::before,
body .booom-xd-button:focus-visible::before,
body .booom-xd-home-blog__featured-cta:hover::before,
body .booom-xd-home-blog__featured-cta:focus-visible::before {
	background: rgba(255, 194, 31, .96);
	filter: blur(19px);
	opacity: .94;
	inset: -13px;
}

body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active {
	transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
	body .booom-xd-button,
	body .booom-xd-home-blog__featured-cta,
	body .booom-xd-button::before,
	body .booom-xd-home-blog__featured-cta::before {
		transition: none !important;
	}
}

body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active {
	transform: translateY(0) !important;
}

/*
 * The XD places the large pale wordmark above the black footer, behind the
 * yellow contact panel. The earlier home-only copy sat inside the Blog band;
 * remove it and restore the footer pseudo-element in the correct layer.
 */
body .booom-xd-home-blog {
	padding-bottom: clamp(72px, 8vw, 110px) !important;
}

body .booom-xd-home-blog::after {
	display: none !important;
	content: none !important;
}

body .booom-xd-home + .booom-xd-footer {
	margin-top: clamp(178px, 17vw, 250px) !important;
	isolation: isolate;
}

body .booom-xd-home + .booom-xd-footer::before {
	display: flex !important;
	position: absolute !important;
	right: 0;
	left: 0;
	bottom: 100%;
	height: clamp(178px, 17vw, 250px) !important;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	padding: 0 16px .03em;
	background: #fff !important;
	color: rgba(255, 194, 31, .18) !important;
	content: "BOOOM Criative" !important;
	font-size: clamp(86px, 14.5vw, 218px) !important;
	font-weight: 400;
	letter-spacing: -.075em;
	line-height: .8;
	text-align: center;
	white-space: nowrap;
	z-index: 0;
}

@media (max-width: 767px) {
	body .booom-xd-home + .booom-xd-footer {
		margin-top: 120px !important;
	}
	body .booom-xd-home + .booom-xd-footer::before {
		height: 120px !important;
		font-size: 78px !important;
	}
}

/* --------------------------------------------------------------------------
 * 0.22.3 — About page cleanup: no boxed method cards.
 * 0.22.4 — Restore the XD footer wordmark on the About page and refine the
 *           matte-to-bright CTA state used in the supplied recording.
 * -------------------------------------------------------------------------- */

/* Replace the rigid square grid with an open editorial list. */
body.booom-about-page .booom-service-card-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 clamp(28px, 5vw, 72px);
	margin-top: clamp(34px, 5vw, 58px);
	border: 0;
	background: transparent;
}

body.booom-about-page .booom-service-card-grid article {
	position: relative;
	min-height: 0;
	padding: 28px 0 34px;
	border: 0;
	border-top: 1px solid rgba(13, 13, 13, .16);
	border-radius: 0;
	background: transparent;
	transition: padding-left .24s ease, background-color .24s ease;
}

body.booom-about-page .booom-service-card-grid article::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--booom-final-yellow);
	content: "";
	transition: width .24s ease;
}

body.booom-about-page .booom-service-card-grid article:hover,
body.booom-about-page .booom-service-card-grid article:focus-within {
	padding-left: 14px;
	background: rgba(255, 255, 255, .28);
}

body.booom-about-page .booom-service-card-grid article:hover::before,
body.booom-about-page .booom-service-card-grid article:focus-within::before {
	width: 38px;
}

body.booom-about-page .booom-service-card-grid article > span {
	margin-bottom: 38px;
	color: #b47d00;
	font-size: 11px;
	letter-spacing: .14em;
}

body.booom-about-page .booom-service-card-grid h3 {
	max-width: 320px;
	margin: 0 0 14px;
	font-size: clamp(25px, 2.4vw, 36px);
	line-height: .98;
}

body.booom-about-page .booom-service-card-grid p {
	max-width: 360px;
	font-size: 15px;
	line-height: 1.55;
}

@media (max-width: 700px) {
	body.booom-about-page .booom-service-card-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	body.booom-about-page .booom-service-card-grid article {
		padding: 24px 0 30px;
	}
	body.booom-about-page .booom-service-card-grid article > span {
		margin-bottom: 28px;
	}
}

/* The XD keeps the large pale “BOOOM Criative” lettering visible behind the
 * yellow conversion panel on the About page. The previous revision hid the
 * pseudo-element here to avoid a duplication, which also removed the approved
 * composition from the page. Keep one visible wordmark in the footer layer. */
body.booom-about-page .booom-xd-footer {
	margin-top: clamp(178px, 17vw, 250px) !important;
	overflow: visible !important;
}

body.booom-about-page .booom-xd-footer::before {
	display: flex !important;
	position: absolute !important;
	right: 0 !important;
	left: 0 !important;
	bottom: 100% !important;
	height: clamp(178px, 17vw, 250px) !important;
	align-items: flex-end !important;
	justify-content: center !important;
	overflow: hidden !important;
	padding: 0 16px .03em !important;
	background: #fff !important;
	color: rgba(255, 194, 31, .18) !important;
	content: "BOOOM Criative" !important;
	font-size: clamp(86px, 14.5vw, 218px) !important;
	font-weight: 400 !important;
	letter-spacing: -.075em !important;
	line-height: .8 !important;
	text-align: center !important;
	white-space: nowrap !important;
	z-index: 0 !important;
}

/* Match the video: yellow remains visible in the resting state, while the
 * broad diffuse halo makes it feel matte/frosted. Hover resolves it to the
 * solid BOOOM yellow and increases the illumination. */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	background: rgba(255, 194, 31, .72) !important;
	background-image: none !important;
	box-shadow: 0 0 22px 9px rgba(255, 194, 31, .30), 0 0 48px 16px rgba(255, 194, 31, .16) !important;
	filter: saturate(.96) !important;
	transition: background-color .28s ease, box-shadow .28s ease, color .28s ease, filter .28s ease, transform .28s ease !important;
}

body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	background-image: none !important;
	box-shadow: 0 12px 28px rgba(255, 194, 31, .52), 0 0 52px rgba(255, 194, 31, .60) !important;
	filter: saturate(1.12) !important;
	transform: translateY(-2px) !important;
}

@media (max-width: 767px) {
	body.booom-about-page .booom-xd-footer {
		margin-top: 120px !important;
	}
	body.booom-about-page .booom-xd-footer::before {
		height: 120px !important;
		font-size: 78px !important;
	}
}

/* 0.22.7 — unmistakable Photoshop-style yellow blur on the requested CTAs.
 * The diffuse layer is separate from the button surface, so the resting state
 * remains matte yellow instead of reading as a flat solid fill. */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta,
body .booom-header-cta,
body .booom-button {
	position: relative !important;
	isolation: isolate !important;
	overflow: visible !important;
	background: rgba(255, 194, 31, .74) !important;
	background-image: none !important;
	border-color: rgba(255, 194, 31, .78) !important;
	box-shadow: 0 0 0 1px rgba(255, 194, 31, .16), 0 8px 20px rgba(255, 194, 31, .18) !important;
	filter: saturate(1.12) brightness(1.03) !important;
	animation: none !important;
	transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease, transform .28s ease !important;
}
body .booom-xd-button::before,
body .booom-xd-home-blog__featured-cta::before,
body .booom-header-cta::before,
body .booom-button::before {
	position: absolute;
	z-index: -1;
	inset: -13px;
	border-radius: inherit;
	background: rgba(255, 194, 31, .72);
	box-shadow: 0 0 28px 12px rgba(255, 194, 31, .36), 0 0 58px 22px rgba(255, 194, 31, .18);
	content: "";
	filter: blur(16px);
	opacity: .82;
	transform: scale(.94);
	transition: opacity .28s ease, filter .28s ease, transform .28s ease, box-shadow .28s ease;
}
body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible,
body .booom-header-cta:hover,
body .booom-header-cta:focus-visible,
body .booom-button:hover,
body .booom-button:focus-visible {
	background: #ffc21f !important;
	border-color: #ffc21f !important;
	box-shadow: 0 0 0 1px rgba(255, 194, 31, .44), 0 12px 30px rgba(255, 194, 31, .42), 0 0 46px rgba(255, 194, 31, .52) !important;
	filter: saturate(1.28) brightness(1.08) !important;
	transform: translateY(-2px) !important;
}
body .booom-xd-button:hover::before,
body .booom-xd-button:focus-visible::before,
body .booom-xd-home-blog__featured-cta:hover::before,
body .booom-xd-home-blog__featured-cta:focus-visible::before,
body .booom-header-cta:hover::before,
body .booom-header-cta:focus-visible::before,
body .booom-button:hover::before,
body .booom-button:focus-visible::before {
	opacity: 1;
	filter: blur(22px);
	transform: scale(1.04);
	box-shadow: 0 0 36px 16px rgba(255, 194, 31, .54), 0 0 72px 28px rgba(255, 194, 31, .30);
}
body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active,
body .booom-header-cta:active,
body .booom-button:active {
	transform: translateY(0) scale(.99) !important;
}
@media (prefers-reduced-motion: reduce) {
	body .booom-xd-button,
	body .booom-xd-home-blog__featured-cta,
	body .booom-header-cta,
	body .booom-button,
	body .booom-xd-button::before,
	body .booom-xd-home-blog__featured-cta::before,
	body .booom-header-cta::before,
	body .booom-button::before {
		transition: none !important;
	}
}

/* 0.22.5 — final visual priority: expose the wordmark and keep the matte
 * CTAs visibly yellow after all legacy polish overrides. */
body .booom-xd-footer::before,
body.booom-about-page .booom-xd-footer::before {
	align-items: flex-start !important;
	padding: clamp(8px, 1.2vw, 18px) 16px 0 !important;
	line-height: .86 !important;
}

body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	background: #f5c342 !important;
	background-image: none !important;
	box-shadow: 0 0 22px 8px rgba(255, 194, 31, .34), 0 0 48px 15px rgba(255, 194, 31, .18) !important;
	filter: saturate(1) brightness(1.02) !important;
}

body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	box-shadow: 0 12px 28px rgba(255, 194, 31, .58), 0 0 58px rgba(255, 194, 31, .68) !important;
	filter: saturate(1.16) brightness(1.06) !important;
}

/* 0.22.10-real-final — XD CTA interaction: diffuse at rest, clean on hover. */
body .booom-xd-button,
body .booom-xd-home-blog__featured-cta {
	position: relative !important;
	isolation: isolate !important;
	overflow: visible !important;
	background: rgba(255, 194, 31, .84) !important;
	background-image: none !important;
	border-color: rgba(255, 194, 31, .58) !important;
	box-shadow: none !important;
	filter: none !important;
	animation: none !important;
	transition: background-color .28s ease, border-color .28s ease, transform .28s ease !important;
}
body .booom-xd-button::before,
body .booom-xd-home-blog__featured-cta::before {
	position: absolute !important;
	inset: -9px -18px !important;
	z-index: -1 !important;
	display: block !important;
	border-radius: inherit !important;
	background: rgba(255, 201, 35, .82) !important;
	box-shadow: 0 0 26px 11px rgba(255, 194, 31, .46), 0 0 52px 18px rgba(255, 194, 31, .26) !important;
	content: "" !important;
	filter: blur(18px) !important;
	opacity: .9 !important;
	transform: scaleX(1.06) scaleY(.9) !important;
	transition: opacity .28s ease, filter .28s ease, transform .28s ease, box-shadow .28s ease !important;
}
body .booom-xd-button:hover,
body .booom-xd-button:focus-visible,
body .booom-xd-home-blog__featured-cta:hover,
body .booom-xd-home-blog__featured-cta:focus-visible {
	background: #ffc21f !important;
	background-image: none !important;
	border-color: #ffc21f !important;
	box-shadow: 0 0 0 1px rgba(255, 194, 31, .16) !important;
	filter: none !important;
	transform: translateY(-2px) !important;
}
body .booom-xd-button:hover::before,
body .booom-xd-button:focus-visible::before,
body .booom-xd-home-blog__featured-cta:hover::before,
body .booom-xd-home-blog__featured-cta:focus-visible::before {
	box-shadow: none !important;
	opacity: 0 !important;
	filter: blur(3px) !important;
	transform: scale(.96) !important;
}
body .booom-xd-button:active,
body .booom-xd-home-blog__featured-cta:active {
	transform: translateY(0) scale(.99) !important;
}

/* 0.22.12-absolute-final — this is intentionally the last cascade layer. */
body .booom-xd-created__cards { display: grid !important; grid-auto-flow: column !important; grid-auto-columns: minmax(280px, 31.5%) !important; grid-template-columns: none !important; gap: 18px !important; overflow-x: auto !important; padding-bottom: 12px !important; scroll-behavior: smooth !important; scroll-snap-type: x mandatory !important; scrollbar-width: none !important; }
body .booom-xd-created__cards::-webkit-scrollbar { display: none; }
body .booom-xd-created-card { min-width: 0 !important; scroll-snap-align: start; }
body .booom-xd-created-card__media { position: relative; display: grid !important; height: clamp(280px, 27vw, 390px) !important; place-items: center; background: #fff !important; }
body .booom-xd-created-card__media::after { position: absolute; top: 50%; left: 50%; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(13,13,13,.7); border-radius: 50%; background: rgba(255,255,255,.18); color: #0d0d0d; content: "→"; font-size: 24px; opacity: 0; transform: translate(-50%,-50%) scale(.82); transition: opacity .26s ease, transform .26s ease, background-color .26s ease; }
body .booom-xd-created-card__media:hover::after, body .booom-xd-created-card__media:focus-visible::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
body .booom-xd-created-card__media:hover::after { background: rgba(255,213,1,.82); }
body .booom-xd-created-card__media img { display: block; width: 82%; height: 82%; object-fit: contain; transition: transform .35s ease, filter .35s ease; }
body .booom-xd-created-card__media:hover img, body .booom-xd-created-card__media:focus-visible img { filter: saturate(1.08); transform: scale(1.035); }
body .booom-xd-partnerships__actions, body .booom-xd-partnerships__case-links, body .booom-xd-partnerships__secondary-link, body .booom-xd-partnerships__testimonials > .booom-xd-partnerships__cta { display: none !important; }
body .booom-xd-partnerships__copy > .booom-xd-button { display: inline-flex; margin-top: 34px; }
body .booom-xd-faq-section { background: #eee9e2 !important; }
body .booom-xd-faq-section__list { display: grid !important; gap: 12px !important; padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
body .booom-xd-faq-section__list .booom-faq__item { border: 0 !important; border-radius: 8px !important; background: #fffdfb !important; box-shadow: none !important; transform: none !important; }
body .booom-xd-faq-section__list .booom-faq__item:hover, body .booom-xd-faq-section__list .booom-faq__item:focus-within { box-shadow: none !important; transform: none !important; }
body .booom-xd-faq-section__list .booom-faq__question { min-height: 96px !important; padding: 27px 88px 27px 42px !important; color: #161616 !important; font-size: clamp(18px,2vw,25px) !important; font-weight: 500 !important; }
body .booom-xd-faq-section__list .booom-faq__question::after { right: 30px !important; width: 46px !important; height: 46px !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; color: #161616 !important; font-size: 30px !important; }
body .booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"] { color: #d89d00 !important; }
body .booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"]::after { background: transparent !important; color: #777 !important; }
body .booom-xd-faq-section__list .booom-faq__answer { padding: 0 88px 30px 42px !important; color: #6b6b6b !important; font-size: 15px !important; }
body .booom-header-cta { background: var(--booom-xd-yellow, #ffc21f) !important; box-shadow: none !important; filter: none !important; }
body .booom-header-cta::before { display: none !important; }
@media (max-width: 768px) { body .booom-xd-created__cards { grid-auto-columns: minmax(78vw,1fr) !important; } body .booom-xd-created-card__media { height: 300px !important; } body .booom-xd-faq-section__list .booom-faq__question { min-height: 78px !important; padding: 22px 64px 22px 22px !important; } body .booom-xd-faq-section__list .booom-faq__question::after { right: 18px !important; } body .booom-xd-faq-section__list .booom-faq__answer { padding: 0 22px 24px !important; } }

/* 0.22.14 — manual case navigation, pointer dragging and uncropped centered logos. */
body .booom-xd-created__cards-wrap { position: relative; min-width: 0; }
body .booom-xd-created__cards {
	padding-right: 44px !important;
	touch-action: pan-y;
	cursor: grab;
}
body .booom-xd-created__cards.is-dragging { cursor: grabbing; scroll-behavior: auto !important; user-select: none; }
body .booom-xd-created__cards.is-dragging .booom-xd-created-card__media img { pointer-events: none; }
body .booom-xd-created-card__media {
	overflow: hidden !important;
	border-radius: 16px !important;
	background: #fff !important;
}
body .booom-xd-created-card__media img {
	width: 90% !important;
	height: 82% !important;
	max-width: 90% !important;
	max-height: 82% !important;
	object-fit: contain !important;
	object-position: center center !important;
	border-radius: 8px;
}
body .booom-xd-created__next {
	position: absolute;
	top: 50%;
	right: 8px;
	z-index: 5;
	display: grid;
	width: 34px;
	height: 58px;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(13, 13, 13, .16);
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 8px 20px rgba(13, 13, 13, .12);
	color: #0d0d0d;
	cursor: pointer;
	font-size: 21px;
	line-height: 1;
	transform: translateY(-50%);
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body .booom-xd-created__next:hover,
body .booom-xd-created__next:focus-visible {
	border-color: #ffc21f;
	background: #ffc21f;
	box-shadow: 0 10px 24px rgba(255, 194, 31, .28);
	transform: translateY(-50%) scale(1.04);
}
@media (max-width: 768px) {
	body .booom-xd-created__cards { padding-right: 40px !important; }
	body .booom-xd-created__next { right: 5px; width: 31px; height: 52px; font-size: 19px; }
}

/* 0.22.13 — case assets, autoplay and final interaction corrections. */
body .booom-xd-created-card__media { border-radius: 12px !important; }
body .booom-xd-created-card__media img { width: auto !important; height: auto !important; max-width: 92% !important; max-height: 86% !important; object-fit: contain !important; }
body .booom-xd-faq-section__list .booom-faq__item,
body .booom-xd-faq-section__list .booom-faq__item:hover,
body .booom-xd-faq-section__list .booom-faq__item:focus-within,
body .booom-xd-faq-section__list .booom-faq__question,
body .booom-xd-faq-section__list .booom-faq__question:hover,
body .booom-xd-faq-section__list .booom-faq__question:focus,
body .booom-xd-faq-section__list .booom-faq__question:active { background: #fff !important; }
body .booom-xd-faq-section__list .booom-faq__question:hover,
body .booom-xd-faq-section__list .booom-faq__question:focus { color: #161616 !important; }

/* 0.22.15-final — centered case logos and discreet controls below the slider. */
body .booom-xd-created__cards-wrap { position: relative; min-width: 0; }
body .booom-xd-created__cards {
	padding-right: 0 !important;
	touch-action: pan-y;
	cursor: grab;
}
body .booom-xd-created__cards.is-dragging { cursor: grabbing; scroll-behavior: auto !important; user-select: none; }
body .booom-xd-created__cards.is-dragging .booom-xd-created-card__media img { pointer-events: none; }
body .booom-xd-created-card__media {
	position: relative;
	display: grid !important;
	place-items: center !important;
	height: clamp(260px, 25vw, 350px) !important;
	overflow: hidden !important;
	border-radius: 16px !important;
	background: #fff !important;
}
body .booom-xd-created-card__media img {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: calc(100% - 48px) !important;
	max-height: calc(100% - 48px) !important;
	object-fit: contain !important;
	object-position: center center !important;
	border-radius: 0 !important;
}
body .booom-xd-created__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 18px;
}
body .booom-xd-created__control {
	display: grid;
	width: 34px;
	height: 26px;
	place-items: center;
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(13, 13, 13, .34);
	background: transparent;
	color: #161616;
	cursor: pointer;
	font-size: 17px;
	line-height: 1;
	transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
body .booom-xd-created__control:hover,
body .booom-xd-created__control:focus-visible {
	border-color: #ffc21f;
	color: #b18400;
	transform: translateY(-1px);
}
body .booom-xd-created__control-line {
	display: block;
	width: 34px;
	height: 1px;
	background: rgba(13, 13, 13, .14);
}
@media (max-width: 768px) {
	body .booom-xd-created-card__media { height: 280px !important; }
	body .booom-xd-created-card__media img { max-width: calc(100% - 32px) !important; max-height: calc(100% - 32px) !important; }
	body .booom-xd-created__controls { justify-content: center; margin-top: 14px; }
}

/* 0.22.16 — controls centered under the complete cases slider. */
body .booom-xd-created__controls {
	width: 100%;
	justify-content: center !important;
	margin-right: auto;
	margin-left: auto;
}

/* 0.22.17 — canonical case links, visible hover arrow, case logos and readability. */
body .booom-xd-created-card__media {
	position: relative;
	display: grid !important;
	place-items: center !important;
	text-decoration: none !important;
}
body .booom-xd-created-card__media::after { display: none !important; }
body .booom-xd-created-card__arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(13, 13, 13, .68);
	border-radius: 50%;
	background: rgba(255, 255, 255, .78);
	color: #0d0d0d;
	font-size: 22px;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(.78);
	transition: opacity .24s ease, transform .24s ease, background-color .24s ease;
}
body .booom-xd-created-card__media:hover .booom-xd-created-card__arrow,
body .booom-xd-created-card__media:focus-visible .booom-xd-created-card__arrow {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
body .booom-xd-created-card__media:hover .booom-xd-created-card__arrow { background: rgba(255, 255, 255, .94); }

body .booom-xd-case-detail-hero__copy { display: flex; flex-direction: column; align-items: flex-start; }
body .booom-xd-case-detail-hero__brand {
	display: flex;
	width: min(100%, 300px);
	height: 88px;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 28px;
	padding: 12px 18px;
	border-radius: 12px;
	background: #fff;
}
body .booom-xd-case-detail-hero__brand img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 62px;
	object-fit: contain;
}
body .booom-xd-case-detail-hero__copy .booom-breadcrumbs { order: 2; }
body .booom-xd-case-detail-hero__copy .booom-xd-kicker,
body .booom-xd-case-detail-hero__copy h1,
body .booom-xd-case-detail-hero__copy > p:not(.booom-xd-kicker) { order: 3; }
body .booom-xd-case-detail-hero__copy .booom-breadcrumbs { order: 1; margin-bottom: 34px; }

/* The action section previously left its white text over the page beige background. */
body .booom-xd-case-actions {
	box-sizing: border-box;
	padding: clamp(54px, 7vw, 90px) clamp(28px, 5vw, 72px) !important;
	border-radius: 12px;
	background: #111 !important;
	color: #f7f7f7 !important;
}
body .booom-xd-case-actions::before { display: none !important; }
body .booom-xd-case-actions h2,
body .booom-xd-case-actions li span { color: #fff !important; }
body .booom-xd-case-actions li { border-bottom-color: #3d3d3d !important; }
body .booom-xd-case-actions .booom-xd-kicker { color: #ffc21f !important; }
body .booom-xd-case-execution h2,
body .booom-xd-case-results__heading h2,
body .booom-xd-case-story__lead h2,
body .booom-xd-case-story__narrative h2,
body .booom-xd-case-problem h2,
body .booom-xd-case-learning blockquote { color: #161616 !important; }
body .booom-xd-case-execution p,
body .booom-xd-case-execution li,
body .booom-xd-case-results__list li,
body .booom-xd-case-story__narrative > p:not(.booom-xd-kicker),
body .booom-xd-case-problem p:last-child { color: #4f4f4f !important; }

/* 0.23.1 — case preview assets replaced by the supplied 575 × 230 WebP files.
 * Keep the complete artwork visible at every viewport: contain, center and no
 * hover zoom that could crop the edges inside the rounded media frame. */
body .booom-xd-created-card__media {
	overflow: hidden !important;
	border-radius: 16px !important;
	background: #fff !important;
}
body .booom-xd-created-card__media img,
body .booom-xd-created-card__media:hover img,
body .booom-xd-created-card__media:focus-visible img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
	border-radius: inherit !important;
	transform: none !important;
}

@media (max-width: 620px) {
	body .booom-xd-case-detail-hero__brand { width: min(100%, 250px); height: 76px; margin-bottom: 22px; }
	body .booom-xd-case-detail-hero__brand img { max-height: 50px; }
	body .booom-xd-case-actions { padding: 42px 22px !important; }
}

/* 0.23.0 — editorial additions that reuse the approved visual language. */
body .booom-xd-created-card__disclaimer {
	margin: 0.45rem 0 0 !important;
	max-width: 34rem;
	color: #5f5f5f !important;
	font-size: .82rem !important;
	font-weight: 500;
	line-height: 1.45 !important;
}

/* --------------------------------------------------------------------------
 * 0.23.11-beta — dark BOOOM home with yellow editorial hierarchy.
 * This layer is scoped to the front page body class so the approved inner
 * page palette remains unchanged during the visual test.
 * -------------------------------------------------------------------------- */
body.booom-beta-dark {
	--booom-beta-bg: #0d0d0d;
	--booom-beta-surface: #151515;
	--booom-beta-surface-raised: #1b1b1b;
	--booom-beta-yellow: #ffd501;
	--booom-beta-white: #ffffff;
	--booom-beta-muted: #d0d0d0;
	background: var(--booom-beta-bg) !important;
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-site-header {
	border-bottom-color: rgba(255, 255, 255, .13) !important;
	background: rgba(13, 13, 13, .92) !important;
	box-shadow: 0 12px 38px rgba(0, 0, 0, .28) !important;
}

body.booom-beta-dark .booom-site-brand img {
	filter: brightness(0) invert(1) !important;
}

body.booom-beta-dark .booom-primary-menu a,
body.booom-beta-dark .booom-menu-toggle,
body.booom-beta-dark .booom-menu-toggle__label {
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-primary-menu .sub-menu,
body.booom-beta-dark .booom-primary-menu .sub-menu a {
	border-color: rgba(255, 255, 255, .12) !important;
	background: var(--booom-beta-surface) !important;
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-primary-menu .sub-menu a:hover,
body.booom-beta-dark .booom-primary-menu .sub-menu a:focus {
	background: var(--booom-beta-yellow) !important;
	color: #0d0d0d !important;
}

body.booom-beta-dark .booom-xd-home,
body.booom-beta-dark .booom-xd-home-solutions,
body.booom-beta-dark .booom-xd-band--light,
body.booom-beta-dark .booom-xd-pain,
body.booom-beta-dark .booom-xd-video,
body.booom-beta-dark .booom-xd-created,
body.booom-beta-dark .booom-xd-partnerships,
body.booom-beta-dark .booom-xd-gallery,
body.booom-beta-dark .booom-xd-faq-section,
body.booom-beta-dark .booom-xd-about-home,
body.booom-beta-dark .booom-xd-home-blog,
body.booom-beta-dark .booom-xd-client-logos {
	background: var(--booom-beta-bg) !important;
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-home h1,
body.booom-beta-dark .booom-xd-home h2,
body.booom-beta-dark .booom-xd-home h3,
body.booom-beta-dark .booom-xd-home-solutions strong,
body.booom-beta-dark .booom-xd-home-blog h3,
body.booom-beta-dark .booom-xd-about-home__copy h2,
body.booom-beta-dark .booom-xd-pain__metric strong,
body.booom-beta-dark .booom-xd-created__header > span,
body.booom-beta-dark .booom-xd-created-card > p:first-of-type,
body.booom-beta-dark .booom-xd-partnerships__copy h2,
body.booom-beta-dark .booom-xd-gallery__header h2,
body.booom-beta-dark .booom-xd-faq-section__header h2 {
	color: var(--booom-beta-yellow) !important;
}

body.booom-beta-dark .booom-xd-kicker,
body.booom-beta-dark .booom-xd-home-solutions .booom-page-heading > p:first-child,
body.booom-beta-dark .booom-xd-created-card__disclaimer,
body.booom-beta-dark .booom-xd-home-blog__meta,
body.booom-beta-dark .booom-xd-home-blog__read-more,
body.booom-beta-dark .booom-xd-gallery__controls > p span {
	color: var(--booom-beta-yellow) !important;
}

body.booom-beta-dark .booom-xd-home-hero,
body.booom-beta-dark .booom-xd-hero,
body.booom-beta-dark .booom-xd-message-strip {
	background: var(--booom-beta-bg) !important;
}

body.booom-beta-dark .booom-xd-home-solutions .booom-page-heading > p:last-child,
body.booom-beta-dark .booom-xd-created__intro > p,
body.booom-beta-dark .booom-xd-partnerships__copy > p:not(.booom-xd-kicker),
body.booom-beta-dark .booom-xd-about-home__copy > p:not(.booom-xd-kicker),
body.booom-beta-dark .booom-xd-home-blog__copy > p,
body.booom-beta-dark .booom-xd-home-blog__empty p,
body.booom-beta-dark .booom-xd-gallery__controls > p,
body.booom-beta-dark .booom-xd-pain__metric span {
	color: var(--booom-beta-muted) !important;
}

body.booom-beta-dark .booom-home-solutions .booom-service-directory > a {
	border-color: rgba(255, 255, 255, .14) !important;
	background: var(--booom-beta-surface) !important;
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-home-solutions .booom-service-directory > a span {
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-home-solutions .booom-service-directory > a:hover,
body.booom-beta-dark .booom-home-solutions .booom-service-directory > a:focus-visible {
	border-color: var(--booom-beta-yellow) !important;
	background: var(--booom-beta-yellow) !important;
	color: #0d0d0d !important;
}

body.booom-beta-dark .booom-home-solutions .booom-service-directory > a:hover strong,
body.booom-beta-dark .booom-home-solutions .booom-service-directory > a:hover span,
body.booom-beta-dark .booom-home-solutions .booom-service-directory > a:focus-visible strong,
body.booom-beta-dark .booom-home-solutions .booom-service-directory > a:focus-visible span {
	color: #0d0d0d !important;
}

body.booom-beta-dark .booom-xd-client-logos__track figure {
	border-color: rgba(255, 255, 255, .1) !important;
	background: var(--booom-beta-surface) !important;
}

body.booom-beta-dark .booom-xd-pain-card,
body.booom-beta-dark .booom-xd-created-card__media {
	background: var(--booom-beta-surface) !important;
}

body.booom-beta-dark .booom-xd-created-card > p:not(:first-of-type) {
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-created-card__media {
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12) !important;
}

body.booom-beta-dark .booom-xd-testimonial {
	border-color: rgba(255, 255, 255, .13) !important;
	background: var(--booom-beta-surface) !important;
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-testimonial > span,
body.booom-beta-dark .booom-xd-testimonial small {
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-testimonial strong,
body.booom-beta-dark .booom-xd-testimonial strong small {
	color: var(--booom-beta-yellow) !important;
}

body.booom-beta-dark .booom-xd-gallery__track.booom-office-carousel__track figcaption {
	background: transparent !important;
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-gallery__controls button,
body.booom-beta-dark .booom-xd-pain__controls button {
	border-color: rgba(255, 255, 255, .26) !important;
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-gallery__controls button:hover,
body.booom-beta-dark .booom-xd-pain__controls button:hover {
	border-color: var(--booom-beta-yellow) !important;
	background: var(--booom-beta-yellow) !important;
	color: #0d0d0d !important;
}

body.booom-beta-dark .booom-xd-faq-section__list .booom-faq__item {
	border: 1px solid rgba(255, 255, 255, .13) !important;
	background: var(--booom-beta-surface) !important;
}

body.booom-beta-dark .booom-xd-faq-section__list .booom-faq__question {
	color: var(--booom-beta-yellow) !important;
}

body.booom-beta-dark .booom-xd-faq-section__list .booom-faq__question::after {
	color: var(--booom-beta-yellow) !important;
}

body.booom-beta-dark .booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"] {
	color: var(--booom-beta-yellow) !important;
}

body.booom-beta-dark .booom-xd-faq-section__list .booom-faq__answer,
body.booom-beta-dark .booom-xd-faq-section__list .booom-faq__answer p {
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-footer::before,
body.booom-beta-dark .booom-xd-home + .booom-xd-footer::before {
	background: var(--booom-beta-bg) !important;
	color: rgba(255, 213, 1, .22) !important;
}

body.booom-beta-dark .booom-xd-footer__conversion h2 {
	color: #0d0d0d !important;
}

body.booom-beta-dark .booom-xd-footer__conversion span,
body.booom-beta-dark .booom-xd-footer__conversion a {
	color: #0d0d0d !important;
}

body.booom-beta-dark .booom-xd-footer__main,
body.booom-beta-dark .booom-xd-footer__bottom {
	color: var(--booom-beta-white) !important;
}

body.booom-beta-dark .booom-xd-footer nav > p,
body.booom-beta-dark .booom-xd-footer__contact > p {
	color: var(--booom-beta-yellow) !important;
}

body.booom-beta-dark .booom-xd-footer nav a,
body.booom-beta-dark .booom-xd-footer__contact a,
body.booom-beta-dark .booom-xd-footer__contact span,
body.booom-beta-dark .booom-xd-footer__contact address,
body.booom-beta-dark .booom-xd-footer__bottom {
	color: var(--booom-beta-white) !important;
}
body .booom-home-solutions { padding-top: clamp(56px, 7vw, 100px); padding-bottom: clamp(56px, 7vw, 100px); }
body .booom-home-solutions .booom-service-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body .booom-home-solutions .booom-service-directory > a,
body .booom-service-related .booom-service-directory > a {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.35rem;
	border: 1px solid rgba(13,13,13,.14);
	border-radius: 14px;
	background: #fff;
	color: #161616;
	text-decoration: none;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body .booom-home-solutions .booom-service-directory > a:hover,
body .booom-home-solutions .booom-service-directory > a:focus-visible,
body .booom-service-related .booom-service-directory > a:hover,
body .booom-service-related .booom-service-directory > a:focus-visible {
	border-color: #ffc21f;
	box-shadow: 0 10px 26px rgba(13,13,13,.08);
	transform: translateY(-2px);
}
body .booom-home-solutions .booom-service-directory strong,
body .booom-service-related .booom-service-directory a { font-weight: 800; }
body .booom-home-solutions .booom-service-directory span { color: #5f5f5f; font-size: .92rem; line-height: 1.5; }
body .booom-service-related .booom-service-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {
	body .booom-home-solutions .booom-service-directory,
	body .booom-service-related .booom-service-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
	body .booom-home-solutions .booom-service-directory,
	body .booom-service-related .booom-service-directory { grid-template-columns: 1fr; }
}

/* 0.23.4 — preview artwork follows the portrait card crop from the approved XD. */
body .booom-xd-created-card__media {
	height: auto !important;
	aspect-ratio: 4 / 5 !important;
	background: transparent !important;
	overflow: hidden !important;
}
body .booom-xd-created-card__media img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center !important;
	transform: none !important;
}
body .booom-xd-created-card__media:hover img,
body .booom-xd-created-card__media:focus-visible img {
	transform: none !important;
}
@media (max-width: 768px) {
	body .booom-xd-created-card__media { height: auto !important; }
}

/* 0.23.5 — supplied case artwork replaces the old previews.
 * The source files are 575 × 230 (2.5:1). Keep that ratio in the media
 * frame so the complete composition remains visible without white bands or
 * vertical cropping. */
body .booom-xd-created-card__media {
	height: auto !important;
	aspect-ratio: 575 / 230 !important;
	background: transparent !important;
	overflow: hidden !important;
}
body .booom-xd-created-card__media img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
	border-radius: inherit !important;
	transform: none !important;
}
body .booom-xd-created-card__media:hover img,
body .booom-xd-created-card__media:focus-visible img {
	filter: saturate(1.04) !important;
	transform: none !important;
}
@media (max-width: 768px) {
	body .booom-xd-created-card__media { height: auto !important; aspect-ratio: 575 / 230 !important; }
}

/* 0.23.9 — restore the stable case slider viewport from 0.23.6 while
 * preserving the four institutional testimonials introduced in 0.23.8. */
body .booom-xd-created__cards {
	display: grid !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	grid-auto-flow: column !important;
	grid-template-columns: none !important;
	grid-auto-columns: minmax(280px, 31.5%) !important;
	align-items: start !important;
	gap: 18px !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	padding: 0 0 12px !important;
	scroll-snap-type: x mandatory !important;
	scroll-padding-left: 0 !important;
	overflow-anchor: none !important;
}
body .booom-xd-created__cards-wrap {
	min-width: 0 !important;
	max-width: 100% !important;
	overflow: hidden !important;
}
body .booom-xd-created-card {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	align-self: start !important;
}
body .booom-xd-created-card__media {
	height: auto !important;
	aspect-ratio: 575 / 230 !important;
	min-height: 0 !important;
	max-height: none !important;
	background: #fff !important;
	overflow: hidden !important;
	display: grid !important;
	place-items: center !important;
}
body .booom-xd-created-card__media img,
body .booom-xd-created-card__media:hover img,
body .booom-xd-created-card__media:focus-visible img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	object-fit: contain !important;
	object-position: center center !important;
	border-radius: inherit !important;
	filter: none !important;
	transform: none !important;
}
@media (max-width: 768px) {
	body .booom-xd-created__cards { grid-auto-columns: minmax(78vw, 1fr) !important; }
	body .booom-xd-created-card__media { height: auto !important; aspect-ratio: 575 / 230 !important; }
}

/* 0.23.10 — mobile cases and service-directory flow. Keep the supplied
 * artwork intact while letting the media height follow the card width. */
body .booom-xd-created__cards,
body .booom-xd-created-card,
body .booom-xd-created-card__media {
	box-sizing: border-box !important;
}
body .booom-xd-created-card__media {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	padding: 0 !important;
	line-height: 0 !important;
	overflow: hidden !important;
}
body .booom-xd-created-card__media img,
body .booom-xd-created-card__media:hover img,
body .booom-xd-created-card__media:focus-visible img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	max-height: none !important;
	aspect-ratio: 575 / 230 !important;
	object-fit: fill !important;
	object-position: center center !important;
	border-radius: inherit !important;
	transform: none !important;
}
body .booom-home-solutions .booom-service-directory > a,
body .booom-service-related .booom-service-directory > a {
	box-sizing: border-box !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 150px !important;
	justify-content: flex-start !important;
	align-items: stretch !important;
	gap: .65rem !important;
}
body .booom-home-solutions .booom-service-directory > a > strong,
body .booom-home-solutions .booom-service-directory > a > span,
body .booom-service-related .booom-service-directory > a > strong,
body .booom-service-related .booom-service-directory > a > span {
	display: block !important;
	min-width: 0 !important;
	margin: 0 !important;
	white-space: normal !important;
	overflow-wrap: anywhere !important;
	word-break: normal !important;
}
body .booom-home-solutions .booom-service-directory > a > strong,
body .booom-service-related .booom-service-directory > a > strong {
	line-height: 1.25 !important;
}
body .booom-home-solutions .booom-service-directory > a > span,
body .booom-service-related .booom-service-directory > a > span {
	line-height: 1.5 !important;
}
@media (max-width: 768px) {
	body .booom-xd-created__cards {
		grid-auto-columns: minmax(0, 100%) !important;
		gap: 16px !important;
		padding-right: 0 !important;
	}
	body .booom-xd-created-card { width: 100% !important; }
	body .booom-home-solutions .booom-service-directory > a,
	body .booom-service-related .booom-service-directory > a {
		min-height: 0 !important;
		padding: 1.15rem !important;
		gap: .6rem !important;
	}
}

/* 0.23.12-beta — mobile cases carousel.
 * The mobile layout uses one complete case per viewport. This final layer
 * intentionally wins over the historical grid/portrait rules above while
 * leaving the desktop presentation unchanged. */
@media (max-width: 768px) {
	body.booom-home-frame #cases .booom-xd-created__cards-wrap {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		overflow: hidden !important;
	}
	body.booom-home-frame #cases [data-booom-cases-slider] {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: flex-start !important;
		gap: 16px !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 0 10px !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		overflow-anchor: none !important;
		overscroll-behavior-x: contain;
		scroll-padding-inline: 0 !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		touch-action: pan-x;
	}
	body.booom-home-frame #cases [data-booom-cases-slider]::-webkit-scrollbar { display: none; }
	body.booom-home-frame #cases .booom-xd-created-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		scroll-snap-align: start !important;
	}
	body.booom-home-frame #cases .booom-xd-created-card__media {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		aspect-ratio: 575 / 230 !important;
		padding: 0 !important;
		background: #fff !important;
		line-height: 0 !important;
	}
	body.booom-home-frame #cases .booom-xd-created-card__media img,
	body.booom-home-frame #cases .booom-xd-created-card__media:hover img,
	body.booom-home-frame #cases .booom-xd-created-card__media:focus-visible img {
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		min-width: 0 !important;
		min-height: 0 !important;
		max-width: 100% !important;
		max-height: 100% !important;
		object-fit: contain !important;
		object-position: center !important;
		transform: none !important;
		filter: none !important;
	}
	body.booom-home-frame #cases .booom-xd-created-card > p {
		margin-right: 0 !important;
		margin-left: 0 !important;
		line-height: 1.4 !important;
	}
	body.booom-home-frame #cases .booom-xd-created-card > p:first-of-type {
		margin-top: 14px !important;
		margin-bottom: 6px !important;
		font-size: 1rem !important;
		font-weight: 800 !important;
	}
	body.booom-home-frame #cases .booom-xd-created-card__disclaimer {
		max-width: none !important;
		margin-top: 0 !important;
		font-size: .94rem !important;
		line-height: 1.5 !important;
	}
	body.booom-home-frame #cases .booom-xd-created__controls {
		position: relative !important;
		z-index: 2 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 12px !important;
		width: 100% !important;
		margin: 16px auto 0 !important;
	}
}

/* 0.23.13-beta — restore the original quiet background wordmarks.
 * These oversized labels are decorative layers behind the content, not
 * editorial headings. Keep them visible but translucent on the dark beta. */
body.booom-beta-dark .booom-xd-created__header > span {
	color: rgba(255, 213, 1, .16) !important;
}

body.booom-beta-dark .booom-xd-home-blog::after {
	color: rgba(255, 213, 1, .16) !important;
}

body.booom-beta-dark .booom-xd-footer::before,
body.booom-beta-dark .booom-xd-home + .booom-xd-footer::before {
	color: rgba(255, 213, 1, .16) !important;
}

/* Client logos are real assets, not background decoration. Restore their
 * contrast against the beta's black strip while keeping the grayscale look. */
body.booom-beta-dark .booom-xd-client-logos img {
	opacity: 1 !important;
	filter: grayscale(1) brightness(2.4) contrast(1.08) !important;
}

/* 0.23.14-beta — client logos in the light monochrome tone from the reference. */
body.booom-beta-dark .booom-xd-client-logos img,
body.booom-beta-dark .booom-xd-client-logos img:hover,
body.booom-beta-dark .booom-xd-client-logos img:focus-visible {
	opacity: 1 !important;
	/* Maps every visible logo pixel to a consistent light gray (#D6D6D6). */
	filter: brightness(0) saturate(100%) invert(84%) !important;
}

/* 0.23.15-beta — logos sit directly on the black strip without rectangular tiles. */
body.booom-beta-dark .booom-xd-client-logos__track figure,
body.booom-beta-dark .booom-xd-client-logos__track figure:hover {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* 0.23.16-beta — absolutely no logo tile/container. The assets already
 * carry alpha transparency; every wrapper must remain visually transparent. */
body.booom-beta-dark .booom-xd-client-logos,
body.booom-beta-dark .booom-xd-client-logos__viewport,
body.booom-beta-dark .booom-xd-client-logos__track,
body.booom-beta-dark .booom-xd-client-logos__group,
body.booom-beta-dark .booom-xd-client-logos__track figure,
body.booom-beta-dark .booom-xd-client-logos__track figure::before,
body.booom-beta-dark .booom-xd-client-logos__track figure::after,
body.booom-beta-dark .booom-xd-client-logos__track figure img {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.booom-beta-dark .booom-xd-client-logos__track figure {
	padding: 0 !important;
	outline: 0 !important;
	backdrop-filter: none !important;
}

/* 0.23.18-beta — visible case carousel controls on the dark Home. */
body.booom-beta-dark .booom-xd-created__control {
	border-bottom-color: rgba(255, 213, 1, .82) !important;
	color: #FFD501 !important;
}
body.booom-beta-dark .booom-xd-created__control:hover,
body.booom-beta-dark .booom-xd-created__control:focus-visible {
	border-bottom-color: #FFD501 !important;
	color: #FFFFFF !important;
}
body.booom-beta-dark .booom-xd-created__control-line {
	background: rgba(255, 213, 1, .72) !important;
}
