/*
 * BOOOM Criative — Adobe XD design system, v0.19.9.
 * The exported artboards use a restrained off-white / black / yellow system.
 */
:root {
	--booom-xd-paper: #efe7e1;
	--booom-xd-light: #faf6f2;
	--booom-xd-ink: #0b0b0b;
	--booom-xd-muted: #6a6863;
	--booom-xd-line: rgba(11, 11, 11, .16);
	--booom-xd-yellow: #fec31f;
	--booom-xd-radius: 10px;
	--booom-xd-container: 1360px;
}

html { scroll-behavior: smooth; }
body {
	background: var(--booom-xd-paper);
	color: var(--booom-xd-ink);
	font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
}
body,
button,
input,
select,
textarea { font-family: inherit; }
body .site.grid-container,
body .site-content,
body .content-area,
body .inside-article { max-width: none; padding: 0; margin: 0; }
.grid-container {
	width: min(100% - 32px, var(--booom-xd-container));
	max-width: var(--booom-xd-container);
	margin-inline: auto;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.booom-xd-band { padding: clamp(84px, 9vw, 144px) 0; }
.booom-xd-band--light { background: var(--booom-xd-light); }
.booom-xd-band--dark { background: var(--booom-xd-ink); color: #fff; }
.booom-xd-band--dark h1,
.booom-xd-band--dark h2,
.booom-xd-band--dark h3 { color: #fff; }
.booom-xd-kicker {
	margin: 0 0 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.booom-xd-kicker::before {
	content: "";
	display: inline-block;
	width: 27px;
	height: 3px;
	margin: 0 11px 3px 0;
	background: var(--booom-xd-yellow);
}
.booom-xd-heading { max-width: 840px; margin-bottom: 54px; }
.booom-xd-heading h2,
.booom-xd-split h2,
.booom-xd-page-hero h1,
.booom-xd-contact-hero h1,
.booom-xd-case-hero h1 {
	margin: 0;
	font-size: clamp(42px, 5.25vw, 78px);
	font-weight: 600;
	letter-spacing: -.055em;
	line-height: .98;
}
.booom-xd-heading > p:last-child,
.booom-xd-split__copy,
.booom-xd-heading--split > p {
	color: var(--booom-xd-muted);
	font-size: clamp(16px, 1.45vw, 20px);
}
.booom-xd-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
	gap: clamp(50px, 10vw, 150px);
	align-items: end;
	max-width: none;
}
.booom-xd-split {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
	gap: clamp(70px, 11vw, 160px);
	align-items: start;
}
.booom-xd-split__copy p:first-child { margin-top: 52px; }
.booom-xd-link {
	display: inline-block;
	margin-top: 14px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 6px;
}
.booom-xd-button,
.booom-xd-final-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 30px;
	border-radius: 999px;
	background: var(--booom-xd-yellow);
	color: var(--booom-xd-ink);
	font-weight: 650;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}
.booom-xd-button:hover,
.booom-xd-final-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 0, 0, .14); }

/* Header mirrors the XD artboard: compact, light and deliberately quiet. */
.booom-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(250, 251, 249, .94);
	border-bottom: 1px solid rgba(11, 11, 11, .08);
	backdrop-filter: blur(16px);
}
.admin-bar .booom-site-header { top: 32px; }
.booom-header-frame { padding: 0; }
.booom-header-inner {
	display: grid;
	grid-template-columns: 184px minmax(0, 1fr) 48px;
	align-items: center;
	min-height: 86px;
}
.booom-site-brand { display: inline-flex; width: 154px; align-items: center; }
.booom-site-brand img { width: 154px; height: auto; }
.booom-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 34px; }
.booom-primary-menu { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 42px); margin: 0; list-style: none; }
.booom-primary-menu > li { position: relative; margin: 0; }
.booom-primary-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 4px 0;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}
.booom-primary-menu > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 7px;
	height: 2px;
	background: var(--booom-xd-yellow);
	transition: right .2s ease;
}
.booom-primary-menu > li > a:hover::after,
.booom-primary-menu > li.current-menu-item > a::after,
.booom-primary-menu > li.current-menu-ancestor > a::after { right: 0; }
.booom-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 205px;
	min-height: 46px;
	padding: 10px 26px;
	border-radius: 999px;
	background: var(--booom-xd-yellow);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}
.booom-primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: -24px;
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	gap: 4px 30px;
	width: 540px;
	margin: 0;
	padding: 26px;
	border: 1px solid rgba(11, 11, 11, .1);
	border-radius: 4px;
	background: var(--booom-xd-light);
	box-shadow: 0 22px 50px rgba(0, 0, 0, .13);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.booom-primary-menu .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.booom-primary-menu li:hover > .sub-menu,
.booom-primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.booom-primary-menu .sub-menu a {
	display: block;
	padding: 11px 12px;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 550;
	text-decoration: none;
}
.booom-primary-menu .sub-menu a:hover { background: var(--booom-xd-paper); }
.booom-menu-toggle { display: none; }

/* XD home hero. */
.booom-xd-home { overflow: hidden; }
.booom-xd-hero { padding-top: 14px; }
.booom-xd-hero__slides {
	position: relative;
	height: clamp(570px, 66vw, 730px);
	max-height: calc(100vh - 116px);
	min-height: 560px;
	overflow: hidden;
	border-radius: var(--booom-xd-radius);
	background: #171717;
}
.booom-xd-hero__slide,
.booom-xd-hero__slide img { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; }
.booom-xd-hero__slide img { object-fit: cover; filter: saturate(.72) brightness(.7); }
.booom-xd-hero__slides::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .2) 58%, rgba(0, 0, 0, .05) 100%);
}
.booom-xd-hero__overlay {
	position: absolute;
	z-index: 2;
	left: clamp(34px, 7vw, 94px);
	bottom: clamp(50px, 8vw, 92px);
	color: #fff;
}
.booom-xd-hero__overlay h1 { margin: 0 0 22px; color: #fff; font-size: 13px; font-weight: 550; letter-spacing: .12em; text-transform: uppercase; }
.booom-xd-hero__overlay p { margin: 0; font-size: clamp(62px, 8.2vw, 112px); font-weight: 600; letter-spacing: -.065em; line-height: .82; }
.booom-xd-hero__overlay a { display: inline-block; margin-top: 36px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 600; text-decoration: none; }
.booom-xd-hero__pagination { position: absolute; z-index: 3; right: 25px; top: 50%; display: grid; gap: 11px; transform: translateY(-50%); }
.booom-xd-hero__pagination button { width: 9px; height: 9px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; }
.booom-xd-hero__pagination button.is-active { background: var(--booom-xd-yellow); border-color: var(--booom-xd-yellow); }
.booom-xd-clients { padding: 34px 0 42px; }
.booom-xd-clients__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; }
.booom-xd-clients p { max-width: 265px; margin: 0; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.booom-xd-clients__inner > div { display: flex; justify-content: space-between; gap: 30px; font-size: 14px; font-weight: 750; }
.booom-xd-intro { padding-top: 110px; }
.booom-xd-wide-media { margin-top: clamp(54px, 8vw, 104px); }
.booom-xd-wide-media img { width: 100%; height: clamp(380px, 49vw, 650px); object-fit: cover; border-radius: var(--booom-xd-radius); }
.booom-xd-wide-media--short img { height: clamp(280px, 34vw, 430px); }

/* Cards, services and cases. */
.booom-xd-card-grid { display: grid; gap: 18px; }
.booom-xd-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.booom-xd-problem-card { position: relative; min-height: 480px; padding: 0 28px 32px; overflow: hidden; border-radius: 6px; background: var(--booom-xd-paper); }
.booom-xd-problem-card figure { height: 240px; margin: 0 -28px 28px; overflow: hidden; }
.booom-xd-problem-card img { width: 100%; height: 100%; object-fit: cover; }
.booom-xd-problem-card > span { display: block; margin-bottom: 35px; font-size: 12px; font-weight: 700; }
.booom-xd-problem-card h3 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.035em; line-height: 1.05; }
.booom-xd-problem-card p { margin: 0; color: var(--booom-xd-muted); }
.booom-xd-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--booom-xd-line); }
.booom-xd-service-grid > a { position: relative; min-height: 260px; padding: 28px; border-right: 1px solid var(--booom-xd-line); border-bottom: 1px solid var(--booom-xd-line); text-decoration: none; transition: background .2s ease, color .2s ease; }
.booom-xd-service-grid > a:nth-child(3n + 1) { border-left: 1px solid var(--booom-xd-line); }
.booom-xd-service-grid span { font-size: 12px; font-weight: 700; }
.booom-xd-service-grid h3 { margin: 62px 0 12px; font-size: 25px; letter-spacing: -.035em; line-height: 1.05; }
.booom-xd-service-grid p { max-width: 290px; margin: 0; color: var(--booom-xd-muted); font-size: 14px; }
.booom-xd-service-grid i { position: absolute; right: 24px; top: 23px; font-style: normal; font-size: 22px; }
.booom-xd-service-grid > a:hover { background: var(--booom-xd-yellow); }
.booom-xd-service-grid > a:hover p { color: var(--booom-xd-ink); }
.booom-xd-case-feature { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); min-height: 580px; overflow: hidden; border-radius: var(--booom-xd-radius); background: #191919; }
.booom-xd-case-feature__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(38px, 6vw, 78px); }
.booom-xd-case-feature__copy h2 { margin: 0 0 20px; font-size: clamp(46px, 5vw, 72px); letter-spacing: -.055em; line-height: .96; }
.booom-xd-case-feature__copy p:not(.booom-xd-kicker) { color: #a5a5a5; }
.booom-xd-case-feature__copy .booom-xd-button { margin-top: 22px; }
.booom-xd-case-feature figure { margin: 0; }
.booom-xd-case-feature figure img { width: 100%; height: 100%; object-fit: cover; }
.booom-xd-case-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
.booom-xd-case-list a { display: grid; grid-template-columns: 34px 1fr; padding: 24px 0; border-bottom: 1px solid #363636; color: #fff; text-decoration: none; }
.booom-xd-case-list a + a { margin-left: 28px; }
.booom-xd-case-list span { grid-row: 1 / 3; color: var(--booom-xd-yellow); font-size: 11px; }
.booom-xd-case-list strong { font-size: 16px; }
.booom-xd-case-list small { color: #7f7f7f; }

/* Home cases: Notion defines content, sequence and imagery; XD defines finish. */
.booom-xd-home-cases {
	padding: clamp(96px, 10vw, 148px) 0;
	overflow: hidden;
	background: var(--booom-xd-paper);
}
.booom-xd-home-cases__layout {
	display: grid;
	grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
	gap: clamp(62px, 8vw, 118px);
	align-items: center;
}
.booom-xd-home-cases__copy h2 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(51px, 6.1vw, 84px);
	font-weight: 500;
	letter-spacing: -.06em;
	line-height: .94;
}
.booom-xd-home-cases__copy .booom-xd-home-cases__lead {
	max-width: 560px;
	margin: 34px 0 0;
	color: var(--booom-xd-ink);
	font-size: clamp(21px, 2.2vw, 30px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.2;
}
.booom-xd-home-cases__copy > p:not(.booom-xd-kicker):not(.booom-xd-home-cases__lead) {
	max-width: 570px;
	margin: 24px 0 0;
	color: var(--booom-xd-muted);
	font-size: 15px;
	line-height: 1.72;
}
.booom-xd-home-cases__copy .booom-xd-button { margin-top: 34px; }
.booom-xd-home-cases__portraits {
	position: relative;
	display: grid;
	grid-template-columns: 1.06fr .94fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 14px;
	min-height: clamp(580px, 54vw, 720px);
}
.booom-xd-home-cases__portrait {
	position: relative;
	z-index: 1;
	margin: 0;
	overflow: hidden;
	border-radius: 6px;
	background: #d8d5cf;
}
.booom-xd-home-cases__portrait--one { grid-row: 1 / 3; transform: translateY(34px); }
.booom-xd-home-cases__portrait--two { grid-column: 2; grid-row: 1; }
.booom-xd-home-cases__portrait--three { grid-column: 2; grid-row: 2; }
.booom-xd-home-cases__portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.booom-xd-home-cases__portraits > span {
	position: absolute;
	right: -34px;
	bottom: 30px;
	z-index: 2;
	display: grid;
	width: 118px;
	height: 118px;
	place-items: center;
	border-radius: 50%;
	background: var(--booom-xd-yellow);
	color: var(--booom-xd-ink);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .09em;
	line-height: 1.2;
	text-align: center;
	transform: rotate(8deg);
}
.booom-xd-home-cases__index {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(72px, 8vw, 110px);
	border-top: 1px solid var(--booom-xd-line);
}
.booom-xd-home-cases__index a {
	position: relative;
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 5px 13px;
	min-width: 0;
	padding: 28px 42px 28px 0;
	border-bottom: 1px solid var(--booom-xd-line);
	text-decoration: none;
}
.booom-xd-home-cases__index a + a { padding-left: 28px; border-left: 1px solid var(--booom-xd-line); }
.booom-xd-home-cases__index span { grid-row: 1 / 3; color: var(--booom-xd-muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.booom-xd-home-cases__index strong { font-size: 17px; font-weight: 650; }
.booom-xd-home-cases__index small { color: var(--booom-xd-muted); font-size: 12px; }
.booom-xd-home-cases__index i { position: absolute; top: 28px; right: 18px; font-size: 18px; font-style: normal; }
.booom-xd-home-cases__index a:hover strong { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }

/* New case introduction requested after v0.18.0; previous approved sections remain unchanged. */
.booom-xd-created { overflow: hidden; }
.booom-xd-created__header {
	position: relative;
	z-index: 1;
	min-height: clamp(160px, 19vw, 238px);
}
.booom-xd-created__header h2 {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0;
	font-size: clamp(52px, 6.3vw, 86px);
	font-weight: 500;
	letter-spacing: -.06em;
	line-height: .94;
}
.booom-xd-created__header > span {
	position: absolute;
	z-index: 1;
	right: -2vw;
	bottom: -22px;
	color: rgba(254, 195, 31, .16);
	font-size: clamp(118px, 17vw, 232px);
	font-weight: 300;
	letter-spacing: -.075em;
	line-height: .75;
	white-space: nowrap;
	pointer-events: none;
}
.booom-xd-created__layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(220px, .7fr) minmax(0, 2.3fr);
	gap: clamp(45px, 6vw, 82px);
	align-items: end;
}
.booom-xd-created__intro { padding: 0 0 26px 18px; }
.booom-xd-created__intro p {
	margin: 0;
	color: var(--booom-xd-muted);
	font-size: 15px;
	line-height: 1.72;
}
.booom-xd-created__intro .booom-xd-button {
	margin-top: 34px;
	box-shadow: 0 9px 30px rgba(254, 195, 31, .4);
	font-size: 12px;
	text-transform: uppercase;
}
.booom-xd-created__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.booom-xd-created-card { min-width: 0; }
.booom-xd-created-card > a {
	display: block;
	overflow: hidden;
	border-radius: 7px;
	background: #d8d5cf;
}
.booom-xd-created-card img {
	width: 100%;
	height: clamp(330px, 31vw, 455px);
	object-fit: cover;
	transition: transform .4s ease;
}
.booom-xd-created-card > a:hover img { transform: scale(1.025); }
.booom-xd-created-card > p {
	margin: 16px 10px 5px;
	color: var(--booom-xd-muted);
	font-size: 12px;
}
.booom-xd-created-card h3 {
	margin: 0 10px;
	font-size: clamp(20px, 1.8vw, 27px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.08;
}
.booom-xd-created-card h3 a { text-decoration: none; }

/* Office, process, video, FAQ. */
.booom-xd-office__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 30%); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: thin; }
.booom-xd-office__track figure { height: 500px; margin: 0; overflow: hidden; border-radius: 6px; scroll-snap-align: start; }
.booom-xd-office__track img { width: 100%; height: 100%; object-fit: cover; }
.booom-xd-process ol { margin: 0; padding: 0; list-style: none; }
.booom-xd-process li { display: grid; grid-template-columns: 50px 1fr; padding: 22px 0; border-bottom: 1px solid var(--booom-xd-line); }
.booom-xd-process li span { font-size: 12px; font-weight: 700; }
.booom-xd-process li strong { font-size: 18px; }
.booom-xd-process li p { margin: 3px 0 0; color: var(--booom-xd-muted); }
.booom-xd-video__player { position: relative; display: block; width: 100%; aspect-ratio: 16 / 8.2; padding: 0; overflow: hidden; border: 0; border-radius: var(--booom-xd-radius); background: #111; cursor: pointer; }
.booom-xd-video__player img,
.booom-xd-video__player iframe { width: 100%; height: 100%; border: 0; object-fit: cover; filter: brightness(.72); }
.booom-xd-video__player > span { position: absolute; inset: 50% auto auto 50%; display: grid; width: 122px; height: 122px; place-items: center; border-radius: 50%; background: rgba(236, 233, 227, .72); color: #fff; font-size: 30px; transform: translate(-50%, -50%); backdrop-filter: blur(12px); }
.booom-faq__item { border-bottom: 1px solid var(--booom-xd-line); }
.booom-faq__question { position: relative; width: 100%; min-height: 74px; padding: 20px 58px 20px 0; border: 0; background: transparent; color: var(--booom-xd-ink); font-size: 17px; font-weight: 650; text-align: left; cursor: pointer; }
.booom-faq__question::after { content: "+"; position: absolute; right: 7px; top: 50%; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--booom-xd-line); border-radius: 50%; transform: translateY(-50%); }
.booom-faq__question[aria-expanded="true"]::after { content: "−"; background: var(--booom-xd-yellow); }
.booom-faq__answer { padding: 0 56px 22px 0; color: var(--booom-xd-muted); }
.booom-xd-final-cta { padding: 70px 0; background: var(--booom-xd-yellow); }
.booom-xd-final-cta .grid-container { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.booom-xd-final-cta p { margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.booom-xd-final-cta h2 { max-width: 780px; margin: 0; font-size: clamp(42px, 5vw, 68px); letter-spacing: -.055em; line-height: .95; }
.booom-xd-final-cta a { flex: 0 0 auto; background: var(--booom-xd-ink); color: #fff; }

/* Home blog preview; archive tools live on /dicas-de-marketing/. */
.booom-xd-home-blog {
	padding: clamp(88px, 9vw, 132px) 0 clamp(105px, 11vw, 158px);
	background: var(--booom-xd-light);
}
.booom-xd-home-blog__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 52px;
	align-items: end;
	margin-bottom: clamp(48px, 6vw, 76px);
	padding-bottom: 38px;
	border-bottom: 1px solid var(--booom-xd-line);
}
.booom-xd-home-blog__header h2 {
	max-width: 880px;
	margin: 0;
	font-size: clamp(48px, 5.7vw, 76px);
	font-weight: 500;
	letter-spacing: -.055em;
	line-height: .98;
}
.booom-xd-home-blog__header > a {
	display: inline-flex;
	align-items: center;
	padding-bottom: 5px;
	border-bottom: 1px solid currentColor;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-decoration: none;
	text-transform: uppercase;
}
.booom-xd-home-blog__header > a span { margin-left: 5px; font-size: 15px; }
.booom-xd-home-blog__feature {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	gap: clamp(48px, 7vw, 88px);
	align-items: center;
}
.booom-xd-home-blog__media {
	display: block;
	overflow: hidden;
	min-height: 410px;
	border-radius: 8px;
	background: var(--booom-xd-paper);
}
.booom-xd-home-blog__media img {
	width: 100%;
	height: 100%;
	min-height: 410px;
	aspect-ratio: 1.43 / 1;
	object-fit: cover;
	transition: transform .45s ease;
}
.booom-xd-home-blog__media:hover img { transform: scale(1.018); }
.booom-xd-home-blog__media--notion img { object-position: left center; }
.booom-xd-home-blog__copy { max-width: 540px; }
.booom-xd-home-blog__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-bottom: 22px;
	color: var(--booom-xd-muted);
	font-size: 11px;
}
.booom-xd-home-blog__meta span { display: inline-flex; align-items: center; gap: 7px; }
.booom-xd-home-blog__meta svg { width: 15px; height: 15px; flex: 0 0 15px; }
.booom-xd-home-blog__copy h3 {
	margin: 0;
	font-size: clamp(32px, 3.2vw, 48px);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: 1.06;
}
.booom-xd-home-blog__copy h3 a { text-decoration: none; }
.booom-xd-home-blog__copy > p {
	margin: 24px 0 0;
	color: var(--booom-xd-muted);
	font-size: 15px;
	line-height: 1.72;
}
.booom-xd-home-blog__read-more {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 31px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-decoration: none;
	text-transform: uppercase;
}
.booom-xd-home-blog__read-more:hover { text-decoration: underline; text-underline-offset: 6px; }

/* Curated preview of the three real BOOOM articles. */
.booom-xd-home-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
.booom-xd-blog-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--booom-xd-line);
	border-radius: 8px;
	background: var(--booom-xd-light);
	transition: transform .25s ease, box-shadow .25s ease;
}
.booom-xd-blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(11, 11, 11, .08); }
.booom-xd-blog-card__media {
	display: block;
	overflow: hidden;
	border-radius: 7px 7px 0 0;
	background: var(--booom-xd-paper);
}
.booom-xd-blog-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform .4s ease;
}
.booom-xd-blog-card__media:hover img { transform: scale(1.025); }
.booom-xd-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 24px 27px;
}
.booom-xd-blog-card__meta {
	margin: 0 0 13px;
	color: var(--booom-xd-muted);
	font-size: 11px;
	line-height: 1.4;
}
.booom-xd-blog-card__meta span { margin: 0 4px; color: var(--booom-xd-yellow); }
.booom-xd-blog-card h3 {
	margin: 0;
	font-size: clamp(24px, 2.2vw, 34px);
	font-weight: 550;
	letter-spacing: -.045em;
	line-height: 1.03;
}
.booom-xd-blog-card h3 a { text-decoration: none; }
.booom-xd-blog-card__body > p:not(.booom-xd-blog-card__meta) {
	margin: 20px 0 0;
	color: var(--booom-xd-muted);
	font-size: 14px;
	line-height: 1.62;
}
.booom-xd-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	padding-top: 25px;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .04em;
	text-decoration: none;
	text-transform: uppercase;
}
.booom-xd-blog-card__link:hover { text-decoration: underline; text-underline-offset: 5px; }

/* Approved editorial composition restored from v0.18.0. */
.booom-xd-pain {
	overflow: hidden;
	background: var(--booom-xd-paper);
}
.booom-xd-pain__header,
.booom-xd-gallery__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: clamp(44px, 6vw, 72px);
}
.booom-xd-pain__header h2,
.booom-xd-gallery__header h2,
.booom-xd-faq-section__header h2,
.booom-xd-about-home__copy h2,
.booom-xd-partnerships__copy h2 {
	margin: 0;
	font-size: clamp(48px, 5.8vw, 78px);
	font-weight: 500;
	letter-spacing: -.058em;
	line-height: .96;
}
.booom-xd-pain__controls,
.booom-xd-gallery__controls {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 0 0 auto;
}
.booom-xd-pain__controls button,
.booom-xd-gallery__controls button {
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--booom-xd-line);
	border-radius: 50%;
	background: transparent;
	color: var(--booom-xd-ink);
	font-size: 19px;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.booom-xd-pain__controls button:hover,
.booom-xd-gallery__controls button:hover {
	border-color: var(--booom-xd-yellow);
	background: var(--booom-xd-yellow);
	transform: translateY(-2px);
}
.booom-xd-pain__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(220px, 1fr);
	gap: 18px;
	overflow-x: auto;
	padding: 0 0 18px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}
.booom-xd-pain-card {
	position: relative;
	display: block;
	height: 390px;
	overflow: hidden;
	border-radius: 7px;
	background: #171717;
	color: #fff;
	scroll-snap-align: start;
	text-decoration: none;
}
.booom-xd-pain-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .04) 20%, rgba(0, 0, 0, .82) 100%);
	content: "";
}
.booom-xd-pain-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.78);
	transition: transform .45s ease, filter .45s ease;
}
.booom-xd-pain-card span {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
	font-size: clamp(18px, 1.55vw, 22px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.18;
}
.booom-xd-pain-card i {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .48);
	border-radius: 50%;
	font-style: normal;
	opacity: 0;
	transform: translateY(7px);
	transition: opacity .25s ease, transform .25s ease;
}
.booom-xd-pain-card:hover img { filter: saturate(1); transform: scale(1.025); }
.booom-xd-pain-card:hover i { opacity: 1; transform: translateY(0); }

.booom-xd-partnerships { background: var(--booom-xd-paper); }
.booom-xd-partnerships__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr);
	gap: clamp(70px, 9vw, 125px);
	align-items: center;
}
.booom-xd-partnerships__testimonials { display: grid; gap: 18px; }
.booom-xd-testimonial {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	grid-template-rows: 1fr auto;
	gap: 7px 25px;
	min-height: 146px;
	padding: 22px 28px 22px 22px;
	border: 1px solid rgba(11, 11, 11, .045);
	border-radius: 26px;
	background: var(--booom-xd-light);
	box-shadow: 0 13px 38px rgba(11, 11, 11, .035);
	color: var(--booom-xd-ink);
	text-decoration: none;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.booom-xd-testimonial:hover {
	border-color: rgba(254, 195, 31, .8);
	box-shadow: 0 18px 44px rgba(11, 11, 11, .07);
	transform: translateX(4px);
}
.booom-xd-testimonial img {
	grid-row: 1 / 3;
	align-self: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	object-fit: cover;
}
.booom-xd-testimonial > span {
	align-self: end;
	color: var(--booom-xd-muted);
	font-size: 13px;
	line-height: 1.55;
}
.booom-xd-testimonial strong {
	font-size: 12px;
	font-weight: 750;
	line-height: 1.35;
}
.booom-xd-testimonial small { font-size: inherit; font-weight: 500; }
.booom-xd-partnerships__copy { max-width: 510px; }
.booom-xd-partnerships__copy h2 { font-size: clamp(52px, 5.8vw, 80px); }
.booom-xd-partnerships__copy > p:not(.booom-xd-kicker) {
	margin: 28px 0 0;
	color: var(--booom-xd-muted);
	font-size: 16px;
	line-height: 1.65;
}
.booom-xd-partnerships__copy .booom-xd-button { margin-top: 34px; }
.booom-xd-partnerships__case-links {
	display: grid;
	margin-top: 38px;
	border-top: 1px solid var(--booom-xd-line);
}
.booom-xd-partnerships__case-links a {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid var(--booom-xd-line);
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
}
.booom-xd-partnerships__case-links a:hover { color: #b58100; }

.booom-xd-gallery { overflow: hidden; }
.booom-xd-gallery__header > div:first-child { max-width: 820px; }
.booom-xd-gallery__controls > p {
	margin: 0 10px 0 0;
	color: var(--booom-xd-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .09em;
}
.booom-xd-gallery__controls > p span { color: var(--booom-xd-ink); }
.booom-xd-gallery__track.booom-office-carousel__track {
	grid-auto-columns: minmax(260px, 28%);
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 18px;
	scrollbar-width: thin;
}
.booom-xd-gallery__track.booom-office-carousel__track figure {
	border: 0;
	border-radius: 7px;
	box-shadow: none;
}
.booom-xd-gallery__track.booom-office-carousel__track img {
	height: 470px;
	aspect-ratio: auto;
	object-fit: cover;
}
.booom-xd-gallery__track.booom-office-carousel__track figcaption {
	padding: 13px 2px 0;
	background: transparent;
	font-size: 12px;
	font-weight: 600;
}

.booom-xd-faq-section { background: var(--booom-xd-paper); }
.booom-xd-faq-section__header {
	max-width: 940px;
	margin-bottom: clamp(52px, 7vw, 84px);
}
.booom-xd-faq-section__list { display: grid; gap: 12px; }
.booom-xd-faq-section__list .booom-faq__item {
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	background: var(--booom-xd-light);
}
.booom-xd-faq-section__list .booom-faq__question {
	min-height: 96px;
	padding: 27px 88px 27px 42px;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 500;
}
.booom-xd-faq-section__list .booom-faq__question::after {
	right: 30px;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-size: 30px;
	font-weight: 300;
}
.booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"] { color: #d89d00; }
.booom-xd-faq-section__list .booom-faq__question[aria-expanded="true"]::after { background: transparent; }
.booom-xd-faq-section__list .booom-faq__answer {
	padding: 0 88px 30px 42px;
	font-size: 15px;
}
.booom-xd-faq-section__list .booom-faq__answer p { max-width: 900px; margin: 0; }

.booom-xd-about-home { overflow: hidden; }
.booom-xd-about-home__layout {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
	gap: clamp(72px, 10vw, 140px);
	align-items: center;
}
.booom-xd-about-home__media {
	position: relative;
	min-height: 660px;
}
.booom-xd-about-home__media figure { margin: 0; overflow: hidden; border-radius: 7px; }
.booom-xd-about-home__media figure:first-child {
	position: absolute;
	inset: 0 18% 8% 0;
}
.booom-xd-about-home__media figure:last-child {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 48%;
	height: 37%;
	border: 8px solid var(--booom-xd-light);
}
.booom-xd-about-home__media img { width: 100%; height: 100%; object-fit: cover; }
.booom-xd-about-home__copy { position: relative; z-index: 1; }
.booom-xd-about-home__copy > span {
	position: absolute;
	top: -105px;
	right: -44px;
	z-index: -1;
	color: rgba(254, 195, 31, .13);
	font-size: clamp(120px, 16vw, 230px);
	font-weight: 500;
	letter-spacing: -.08em;
	line-height: 1;
	pointer-events: none;
}
.booom-xd-about-home__copy h2 { font-size: clamp(45px, 4.9vw, 68px); }
.booom-xd-about-home__copy p {
	max-width: 650px;
	margin: 24px 0 0;
	color: var(--booom-xd-muted);
	font-size: 15px;
	line-height: 1.7;
}
.booom-xd-about-home__copy .booom-xd-button { margin-top: 32px; }

.booom-xd-home-blog__empty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 42px;
	border: 1px solid var(--booom-xd-line);
	border-radius: 8px;
	background: var(--booom-xd-paper);
}
.booom-xd-home-blog__empty p { max-width: 620px; margin: 0; color: var(--booom-xd-muted); }

@media (max-width: 900px) {
	.booom-xd-created__layout { grid-template-columns: 1fr; align-items: start; }
	.booom-xd-created__intro { max-width: 610px; padding-left: 0; }
	.booom-xd-created__cards { margin-top: 8px; }
	.booom-xd-created-card img { height: 390px; }
	.booom-xd-partnerships__layout,
	.booom-xd-about-home__layout { grid-template-columns: 1fr; gap: 62px; }
	.booom-xd-partnerships__copy { grid-row: 1; max-width: 760px; }
	.booom-xd-partnerships__testimonials { grid-row: 2; }
	.booom-xd-gallery__track.booom-office-carousel__track { grid-auto-columns: 44%; }
	.booom-xd-about-home__media { min-height: 620px; }
	.booom-xd-home-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
	.booom-xd-created__header { min-height: 148px; }
	.booom-xd-created__header h2 { font-size: clamp(45px, 13vw, 62px); }
	.booom-xd-created__header > span { right: -16px; bottom: -7px; font-size: 94px; }
	.booom-xd-created__layout { gap: 36px; }
	.booom-xd-created__cards { grid-template-columns: 1fr; gap: 34px; }
	.booom-xd-created-card img { height: auto; aspect-ratio: 16 / 10; }
	.booom-xd-created-card h3 { font-size: 27px; }
	.booom-xd-pain__header,
	.booom-xd-gallery__header { align-items: flex-start; flex-direction: column; }
	.booom-xd-pain__header h2,
	.booom-xd-gallery__header h2,
	.booom-xd-faq-section__header h2,
	.booom-xd-partnerships__copy h2 { font-size: clamp(43px, 13vw, 59px); }
	.booom-xd-pain__controls,
	.booom-xd-gallery__controls { align-self: flex-end; }
	.booom-xd-pain__track { grid-auto-columns: 82%; }
	.booom-xd-pain-card { height: 410px; }
	.booom-xd-testimonial {
		grid-template-columns: 72px 1fr;
		gap: 7px 16px;
		padding: 19px;
		border-radius: 18px;
	}
	.booom-xd-testimonial img { width: 72px; height: 72px; }
	.booom-xd-testimonial > span { font-size: 12px; }
	.booom-xd-testimonial strong { grid-column: 1 / -1; padding-top: 6px; }
	.booom-xd-gallery__track.booom-office-carousel__track { grid-auto-columns: 82%; }
	.booom-xd-gallery__track.booom-office-carousel__track img { height: 430px; }
	.booom-xd-faq-section__list .booom-faq__question {
		min-height: 86px;
		padding: 23px 64px 23px 22px;
		font-size: 19px;
	}
	.booom-xd-faq-section__list .booom-faq__question::after { right: 16px; }
	.booom-xd-faq-section__list .booom-faq__answer { padding: 0 22px 24px; }
	.booom-xd-about-home__media { min-height: 470px; }
	.booom-xd-about-home__media figure:first-child { right: 12%; }
	.booom-xd-about-home__media figure:last-child { width: 52%; height: 39%; border-width: 6px; }
	.booom-xd-about-home__copy h2 { font-size: clamp(39px, 12vw, 54px); }
	.booom-xd-about-home__copy > span { top: -52px; right: -12px; font-size: 105px; }
	.booom-xd-home-blog__empty { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
	.booom-xd-home-blog__grid { grid-template-columns: 1fr; }
	.booom-xd-blog-card h3 { font-size: clamp(28px, 8.5vw, 39px); }
}

/* Internal page artboards. */
.booom-xd-page-hero__heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 90px; align-items: end; }
.booom-xd-page-hero__heading > p { margin: 0 0 8px; color: var(--booom-xd-muted); font-size: 18px; }
.booom-xd-page-hero .booom-xd-wide-media { margin-top: 70px; }
.booom-breadcrumbs { margin-bottom: 26px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.booom-xd-page-content { padding-top: 100px; padding-bottom: 120px; }
.booom-xd-page-content > *:first-child { margin-top: 0; }
.booom-xd-page .booom-button {
	border: 0;
	border-radius: 999px;
	background: var(--booom-xd-yellow);
	box-shadow: none;
	color: var(--booom-xd-ink);
	font-weight: 650;
}
.booom-xd-page .booom-button--dark { background: var(--booom-xd-ink); color: #fff; }
.booom-xd-case-hero__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); overflow: hidden; border-radius: var(--booom-xd-radius); background: var(--booom-xd-light); }
.booom-xd-case-hero__grid > div { padding: clamp(40px, 7vw, 86px); }
.booom-xd-case-hero__grid > div > p:not(.booom-xd-kicker) { color: var(--booom-xd-muted); }
.booom-xd-case-hero__grid .booom-xd-button { margin-top: 28px; }
.booom-xd-case-hero figure { margin: 0; }
.booom-xd-case-hero figure img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; }
.booom-xd-contact-hero { position: relative; padding-bottom: 125px; }
.booom-xd-contact-hero__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.booom-xd-contact-hero__grid > div:first-child > p:not(.booom-xd-kicker) { color: var(--booom-xd-muted); font-size: 18px; }
.booom-xd-contact-meta { display: grid; gap: 8px; margin-top: 34px; font-weight: 600; }
.booom-xd-contact-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 330px; gap: 12px; }
.booom-xd-contact-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.booom-xd-contact-mosaic img:first-child { grid-column: 1 / -1; }
.booom-xd-contact-hero__down { position: absolute; left: 50%; bottom: 35px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: var(--booom-xd-yellow); font-size: 25px; text-decoration: none; transform: translateX(-50%); box-shadow: 0 0 30px rgba(254, 195, 31, .55); }

/* Existing seeded Gutenberg content, reskinned without replacing user edits. */
.booom-page-block { padding: 80px 0; }
.booom-page-block + .booom-page-block { border-top: 1px solid var(--booom-xd-line); }
.booom-page-block--split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.booom-page-block--soft { position: relative; }
.booom-page-block--soft::before { content: ""; position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; background: var(--booom-xd-light); }
.booom-page-block h2,
.booom-page-proof h2 { font-size: clamp(34px, 4vw, 56px); letter-spacing: -.045em; line-height: 1; }
.booom-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; background: var(--booom-xd-line); border: 1px solid var(--booom-xd-line); }
.booom-page-card { min-height: 190px; padding: 28px; background: var(--booom-xd-paper); }
.booom-page-card__number { font-size: 12px; font-weight: 700; }
.booom-page-card h3 { margin: 58px 0 0; font-size: 21px; line-height: 1.15; }
.booom-asset { margin: 0; }
.booom-asset img { width: 100%; max-height: 600px; object-fit: cover; border-radius: var(--booom-xd-radius); }
.booom-page-proof { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin: 80px 0; padding: 60px; border-radius: var(--booom-xd-radius); background: var(--booom-xd-yellow); }
.booom-service-directory,
.booom-case-directory { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 50px; background: var(--booom-xd-line); border: 1px solid var(--booom-xd-line); }
.booom-service-directory article,
.booom-case-directory article { padding: 34px; background: var(--booom-xd-paper); }
.booom-service-directory h2 { font-size: 28px; }
.booom-native-faq details { padding: 24px 0; border-bottom: 1px solid var(--booom-xd-line); }
.booom-native-faq summary { font-weight: 650; cursor: pointer; }

/* Blog / article screens. */
.booom-xd-blog { padding: 100px 0 130px; background: var(--booom-xd-light); }
.booom-xd-blog__header { text-align: center; }
.booom-xd-blog__header h1 { max-width: 900px; margin: 0 auto; font-size: clamp(52px, 7vw, 96px); letter-spacing: -.065em; line-height: .92; }
.booom-xd-blog__tools { display: flex; justify-content: space-between; gap: 24px; margin-top: 80px; padding-bottom: 20px; border-bottom: 1px solid var(--booom-xd-line); }
.booom-xd-blog__tools form { display: flex; min-width: 280px; }
.booom-xd-blog__tools input,
.booom-xd-blog__tools select { min-height: 46px; border: 0; border-bottom: 1px solid var(--booom-xd-ink); border-radius: 0; background: transparent; }
.booom-xd-blog__tools input { flex: 1; }
.booom-xd-blog__tools form button { border: 0; background: transparent; }
.booom-xd-blog__posts { margin-top: 64px; }
.booom-post-card { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 70px; align-items: center; margin-bottom: 70px; padding-bottom: 70px; border-bottom: 1px solid var(--booom-xd-line); }
.booom-post-card__media { height: 460px; overflow: hidden; border-radius: var(--booom-xd-radius); }
.booom-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.booom-post-card__title { margin: 18px 0; font-size: clamp(34px, 4vw, 56px); letter-spacing: -.045em; line-height: 1; }
.booom-post-card__title a { text-decoration: none; }
/* Single-post hero: keep long SEO titles readable instead of forcing one word per line. */
.booom-article-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
	width: min(100% - 48px, var(--booom-xd-container));
	margin: 0 auto;
	padding: 88px 0 58px;
}
.booom-article-header .booom-breadcrumbs { grid-column: 1; }
.booom-article-header .entry-title {
	grid-column: 1;
	grid-row: auto;
	max-width: 1120px;
	margin: 0;
	font-size: clamp(46px, 5.2vw, 78px);
	letter-spacing: -.055em;
	line-height: .98;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
	text-wrap: balance;
}
.booom-article-header .booom-article-meta {
	grid-column: 1;
	grid-row: auto;
	align-self: auto;
	max-width: 1120px;
	margin: 2px 0 0;
}
.booom-article-header__excerpt {
	grid-column: 1;
	max-width: 860px;
	margin: 0;
	color: var(--booom-xd-muted);
	font-size: 18px;
}
.booom-article-featured { width: min(100% - 48px, var(--booom-xd-container)); height: clamp(400px, 53vw, 690px); margin: 0 auto; }
.booom-article-featured img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--booom-xd-radius); }
.booom-article-content { width: min(100% - 48px, 760px); margin: 90px auto; font-size: 18px; }

/* Footer: same hierarchy, overlap and seals from Adobe XD, current BOOOM data. */
.booom-xd-footer {
	position: relative;
	margin-top: 188px;
	padding: 0 0 26px;
	background: #0d0d0d;
	color: #fff;
}
.booom-xd-footer::before {
	content: "BOOOM Criative";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 188px;
	overflow: hidden;
	background: var(--booom-xd-paper);
	color: rgba(254, 195, 31, .16);
	font-size: clamp(86px, 13vw, 190px);
	font-weight: 300;
	letter-spacing: -.07em;
	line-height: 1.05;
	text-align: center;
	white-space: nowrap;
}
.booom-xd-footer__conversion {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(340px, 1.55fr) minmax(220px, .75fr) minmax(250px, .85fr);
	gap: clamp(36px, 6vw, 90px);
	align-items: center;
	max-width: 1092px;
	min-height: 192px;
	padding: 50px 72px;
	border-radius: 18px;
	background: var(--booom-xd-yellow);
	color: var(--booom-xd-ink);
	transform: translateY(-96px);
}
.booom-xd-footer__conversion h2 {
	margin: 0;
	color: var(--booom-xd-ink);
	font-size: clamp(28px, 2.5vw, 38px);
	font-weight: 450;
	letter-spacing: -.035em;
	line-height: 1.05;
}
.booom-xd-footer__conversion > div { display: grid; gap: 6px; }
.booom-xd-footer__conversion span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.booom-xd-footer__conversion a {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.booom-xd-footer__conversion svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
.booom-xd-footer__main {
	display: grid;
	grid-template-columns: .95fr .66fr 1.6fr 1.05fr;
	gap: clamp(38px, 5vw, 74px);
	align-items: start;
	margin-top: 8px;
}
.booom-xd-footer__brand > a { display: inline-block; }
.booom-xd-footer__brand img { width: 160px; }
.booom-xd-footer__brand .booom-xd-footer__logo {
	display: block;
	height: auto;
	filter: grayscale(1) brightness(0) invert(1);
}
.booom-xd-footer__social { display: flex; gap: 12px; margin-top: 26px; }
.booom-xd-footer__social a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid #333;
	border-radius: 50%;
	color: #fff;
	transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.booom-xd-footer__social a:hover { border-color: var(--booom-xd-yellow); color: var(--booom-xd-yellow); transform: translateY(-2px); }
.booom-xd-footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.booom-xd-footer nav,
.booom-xd-footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.booom-xd-footer nav > p,
.booom-xd-footer__contact > p {
	margin: 0 0 18px;
	color: #c9c9c9;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}
.booom-xd-footer nav a,
.booom-xd-footer__contact a,
.booom-xd-footer__contact span,
.booom-xd-footer__contact address {
	margin: 0;
	color: #747474;
	font-size: 13px;
	font-style: normal;
	line-height: 1.65;
	text-decoration: none;
	transition: color .2s ease;
}
.booom-xd-footer nav a:hover,
.booom-xd-footer__contact a:hover { color: var(--booom-xd-yellow); }
.booom-xd-footer__services > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 11px 28px;
	width: 100%;
}
.booom-xd-footer__seals {
	width: 100%;
	max-width: 330px;
	height: auto;
	margin-top: 22px;
	object-fit: contain;
}
.booom-xd-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 52px;
	padding-top: 22px;
	border-top: 1px solid #252525;
	color: #666;
	font-size: 11px;
}
.booom-xd-footer__bottom p { margin: 0; }
.booom-xd-footer__bottom a { color: #666; text-decoration: none; }
.booom-whatsapp-float {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 1001;
	display: block;
	width: 66px;
	height: 66px;
	padding: 4px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
	transition: transform .2s ease;
}
.booom-whatsapp-float:hover { transform: translateY(-3px) scale(1.02); }
.booom-whatsapp-float img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

@media (max-width: 1120px) {
	.booom-header-inner { grid-template-columns: 165px minmax(0, 1fr) 42px; }
	.booom-header-actions { gap: 22px; }
	.booom-primary-menu { gap: 18px; }
	.booom-header-cta { min-width: 176px; padding-inline: 18px; }
	.booom-xd-card-grid--three { grid-template-columns: repeat(2, 1fr); }
	.booom-xd-footer__conversion { grid-template-columns: 1.25fr 1fr 1fr; padding-inline: 44px; }
	.booom-xd-footer__main { grid-template-columns: .85fr .65fr 1.4fr; }
	.booom-xd-footer__contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.booom-xd-footer__contact > p,
	.booom-xd-footer__seals { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	.admin-bar .booom-site-header { top: 46px; }
	.grid-container { width: min(100% - 32px, var(--booom-xd-container)); }
	.booom-header-inner { grid-template-columns: 1fr 46px; min-height: 74px; }
	.booom-site-brand { width: 138px; }
	.booom-site-brand img { width: 138px; }
	.booom-menu-toggle { grid-column: 2; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--booom-xd-line); border-radius: 3px; background: transparent; }
	.booom-menu-toggle__label { display: none; }
	.booom-menu-toggle__icon { position: relative; width: 20px; height: 13px; }
	.booom-menu-toggle__icon i { position: absolute; left: 0; width: 20px; height: 2px; background: var(--booom-xd-ink); transition: transform .2s ease, top .2s ease; }
	.booom-menu-toggle__icon i:first-child { top: 2px; }
	.booom-menu-toggle__icon i:last-child { top: 10px; }
	.booom-menu-toggle[aria-expanded="true"] i:first-child { top: 6px; transform: rotate(45deg); }
	.booom-menu-toggle[aria-expanded="true"] i:last-child { top: 6px; transform: rotate(-45deg); }
	.booom-header-actions { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: 20px 16px 28px; border-top: 1px solid var(--booom-xd-line); background: var(--booom-xd-light); box-shadow: 0 20px 35px rgba(0, 0, 0, .12); }
	.booom-header-actions.is-open,
	.booom-header-actions:has(.booom-primary-navigation.is-open) { display: block; }
	.booom-primary-navigation.is-open { display: block; }
	.booom-primary-menu { display: block; }
	.booom-primary-menu > li > a { min-height: 52px; border-bottom: 1px solid var(--booom-xd-line); }
	.booom-primary-menu .sub-menu { position: static; display: block; width: auto; padding: 8px 0 12px 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.booom-primary-menu .sub-menu a { padding: 8px 0; }
	.booom-header-cta { width: 100%; margin-top: 18px; }
	.booom-xd-heading--split,
	.booom-xd-split,
	.booom-xd-page-hero__heading,
	.booom-xd-contact-hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.booom-xd-split__copy p:first-child { margin-top: 0; }
	.booom-xd-service-grid { grid-template-columns: repeat(2, 1fr); }
	.booom-xd-service-grid > a:nth-child(3n + 1) { border-left: 0; }
	.booom-xd-service-grid > a:nth-child(2n + 1) { border-left: 1px solid var(--booom-xd-line); }
	.booom-xd-case-feature,
	.booom-xd-case-hero__grid { grid-template-columns: 1fr; }
	.booom-xd-case-feature figure,
	.booom-xd-case-hero figure { min-height: 430px; }
	.booom-xd-case-hero figure img { min-height: 430px; }
	.booom-xd-contact-mosaic { grid-template-rows: 220px 280px; }
	.booom-page-block--split { grid-template-columns: 1fr; gap: 42px; }
	.booom-page-grid { grid-template-columns: repeat(2, 1fr); }
	.booom-post-card { grid-template-columns: 1fr; gap: 36px; }
	.booom-post-card__media { height: 400px; }
	.booom-xd-home-blog__header { grid-template-columns: 1fr; gap: 24px; }
	.booom-xd-home-blog__header > a { justify-self: start; }
	.booom-xd-home-blog__feature { grid-template-columns: 1fr; }
	.booom-xd-home-blog__copy { max-width: 760px; }
	.booom-xd-home-blog__media,
	.booom-xd-home-blog__media img { min-height: 0; }
	.booom-article-header { gap: 20px; padding-top: 64px; padding-bottom: 44px; }
	.booom-article-header .entry-title { font-size: clamp(42px, 8vw, 64px); line-height: .98; }
	.booom-xd-footer { margin-top: 150px; }
	.booom-xd-footer::before { height: 150px; }
	.booom-xd-footer__conversion { grid-template-columns: 1fr 1fr; gap: 28px; min-height: 210px; padding: 36px 40px; transform: translateY(-74px); }
	.booom-xd-footer__conversion h2 { grid-column: 1 / -1; }
	.booom-xd-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.booom-xd-footer__contact { grid-column: auto; display: flex; }
	.booom-xd-footer__contact > p,
	.booom-xd-footer__seals { grid-column: auto; }
}

@media (max-width: 620px) {
	.booom-article-header { width: min(100% - 32px, var(--booom-xd-container)); padding-top: 46px; padding-bottom: 34px; }
	.booom-article-header .entry-title { font-size: clamp(38px, 11vw, 54px); letter-spacing: -.045em; line-height: 1; }
	.booom-article-header .booom-article-meta { gap: 0.4rem 0.65rem; font-size: .75rem; }
	.grid-container { width: min(100% - 32px, var(--booom-xd-container)); }
	.booom-xd-band { padding: 74px 0; }
	.booom-xd-heading h2,
	.booom-xd-split h2,
	.booom-xd-page-hero h1,
	.booom-xd-contact-hero h1,
	.booom-xd-case-hero h1 { font-size: clamp(39px, 12vw, 58px); }
	.booom-xd-hero { padding-top: 8px; }
	.booom-xd-hero__slides { height: 68svh; min-height: 530px; border-radius: 6px; }
	.booom-xd-hero__overlay { left: 24px; right: 24px; bottom: 46px; }
	.booom-xd-hero__overlay h1 { max-width: 270px; font-size: 11px; }
	.booom-xd-hero__overlay p { font-size: clamp(51px, 17vw, 78px); }
	.booom-xd-hero__pagination { right: 13px; }
	.booom-xd-clients__inner { grid-template-columns: 1fr; gap: 22px; }
	.booom-xd-clients__inner > div { display: grid; grid-template-columns: 1fr 1fr; justify-content: start; }
	.booom-xd-card-grid--three,
	.booom-xd-service-grid,
	.booom-xd-case-list,
	.booom-page-grid,
	.booom-service-directory,
	.booom-case-directory { grid-template-columns: 1fr; }
	.booom-xd-problem-card { min-height: 450px; }
	.booom-xd-service-grid > a,
	.booom-xd-service-grid > a:nth-child(2n + 1) { border-left: 1px solid var(--booom-xd-line); }
	.booom-xd-case-feature__copy { padding: 36px 26px; }
	.booom-xd-case-list a + a { margin-left: 0; }
	.booom-xd-office__track { grid-auto-columns: 78%; }
	.booom-xd-office__track figure { height: 430px; }
	.booom-xd-video__player { aspect-ratio: 4 / 3; }
	.booom-xd-video__player > span { width: 84px; height: 84px; }
	.booom-xd-final-cta .grid-container,
	.booom-page-proof { align-items: flex-start; flex-direction: column; }
	.booom-xd-contact-mosaic { grid-template-rows: 180px 230px; gap: 8px; }
	.booom-xd-page-content { padding-top: 62px; padding-bottom: 80px; }
	.booom-page-block { padding: 56px 0; }
	.booom-page-proof { margin: 50px 0; padding: 34px 25px; }
	.booom-xd-blog { padding-top: 72px; }
	.booom-xd-blog__header h1 { font-size: clamp(47px, 14vw, 68px); }
	.booom-xd-blog__tools { align-items: stretch; flex-direction: column; margin-top: 55px; }
	.booom-xd-blog__tools form { min-width: 0; }
	.booom-post-card__media { height: 310px; }
	.booom-xd-home-blog { padding: 80px 0 110px; }
	.booom-xd-home-blog__header h2 { font-size: clamp(43px, 13vw, 61px); }
	.booom-xd-home-blog__feature { gap: 34px; }
	.booom-xd-home-blog__media img { aspect-ratio: 16 / 10; }
	.booom-xd-home-blog__copy h3 { font-size: clamp(31px, 9.5vw, 43px); }
	.booom-xd-home-blog__copy > p { font-size: 14px; }
	.booom-article-header,
	.booom-article-featured,
	.booom-article-content { width: min(100% - 32px, 760px); }
	.booom-xd-footer { margin-top: 120px; }
	.booom-xd-footer::before { height: 120px; font-size: 78px; }
	.booom-xd-footer__conversion { grid-template-columns: 1fr; gap: 24px; min-height: 0; padding: 32px 24px; border-radius: 12px; transform: translateY(-60px); }
	.booom-xd-footer__conversion h2 { grid-column: auto; }
	.booom-xd-footer__conversion a { font-size: 14px; white-space: normal; }
	.booom-xd-footer__main { grid-template-columns: 1fr; margin-top: 0; }
	.booom-xd-footer__services > div { grid-template-columns: 1fr; }
	.booom-xd-footer__bottom { align-items: flex-start; flex-direction: column; }
	.booom-whatsapp-float { right: 16px; bottom: 16px; width: 58px; height: 58px; }
}

/* Cases: Adobe XD artboards + verified BOOOM project content. */
.booom-xd-page--cases-hub,
.booom-xd-page--case { background: var(--booom-xd-paper); }
.booom-xd-case-hero--index { padding: 72px 0 42px; }
.booom-xd-case-hero--index .booom-xd-case-hero__grid {
	grid-template-columns: minmax(360px, .83fr) minmax(0, 1.17fr);
	min-height: 540px;
	border-radius: 6px;
	background: #ece9e3;
}
.booom-xd-case-hero--index .booom-xd-case-hero__grid > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(50px, 6.5vw, 92px);
}
.booom-xd-case-hero--index .booom-breadcrumbs { margin-bottom: 50px; }
.booom-xd-case-hero--index h1 {
	max-width: 620px;
	margin: 7px 0 22px;
	font-size: clamp(52px, 5.5vw, 78px);
	font-weight: 500;
	letter-spacing: -.058em;
	line-height: .96;
}
.booom-xd-case-hero--index .booom-xd-case-hero__grid > div > p:not(.booom-xd-kicker) {
	max-width: 520px;
	font-size: 15px;
	line-height: 1.7;
}
.booom-xd-case-hero--index figure,
.booom-xd-case-hero--index .booom-hero-media { display: block; min-width: 0; min-height: 540px; height: 100%; }
.booom-xd-case-hero--index figure img,
.booom-xd-case-hero--index .booom-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 540px;
	object-fit: cover;
	object-position: center;
}
.booom-xd-case-hero__notion-mosaic {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 10px;
	min-width: 0;
	min-height: 540px;
	padding: 24px;
	background: #151515;
}
.booom-xd-case-hero__notion-mosaic img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}
.booom-xd-case-hero__notion-mosaic img:first-child { grid-row: 1 / 3; }
.booom-xd-page--cases-hub .booom-xd-page-content { padding-top: 50px; }
.booom-xd-cases-intro { padding: 40px 0 10px; }
.booom-xd-cases-intro__heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
	gap: 90px;
	align-items: end;
	padding-bottom: 55px;
	border-bottom: 1px solid var(--booom-xd-line);
}
.booom-xd-cases-intro__heading h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(48px, 6vw, 80px);
	font-weight: 500;
	letter-spacing: -.06em;
	line-height: .94;
}
.booom-xd-cases-intro__heading > p {
	margin: 0 0 5px;
	color: var(--booom-xd-muted);
	font-size: 16px;
	line-height: 1.75;
}
.booom-xd-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	margin-top: 32px;
}
.booom-xd-case-card { min-width: 0; }
.booom-xd-case-card__media { display: block; overflow: hidden; border-radius: 5px; background: #e5e3de; }
.booom-xd-case-card__media .booom-asset { height: 270px; }
.booom-xd-case-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	transition: transform .45s ease;
}
.booom-xd-case-card__media:hover img { transform: scale(1.025); }
.booom-xd-case-card--text {
	position: relative;
	display: flex;
	min-height: 470px;
	padding: 28px;
	border: 1px solid var(--booom-xd-line);
	background: var(--booom-xd-light);
}
.booom-xd-case-card--text:hover { border-color: var(--booom-xd-ink); }
.booom-xd-case-card__number {
	position: absolute;
	top: 26px;
	right: 27px;
	color: var(--booom-xd-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}
.booom-xd-case-card__body { padding: 24px 2px 30px; }
.booom-xd-case-card--text .booom-xd-case-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 76px 0 0;
}
.booom-xd-case-card--text .booom-xd-case-card__link { margin-top: auto; padding-top: 30px; }
.booom-xd-case-card__client {
	margin: 0 0 14px;
	color: var(--booom-xd-muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .065em;
	text-transform: uppercase;
}
.booom-xd-case-card__client span { margin: 0 5px; color: var(--booom-xd-yellow); }
.booom-xd-case-card h2 { margin: 0 0 16px; font-size: clamp(26px, 2.35vw, 37px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.booom-xd-case-card h2 a { text-decoration: none; }
.booom-xd-case-card__body > p:not(.booom-xd-case-card__client) { margin: 0; color: var(--booom-xd-muted); font-size: 14px; line-height: 1.65; }
.booom-xd-case-card__link {
	display: inline-flex;
	gap: 9px;
	margin-top: 23px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--booom-xd-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
}
.booom-xd-case-cta { border-radius: 6px; }

.booom-xd-case-detail-hero { padding: 72px 0 0; }
.booom-xd-case-detail-hero .booom-breadcrumbs { margin-bottom: 52px; }
.booom-xd-case-detail-hero .booom-xd-kicker { margin-bottom: 20px; color: var(--booom-xd-muted); }
.booom-xd-case-detail-hero h1 {
	max-width: 1080px;
	margin: 0;
	font-size: clamp(54px, 6.8vw, 94px);
	font-weight: 500;
	letter-spacing: -.064em;
	line-height: .94;
}
.booom-xd-case-detail-hero__media {
	width: 100%;
	height: clamp(420px, 45vw, 650px);
	margin: 72px 0 0;
	overflow: hidden;
	border-radius: 6px;
	background: #e5e3de;
}
.booom-xd-case-detail-hero__media .booom-hero-media { display: block; width: 100%; height: 100%; }
.booom-xd-case-detail-hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.booom-xd-page--case .booom-xd-page-content { padding-top: 0; }
.booom-xd-case-story { padding-top: 105px; }
.booom-xd-case-story__lead { max-width: 900px; margin: 0 auto; }
.booom-xd-case-story__lead h2 {
	margin: 0;
	font-size: clamp(49px, 5.7vw, 78px);
	font-weight: 500;
	letter-spacing: -.055em;
	line-height: 1.04;
}
.booom-xd-case-story__facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	max-width: 900px;
	margin: 72px auto 92px;
	border: 1px solid var(--booom-xd-line);
	background: var(--booom-xd-line);
}
.booom-xd-case-story__facts > div { display: grid; gap: 8px; padding: 24px; background: var(--booom-xd-paper); }
.booom-xd-case-story__facts span { color: var(--booom-xd-muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booom-xd-case-story__facts strong { font-size: 15px; font-weight: 600; }
.booom-xd-case-story__narrative { max-width: 760px; margin: 0 auto 110px; }
.booom-xd-case-story__narrative h2 { margin: 0 0 34px; font-size: clamp(36px, 4.2vw, 55px); font-weight: 500; letter-spacing: -.05em; }
.booom-xd-case-story__narrative > p:not(.booom-xd-kicker) { color: #555; font-size: 17px; line-height: 1.78; }
.booom-xd-case-problem {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	margin: 0 0 110px;
	border: 1px solid var(--booom-xd-line);
	background: var(--booom-xd-line);
}
.booom-xd-case-problem > div { padding: clamp(34px, 5vw, 68px); background: var(--booom-xd-light); }
.booom-xd-case-problem h2 { margin: 0 0 22px; font-size: clamp(32px, 3.6vw, 48px); font-weight: 500; letter-spacing: -.045em; }
.booom-xd-case-problem p:last-child { margin-bottom: 0; color: var(--booom-xd-muted); }
.booom-xd-case-actions {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 100px;
	margin: 0 0 110px;
	padding: 90px 0;
	color: #fff;
}
.booom-xd-case-actions::before { content: ""; position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; background: #111; }
.booom-xd-case-actions { position: relative; }
.booom-xd-case-actions h2 { margin: 0; color: #fff; font-size: clamp(42px, 5vw, 66px); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.booom-xd-case-actions ol { margin: 0; padding: 0; list-style: none; counter-reset: booom-case-step; }
.booom-xd-case-actions li {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 12px;
	padding: 22px 0;
	border-bottom: 1px solid #343434;
	counter-increment: booom-case-step;
}
.booom-xd-case-actions li::before { content: "0" counter(booom-case-step); color: var(--booom-xd-yellow); font-size: 11px; letter-spacing: .08em; }
.booom-xd-case-actions li span { font-size: 17px; }
.booom-xd-case-execution {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: 100px;
	margin: 0 0 110px;
}
.booom-xd-case-execution h2 { margin: 0; font-size: clamp(42px, 5vw, 66px); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.booom-xd-case-execution ul { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0; padding: 1px; list-style: none; background: var(--booom-xd-line); }
.booom-xd-case-execution li { min-height: 180px; padding: 28px; background: var(--booom-xd-paper); font-size: 17px; }
.booom-xd-case-results { margin: 0 0 110px; }
.booom-xd-case-results__heading { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.booom-xd-case-results__heading h2 { margin: 0; font-size: clamp(47px, 5.5vw, 74px); font-weight: 500; letter-spacing: -.058em; line-height: .95; }
.booom-xd-case-results__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--booom-xd-line); background: var(--booom-xd-line); }
.booom-xd-case-results__metrics article { min-height: 205px; padding: 30px; background: var(--booom-xd-light); }
.booom-xd-case-results__metrics strong { display: block; margin-bottom: 42px; font-size: clamp(31px, 3.6vw, 52px); font-weight: 500; letter-spacing: -.05em; }
.booom-xd-case-results__metrics span { color: var(--booom-xd-muted); font-size: 13px; line-height: 1.5; }
.booom-xd-case-results__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; margin: 42px 0 0; padding: 0; list-style: none; }
.booom-xd-case-results__list li { position: relative; padding: 20px 0 20px 28px; border-bottom: 1px solid var(--booom-xd-line); }
.booom-xd-case-results__list li::before { content: "↗"; position: absolute; left: 0; color: var(--booom-xd-yellow); }
.booom-xd-case-learning { max-width: 920px; margin: 0 auto 115px; text-align: center; }
.booom-xd-case-learning blockquote { margin: 16px 0 0; padding: 0; border: 0; font-size: clamp(39px, 4.8vw, 64px); font-weight: 500; letter-spacing: -.052em; line-height: 1.05; }

@media (max-width: 900px) {
	.booom-xd-home-cases__layout { grid-template-columns: 1fr; gap: 64px; }
	.booom-xd-home-cases__copy { max-width: 760px; }
	.booom-xd-home-cases__portraits { min-height: 680px; }
	.booom-xd-home-cases__index { grid-template-columns: 1fr; }
	.booom-xd-home-cases__index a + a { padding-left: 0; border-left: 0; }
	.booom-xd-case-hero--index .booom-xd-case-hero__grid { grid-template-columns: 1fr; }
	.booom-xd-case-hero--index figure { min-height: 460px; }
	.booom-xd-case-hero--index figure img { min-height: 460px; }
	.booom-xd-case-hero__notion-mosaic { min-height: 560px; }
	.booom-xd-cases-intro__heading,
	.booom-xd-case-actions,
	.booom-xd-case-execution,
	.booom-xd-case-results__heading { grid-template-columns: 1fr; gap: 38px; }
	.booom-xd-cases-grid { grid-template-columns: 1fr 1fr; }
	.booom-xd-case-card__media .booom-asset { height: 310px; }
}

@media (max-width: 620px) {
	.booom-xd-home-cases { padding: 76px 0 88px; }
	.booom-xd-home-cases__layout { gap: 46px; }
	.booom-xd-home-cases__copy h2 { font-size: clamp(43px, 13vw, 59px); }
	.booom-xd-home-cases__copy .booom-xd-home-cases__lead { margin-top: 25px; font-size: 21px; }
	.booom-xd-home-cases__portraits { gap: 8px; min-height: 470px; }
	.booom-xd-home-cases__portrait--one { transform: translateY(22px); }
	.booom-xd-home-cases__portraits > span { right: -15px; bottom: 8px; width: 84px; height: 84px; font-size: 8px; }
	.booom-xd-home-cases__index { margin-top: 64px; }
	.booom-xd-home-cases__index a { padding-top: 22px; padding-bottom: 22px; }
	.booom-xd-home-cases__index i { top: 22px; right: 6px; }
	.booom-xd-case-hero--index,
	.booom-xd-case-detail-hero { padding-top: 48px; }
	.booom-xd-case-hero--index .booom-xd-case-hero__grid > div { padding: 40px 26px; }
	.booom-xd-case-hero--index .booom-breadcrumbs,
	.booom-xd-case-detail-hero .booom-breadcrumbs { margin-bottom: 34px; }
	.booom-xd-case-hero--index h1,
	.booom-xd-case-detail-hero h1 { font-size: clamp(43px, 13vw, 61px); }
	.booom-xd-case-hero--index figure,
	.booom-xd-case-hero--index .booom-hero-media,
	.booom-xd-case-hero--index figure img,
	.booom-xd-case-hero--index .booom-hero-media img { min-height: 390px; }
	.booom-xd-case-hero__notion-mosaic { min-height: 430px; padding: 12px; gap: 6px; }
	.booom-xd-cases-intro__heading { padding-bottom: 38px; }
	.booom-xd-cases-intro__heading h2 { font-size: clamp(41px, 12vw, 56px); }
	.booom-xd-cases-grid { grid-template-columns: 1fr; gap: 18px; }
	.booom-xd-case-card__media .booom-asset { height: 280px; }
	.booom-xd-case-card--text { min-height: 390px; padding: 24px; }
	.booom-xd-case-detail-hero__media { height: 360px; margin-top: 46px; }
	.booom-xd-case-story { padding-top: 72px; }
	.booom-xd-case-story__lead h2 { font-size: clamp(40px, 12vw, 55px); }
	.booom-xd-case-story__facts,
	.booom-xd-case-problem,
	.booom-xd-case-results__metrics { grid-template-columns: 1fr; }
	.booom-xd-case-story__facts { margin: 48px auto 70px; }
	.booom-xd-case-story__narrative,
	.booom-xd-case-problem,
	.booom-xd-case-actions,
	.booom-xd-case-execution,
	.booom-xd-case-results { margin-bottom: 78px; }
	.booom-xd-case-actions { padding: 70px 0; }
	.booom-xd-case-execution ul,
	.booom-xd-case-results__list { grid-template-columns: 1fr; }
	.booom-xd-case-execution li { min-height: 140px; }
	.booom-xd-case-results__metrics article { min-height: 160px; }
	.booom-xd-case-results__metrics strong { margin-bottom: 24px; }
	.booom-xd-case-learning { margin-bottom: 78px; text-align: left; }
}

.booom-xd-home + .booom-xd-footer::before { background: var(--booom-xd-light); }

/* Header final: composição obrigatória do Adobe XD, sem caixas herdadas. */
body .booom-site-header {
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(11, 11, 11, .06);
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 8px 26px rgba(11, 11, 11, .055);
	backdrop-filter: blur(14px);
}

body .booom-header-frame {
	width: 100%;
	max-width: none;
	margin: 0;
}

body .booom-header-inner.grid-container {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	align-items: center;
	width: min(100% - 32px, var(--booom-xd-container));
	max-width: var(--booom-xd-container);
	min-height: 72px;
	margin-inline: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body .booom-site-brand {
	display: inline-flex;
	width: 154px;
	max-width: 100%;
	min-width: 0;
	align-items: center;
	gap: 0;
}

body .booom-site-brand img {
	display: block;
	width: 154px;
	max-width: 100%;
	height: auto;
	filter: none;
}

body .booom-header-actions {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(34px, 4vw, 58px);
	margin: 0;
}

body .booom-primary-navigation {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body .booom-primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(24px, 2.25vw, 39px);
	margin: 0;
	padding: 0;
}

body .booom-primary-menu > li > a {
	min-height: 72px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--booom-xd-ink);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	transform: none;
}

body .booom-primary-menu > li > a:hover,
body .booom-primary-menu > li > a:focus,
body .booom-primary-menu > li > a.is-current,
body .booom-primary-menu > li.current-menu-item > a,
body .booom-primary-menu > li.current-menu-ancestor > a {
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--booom-xd-ink);
	transform: none;
}

body .booom-primary-menu > li > a::before,
body .booom-primary-menu > li > a::after,
body .booom-primary-menu > .menu-item-has-children > a::after {
	display: none;
	content: none;
}

body .booom-header-cta {
	display: inline-flex;
	min-width: 196px;
	min-height: 36px;
	justify-content: center;
	padding: 8px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--booom-xd-yellow);
	box-shadow: none;
	color: var(--booom-xd-ink);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}

body .booom-header-cta:hover,
body .booom-header-cta:focus {
	border: 0;
	background: #f1b900;
	box-shadow: 0 9px 20px rgba(11, 11, 11, .12);
	color: var(--booom-xd-ink);
	transform: translateY(-1px);
}

body .booom-xd-footer__brand .booom-xd-footer__logo {
	display: block;
	width: 160px;
	max-width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

@media (max-width: 1120px) and (min-width: 901px) {
	body .booom-header-inner.grid-container { grid-template-columns: 164px minmax(0, 1fr); }
	body .booom-site-brand,
	body .booom-site-brand img { width: 145px; }
	body .booom-header-actions { gap: 24px; }
	body .booom-primary-menu { gap: 20px; }
	body .booom-primary-menu > li > a { font-size: 13px; }
	body .booom-header-cta { min-width: 176px; padding-inline: 20px; font-size: 13px; }
}

@media (max-width: 900px) {
	body .booom-site-header { background: #fff; }
	body .booom-header-inner.grid-container {
		grid-template-columns: minmax(0, 1fr) 44px;
		width: min(100% - 32px, var(--booom-xd-container));
		min-height: 68px;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}
	body .booom-site-brand,
	body .booom-site-brand img { width: 138px; }
	body .booom-header-actions {
		position: absolute;
		top: 100%;
		right: -16px;
		left: -16px;
		display: none;
		padding: 18px 16px 24px;
		border-top: 1px solid var(--booom-xd-line);
		background: #fff;
		box-shadow: 0 20px 35px rgba(0, 0, 0, .12);
	}
	body .booom-header-actions.is-open,
	body .booom-header-actions:has(.booom-primary-navigation.is-open) { display: block; }
	body .booom-primary-navigation {
		position: static;
		display: block;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}
	body .booom-primary-menu { display: block; }
	body .booom-primary-menu > li > a {
		justify-content: flex-start;
		min-height: 50px;
		padding: 0 4px;
		border-bottom: 1px solid var(--booom-xd-line);
		background: transparent;
		font-size: 14px;
	}
	body .booom-primary-menu > li > a:hover,
	body .booom-primary-menu > li > a:focus,
	body .booom-primary-menu > li > a.is-current { border-bottom-color: var(--booom-xd-yellow); background: transparent; color: var(--booom-xd-ink); }
	body .booom-primary-menu .sub-menu {
		grid-template-columns: 1fr 1fr;
		margin: 0;
		padding: 8px 0 12px 12px;
		border: 0;
		border-left: 2px solid var(--booom-xd-yellow);
		border-radius: 0;
		background: transparent;
	}
	body .booom-primary-menu .sub-menu a { border: 0; background: transparent; box-shadow: none; }
	body .booom-header-actions .booom-header-cta { display: flex; width: 100%; margin-top: 18px; }
	body .booom-menu-toggle {
		display: grid;
		min-width: 44px;
		width: 44px;
		height: 44px;
		padding: 0;
		place-items: center;
		border: 1px solid var(--booom-xd-line);
		border-radius: 3px;
		background: transparent;
		color: var(--booom-xd-ink);
	}
	body .booom-menu-toggle__icon {
		position: relative;
		display: block;
		width: 20px;
		height: 14px;
		border-radius: 0;
		background: transparent;
	}
	body .booom-menu-toggle__icon i {
		position: absolute;
		left: 0;
		width: 20px;
		height: 2px;
		border-radius: 999px;
		background: var(--booom-xd-ink);
	}
	body .booom-menu-toggle__icon i:first-child { top: 2px; }
	body .booom-menu-toggle__icon i:last-child { top: 10px; }
	body .booom-menu-toggle[aria-expanded="true"] .booom-menu-toggle__icon i:first-child { top: 6px; transform: rotate(45deg); }
	body .booom-menu-toggle[aria-expanded="true"] .booom-menu-toggle__icon i:last-child { top: 6px; transform: rotate(-45deg); }
}

@media (max-width: 540px) {
	body .booom-header-inner.grid-container { width: min(100% - 24px, var(--booom-xd-container)); }
	body .booom-site-brand,
	body .booom-site-brand img { width: 126px; }
	body .booom-header-actions { right: -12px; left: -12px; }
	body .booom-primary-menu .sub-menu { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* v0.18.5 adjustments requested from live QA */
.booom-site-header { background: rgba(250, 246, 242, .94); }
.booom-xd-hero { padding-top: 18px; }
.booom-xd-hero__slides {
	height: clamp(560px, 63vw, 720px);
	max-height: calc(100vh - 118px);
	border-radius: 18px;
	box-shadow: 0 26px 70px rgba(0, 0, 0, .12);
}
.booom-xd-hero__slide img { filter: saturate(.78) brightness(.68); transform: scale(1.01); }
.booom-xd-hero__slides::after {
	background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .38) 45%, rgba(0, 0, 0, .10) 100%), linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,.24));
}
.booom-xd-hero__overlay {
	left: clamp(34px, 7vw, 92px);
	bottom: clamp(36px, 6vw, 74px);
	padding: 28px 32px 30px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(11,11,11,.08), rgba(11,11,11,.18));
	backdrop-filter: blur(6px);
}
.booom-xd-hero__overlay h1 { margin-bottom: 18px; }
.booom-xd-hero__overlay p { font-size: clamp(58px, 7.6vw, 104px); line-height: .84; }
.booom-xd-hero__overlay a {
	margin-top: 30px;
	padding: 13px 24px;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 999px;
	background: rgba(255,255,255,.05);
	text-decoration: none;
}
.booom-xd-hero__overlay a:hover { background: rgba(254,195,31,.9); border-color: var(--booom-xd-yellow); color: var(--booom-xd-ink); }
.booom-xd-hero__pagination { right: 30px; gap: 12px; }
.booom-xd-hero__pagination button {
	width: 10px;
	height: 34px;
	border: 1px solid rgba(255,255,255,.72);
	border-radius: 999px;
	background: rgba(255,255,255,.14);
}
.booom-xd-hero__pagination button.is-active { background: var(--booom-xd-yellow); border-color: var(--booom-xd-yellow); }

.booom-xd-message-strip { padding: 28px 0 10px; background: var(--booom-xd-paper); }
.booom-xd-message-strip__slider {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(11,11,11,.09);
	background: #0f0f0f;
	box-shadow: 0 16px 48px rgba(0,0,0,.08);
}
.booom-xd-message-strip__slide,
.booom-xd-message-strip__slide img { width: 100%; margin: 0; }
.booom-xd-message-strip__slide img {
	display: block;
	width: 100%;
	aspect-ratio: 2.1 / 1;
	object-fit: cover;
}
.booom-xd-message-strip__controls {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	background: rgba(11,11,11,.74);
	backdrop-filter: blur(10px);
}
.booom-xd-message-strip__controls button {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #fff;
	cursor: pointer;
}
.booom-xd-message-strip__controls button:hover { background: var(--booom-xd-yellow); color: var(--booom-xd-ink); }
.booom-xd-message-strip__pagination { display: inline-flex; gap: 7px; }
.booom-xd-message-strip__pagination button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255,255,255,.4);
}
.booom-xd-message-strip__pagination button.is-active { width: 20px; background: var(--booom-xd-yellow); }

.booom-xd-pain__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 40px);
	margin-top: clamp(44px, 6vw, 74px);
}
.booom-xd-pain__metric {
	padding: 10px 0;
	text-align: center;
}
.booom-xd-pain__metric strong {
	display: block;
	font-size: clamp(72px, 9vw, 136px);
	font-weight: 500;
	letter-spacing: -.08em;
	line-height: .9;
}
.booom-xd-pain__metric span {
	display: block;
	margin-top: 18px;
	color: var(--booom-xd-muted);
	font-size: clamp(16px, 1.8vw, 22px);
	letter-spacing: -.02em;
}

.booom-xd-partnerships__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 34px;
}
.booom-xd-partnerships__copy .booom-xd-button { margin-top: 0; box-shadow: 0 10px 34px rgba(254, 195, 31, .36); }
.booom-xd-partnerships__secondary-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
}

.booom-xd-faq-section__footer,
.booom-xd-home-blog__footer {
	display: flex;
	justify-content: center;
	margin-top: 46px;
}
.booom-xd-faq-section__footer .booom-xd-button,
.booom-xd-home-blog__footer .booom-xd-button {
	box-shadow: 0 0 0 1px rgba(254,195,31,.32), 0 0 36px rgba(254,195,31,.48);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .04em;
}
.booom-xd-home-blog__footer { margin-top: 42px; }

@media (max-width: 1024px) {
	.booom-xd-message-strip__slide img { aspect-ratio: 1.8 / 1; }
	.booom-xd-pain__metrics { grid-template-columns: 1fr; gap: 18px; }
	.booom-xd-pain__metric strong { font-size: clamp(58px, 14vw, 100px); }
}

@media (max-width: 768px) {
	.booom-xd-hero__slides { border-radius: 10px; }
	.booom-xd-hero__overlay {
		left: 18px;
		right: 18px;
		bottom: 24px;
		padding: 20px 20px 22px;
		border-radius: 14px;
	}
	.booom-xd-hero__overlay p { font-size: clamp(44px, 13vw, 74px); }
	.booom-xd-message-strip { padding-top: 20px; }
	.booom-xd-message-strip__slide img { aspect-ratio: 1.4 / 1; }
	.booom-xd-message-strip__controls {
		right: 12px;
		left: 12px;
		bottom: 12px;
		justify-content: space-between;
	}
	.booom-xd-partnerships__actions { align-items: flex-start; flex-direction: column; }
}


/* v0.18.6 refinements — spacing, credibility and slider UX */
.booom-xd-hero {
	padding-top: 24px;
	padding-bottom: 24px;
}
.booom-xd-hero__slides {
	position: relative;
	border: 1px solid rgba(11, 11, 11, .08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(11, 11, 11, .10);
}
.booom-xd-hero__overlay {
	max-width: 620px;
	z-index: 2;
}
.booom-xd-hero__controls {
	position: absolute;
	right: 28px;
	bottom: 28px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
	background: rgba(10, 10, 10, .58);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
	backdrop-filter: blur(10px);
}
.booom-xd-hero__arrow {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}
.booom-xd-hero__arrow:hover {
	background: var(--booom-xd-yellow);
	color: var(--booom-xd-ink);
	transform: translateY(-1px);
}
.booom-xd-hero__pagination {
	position: static;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transform: none;
}
.booom-xd-hero__pagination button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 999px;
	background: rgba(255, 255, 255, .18);
	transition: width .2s ease, background .2s ease, border-color .2s ease;
}
.booom-xd-hero__pagination button.is-active {
	width: 28px;
	background: var(--booom-xd-yellow);
	border-color: var(--booom-xd-yellow);
}

.booom-xd-message-strip {
	padding: 0 0 18px;
	background: var(--booom-xd-paper);
}
.booom-xd-message-strip .grid-container {
	margin-top: 8px;
}
.booom-xd-message-strip__slider {
	position: relative;
	padding: 18px;
	border: 1px solid rgba(11, 11, 11, .09);
	border-radius: 24px;
	background: rgba(250, 246, 242, .9);
	box-shadow: 0 18px 44px rgba(11, 11, 11, .06);
}
.booom-xd-message-strip__slide {
	overflow: hidden;
	border-radius: 16px;
	background: #121212;
}
.booom-xd-message-strip__slide img {
	display: block;
	width: 100%;
	aspect-ratio: 2.35 / 1;
	object-fit: cover;
	border-radius: 16px;
}
.booom-xd-message-strip__controls {
	left: 50%;
	right: auto;
	bottom: 32px;
	z-index: 3;
	transform: translateX(-50%);
	padding: 10px 14px;
	gap: 12px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	background: rgba(10, 10, 10, .58);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}
.booom-xd-message-strip__controls button[data-booom-story-direction] {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}
.booom-xd-message-strip__controls button[data-booom-story-direction]:hover {
	background: var(--booom-xd-yellow);
	color: var(--booom-xd-ink);
}
.booom-xd-message-strip__pagination {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.booom-xd-message-strip__pagination button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 999px;
	background: rgba(255, 255, 255, .18);
}
.booom-xd-message-strip__pagination button.is-active {
	width: 28px;
	background: var(--booom-xd-yellow);
	border-color: var(--booom-xd-yellow);
}

.booom-xd-partnerships__testimonials {
	align-content: start;
}
.booom-xd-testimonial strong {
	display: block;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.4;
}
.booom-xd-testimonial small {
	display: block;
	margin-top: 2px;
	color: var(--booom-xd-muted);
	font-size: 12px;
	font-weight: 600;
}
.booom-xd-partnerships__cta {
	display: flex;
	justify-content: flex-start;
	padding-top: 8px;
}
.booom-xd-partnerships__cta .booom-xd-button {
	box-shadow: 0 10px 34px rgba(254, 195, 31, .36);
}
.booom-xd-partnerships__actions {
	margin-top: 30px;
}
.booom-xd-partnerships__secondary-link {
	font-size: 13px;
	letter-spacing: .03em;
}
.booom-xd-partnerships__case-links {
	margin-top: 28px;
}

@media (max-width: 1024px) {
	.booom-xd-hero__controls {
		right: 20px;
		bottom: 20px;
	}
	.booom-xd-message-strip__slide img {
		aspect-ratio: 1.9 / 1;
	}
}

@media (max-width: 768px) {
	.booom-xd-hero {
		padding-top: 18px;
		padding-bottom: 20px;
	}
	.booom-xd-hero__slides,
	.booom-xd-message-strip__slider {
		border-radius: 16px;
	}
	.booom-xd-hero__controls {
		left: 18px;
		right: 18px;
		bottom: 18px;
		justify-content: space-between;
	}
	.booom-xd-message-strip__slider {
		padding: 12px;
	}
	.booom-xd-message-strip__slide,
	.booom-xd-message-strip__slide img {
		border-radius: 12px;
	}
	.booom-xd-message-strip__slide img {
		aspect-ratio: 1.3 / 1;
	}
	.booom-xd-message-strip__controls {
		left: 12px;
		right: 12px;
		bottom: 20px;
		transform: none;
		justify-content: space-between;
	}
	.booom-xd-partnerships__cta {
		justify-content: stretch;
	}
	.booom-xd-partnerships__cta .booom-xd-button {
		width: 100%;
	}
}

/* v0.18.8 — sliders fully separated and cache-safe navigation redesign */
.booom-xd-hero {
	padding-top: 28px;
	padding-bottom: 72px;
	background: var(--booom-xd-paper);
}
.booom-xd-hero__slides {
	border-radius: 22px;
	box-shadow: 0 28px 70px rgba(11, 11, 11, .12);
}
.booom-xd-hero__nav {
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(8, 8, 8, .62);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
	backdrop-filter: blur(12px);
}
.booom-xd-hero__nav-button {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 17px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.booom-xd-hero__nav-button:hover,
.booom-xd-hero__nav-button:focus-visible {
	background: var(--booom-xd-yellow);
	color: var(--booom-xd-ink);
	transform: translateY(-1px);
}
.booom-xd-hero__counter {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	min-width: 56px;
	margin: 0;
	color: rgba(255, 255, 255, .68);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}
.booom-xd-hero__counter strong {
	color: #fff;
	font-size: 15px;
}

.booom-xd-message-strip {
	padding: 74px 0 92px;
	border-top: 1px solid rgba(11, 11, 11, .08);
	border-bottom: 1px solid rgba(11, 11, 11, .08);
	background: var(--booom-xd-light);
}
.booom-xd-message-strip .grid-container {
	margin-top: 0;
}
.booom-xd-message-strip__slider {
	position: relative;
	overflow: hidden;
	padding: 18px;
	border: 1px solid rgba(11, 11, 11, .10);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(11, 11, 11, .08);
}
.booom-xd-message-strip__slide {
	overflow: hidden;
	margin: 0;
	border-radius: 16px;
	background: #111;
}
.booom-xd-message-strip__slide img {
	display: block;
	width: 100%;
	aspect-ratio: 2.25 / 1;
	object-fit: cover;
	border-radius: 16px;
}
.booom-xd-message-strip__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 20px 4px 2px;
}
.booom-xd-message-strip__footer > p {
	margin: 0;
	color: var(--booom-xd-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.booom-xd-message-strip__nav {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.booom-xd-message-strip__nav-button {
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--booom-xd-line);
	border-radius: 50%;
	background: transparent;
	color: var(--booom-xd-ink);
	font-size: 17px;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.booom-xd-message-strip__nav-button:hover,
.booom-xd-message-strip__nav-button:focus-visible {
	border-color: var(--booom-xd-yellow);
	background: var(--booom-xd-yellow);
	transform: translateY(-1px);
}
.booom-xd-message-strip__counter {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	min-width: 58px;
	margin: 0;
	color: var(--booom-xd-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}
.booom-xd-message-strip__counter strong {
	color: var(--booom-xd-ink);
	font-size: 15px;
}

/* Remove obsolete dot-navigation styles from previous packages. */
.booom-xd-hero__pagination,
.booom-xd-message-strip__pagination,
.booom-xd-message-strip__controls,
.booom-xd-hero__controls {
	display: none !important;
}

@media (max-width: 768px) {
	.booom-xd-hero {
		padding: 18px 0 50px;
	}
	.booom-xd-hero__nav {
		right: 18px;
		bottom: 18px;
	}
	.booom-xd-message-strip {
		padding: 52px 0 64px;
	}
	.booom-xd-message-strip__slider {
		padding: 12px;
		border-radius: 16px;
	}
	.booom-xd-message-strip__slide,
	.booom-xd-message-strip__slide img {
		border-radius: 11px;
	}
	.booom-xd-message-strip__slide img {
		aspect-ratio: 1.35 / 1;
	}
	.booom-xd-message-strip__footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		padding-top: 16px;
	}
	.booom-xd-message-strip__nav {
		width: 100%;
		justify-content: space-between;
	}
}

/* v0.18.8 — image proportions aligned with the Notion production guide. */
.booom-xd-hero {
	padding-top: 34px;
	padding-bottom: 86px;
}
.booom-xd-hero__slides {
	height: auto;
	min-height: 0;
	max-height: none;
	aspect-ratio: 12 / 5; /* 1920 × 800 */
}
.booom-xd-hero__slide,
.booom-xd-hero__slide img {
	width: 100%;
	height: 100%;
}
.booom-xd-hero__slide img {
	object-fit: cover;
	object-position: center;
	filter: none;
	transform: none;
}
.booom-xd-hero__slides::after {
	background: linear-gradient(90deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .12) 52%, rgba(0, 0, 0, .02) 100%);
}

/* The three Notion backgrounds are native 1920 × 600 assets. */
.booom-xd-message-strip {
	padding-top: 82px;
	padding-bottom: 96px;
}
.booom-xd-message-strip__slide,
.booom-xd-message-strip__slide img {
	aspect-ratio: 16 / 5; /* 1920 × 600 */
}
.booom-xd-message-strip__slide img {
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/* Service imagery follows the square 600 × 600 recommendation. */
.booom-xd-pain-card {
	height: auto;
	aspect-ratio: 1 / 1;
}
.booom-xd-pain-card img {
	height: 100%;
	object-fit: cover;
}
.booom-xd-created-card > a {
	aspect-ratio: 1 / 1;
}
.booom-xd-created-card img {
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/* Institutional photographs are prepared at 900 × 700. */
.booom-xd-gallery__track.booom-office-carousel__track {
	grid-auto-columns: minmax(300px, 36%);
}
.booom-xd-gallery__track.booom-office-carousel__track figure {
	height: auto;
	aspect-ratio: 9 / 7;
}
.booom-xd-gallery__track.booom-office-carousel__track img {
	height: 100%;
	aspect-ratio: 9 / 7;
	object-fit: cover;
}
.booom-xd-about-home__media {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	min-height: 0;
}
.booom-xd-about-home__media figure,
.booom-xd-about-home__media figure:first-child,
.booom-xd-about-home__media figure:last-child {
	position: static;
	inset: auto;
	width: 100%;
	aspect-ratio: 9 / 7;
}
.booom-xd-about-home__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Internal institutional image: 900 × 700 instead of a stretched full-width banner. */
.booom-xd-page-hero .booom-xd-wide-media {
	width: min(calc(100% - 48px), 900px);
	max-width: 900px;
	aspect-ratio: 9 / 7;
	overflow: hidden;
	border-radius: var(--booom-xd-radius);
}
.booom-xd-page-hero .booom-xd-wide-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Case main image: vertical 5:6; secondary: near-square 10:9. */
.booom-xd-case-detail-hero {
	padding: 88px 0 70px;
}
.booom-xd-case-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, .65fr);
	gap: clamp(60px, 8vw, 120px);
	align-items: center;
}
.booom-xd-case-detail-hero__copy .booom-breadcrumbs {
	margin-bottom: 48px;
}
.booom-xd-case-detail-hero__copy h1 {
	max-width: 760px;
	font-size: clamp(52px, 6vw, 88px);
}
.booom-xd-case-detail-hero__copy > p:last-child {
	max-width: 620px;
	margin: 30px 0 0;
	color: var(--booom-xd-muted);
	font-size: 17px;
	line-height: 1.7;
}
.booom-xd-case-detail-hero__media {
	width: 100%;
	height: auto;
	margin: 0;
	aspect-ratio: 5 / 6;
	border-radius: 10px;
}
.booom-xd-case-detail-hero__media .booom-hero-media,
.booom-xd-case-detail-hero__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
}
.booom-xd-case-detail-hero__secondary-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 54px;
}
.booom-xd-case-detail-hero__secondary {
	width: min(100%, 620px);
	margin: 0;
	overflow: hidden;
	aspect-ratio: 10 / 9;
	border-radius: 10px;
	background: var(--booom-xd-light);
}
.booom-xd-case-detail-hero__secondary img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.booom-xd-case-detail-hero__grid {
		grid-template-columns: 1fr minmax(340px, .72fr);
		gap: 48px;
	}
	.booom-xd-gallery__track.booom-office-carousel__track {
		grid-auto-columns: 58%;
	}
}

@media (max-width: 767px) {
	.booom-xd-hero {
		padding-top: 18px;
		padding-bottom: 58px;
	}
	.booom-xd-hero__slides {
		aspect-ratio: 4 / 5;
	}
	.booom-xd-hero__slide img {
		object-position: center;
	}
	.booom-xd-message-strip {
		padding-top: 58px;
		padding-bottom: 68px;
	}
	.booom-xd-message-strip__slide,
	.booom-xd-message-strip__slide img {
		aspect-ratio: 16 / 7;
		object-fit: cover;
	}
	.booom-xd-pain__track {
		grid-auto-columns: minmax(250px, 82%);
	}
	.booom-xd-gallery__track.booom-office-carousel__track {
		grid-auto-columns: 88%;
	}
	.booom-xd-about-home__layout {
		grid-template-columns: 1fr;
	}
	.booom-xd-case-detail-hero__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}
	.booom-xd-case-detail-hero__media {
		width: min(100%, 520px);
	}
	.booom-xd-case-detail-hero__secondary-wrap {
		justify-content: flex-start;
		margin-top: 34px;
	}
	.booom-xd-page-hero .booom-xd-wide-media {
		width: min(calc(100% - 32px), 900px);
	}
}


/* v0.18.9 — mobile sliders preserve the full source images without cropping. */
@media (max-width: 767px) {
	/* Hero: the 1920 × 800 artwork remains intact; content and navigation become
	 * dedicated rows below the image instead of competing for the same crop. */
	.booom-xd-hero {
		padding: 18px 0 54px;
	}
	.booom-xd-hero__slides {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: auto;
		overflow: hidden;
		border-radius: 18px;
		background: #0b0b0b;
		box-shadow: 0 20px 48px rgba(11, 11, 11, .13);
	}
	.booom-xd-hero__slide {
		position: relative;
		inset: auto;
		grid-column: 1;
		grid-row: 1;
		width: 100%;
		height: auto;
		margin: 0;
		aspect-ratio: 12 / 5;
		overflow: hidden;
		background: #0b0b0b;
	}
	.booom-xd-hero__slide img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
		filter: none;
		transform: none;
	}
	.booom-xd-hero__slides::after {
		display: none;
	}
	.booom-xd-hero__overlay {
		position: relative;
		inset: auto;
		grid-column: 1;
		grid-row: 2;
		max-width: none;
		padding: 26px 22px 18px;
		border: 0;
		border-radius: 0;
		background: #0b0b0b;
		color: #fff;
		backdrop-filter: none;
	}
	.booom-xd-hero__overlay h1 {
		max-width: none;
		margin: 0 0 12px;
		font-size: 10px;
		letter-spacing: .11em;
		line-height: 1.35;
	}
	.booom-xd-hero__overlay p {
		margin: 0;
		font-size: clamp(40px, 12.4vw, 54px);
		letter-spacing: -.06em;
		line-height: .88;
	}
	.booom-xd-hero__overlay a {
		width: auto;
		margin-top: 22px;
		padding: 11px 19px;
		font-size: 13px;
	}
	.booom-xd-hero__nav {
		position: relative;
		inset: auto;
		grid-column: 1;
		grid-row: 3;
		justify-self: stretch;
		justify-content: space-between;
		margin: 0 22px 22px;
		padding: 9px 11px;
		border-color: rgba(255, 255, 255, .12);
		background: #171717;
		box-shadow: none;
		backdrop-filter: none;
	}
	.booom-xd-hero__nav-button {
		width: 42px;
		height: 42px;
	}
	.booom-xd-hero__counter {
		justify-content: center;
		min-width: 72px;
		font-size: 12px;
	}
	.booom-xd-hero__counter strong {
		font-size: 18px;
	}

	/* Strategic messages: keep the native 1920 × 600 (16:5) ratio. */
	.booom-xd-message-strip {
		padding: 52px 0 66px;
	}
	.booom-xd-message-strip__slider {
		padding: 10px;
		border-radius: 17px;
	}
	.booom-xd-message-strip__slide {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 5;
		border-radius: 11px;
		background: #0b0b0b;
	}
	.booom-xd-message-strip__slide img {
		display: block;
		width: 100%;
		height: 100%;
		aspect-ratio: 16 / 5;
		object-fit: contain;
		object-position: center;
		border-radius: 11px;
	}
	.booom-xd-message-strip__footer {
		gap: 14px;
		padding: 18px 4px 4px;
	}
	.booom-xd-message-strip__footer > p {
		font-size: 11px;
		letter-spacing: .07em;
	}
	.booom-xd-message-strip__nav-button {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 390px) {
	.booom-xd-hero__overlay p {
		font-size: 39px;
	}
	.booom-xd-hero__overlay,
	.booom-xd-hero__nav {
		margin-left: 0;
		margin-right: 0;
	}
	.booom-xd-hero__nav {
		margin-right: 18px;
		margin-left: 18px;
	}
	.booom-xd-message-strip__footer > p {
		font-size: 10px;
	}
}


/* v0.19.0 — rendering containment for sections outside the initial viewport. */
.booom-xd-pain,
.booom-xd-video,
.booom-xd-created,
.booom-xd-partnerships,
.booom-xd-gallery,
.booom-xd-faq-section,
.booom-xd-about-home,
.booom-xd-home-blog {
	content-visibility: auto;
	contain-intrinsic-size: auto 900px;
}
.booom-deferred-image:not([src]) {
	visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
	.booom-xd-hero__slide,
	.booom-xd-message-strip__slide,
	.booom-xd-blog-card,
	.booom-xd-created-card img,
	.booom-xd-pain-card img {
		transition: none !important;
		animation: none !important;
	}
}

/* v0.19.2 — hero editorial, client logos, XD gallery and approved About imagery. */
.booom-xd-hero {
	padding-top: 30px;
	padding-bottom: 26px;
}
.booom-xd-hero__slides {
	aspect-ratio: 12 / 5;
	border-radius: 12px;
	background: #0a0a0a;
}
.booom-xd-hero__slide img {
	object-fit: contain;
	object-position: center;
	filter: none;
}
.booom-xd-hero__slides::after { display: none; }
.booom-xd-hero__nav {
	right: 26px;
	bottom: 24px;
}

/* Client brands supplied for the project. */
.booom-xd-client-logos {
	overflow: hidden;
	padding: 26px 0 54px;
	background: var(--booom-xd-paper);
}
.booom-xd-client-logos__viewport {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.booom-xd-client-logos__track {
	display: flex;
	width: max-content;
	animation: booom-client-logos 62s linear infinite;
	will-change: transform;
}
.booom-xd-client-logos__group {
	display: flex;
	align-items: center;
	gap: clamp(28px, 4vw, 68px);
	padding-right: clamp(28px, 4vw, 68px);
}
.booom-xd-client-logos figure {
	display: grid;
	width: clamp(142px, 13vw, 205px);
	height: 82px;
	margin: 0;
	place-items: center;
	flex: 0 0 auto;
}
.booom-xd-client-logos img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .72;
	transition: opacity .2s ease;
}
.booom-xd-client-logos img:hover { opacity: 1; }
@keyframes booom-client-logos {
	to { transform: translateX(-50%); }
}

/* The XD structure strip contains photography only — no heading or captions. */
.booom-xd-gallery {
	padding: clamp(72px, 8vw, 118px) 0;
	overflow: hidden;
}
.booom-xd-gallery__viewport {
	overflow: hidden;
}
.booom-xd-gallery__track.booom-office-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: clamp(225px, 18vw, 292px);
	gap: clamp(16px, 1.7vw, 24px);
	overflow-x: auto;
	padding: 0 max(24px, calc((100vw - var(--booom-xd-container)) / 2)) 18px;
	scroll-padding-inline: max(24px, calc((100vw - var(--booom-xd-container)) / 2));
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.booom-xd-gallery__track.booom-office-carousel__track::-webkit-scrollbar { display: none; }
.booom-xd-gallery__track.booom-office-carousel__track figure {
	height: auto;
	margin: 0;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	border-radius: 7px;
	scroll-snap-align: center;
	background: #d8d5cf;
}
.booom-xd-gallery__track.booom-office-carousel__track img {
	width: 100%;
	height: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	object-position: center;
}
.booom-xd-gallery__track.booom-office-carousel__track figcaption { display: none; }

/* About composition follows the original XD: tall primary photo with a smaller overlapping image. */
.booom-xd-about-home__layout {
	grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
	gap: clamp(76px, 9vw, 138px);
	align-items: center;
}
.booom-xd-about-home__media {
	position: relative;
	display: block;
	min-height: clamp(620px, 52vw, 760px);
}
.booom-xd-about-home__media figure,
.booom-xd-about-home__media figure:first-child,
.booom-xd-about-home__media figure:last-child {
	position: absolute;
	margin: 0;
	inset: auto;
	overflow: hidden;
	border-radius: 7px;
	background: #171717;
}
.booom-xd-about-home__photo--primary {
	top: 0;
	left: 0;
	width: 76%;
	height: 86%;
	aspect-ratio: auto;
}
.booom-xd-about-home__photo--secondary {
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 44%;
	height: 43%;
	aspect-ratio: auto;
	border: 8px solid var(--booom-xd-light);
}
.booom-xd-about-home__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1024px) {
	.booom-xd-about-home__layout {
		grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
		gap: 54px;
	}
	.booom-xd-about-home__media { min-height: 590px; }
}

@media (max-width: 767px) {
	.booom-xd-hero {
		padding: 18px 0 26px;
	}
	.booom-xd-hero__slides {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto;
		aspect-ratio: auto;
		border-radius: 16px;
	}
	.booom-xd-hero__slide {
		grid-row: 1;
		aspect-ratio: 12 / 5;
	}
	.booom-xd-hero__nav {
		grid-row: 2;
		margin: 12px 16px 16px;
	}
	.booom-xd-client-logos {
		padding: 20px 0 44px;
	}
	.booom-xd-client-logos figure {
		width: 142px;
		height: 68px;
	}
	.booom-xd-client-logos__group { gap: 28px; padding-right: 28px; }
	.booom-xd-gallery {
		padding: 64px 0 74px;
	}
	.booom-xd-gallery__track.booom-office-carousel__track {
		grid-auto-columns: 70vw;
		gap: 16px;
		padding-inline: 24px;
		scroll-padding-inline: 24px;
	}
	.booom-xd-about-home__layout {
		grid-template-columns: 1fr;
		gap: 54px;
	}
	.booom-xd-about-home__media {
		min-height: 560px;
	}
	.booom-xd-about-home__photo--primary {
		width: 78%;
		height: 83%;
	}
	.booom-xd-about-home__photo--secondary {
		width: 49%;
		height: 42%;
		border-width: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.booom-xd-client-logos__track { animation: none; }
	.booom-xd-client-logos__viewport { overflow-x: auto; }
}

/* v0.19.2 — composição Sobre fiel ao XD e vídeo institucional local. */
.booom-xd-local-video {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: var(--booom-xd-radius);
	background: #111;
	box-shadow: 0 20px 54px rgba(11, 11, 11, .10);
}
.booom-xd-local-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #111;
}

.booom-xd-about-home .booom-xd-about-home__layout {
	display: grid;
	grid-template-columns: minmax(440px, .92fr) minmax(0, 1.08fr);
	gap: clamp(72px, 9vw, 138px);
	align-items: center;
}
.booom-xd-about-home .booom-xd-about-home__media {
	position: relative;
	display: block;
	width: 100%;
	min-height: 0;
	aspect-ratio: 5 / 6;
}
.booom-xd-about-home .booom-xd-about-home__media figure,
.booom-xd-about-home .booom-xd-about-home__media figure:first-child,
.booom-xd-about-home .booom-xd-about-home__media figure:last-child {
	position: absolute;
	inset: auto;
	margin: 0;
	overflow: hidden;
	border: 0;
	border-radius: 7px;
	background: #171717;
}
.booom-xd-about-home .booom-xd-about-home__photo--primary,
.booom-xd-about-home .booom-xd-about-home__media figure:first-child {
	top: 0;
	left: 0;
	z-index: 1;
	width: 81%;
	height: auto;
	aspect-ratio: 4 / 5;
}
.booom-xd-about-home .booom-xd-about-home__photo--secondary,
.booom-xd-about-home .booom-xd-about-home__media figure:last-child {
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 41%;
	height: auto;
	aspect-ratio: 4 / 5;
	box-shadow: 0 18px 46px rgba(11, 11, 11, .16);
}
.booom-xd-about-home .booom-xd-about-home__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1024px) {
	.booom-xd-about-home .booom-xd-about-home__layout {
		grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
		gap: 54px;
	}
}

@media (max-width: 767px) {
	.booom-xd-local-video { border-radius: 8px; }
	.booom-xd-about-home .booom-xd-about-home__layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.booom-xd-about-home .booom-xd-about-home__media {
		width: min(100%, 540px);
		margin-inline: auto;
		aspect-ratio: 5 / 6;
	}
	.booom-xd-about-home .booom-xd-about-home__photo--primary,
	.booom-xd-about-home .booom-xd-about-home__media figure:first-child {
		width: 80%;
	}
	.booom-xd-about-home .booom-xd-about-home__photo--secondary,
	.booom-xd-about-home .booom-xd-about-home__media figure:last-child {
		width: 43%;
	}
}


/* v0.19.3 — vídeo visual conforme o XD: sem título, kicker ou texto auxiliar. */
.booom-xd-video--visual-only {
	padding: 0 0 clamp(84px, 9vw, 144px);
	background: var(--booom-xd-paper);
}
.booom-xd-video--visual-only .grid-container {
	width: min(100% - 32px, var(--booom-xd-container));
}
.booom-xd-video--visual-only .booom-xd-local-video {
	margin: 0;
}
@media (max-width: 768px) {
	.booom-xd-video--visual-only {
		padding-bottom: 82px;
	}
	.booom-xd-video--visual-only .grid-container {
		width: min(100% - 32px, var(--booom-xd-container));
	}
}


/* v0.19.4 — hero em autoplay, sem controles e com respiro real ao redor. */
.booom-xd-hero {
	padding-top: clamp(34px, 4vw, 58px);
	padding-bottom: clamp(38px, 4.5vw, 66px);
}
.booom-xd-hero__slides {
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	aspect-ratio: 16 / 5;
	overflow: hidden;
	border: 0;
	border-radius: 12px;
	background: transparent;
	box-shadow: none;
}
.booom-xd-hero__slide,
.booom-xd-hero__slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.booom-xd-hero__slide img {
	object-fit: cover;
	object-position: center;
	filter: none;
	transform: none;
}
.booom-xd-hero__nav,
.booom-xd-hero__controls,
.booom-xd-hero__pagination {
	display: none !important;
}

@media (max-width: 767px) {
	.booom-xd-hero {
		padding: 24px 0 36px;
	}
	.booom-xd-hero__slides {
		display: block;
		aspect-ratio: 16 / 5;
		border-radius: 10px;
	}
	.booom-xd-hero__slide {
		aspect-ratio: auto;
	}
}


/* v0.19.6 — autoplay mais ágil com transição suave em crossfade. */
.booom-xd-hero__slide {
	display: block !important;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	pointer-events: none;
	transition: opacity 1.15s cubic-bezier(.22, .61, .36, 1), visibility 0s linear 1.15s;
}
.booom-xd-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
	pointer-events: auto;
	transition-delay: 0s;
}
.booom-xd-hero__slide img {
	transform: scale(1.015);
	transition: transform 5.5s cubic-bezier(.2, .65, .3, 1);
	will-change: opacity, transform;
}
.booom-xd-hero__slide.is-active img {
	transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
	.booom-xd-hero__slide,
	.booom-xd-hero__slide img {
		transition: none;
		transform: none;
	}
}


/* v0.19.6 — controles redundantes removidos da seção de dores. */
.booom-xd-pain__header { justify-content: flex-start; }
.booom-xd-pain__controls { display: none !important; }

/* v0.19.8 — artboard framed like the XD, white cases and refreshed gallery/FAQ. */
:root {
	--booom-xd-site-frame: 1440px;
}
body.booom-home-frame {
	background: #fff;
}
body.booom-home-frame .booom-site-header,
body.booom-home-frame .booom-xd-home,
body.booom-home-frame .booom-xd-footer {
	width: min(100%, var(--booom-xd-site-frame));
	margin-right: auto;
	margin-left: auto;
}
body.booom-home-frame .booom-xd-home {
	background: var(--booom-xd-paper);
}
.booom-xd-created,
.booom-xd-created.booom-xd-band--light {
	background: #fff !important;
}
.booom-xd-faq-section__list .booom-faq__answer p + p {
	margin-top: 12px;
}
.booom-xd-gallery__track.booom-office-carousel__track figure:nth-child(2) img,
.booom-xd-gallery__track.booom-office-carousel__track figure:nth-child(4) img {
	object-position: center center;
}
@media (max-width: 1440px) {
	body.booom-home-frame .booom-site-header,
	body.booom-home-frame .booom-xd-home,
	body.booom-home-frame .booom-xd-footer {
		width: 100%;
	}
}
body.booom-home-frame .booom-xd-gallery__track.booom-office-carousel__track {
	padding-right: max(24px, calc((min(100vw, var(--booom-xd-site-frame)) - var(--booom-xd-container)) / 2));
	padding-left: max(24px, calc((min(100vw, var(--booom-xd-site-frame)) - var(--booom-xd-container)) / 2));
	scroll-padding-inline: max(24px, calc((min(100vw, var(--booom-xd-site-frame)) - var(--booom-xd-container)) / 2));
}

/* v0.19.8 — conteúdo mais próximo das bordas do artboard, como no Adobe XD. */
:root {
	--booom-xd-container: 1340px;
}

/* Hero e vídeo ocupam praticamente toda a largura útil do quadro rosé. */
body.booom-home-frame .booom-xd-hero.grid-container,
body.booom-home-frame .booom-xd-video--visual-only .grid-container {
	width: min(100% - 32px, 1392px);
	max-width: 1392px;
}

/* Cases e depoimentos ganham mais presença sem eliminar o respiro do XD. */
body.booom-home-frame .booom-xd-created > .grid-container,
body.booom-home-frame .booom-xd-partnerships__layout {
	width: min(100% - 64px, 1340px);
	max-width: 1340px;
}

/* Mantém a fotografia enviada como o quarto item da galeria. */
.booom-xd-gallery__track.booom-office-carousel__track figure:nth-child(4) img {
	object-position: center center;
}

@media (max-width: 767px) {
	body.booom-home-frame .booom-xd-hero.grid-container,
	body.booom-home-frame .booom-xd-video--visual-only .grid-container {
		width: calc(100% - 24px);
	}
	body.booom-home-frame .booom-xd-created > .grid-container,
	body.booom-home-frame .booom-xd-partnerships__layout {
		width: calc(100% - 32px);
	}
}

/* v0.19.9 — nova composição de equipe e galeria com maior variedade visual. */
.booom-xd-about-home .booom-xd-about-home__media {
	aspect-ratio: 6 / 5;
}
.booom-xd-about-home .booom-xd-about-home__photo--primary,
.booom-xd-about-home .booom-xd-about-home__media figure:first-child {
	top: 2%;
	left: 0;
	width: 94%;
	height: auto;
	aspect-ratio: 16 / 9;
	box-shadow: 0 18px 46px rgba(11, 11, 11, .10);
}
.booom-xd-about-home .booom-xd-about-home__photo--secondary,
.booom-xd-about-home .booom-xd-about-home__media figure:last-child {
	right: 0;
	bottom: 0;
	width: 34%;
	height: auto;
	aspect-ratio: 4 / 5;
	border: 7px solid var(--booom-xd-light);
	box-shadow: 0 18px 46px rgba(11, 11, 11, .18);
}
.booom-xd-about-home .booom-xd-about-home__photo--primary img {
	object-fit: cover;
	object-position: center center;
}
.booom-xd-about-home .booom-xd-about-home__photo--secondary img {
	object-fit: cover;
	object-position: center 42%;
}

/* A nova ordem mistura equipe, salas e detalhes, evitando repetição de paredes com a marca. */
.booom-xd-gallery__track.booom-office-carousel__track figure:nth-child(1) img {
	object-position: center 35%;
}
.booom-xd-gallery__track.booom-office-carousel__track figure:nth-child(4) img {
	object-position: center center;
}

@media (max-width: 1024px) {
	.booom-xd-about-home .booom-xd-about-home__media {
		aspect-ratio: 6 / 5;
	}
	.booom-xd-about-home .booom-xd-about-home__photo--primary,
	.booom-xd-about-home .booom-xd-about-home__media figure:first-child {
		width: 93%;
	}
	.booom-xd-about-home .booom-xd-about-home__photo--secondary,
	.booom-xd-about-home .booom-xd-about-home__media figure:last-child {
		width: 35%;
	}
}

@media (max-width: 767px) {
	.booom-xd-about-home .booom-xd-about-home__media {
		aspect-ratio: 6 / 5;
	}
	.booom-xd-about-home .booom-xd-about-home__photo--primary,
	.booom-xd-about-home .booom-xd-about-home__media figure:first-child {
		top: 0;
		width: 94%;
	}
	.booom-xd-about-home .booom-xd-about-home__photo--secondary,
	.booom-xd-about-home .booom-xd-about-home__media figure:last-child {
		width: 38%;
		border-width: 5px;
	}
}

/* v0.21.0 — páginas editoriais de serviços reconstruídas a partir do projeto Notion. */
.booom-xd-service-hero {
	padding-top: clamp(64px, 7vw, 112px);
	padding-bottom: clamp(72px, 8vw, 128px);
	background: var(--booom-xd-paper);
}
.booom-xd-service-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
	gap: clamp(48px, 7vw, 110px);
	align-items: center;
}
.booom-xd-service-hero__copy h1 {
	max-width: 830px;
	margin: 16px 0 26px;
	font-size: clamp(48px, 6vw, 88px);
	line-height: .94;
	letter-spacing: -.06em;
}
.booom-xd-service-hero__copy > p:not(.booom-xd-kicker):not(.booom-breadcrumbs) {
	max-width: 680px;
	color: var(--booom-xd-muted);
	font-size: clamp(17px, 1.4vw, 21px);
}
.booom-xd-service-hero__copy ul {
	display: grid;
	gap: 10px;
	margin: 30px 0 34px;
	padding: 0;
	list-style: none;
}
.booom-xd-service-hero__copy li {
	position: relative;
	padding-left: 27px;
	font-weight: 600;
}
.booom-xd-service-hero__copy li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--booom-xd-yellow);
}
.booom-xd-service-hero__media {
	margin: 0;
	min-height: 620px;
	overflow: hidden;
	border-radius: var(--booom-xd-radius);
	background: var(--booom-xd-light);
}
.booom-xd-service-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
}
.booom-page-heading {
	max-width: 900px;
	margin-bottom: 42px;
}
.booom-page-heading > p:last-child {
	max-width: 760px;
	color: var(--booom-xd-muted);
	font-size: 18px;
}
.booom-service-intro > div > p:not(.booom-eyebrow) {
	max-width: 700px;
	color: var(--booom-xd-muted);
	font-size: 18px;
}
.booom-service-checklist,
.booom-service-deliverables ul,
.booom-service-audience ul,
.booom-service-comparison ul {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}
.booom-service-checklist li,
.booom-service-deliverables li,
.booom-service-audience li,
.booom-service-comparison li {
	position: relative;
	padding: 13px 0 13px 30px;
	border-bottom: 1px solid var(--booom-xd-line);
}
.booom-service-checklist li::before,
.booom-service-deliverables li::before,
.booom-service-audience li::before,
.booom-service-comparison li::before {
	content: "↗";
	position: absolute;
	left: 0;
	top: 13px;
	font-weight: 700;
}
.booom-service-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin-top: 50px;
	border: 1px solid var(--booom-xd-line);
	background: var(--booom-xd-line);
}
.booom-service-card-grid article {
	min-height: 285px;
	padding: clamp(28px, 4vw, 48px);
	background: var(--booom-xd-paper);
}
.booom-service-card-grid article > span {
	display: block;
	margin-bottom: 62px;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .08em;
}
.booom-service-card-grid h3 {
	margin: 0 0 16px;
	font-size: clamp(25px, 2.5vw, 36px);
	line-height: 1;
	letter-spacing: -.035em;
}
.booom-service-card-grid p {
	margin: 0;
	color: var(--booom-xd-muted);
}
.booom-service-comparison__grid,
.booom-service-audience__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.booom-service-comparison__grid article,
.booom-service-audience__grid article {
	padding: clamp(30px, 4vw, 52px);
	border: 1px solid var(--booom-xd-line);
	border-radius: var(--booom-xd-radius);
}
.booom-service-comparison__positive,
.booom-service-audience__fit {
	background: var(--booom-xd-yellow);
}
.booom-service-comparison__negative,
.booom-service-audience__not {
	background: var(--booom-xd-light);
}
.booom-service-comparison__grid h3,
.booom-service-audience__grid h2 {
	margin-top: 0;
	font-size: clamp(30px, 3.5vw, 48px);
	line-height: 1;
	letter-spacing: -.045em;
}
.booom-service-statement {
	max-width: 1050px;
	margin: 56px auto 0;
	padding: 0;
	border: 0;
	font-size: clamp(32px, 4.4vw, 62px);
	font-weight: 650;
	line-height: 1.02;
	letter-spacing: -.05em;
	text-align: center;
}
.booom-service-process ol {
	margin: 44px 0 0;
	padding: 0;
	border-top: 1px solid var(--booom-xd-line);
	list-style: none;
}
.booom-service-process li {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 28px;
	padding: 31px 0;
	border-bottom: 1px solid var(--booom-xd-line);
}
.booom-service-process li > span {
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .08em;
}
.booom-service-process h3 {
	margin: 0 0 8px;
	font-size: clamp(24px, 2.6vw, 35px);
	line-height: 1.05;
}
.booom-service-process p {
	max-width: 760px;
	margin: 0;
	color: var(--booom-xd-muted);
}
.booom-page-block--dark {
	position: relative;
	color: #fff;
}
.booom-page-block--dark::before {
	content: "";
	position: absolute;
	inset: 0 calc(50% - 50vw);
	z-index: -1;
	background: var(--booom-xd-ink);
}
.booom-page-block--dark h2,
.booom-page-block--dark h3,
.booom-page-block--dark a {
	color: #fff;
}
.booom-service-deliverables__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
	gap: clamp(50px, 7vw, 100px);
	align-items: center;
}
.booom-service-deliverables li {
	border-color: rgba(255,255,255,.2);
}
.booom-service-deliverables .booom-asset img {
	max-height: 720px;
}
.booom-service-local {
	max-width: 950px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.booom-service-local p:last-child {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	color: var(--booom-xd-muted);
	font-size: 18px;
}
.booom-service-faq .booom-native-faq {
	max-width: 950px;
}
.booom-native-faq details p {
	max-width: 780px;
	margin: 16px 0 4px;
	color: var(--booom-xd-muted);
}
.booom-service-directory article {
	position: relative;
	min-height: 240px;
}
.booom-service-directory article > span {
	display: block;
	margin-bottom: 46px;
	font-weight: 750;
}
.booom-service-directory h2 a {
	color: inherit;
	text-decoration: none;
}
.booom-service-directory p {
	color: var(--booom-xd-muted);
}
.booom-service-directory__geo {
	background: var(--booom-xd-yellow) !important;
}
.booom-service-directory__geo p {
	color: var(--booom-xd-ink);
}
.booom-about-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.booom-about-gallery__grid .booom-asset:first-child {
	grid-column: 1 / -1;
}
.booom-about-gallery__grid .booom-asset:first-child img {
	aspect-ratio: 16 / 8;
}
.booom-about-gallery__grid .booom-asset img {
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

@media (max-width: 980px) {
	.booom-xd-service-hero__grid,
	.booom-service-deliverables__layout {
		grid-template-columns: 1fr;
	}
	.booom-xd-service-hero__media,
	.booom-xd-service-hero__media img {
		min-height: 0;
	}
	.booom-xd-service-hero__media img {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 700px) {
	.booom-xd-service-hero {
		padding-top: 42px;
	}
	.booom-xd-service-hero__grid {
		gap: 38px;
	}
	.booom-xd-service-hero__copy h1 {
		font-size: clamp(42px, 13.5vw, 64px);
	}
	.booom-xd-service-hero__copy .booom-xd-button {
		width: 100%;
		text-align: center;
	}
	.booom-service-card-grid,
	.booom-service-comparison__grid,
	.booom-service-audience__grid,
	.booom-about-gallery__grid {
		grid-template-columns: 1fr;
	}
	.booom-about-gallery__grid .booom-asset:first-child {
		grid-column: auto;
	}
	.booom-service-card-grid article {
		min-height: 230px;
	}
	.booom-service-card-grid article > span {
		margin-bottom: 38px;
	}
	.booom-service-process li {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 16px;
	}
	.booom-service-statement {
		font-size: clamp(31px, 10vw, 45px);
	}
	.booom-about-gallery__grid .booom-asset img {
		min-height: 280px;
	}
}


/* v0.21.1 — check-in visual global de páginas internas.
 * Corrige CTAs com texto quebrado/cortado, overflow horizontal e grids que
 * comprimiam conteúdo em páginas de serviço, cases e institucionais.
 */
.booom-xd-page {
	overflow-x: clip;
}
.booom-xd-page img,
.booom-xd-page video,
.booom-xd-page iframe {
	max-width: 100%;
}
.booom-xd-page .grid-container > *,
.booom-xd-page [class*="__grid"] > *,
.booom-page-proof > *,
.booom-page-block--split > *,
.booom-service-deliverables__layout > * {
	min-width: 0;
}
.booom-xd-page .booom-button,
.booom-xd-page .booom-xd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: auto;
	min-height: 52px;
	max-width: 100%;
	padding: 14px 24px;
	line-height: 1.2;
	text-align: center;
	white-space: normal;
	overflow: visible;
	text-wrap: balance;
}
.booom-page-proof {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
	align-items: end;
	column-gap: clamp(32px, 5vw, 76px);
	row-gap: 28px;
}
.booom-page-proof > div {
	min-width: 0;
}
.booom-page-proof h2 {
	max-width: 900px;
	margin-bottom: 18px;
	text-wrap: balance;
	overflow-wrap: anywhere;
}
.booom-page-proof > div > p:last-child {
	max-width: 760px;
}
.booom-page-proof .booom-button {
	justify-self: end;
	width: auto;
	min-width: 220px;
	max-width: 320px;
	flex: none;
	box-sizing: border-box;
}
.booom-service-directory h2,
.booom-service-card-grid h3,
.booom-service-comparison__grid h3,
.booom-service-audience__grid h2,
.booom-xd-case-card h2 {
	overflow-wrap: anywhere;
	text-wrap: balance;
}
.booom-native-faq summary {
	min-height: 64px;
	padding-right: 78px;
	line-height: 1.35;
}
.booom-native-faq details,
.booom-native-faq summary,
.booom-native-faq details p {
	max-width: 100%;
}
.booom-xd-service-hero__copy,
.booom-xd-service-hero__media,
.booom-xd-case-detail-hero__copy,
.booom-xd-case-detail-hero__media,
.booom-xd-contact-hero__grid > * {
	min-width: 0;
}
.booom-xd-service-hero__copy h1,
.booom-xd-case-detail-hero h1,
.booom-xd-contact-hero h1 {
	overflow-wrap: anywhere;
	text-wrap: balance;
}

@media (max-width: 980px) {
	.booom-page-proof {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.booom-page-proof .booom-button {
		justify-self: start;
	}
}

@media (max-width: 700px) {
	.booom-xd-page {
		overflow-x: hidden;
	}
	.booom-page-proof {
		padding: 32px 24px;
		box-shadow: 8px 8px 0 var(--booom-xd-ink);
	}
	.booom-page-proof .booom-button,
	.booom-xd-page .booom-xd-button {
		width: 100%;
		min-width: 0;
		max-width: none;
		justify-self: stretch;
	}
	.booom-native-faq summary {
		padding-right: 68px;
	}
	.booom-service-process li {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 16px;
	}
}

@media (max-width: 380px) {
	.booom-page-proof {
		padding: 26px 20px;
	}
	.booom-xd-page .booom-button,
	.booom-xd-page .booom-xd-button {
		padding-right: 18px;
		padding-left: 18px;
		font-size: 14px;
	}
}

/* ==========================================================
 * Blog final / 0.21.3
 * Recent posts, standardized previews, author pages and sidebar.
 * ========================================================== */
.booom-xd-blog__header .booom-breadcrumbs {
	margin: 0 0 36px;
	text-align: left;
}

.booom-xd-blog__intro {
	max-width: 720px;
	margin: 28px auto 0;
	color: var(--booom-xd-muted);
	font-size: 18px;
	line-height: 1.7;
}

.booom-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: clamp(42px, 5vw, 78px);
	align-items: start;
	margin-top: 72px;
}

.booom-blog-feed {
	min-width: 0;
}

.booom-blog-feed__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--booom-xd-line);
}

.booom-blog-feed__heading h2 {
	margin: 0;
	font-size: clamp(28px, 3vw, 42px);
	letter-spacing: -.04em;
	line-height: 1;
}

.booom-blog-feed__filter {
	display: flex;
	align-items: center;
	gap: 8px;
}

.booom-blog-feed__category,
.booom-blog-feed__filter button {
	min-height: 42px;
	border: 1px solid var(--booom-xd-line);
	border-radius: 8px;
	background: var(--booom-xd-paper);
	color: var(--booom-xd-ink);
	font-size: 13px;
}

.booom-blog-feed__category {
	max-width: 230px;
	padding: 0 12px;
}

.booom-blog-feed__filter button {
	padding: 0 16px;
	font-weight: 700;
	cursor: pointer;
}

.booom-blog-feed__filter button:hover,
.booom-blog-feed__filter button:focus-visible {
	background: var(--booom-xd-yellow);
	border-color: var(--booom-xd-yellow);
}

.booom-blog-feed__list .booom-post-card {
	display: grid;
	grid-template-columns: minmax(220px, .74fr) minmax(0, 1.26fr);
	gap: 30px;
	align-items: start;
	margin: 0;
	padding: 28px 0;
	border-bottom: 1px solid var(--booom-xd-line);
}

.booom-blog-feed__list .booom-post-card:first-child {
	padding-top: 0;
}

.booom-blog-feed__list .booom-post-card__media {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	min-height: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #e6e0da;
}

.booom-blog-feed__list .booom-post-card__media img,
.booom-post-card__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
	transition: transform 240ms ease;
}

.booom-blog-feed__list .booom-post-card__media:hover img {
	transform: scale(1.025);
}

.booom-post-card__content {
	min-width: 0;
	padding-top: 2px;
}

.booom-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 10px;
	color: var(--booom-xd-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.booom-post-card__meta a {
	color: inherit;
	text-decoration: none;
}

.booom-post-card__meta a:hover {
	color: var(--booom-xd-ink);
}

.booom-blog-feed__list .booom-post-card__title {
	margin: 0 0 12px;
	font-size: clamp(25px, 2.55vw, 35px);
	letter-spacing: -.04em;
	line-height: 1.04;
}

.booom-blog-feed__list .booom-post-card__title a {
	color: var(--booom-xd-ink);
	text-decoration: none;
}

.booom-post-card__excerpt {
	margin: 0 0 18px;
	color: var(--booom-xd-muted);
	font-size: 15px;
	line-height: 1.62;
}

.booom-post-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--booom-xd-ink);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-decoration: none;
	text-transform: uppercase;
}

.booom-post-card__link:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.booom-blog-sidebar {
	position: sticky;
	top: 104px;
	min-width: 0;
}

.booom-blog-sidebar__search form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
	align-items: stretch;
	margin-bottom: 28px;
	background: #e3e1df;
}

.booom-blog-sidebar__search input,
.booom-blog-sidebar__search button {
	min-height: 44px;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.booom-blog-sidebar__search input {
	min-width: 0;
	padding: 0 14px;
	font-size: 13px;
}

.booom-blog-sidebar__search button {
	font-size: 22px;
	cursor: pointer;
}

.booom-blog-sidebar__section {
	margin-top: 26px;
}

.booom-blog-sidebar__section h2 {
	margin: 0;
	padding: 12px 16px;
	background: var(--booom-xd-yellow);
	color: var(--booom-xd-ink);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	text-align: center;
}

.booom-blog-sidebar__links,
.booom-blog-sidebar__topics {
	display: grid;
}

.booom-blog-sidebar__links a,
.booom-blog-sidebar__topics a {
	display: block;
	padding: 12px 2px;
	border-bottom: 1px solid rgba(11, 11, 11, .28);
	color: var(--booom-xd-muted);
	font-size: 13px;
	line-height: 1.45;
	text-decoration: none;
}

.booom-blog-sidebar__links a:hover,
.booom-blog-sidebar__topics a:hover {
	color: var(--booom-xd-ink);
}

.booom-blog-sidebar__topics a span {
	margin-right: 5px;
	color: var(--booom-xd-ink);
}

.booom-xd-blog .navigation.pagination {
	margin-top: 36px;
}

.booom-xd-blog .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.booom-xd-blog .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid var(--booom-xd-line);
	border-radius: 7px;
	background: var(--booom-xd-paper);
	color: var(--booom-xd-ink);
	text-decoration: none;
}

.booom-xd-blog .page-numbers.current,
.booom-xd-blog .page-numbers:hover {
	background: var(--booom-xd-yellow);
	border-color: var(--booom-xd-yellow);
}

/* Single post with editorial sidebar. */
.booom-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
	gap: clamp(50px, 6vw, 88px);
	align-items: start;
	justify-content: center;
	padding-top: 88px;
}

.booom-single-main {
	min-width: 0;
}

.booom-single-layout .booom-article-content {
	width: 100%;
	max-width: none;
	margin: 0;
}

.booom-single-layout .booom-author-box {
	max-width: none;
	margin: 64px 0 0;
}

.booom-author-box {
	position: relative;
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 24px;
	padding: 28px;
	border: 1px solid var(--booom-xd-line);
	border-radius: 12px;
	background: var(--booom-xd-paper);
	overflow: hidden;
}

.booom-author-box::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 6px;
	background: var(--booom-xd-yellow);
}

.booom-author-box__avatar img {
	display: block;
	width: 112px;
	height: 112px;
	border-radius: 50%;
	object-fit: cover;
}

.booom-author-box__eyebrow,
.booom-author-box__role,
.booom-author-box__bio,
.booom-author-box__footer {
	margin: 0;
}

.booom-author-box__eyebrow {
	margin-bottom: 5px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.booom-author-box__name {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
	letter-spacing: -.035em;
	line-height: 1;
}

.booom-author-box__name a {
	color: inherit;
	text-decoration: none;
}

.booom-author-box__role {
	margin-top: 7px;
	font-size: 13px;
	font-weight: 700;
}

.booom-author-box__bio {
	margin-top: 13px;
	color: var(--booom-xd-muted);
	font-size: 14px;
	line-height: 1.65;
}

.booom-author-box__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 18px;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--booom-xd-line);
	font-size: 12px;
}

.booom-author-box__footer a {
	color: var(--booom-xd-ink);
	font-weight: 800;
	text-decoration: none;
}

.booom-related {
	width: min(100% - 48px, var(--booom-xd-container));
	max-width: var(--booom-xd-container);
	margin: 90px auto 0;
	padding-top: 56px;
}

.booom-related > h2 {
	font-size: clamp(38px, 5vw, 64px);
	letter-spacing: -.05em;
	line-height: .96;
}

.booom-related__item {
	overflow: hidden;
	padding: 0 0 20px;
	border-radius: 10px;
}

.booom-related__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.booom-related__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.booom-related__item .booom-article-meta,
.booom-related__item h3 {
	margin-left: 18px;
	margin-right: 18px;
}

.booom-related__item .booom-article-meta {
	margin-top: 18px;
}

/* Author archive. */
.booom-author-page {
	background: var(--booom-xd-light);
	padding-bottom: 120px;
}

.booom-author-page__hero {
	padding: 86px 0 10px;
}

.booom-author-page__hero .booom-breadcrumbs {
	margin-bottom: 42px;
}

.booom-author-page__card {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 42px;
	align-items: center;
	padding: clamp(28px, 5vw, 58px);
	border-radius: 16px;
	background: var(--booom-xd-yellow);
}

.booom-author-page__avatar img {
	display: block;
	width: 180px;
	height: 180px;
	border: 6px solid rgba(255, 255, 255, .65);
	border-radius: 50%;
	object-fit: cover;
}

.booom-author-page__copy h1 {
	margin: 3px 0 10px;
	font-size: clamp(44px, 6vw, 78px);
	letter-spacing: -.06em;
	line-height: .94;
}

.booom-author-page__role {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
}

.booom-author-page__bio {
	max-width: 760px;
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.7;
}

.booom-author-page__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(11, 11, 11, .24);
	font-size: 13px;
	font-weight: 700;
}

.booom-author-page__meta a {
	color: inherit;
	text-decoration: none;
}

.booom-author-page__content {
	margin-top: 64px;
}

/* Keep Home Blog truly dynamic without visual jumping from mixed source images. */
.booom-xd-blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1050px) {
	.booom-blog-layout,
	.booom-single-layout {
		grid-template-columns: 1fr;
	}

	.booom-blog-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px;
		margin-top: 26px;
	}

	.booom-blog-sidebar__search {
		grid-column: 1 / -1;
	}

	.booom-blog-sidebar__section {
		margin-top: 0;
	}
}

@media (max-width: 720px) {
	.booom-blog-layout,
	.booom-single-layout {
		padding-left: 0;
		padding-right: 0;
	}

	.booom-blog-feed__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.booom-blog-feed__filter {
		width: 100%;
	}

	.booom-blog-feed__category {
		flex: 1;
		max-width: none;
	}

	.booom-blog-feed__list .booom-post-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 28px 0;
	}

	.booom-blog-feed__list .booom-post-card__media {
		aspect-ratio: 16 / 9;
	}

	.booom-blog-feed__list .booom-post-card__title {
		font-size: clamp(27px, 8.6vw, 38px);
	}

	.booom-blog-sidebar {
		grid-template-columns: 1fr;
	}

	.booom-blog-sidebar__search {
		grid-column: auto;
	}

	.booom-author-box {
		grid-template-columns: 78px minmax(0, 1fr);
		gap: 18px;
		padding: 24px 20px 24px 26px;
	}

	.booom-author-box__avatar img {
		width: 78px;
		height: 78px;
	}

	.booom-author-box__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.booom-author-page__card {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.booom-author-page__avatar img {
		width: 128px;
		height: 128px;
	}

	.booom-related {
		width: min(100% - 32px, var(--booom-xd-container));
	}
}

/* ==========================================================================
   Final QA — 0.21.4: WhatsApp, progressive Blog and core institutional pages
   ========================================================================== */
.booom-whatsapp-duplicate-hidden { display: none !important; visibility: hidden !important; pointer-events: none !important; }

.booom-blog-infinite {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 96px;
	margin-top: 20px;
	color: #65625f;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em;
	text-align: center;
}
.booom-blog-infinite__spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(13,13,13,.16);
	border-top-color: var(--booom-xd-yellow);
	border-radius: 50%;
	opacity: 0;
}
.booom-blog-infinite.is-loading .booom-blog-infinite__spinner { opacity: 1; animation: booom-blog-spin .72s linear infinite; }
.booom-blog-infinite.is-complete .booom-blog-infinite__spinner { display: none; }
.booom-blog-pagination-fallback.is-js-hidden { display: none !important; }
@keyframes booom-blog-spin { to { transform: rotate(360deg); } }

.booom-xd-privacy-hero {
	padding: 92px 0 86px;
	background: #0d0d0d;
	color: #fff;
}
.booom-xd-privacy-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
	gap: 70px;
	align-items: end;
}
.booom-xd-privacy-hero .booom-breadcrumbs,
.booom-xd-privacy-hero .booom-breadcrumbs a { color: rgba(255,255,255,.62); }
.booom-xd-privacy-hero h1 {
	max-width: 800px;
	margin: 18px 0 24px;
	font-size: clamp(58px, 7.3vw, 112px);
	line-height: .9;
	letter-spacing: -.065em;
	color: #fff;
}
.booom-xd-privacy-hero__grid > div:first-child > p:last-child { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); font-size: 19px; }
.booom-xd-privacy-hero__seal {
	min-height: 300px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--booom-xd-yellow);
	color: #0d0d0d;
	border-radius: 2px 42px 2px 2px;
}
.booom-xd-privacy-hero__seal span { font-size: 14px; font-weight: 900; letter-spacing: .16em; }
.booom-xd-privacy-hero__seal strong { font-size: clamp(34px, 4vw, 54px); line-height: .9; letter-spacing: -.055em; }

.booom-xd-page--privacy .booom-xd-page-content { padding-top: 86px; padding-bottom: 120px; }
.booom-privacy-overview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 70px;
	align-items: start;
	margin-bottom: 70px;
}
.booom-privacy-overview__intro h2 { margin: 10px 0 24px; font-size: clamp(38px, 4.2vw, 62px); line-height: .98; letter-spacing: -.045em; }
.booom-privacy-overview__intro > p:not(.booom-eyebrow) { max-width: 620px; color: #55514d; }
.booom-privacy-updated { padding-top: 18px; border-top: 1px solid var(--booom-xd-line); font-size: 14px; }
.booom-privacy-overview__cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.booom-privacy-overview__cards article { min-height: 180px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: #f3eee8; border: 1px solid #e4ddd5; }
.booom-privacy-overview__cards article:nth-child(1) { background: var(--booom-xd-yellow); border-color: var(--booom-xd-yellow); }
.booom-privacy-overview__cards strong { font-size: 22px; }
.booom-privacy-overview__cards span { color: #5d5954; font-size: 14px; line-height: 1.45; }
.booom-privacy-overview__cards article:nth-child(1) span { color: #292521; }

.booom-privacy-toc { margin: 0 0 70px; padding: 28px 0; border-top: 1px solid var(--booom-xd-line); border-bottom: 1px solid var(--booom-xd-line); }
.booom-privacy-toc > p { margin: 0 0 16px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.booom-privacy-toc > div { display: flex; flex-wrap: wrap; gap: 10px; }
.booom-privacy-toc a { padding: 9px 13px; background: #fff; border: 1px solid var(--booom-xd-line); border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; }
.booom-privacy-toc a:hover { border-color: #0d0d0d; }

.booom-privacy-document { max-width: 1040px; margin: 0 auto; }
.booom-privacy-document > section { scroll-margin-top: 120px; display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 34px; padding: 54px 0; border-top: 1px solid var(--booom-xd-line); }
.booom-privacy-document > section:first-child { border-top: 0; padding-top: 0; }
.booom-privacy-document > section > span { color: var(--booom-xd-yellow); font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.booom-privacy-document h2 { margin: -8px 0 20px; font-size: clamp(31px, 3.2vw, 47px); line-height: 1.02; letter-spacing: -.035em; }
.booom-privacy-document h3 { margin: 30px 0 10px; font-size: 20px; }
.booom-privacy-document p,
.booom-privacy-document li,
.booom-privacy-document dd { color: #4e4a46; }
.booom-privacy-document ul { margin: 20px 0 0; padding-left: 22px; }
.booom-privacy-document li { margin-bottom: 8px; }
.booom-privacy-document dl { margin: 28px 0 0; border-top: 1px solid var(--booom-xd-line); }
.booom-privacy-document dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--booom-xd-line); }
.booom-privacy-document dt { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.booom-privacy-document dd { margin: 0; }
.booom-privacy-cookie-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin: 28px 0; }
.booom-privacy-cookie-grid article { padding: 22px; border: 1px solid var(--booom-xd-line); background: #fff; }
.booom-privacy-cookie-grid strong { display: block; margin-bottom: 8px; }
.booom-privacy-cookie-grid p { margin: 0; font-size: 14px; }

@media (max-width: 860px) {
	.booom-xd-privacy-hero { padding: 68px 0 58px; }
	.booom-xd-privacy-hero__grid,
	.booom-privacy-overview { grid-template-columns: 1fr; gap: 38px; }
	.booom-xd-privacy-hero__seal { min-height: 210px; }
	.booom-privacy-cookie-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
	.booom-xd-privacy-hero h1 { font-size: clamp(48px, 15vw, 68px); }
	.booom-privacy-overview__cards { grid-template-columns: 1fr; }
	.booom-privacy-overview__cards article { min-height: 140px; }
	.booom-privacy-document > section { grid-template-columns: 1fr; gap: 12px; padding: 42px 0; }
	.booom-privacy-document h2 { margin-top: 0; }
	.booom-privacy-document dl > div { grid-template-columns: 1fr; gap: 5px; }
	.booom-blog-infinite { min-height: 82px; }
}

/* === BOOOM 0.21.6: final spacing, cases, regional presence and contact === */
@media (min-width: 981px) {
	body .grid-container,
	body .booom-header-inner.grid-container {
		width: min(calc(100% - 80px), var(--booom-xd-container));
	}
	body .booom-primary-menu { gap: 16px; }
	body .booom-primary-menu > li > a { font-size: 12px; }
}
@media (min-width: 768px) and (max-width: 980px) {
	body .grid-container { width: min(calc(100% - 48px), var(--booom-xd-container)); }
}
@media (max-width: 767px) {
	body .grid-container { width: min(calc(100% - 32px), var(--booom-xd-container)); }
}

.booom-xd-page-content > .booom-page-block,
.booom-xd-page-content > .booom-page-proof,
.booom-xd-page-content > .booom-xd-case-story,
.booom-xd-page-content > .booom-xd-cases-intro {
	box-sizing: border-box;
}

/* Case previews now show the project visual before the story. */
.booom-xd-case-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--booom-xd-line);
	background: var(--booom-xd-light);
	transition: border-color .25s ease, transform .25s ease;
}
.booom-xd-case-card:hover { border-color: var(--booom-xd-ink); transform: translateY(-2px); }
.booom-xd-case-card__media { border-radius: 0; }
.booom-xd-case-card__media .booom-asset { height: 245px; }
.booom-xd-case-card__body { position: relative; display: flex; flex: 1; flex-direction: column; padding: 28px; }
.booom-xd-case-card__number { top: 28px; right: 28px; }
.booom-xd-case-card__client { padding-right: 48px; }
.booom-xd-case-card__link { margin-top: auto; padding-top: 28px; align-self: flex-start; }
@media (max-width: 767px) {
	.booom-xd-case-card__media .booom-asset { height: 220px; }
	.booom-xd-case-card__body { padding: 24px; }
}

/* Regional presence carousel on About. */
.booom-local-presence { padding: 10px 0 18px; }
.booom-local-presence__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 40px;
	align-items: end;
	margin-bottom: 34px;
}
.booom-local-presence__head h2 { max-width: 860px; margin: 0 0 18px; }
.booom-local-presence__head p:last-child { max-width: 780px; margin-bottom: 0; color: var(--booom-xd-muted); }
.booom-local-presence__controls { display: flex; gap: 8px; }
.booom-local-presence__controls button {
	width: 48px;
	height: 48px;
	border: 1px solid var(--booom-xd-ink);
	border-radius: 50%;
	background: transparent;
	color: var(--booom-xd-ink);
	font-size: 20px;
	cursor: pointer;
}
.booom-local-presence__controls button:hover { background: var(--booom-xd-yellow); }
.booom-local-presence__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 36%);
	gap: 18px;
	overflow-x: auto;
	padding: 2px 2px 18px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}
.booom-local-presence__card { scroll-snap-align: start; border: 1px solid var(--booom-xd-line); background: var(--booom-xd-light); }
.booom-local-presence__card > a { display: block; height: 100%; text-decoration: none; }
.booom-local-presence__media { position: relative; height: 210px; overflow: hidden; background: #ddd7d1; }
.booom-local-presence__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.booom-local-presence__card:hover img { transform: scale(1.025); }
.booom-local-presence__media span {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 8px 12px;
	background: var(--booom-xd-yellow);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.booom-local-presence__body { padding: 24px; }
.booom-local-presence__body > p { margin: 0 0 10px; color: var(--booom-xd-muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booom-local-presence__body h3 { margin: 0 0 24px; font-size: 26px; line-height: 1.05; }
.booom-local-presence__body > span { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; text-transform: uppercase; }
@media (max-width: 767px) {
	.booom-local-presence__head { grid-template-columns: 1fr; gap: 18px; }
	.booom-local-presence__track { grid-auto-columns: 84%; }
	.booom-local-presence__media { height: 190px; }
}

/* Regional landing pages. */
.booom-xd-local-hero__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 70px; align-items: center; }
.booom-xd-local-hero__copy h1 { margin: 0; font-size: clamp(46px, 5.8vw, 82px); letter-spacing: -.06em; line-height: .95; }
.booom-xd-local-hero__copy > p:not(.booom-xd-kicker) { max-width: 690px; color: var(--booom-xd-muted); font-size: 18px; }
.booom-xd-local-hero__media { position: relative; margin: 0; min-height: 520px; overflow: hidden; border-radius: 8px; background: var(--booom-xd-light); }
.booom-xd-local-hero__media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.booom-xd-local-hero__media figcaption { position: absolute; left: 24px; bottom: 24px; padding: 10px 14px; background: var(--booom-xd-yellow); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 980px) {
	.booom-xd-local-hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.booom-xd-local-hero__media, .booom-xd-local-hero__media img { min-height: 360px; }
}

/* Full office address on Contact. */
.booom-xd-contact-meta span { max-width: 520px; color: var(--booom-xd-muted); font-weight: 500; }
.booom-xd-contact-meta a:last-child { width: fit-content; margin-top: 4px; padding-bottom: 2px; border-bottom: 1px solid currentColor; }
.booom-contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booom-contact-cards__address { grid-column: 1 / -1; }
@media (max-width: 767px) {
	.booom-contact-cards { grid-template-columns: 1fr; }
	.booom-contact-cards__address { grid-column: auto; }
}

/* === BOOOM 0.21.8: editorial scale + global page gutters + cleaner contact === */

/* The contact hero now introduces the conversation only. Contact data stays in the functional cards below. */
.booom-xd-contact-hero__note {
	max-width: 560px;
	margin-top: 26px !important;
	color: var(--booom-xd-muted);
	font-size: 15px !important;
	line-height: 1.55;
}

/* Wider breathing room on legacy/existing WordPress pages that do not use the BOOOM commercial template. */
body.page:not(.home):not(.page-template-template-booom-landing) .inside-article {
	box-sizing: border-box;
	width: min(calc(100% - 96px), 1280px);
	margin-inline: auto;
}
body.page:not(.home):not(.page-template-template-booom-landing) .entry-content {
	min-width: 0;
}
body.page:not(.home):not(.page-template-template-booom-landing) .entry-title {
	max-width: 1120px;
	margin: 0 0 32px;
	font-size: clamp(38px, 4.25vw, 60px);
	line-height: 1.02;
	letter-spacing: -.045em;
	text-wrap: balance;
}

/* Commercial-template pages keep a comfortable inset even on large artboards. */
@media (min-width: 981px) {
	body .grid-container,
	body .booom-header-inner.grid-container {
		width: min(calc(100% - 112px), var(--booom-xd-container));
	}
}

/* Editorial hierarchy: H1s should lead the page without overwhelming the reading experience. */
.booom-article-header .entry-title {
	max-width: 1040px;
	font-size: clamp(40px, 4.35vw, 62px);
	line-height: 1.01;
	letter-spacing: -.048em;
}
.booom-xd-blog__header h1 {
	max-width: 860px;
	font-size: clamp(46px, 6vw, 78px);
	line-height: .96;
}

@media (max-width: 980px) {
	body.page:not(.home):not(.page-template-template-booom-landing) .inside-article {
		width: min(calc(100% - 56px), 1280px);
	}
	.booom-article-header .entry-title {
		font-size: clamp(38px, 7vw, 56px);
	}
}

@media (max-width: 767px) {
	body.page:not(.home):not(.page-template-template-booom-landing) .inside-article {
		width: min(calc(100% - 32px), 1280px);
	}
	body.page:not(.home):not(.page-template-template-booom-landing) .entry-title {
		font-size: clamp(34px, 10vw, 48px);
	}
	.booom-article-header .entry-title {
		font-size: clamp(34px, 9.5vw, 46px);
		line-height: 1.03;
	}
	.booom-xd-blog__header h1 {
		font-size: clamp(40px, 12vw, 58px);
	}
}


/* === BOOOM 0.21.9: compact typography + true inner safe area ===
 * Final visual pass requested after testing on real pages.
 * Keeps the expressive XD identity, but removes billboard-sized headings and
 * prevents text from touching the visual edge of content panels/artboards.
 */
:root {
	--booom-page-inner-gutter: clamp(28px, 3.2vw, 48px);
}

/* New BOOOM commercial/institutional pages: the artboard now has a real inner safe area. */
.booom-xd-page .grid-container {
	box-sizing: border-box;
}
.booom-xd-page > .booom-xd-band > .grid-container,
.booom-xd-page > .booom-xd-case-detail-hero > .grid-container,
.booom-xd-page-content.grid-container {
	padding-right: var(--booom-page-inner-gutter);
	padding-left: var(--booom-page-inner-gutter);
}

/* Seeded sections previously began exactly at the artboard edge. */
.booom-xd-page-content > .booom-page-block {
	box-sizing: border-box;
	padding-right: clamp(18px, 2vw, 30px);
	padding-left: clamp(18px, 2vw, 30px);
}

/* Legacy/existing WordPress pages also get an inner reading gutter, not only a narrower outer width. */
body.page:not(.home):not(.page-template-template-booom-landing):not(.page-template-template-diagnostico-geo) .inside-article {
	box-sizing: border-box;
	width: min(calc(100% - 112px), 1240px);
	margin-inline: auto;
	padding-right: clamp(30px, 3vw, 46px);
	padding-left: clamp(30px, 3vw, 46px);
}

/* Internal page H1 scale. The earlier XD scale was intentionally poster-like; this is the editorial/commercial scale. */
body.page:not(.home):not(.page-template-template-booom-landing):not(.page-template-template-diagnostico-geo) .entry-title {
	max-width: 1040px;
	font-size: clamp(34px, 3.3vw, 48px) !important;
	line-height: 1.04 !important;
	letter-spacing: -.04em !important;
}

.booom-xd-page-hero h1,
.booom-xd-contact-hero h1,
.booom-xd-service-hero__copy h1,
.booom-xd-case-detail-hero__copy h1,
.booom-xd-case-hero h1,
.booom-xd-local-hero__copy h1,
.booom-xd-privacy-hero h1 {
	font-size: clamp(38px, 4.25vw, 58px) !important;
	line-height: 1.01 !important;
	letter-spacing: -.048em !important;
}

/* Blog post titles: deliberately smaller than landing-page heroes. */
.booom-article-header .entry-title {
	max-width: 980px;
	font-size: clamp(36px, 3.55vw, 50px) !important;
	line-height: 1.04 !important;
	letter-spacing: -.042em !important;
}
.booom-xd-blog__header h1 {
	max-width: 820px;
	font-size: clamp(42px, 4.6vw, 60px) !important;
	line-height: 1 !important;
	letter-spacing: -.05em !important;
}

/* Section headings also stop competing visually with the page H1. */
.booom-xd-heading h2,
.booom-xd-split h2,
.booom-page-block h2,
.booom-page-proof h2,
.booom-related > h2 {
	font-size: clamp(30px, 3vw, 44px) !important;
	line-height: 1.04 !important;
	letter-spacing: -.04em !important;
}
.booom-page-card h3,
.booom-xd-page-content h3 {
	line-height: 1.12;
}

@media (min-width: 981px) {
	/* More calm whitespace on desktop without narrowing the header/navigation. */
	.booom-xd-page > .booom-xd-band > .grid-container,
	.booom-xd-page > .booom-xd-case-detail-hero > .grid-container,
	.booom-xd-page-content.grid-container {
		width: min(calc(100% - 112px), 1280px);
	}
}

@media (max-width: 980px) {
	:root { --booom-page-inner-gutter: clamp(22px, 4vw, 34px); }
	body.page:not(.home):not(.page-template-template-booom-landing):not(.page-template-template-diagnostico-geo) .inside-article {
		width: min(calc(100% - 48px), 1240px);
		padding-right: 26px;
		padding-left: 26px;
	}
	.booom-xd-page-hero h1,
	.booom-xd-contact-hero h1,
	.booom-xd-service-hero__copy h1,
	.booom-xd-case-detail-hero__copy h1,
	.booom-xd-case-hero h1,
	.booom-xd-local-hero__copy h1,
	.booom-xd-privacy-hero h1,
	.booom-article-header .entry-title {
		font-size: clamp(34px, 6vw, 46px) !important;
	}
}

@media (max-width: 767px) {
	:root { --booom-page-inner-gutter: 20px; }
	.booom-xd-page > .booom-xd-band > .grid-container,
	.booom-xd-page > .booom-xd-case-detail-hero > .grid-container,
	.booom-xd-page-content.grid-container {
		width: calc(100% - 24px);
	}
	.booom-xd-page-content > .booom-page-block {
		padding-right: 8px;
		padding-left: 8px;
	}
	body.page:not(.home):not(.page-template-template-booom-landing):not(.page-template-template-diagnostico-geo) .inside-article {
		width: calc(100% - 24px);
		padding-right: 18px;
		padding-left: 18px;
	}
	body.page:not(.home):not(.page-template-template-booom-landing):not(.page-template-template-diagnostico-geo) .entry-title,
	.booom-xd-page-hero h1,
	.booom-xd-contact-hero h1,
	.booom-xd-service-hero__copy h1,
	.booom-xd-case-detail-hero__copy h1,
	.booom-xd-case-hero h1,
	.booom-xd-local-hero__copy h1,
	.booom-xd-privacy-hero h1,
	.booom-article-header .entry-title {
		font-size: clamp(31px, 9vw, 40px) !important;
		line-height: 1.06 !important;
	}
	.booom-xd-blog__header h1 {
		font-size: clamp(36px, 10vw, 48px) !important;
	}
	.booom-xd-heading h2,
	.booom-xd-split h2,
	.booom-page-block h2,
	.booom-page-proof h2,
	.booom-related > h2 {
		font-size: clamp(28px, 8vw, 36px) !important;
	}
}

/* === BOOOM 0.21.10: privacy readability, regional links and WhatsApp cleanup === */
.booom-about-local-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}
.booom-about-local-links > span {
	margin-right: 4px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.booom-about-local-links a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid var(--booom-xd-line);
	border-radius: 999px;
	background: #fff;
	color: var(--booom-xd-ink);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
}
.booom-about-local-links a:hover,
.booom-about-local-links a:focus {
	border-color: var(--booom-xd-ink);
	background: var(--booom-xd-yellow);
}

/* Privacy document: force a full readable content column. Some GeneratePress/
 * legacy page rules could otherwise collapse the second grid track to its
 * min-content width, producing one-word-per-line text. */
.booom-xd-page--privacy .booom-xd-page-content {
	min-width: 0;
}
.booom-xd-page--privacy .booom-privacy-overview,
.booom-xd-page--privacy .booom-privacy-toc,
.booom-xd-page--privacy .booom-privacy-document {
	box-sizing: border-box;
	width: 100%;
	max-width: 1080px;
	margin-right: auto;
	margin-left: auto;
}
.booom-xd-page--privacy .booom-privacy-document > section {
	display: flex;
	align-items: flex-start;
	width: 100%;
	min-width: 0;
	gap: 30px;
}
.booom-xd-page--privacy .booom-privacy-document > section > span {
	flex: 0 0 48px;
	width: 48px;
}
.booom-xd-page--privacy .booom-privacy-document > section > div {
	flex: 1 1 0;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
}
.booom-xd-page--privacy .booom-privacy-document h2,
.booom-xd-page--privacy .booom-privacy-document h3,
.booom-xd-page--privacy .booom-privacy-document p,
.booom-xd-page--privacy .booom-privacy-document li,
.booom-xd-page--privacy .booom-privacy-document dl,
.booom-xd-page--privacy .booom-privacy-document dd {
	width: auto;
	max-width: none;
	word-break: normal;
	overflow-wrap: break-word;
}
.booom-xd-page--privacy .booom-privacy-document h2 {
	max-width: 820px;
	font-size: clamp(30px, 3vw, 42px) !important;
	line-height: 1.06 !important;
	text-wrap: balance;
}
.booom-xd-page--privacy .booom-privacy-document h3 {
	font-size: clamp(18px, 1.8vw, 22px);
	line-height: 1.2;
}
.booom-xd-page--privacy .booom-privacy-document p,
.booom-xd-page--privacy .booom-privacy-document li,
.booom-xd-page--privacy .booom-privacy-document dd {
	font-size: 16px;
	line-height: 1.72;
}

@media (max-width: 767px) {
	.booom-xd-page--privacy .booom-privacy-document > section {
		display: block;
		padding: 38px 0;
	}
	.booom-xd-page--privacy .booom-privacy-document > section > span {
		display: block;
		width: auto;
		margin-bottom: 10px;
	}
	.booom-about-local-links {
		align-items: flex-start;
	}
	.booom-about-local-links > span {
		flex-basis: 100%;
	}
}

/* === BOOOM 0.21.10: mobile Services submenu stays collapsed until requested === */
@media (max-width: 900px) {
	body .booom-primary-menu > .menu-item-has-children {
		position: relative;
	}
	body .booom-primary-menu > .menu-item-has-children > a {
		padding-right: 54px;
	}
	body .booom-primary-menu .booom-submenu-toggle {
		position: absolute;
		top: 5px;
		right: 0;
		display: grid;
		width: 42px;
		height: 40px;
		place-items: center;
		padding: 0;
		border: 0;
		border-left: 1px solid var(--booom-xd-line);
		border-radius: 0;
		background: transparent;
		color: var(--booom-xd-ink);
		font-size: 21px;
		font-weight: 500;
		line-height: 1;
		cursor: pointer;
	}
	body .booom-primary-menu .booom-submenu-toggle::before {
		content: "+";
	}
	body .booom-primary-menu .booom-submenu-toggle[aria-expanded="true"]::before {
		content: "−";
	}
	body .booom-primary-menu > .menu-item-has-children > .sub-menu {
		display: none !important;
		grid-template-columns: 1fr 1fr;
	}
	body .booom-primary-menu > .menu-item-has-children.is-submenu-open > .sub-menu {
		display: grid !important;
	}
}
@media (max-width: 540px) {
	body .booom-primary-menu > .menu-item-has-children > .sub-menu,
	body .booom-primary-menu > .menu-item-has-children.is-submenu-open > .sub-menu {
		grid-template-columns: 1fr;
	}
}

/* With the theme owning the official WhatsApp control, suppress common legacy
 * floating widgets at CSS level as well as via JS. This prevents a second green
 * circle from being visible behind the BOOOM button during initial paint. */
body .joinchat,
body .ht-ctc-chat,
body #qlwapp,
body .qlwapp,
body .floating-wpp,
body .whatsappme,
body .chaty-widget,
body .wa__btn_popup,
body .wpp-floating-button,
body .njt-wa-floating {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* Desktop does not need a separate submenu expander; hover/focus remains intact. */
.booom-submenu-toggle { display: none; }
@media (max-width: 900px) {
	body .booom-primary-menu .booom-submenu-toggle { display: grid; }
}

/* === BOOOM 0.21.13: mobile Services is a true accordion === */
/* The expander is now rendered in PHP. This CSS deliberately overrides the
 * older mobile rule that exposed submenus before JS initialization. */
@media (max-width: 900px) {
	body .booom-primary-menu .menu-item-has-children {
		position: relative;
	}

	body .booom-primary-menu .menu-item-has-children > a {
		padding-right: 64px;
	}

	body .booom-primary-menu .menu-item-has-children > .sub-menu,
	body .booom-primary-menu .menu-item-has-children:hover > .sub-menu,
	body .booom-primary-menu .menu-item-has-children:focus-within > .sub-menu {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
	}

	body .booom-primary-menu .menu-item-has-children.is-submenu-open > .sub-menu,
	body .booom-primary-menu .menu-item-has-children.is-submenu-open:hover > .sub-menu,
	body .booom-primary-menu .menu-item-has-children.is-submenu-open:focus-within > .sub-menu {
		display: grid !important;
		grid-template-columns: 1fr;
		opacity: 1 !important;
		visibility: visible !important;
		padding: 8px 0 14px 18px;
	}

	body .booom-primary-menu .booom-submenu-toggle {
		position: absolute;
		top: 4px;
		right: 0;
		display: grid !important;
		width: 52px;
		height: 44px;
		place-items: center;
		padding: 0;
		border: 0;
		border-left: 1px solid var(--booom-xd-line);
		background: transparent;
		color: var(--booom-xd-ink);
		cursor: pointer;
	}

	body .booom-primary-menu .booom-submenu-toggle::before {
		content: "";
		width: 10px;
		height: 10px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: translateY(-3px) rotate(45deg);
		transition: transform .2s ease;
	}

	body .booom-primary-menu .booom-submenu-toggle[aria-expanded="true"]::before {
		transform: translateY(3px) rotate(225deg);
	}
}


/* === BOOOM 0.21.14: cache-proof mobile submenu control === */
@media (max-width: 900px) {
	body .booom-site-header .booom-submenu-toggle::before { content: none !important; display: none !important; }
	body .booom-site-header .booom-submenu-chevron { display: block !important; font-size: 24px; line-height: 1; transition: transform .18s ease; }
	body .booom-site-header .booom-submenu-toggle[aria-expanded="true"] .booom-submenu-chevron { transform: rotate(180deg); }
}
