/*----- HERO BANNER - Open -----*/
body.homepage #page .field--name-body,
body.page-title-new-home #page .field--name-body {
	margin-bottom: 0 !important;
}
#page .hero-banner {
	margin-inline: calc(50% - 50vw);
	width: 100vw;
}
#page .hero-banner h2 {
	font-size: 64px;
}
#page .hero-banner__inner {
	backdrop-filter: blur(4px);
	background-color: rgba(255, 255, 255, 0.8);
	position: relative;
	width: 100%;
	z-index: 2;
}
#page .hero-banner__inner::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.2) 100%);
	bottom: 0;
	content: '';
	display: block;
	height: 220px;
	left: 0;
	position: absolute;
	width: 100%;
}

#page .hero-banner__container {
	margin-inline: auto;
	max-width: 1080px;
	padding: 3.5rem 1rem 2.5rem 1rem;
	position: relative;
	width: 100%;
	z-index: 2;
}

@media (max-width: 767px) {
	#page .hero-banner h2 {
		font-size: 40px;
	}
	#page .hero-banner__container {
		padding-top: 2.5rem;
		padding-bottom: 2rem;
	}
}
/*----- HERO BANNER - Close -----*/

/*----- HERO MOSAIC - Open -----*/
#page .hero-mosaic {
	--mouse-x: 0;
	--mouse-y: 0;
	--spotlight-x: 50%;
	--spotlight-y: 50%;

	background: radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 22%, rgba(36, 39, 44, 0) 48%), #24272c;
	height: calc(100vh - 400px);
	isolation: isolate;
	left: 50%;
	margin-top: -200px;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: none;
	min-height: 720px;
	overflow: hidden;
	position: relative;
	right: 50%;
	width: 100vw;
}

#page .hero-mosaic,
#page .hero-mosaic * {
	box-sizing: border-box;
}

#page .hero-mosaic::before {
	background: radial-gradient(circle at center, rgba(36, 39, 44, 0) 30%, rgba(36, 39, 44, 0.42) 78%, rgba(36, 39, 44, 0.9) 100%);
	content: '';
	inset: -20%;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

#page .hero-mosaic::after {
	background: linear-gradient(90deg, rgba(36, 39, 44, 0.92), rgba(36, 39, 44, 0.06) 28%, rgba(36, 39, 44, 0.06) 72%, rgba(36, 39, 44, 0.92));
	content: '';
	inset: 0;
	mix-blend-mode: multiply;
	pointer-events: none;
	position: absolute;
	z-index: 3;
}

#page .hero-mosaic__scene {
	inset: -16%;
	position: absolute;
	transform: translate3d(calc(var(--mouse-x) * -14px), calc(var(--mouse-y) * -10px), 0);
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

#page .hero-mosaic__wall {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-20deg) translate3d(calc(var(--mouse-x) * 16px), calc(var(--mouse-y) * 12px), 0);
	transform-origin: center;
	will-change: transform;
}

#page .hero-mosaic__track {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	gap: 16px;
	will-change: transform;
}

#page .hero-mosaic__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#page .hero-mosaic__item {
	background: #2c3036;
	border-radius: 8px;
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.34),
		0 1px 0 rgba(255, 255, 255, 0.08) inset;
	filter: blur(6px);
	opacity: 0;
	overflow: hidden;
	transform: scale(0.86);
	transition:
		opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
	width: 260px;
}

#page .hero-mosaic__item.is-in {
	filter: blur(0);
	opacity: 1;
	transform: scale(1);
}

#page .hero-mosaic__item picture,
#page .hero-mosaic__item img {
	display: block;
	width: 100%;
}

#page .hero-mosaic__item img {
	filter: saturate(0.96) contrast(1.02);
	height: auto;
}

#page .hero-mosaic__grain {
	background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 42px 42px;
	inset: 0;
	-webkit-mask-image: radial-gradient(circle at center, transparent 18%, black 100%);
	mask-image: radial-gradient(circle at center, transparent 18%, black 100%);
	opacity: 0.1;
	pointer-events: none;
	position: absolute;
	z-index: 4;
}

@media (max-width: 767px) {
	#page .hero-mosaic {
		height: 620px;
		min-height: 620px;
	}

	#page .hero-mosaic__scene {
		inset: -24%;
	}

	#page .hero-mosaic__item {
		width: 210px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#page .hero-mosaic__scene,
	#page .hero-mosaic__wall {
		transition: none;
	}

	#page .hero-mosaic__scene {
		transform: none;
	}

	#page .hero-mosaic__wall {
		transform: translate(-50%, -50%) rotate(-20deg);
	}

	#page .hero-mosaic__item {
		filter: saturate(0.96) contrast(1.02);
		opacity: 1;
		transform: none;
		transition: none;
	}
}
/*----- HERO MOSAIC - Close -----*/

/*----- WHO WE HELP - Open -----*/
#page .who-we-help-section {
	background-image: url('../images/2026/bg-section-01-1.jpg');
	background-image: image-set(url('../images/2026/bg-section-01-1.avif') type('image/avif'), url('../images/2026/bg-section-01-1.webp') type('image/webp'), url('../images/2026/bg-section-01-1.jpg') type('image/jpeg'));
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	padding-bottom: 40px !important;
	padding-top: 80px !important;
}
#page .who-we-help-section__image {
	position: relative;
}
#page .who-we-help-section__image img {
	position: absolute;
	top: -2rem;
}

#page .who-we-help-section__region {
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #fff 50%);
	backdrop-filter: blur(4px);
}

#page .who-we-help-items {
	margin: 0 !important;
}

/* ITEM 01 */
#page .who-we-help-items__01 {
	padding: 32px;
	position: relative;
}
#page .who-we-help-items__01::after {
	background-color: #00b8d9 !important;
	border-radius: 8px 8px 0 0;
	bottom: 0;
	content: '';
	display: block;
	height: 6px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 160px;
}
#page .who-we-help-items__01 .apb-sl-icon i {
	color: #00b8d9 !important;
}
#page .who-we-help-items__01 .title {
	color: var(--color-heading) !important;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
#page .who-we-help-items__01 .apb-special-list-description {
	text-align: center;
}
/* ITEM 02 */
#page .who-we-help-items__02 {
	padding: 32px;
	position: relative;
}
#page .who-we-help-items__02::after {
	background-color: #ea5a4f !important;
	border-radius: 8px 8px 0 0;
	bottom: 0;
	content: '';
	display: block;
	height: 6px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 160px;
}
#page .who-we-help-items__02 .apb-sl-icon i {
	color: #ea5a4f !important;
}
#page .who-we-help-items__02 .title {
	color: var(--color-heading) !important;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
#page .who-we-help-items__02 .apb-special-list-description {
	text-align: center;
}
/* ITEM 01 */
#page .who-we-help-items__03 {
	padding: 32px;
	position: relative;
}
#page .who-we-help-items__03::after {
	background-color: #f0b800 !important;
	border-radius: 8px 8px 0 0;
	bottom: 0;
	content: '';
	display: block;
	height: 6px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 160px;
}
#page .who-we-help-items__03 .apb-sl-icon i {
	color: #f0b800 !important;
}
#page .who-we-help-items__03 .title {
	color: var(--color-heading) !important;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
#page .who-we-help-items__03 .apb-special-list-description {
	text-align: center;
}
/* ITEM 01 */
#page .who-we-help-items__04 {
	padding: 32px;
	position: relative;
}
#page .who-we-help-items__04::after {
	background-color: #45c7b0 !important;
	border-radius: 8px 8px 0 0;
	bottom: 0;
	content: '';
	display: block;
	height: 6px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 160px;
}
#page .who-we-help-items__04 .apb-sl-icon i {
	color: #45c7b0 !important;
}
#page .who-we-help-items__04 .title {
	color: var(--color-heading) !important;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
#page .who-we-help-items__04 .apb-special-list-description {
	text-align: center;
}

body #page .who-we-help-items .views-row:hover .apb-views-title {
	color: var(--color-heading) !important;
}

@media (max-width: 767px) {
	#page .who-we-help-section {
		padding-top: 48px !important;
		padding-bottom: 24px !important;
	}
	/* Decorative floating logo: absolutely positioned, so when the grid
	   stacks its wrapper collapses and the image overlaps the cards. */
	#page .who-we-help-section__image {
		display: none;
	}
	#page .who-we-help-items__01,
	#page .who-we-help-items__02,
	#page .who-we-help-items__03,
	#page .who-we-help-items__04 {
		padding: 24px 20px;
	}
}
/*----- WHO WE HELP - Close -----*/

/*----- THESE WEBSITES - Open -----*/
#page .these-websites-section {
	background-color: var(--color-neutral-50);
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	padding-bottom: 80px !important;
	padding-top: 40px !important;
}
/* Header */
#page .these-websites__header {
	align-items: flex-end;
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}
#page .these-websites__header::after {
	border-bottom: 1px solid var(--color-neutral-100);
	content: '';
	flex: 1;
	order: 1;
	transform: translateY(-8px);
}
#page h3.these-websites__header--title {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.6px;
	line-height: 1.3;
	margin: 0;
}
#page .these-websites__header--button {
	order: 2;
	transform: translateY(-8px);
}
#page .these-websites__header--button a {
	border-bottom: 1px solid var(--color-primary);
	color: var(--color-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	order: 2;
	padding-bottom: 4px;
	text-decoration: none;
	transition: color var(--aero-transition-base);
	white-space: nowrap;
}
/* Views */
#page .case-studies__logos .view-content {
	display: grid;
	gap: 4px;
	grid-template-columns: repeat(5, 1fr);
}
#page .case-studies__logos .view-content .views-row {
	display: block;
	min-height: 140px;
	width: 100%;
}
#page .case-studies__logos .view-content .views-row div {
	display: block;
	height: 100%;
	width: 100%;
}
#page .case-studies__logos .view-content .views-row a {
	align-items: center;
	background-color: var(--color-white);
	border-radius: 8px;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
}
#page .case-studies__logos .view-content .views-row a img {
	margin: 0 !important;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	transform-origin: center;
}
#page .case-studies__logos .view-content .views-row a:hover img {
	transform: scale(1.1);
}

@media (max-width: 991px) {
	#page .case-studies__logos .view-content {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	#page .these-websites-section {
		padding-top: 24px !important;
		padding-bottom: 48px !important;
	}
	#page .these-websites__header {
		flex-wrap: wrap;
	}
	#page h3.these-websites__header--title {
		font-size: 24px;
	}
	#page .case-studies__logos .view-content {
		grid-template-columns: repeat(2, 1fr);
	}
	#page .case-studies__logos .view-content .views-row {
		min-height: 104px;
	}
	#page .case-studies__logos .view-content .views-row a {
		padding: 12px 16px;
	}
	#page .case-studies__logos .view-content .views-row a img {
		height: auto;
		max-width: 100%;
	}
}
/*----- THESE WEBSITES - Close -----*/

/*----- FEATURE CASE - Open -----*/
#page .featured-case-section {
	margin-bottom: 80px !important;
	margin-top: 80px !important;
}
#page .cs-featured-case {
	--cs-accent: var(--color-primary);
	--cs-column-gap: 3rem;

	color: var(--color-text, #2e333a);
}

/* Eyebrow label (field_cs_sec_title, e.g. "The Challenge"). */
#page .cs-featured-case__label {
	border-bottom: 2px solid var(--color-tertiary);
	color: var(--color-heading, #1e2022);
	display: inline-block;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 2.88px;
	line-height: 120%;
	margin: 0 0 1rem;
	padding-bottom: 0.25rem;
	text-transform: uppercase;
}

/* List: stacked items, icon left + content right, divider between each. */
#page .cs-featured-case__list {
	display: flex;
	flex-direction: column;
	padding-top: 2rem;
}

@media (min-width: 769px) {
	#page .cs-featured-case__list {
		padding-top: 2.5rem;
	}
}

#page .cs-featured-case__list .field__item {
	align-items: flex-start;
	border-bottom: 1px solid var(--color-blue-200);
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
}

#page .cs-featured-case__list .field__item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

#page .cs-featured-case .cs-list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

/* List item icon (field_cs_list_icon -> Font Awesome glyph). */
#page .cs-featured-case .cs-list-item__icon {
	flex: 0 0 auto;
	padding-top: 0.15rem;
	color: var(--cs-accent, #1e88e5);
	font-size: 1.5rem;
	line-height: 1;
}

#page .cs-featured-case .cs-list-item__icon i {
	display: inline-block;
}

#page .cs-featured-case .cs-list-item__content {
	min-width: 0;
}

#page .cs-featured-case .cs-list-item__title {
	margin: 0 0 0.375rem;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-heading);
}

#page .cs-featured-case .cs-list-item__body {
	color: var(--color-text);
	font-size: 1.0625rem;
	line-height: 1.6;
}

#page .cs-featured-case .cs-list-item__body p {
	margin: 0;
}

/* Two columns (image | text), vertically centered - same as .cs-section--1. */
#page .cs-featured-case__container {
	display: grid;
	gap: var(--cs-column-gap, 3rem);
	align-items: flex-start;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
	#page .cs-featured-case__container {
		grid-template-columns: 1fr;
	}
}

#page .cs-featured-case__col {
	min-width: 0;
}

/* Image fills its column. */
#page .cs-featured-case__image {
	width: 100%;
}

#page .cs-featured-case__image img {
	border-radius: 16px;
	border: 8px solid var(--color-neutral-800);
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
	display: block;
	height: auto;
	min-width: calc(100% + 10rem);
	transform: translateX(-10rem);
	width: 100%;
}

/* Single column: the 10rem left overhang would cause horizontal overflow. */
@media (max-width: 768px) {
	#page .cs-featured-case__image img {
		border-width: 6px;
		min-width: 100%;
		transform: none;
	}
}

@media (max-width: 767px) {
	#page .featured-case-section {
		margin-bottom: 48px !important;
		margin-top: 48px !important;
	}
}

/* CTA FOOTER (.view-footer): sparkles icon + copy on the left, two buttons
   on the right, divided from the case content by a light blue rule. */
#page .featured-case-section .view-footer {
	margin-top: 32px;
}
#page .featured-case-section .view-footer .columns-grid {
	align-items: center;
	border-top: 1px solid var(--color-blue-200);
	display: flex;
	gap: 8px;
	padding-top: 24px;
}

/* Left: copy indented to clear the absolutely-positioned sparkles icon. */
#page .featured-case-section .view-footer .columns-grid-column--left {
	flex: 1 1 auto;
	min-width: 0;
	padding-left: 60px;
	position: relative;
}
#page .featured-case-section .view-footer .columns-grid-column--left::before {
	color: var(--color-primary);
	content: '\f890'; /* sparkles (light) */
	font-family: 'Font Awesome 7 Pro';
	font-size: 32px;
	font-weight: 300;
	left: 0;
	line-height: 1.4;
	position: absolute;
	text-align: center;
	top: 2px;
	width: 44px;
}
#page .featured-case-section .view-footer .columns-grid-column--left h3 {
	color: var(--color-heading);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.48px;
	line-height: 1.4;
	margin: 0 0 4px;
}
#page .featured-case-section .view-footer .columns-grid-column--left p {
	color: var(--color-heading);
	font-size: 16.5px;
	font-weight: 300;
	line-height: 1.6;
	margin: 0;
}

/* Right: button pair. */
#page .featured-case-section .view-footer .columns-grid-column--right {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}
#page .featured-case-section .view-footer .columns-grid-column--right a {
	align-items: center;
	border-radius: 6px;
	display: inline-flex;
	font-size: 16.5px;
	font-weight: 500;
	gap: 8px;
	line-height: 1.6;
	min-height: 48px;
	padding: 8px 16px 10px;
	text-decoration: none;
	transition:
		background-color var(--aero-transition-base),
		border-color var(--aero-transition-base),
		color var(--aero-transition-base);
	white-space: nowrap;
}
#page .featured-case-section .view-footer .columns-grid-column--right a::after {
	content: '\f105'; /* angle-right */
	font-family: 'Font Awesome 7 Pro';
	font-size: 16px;
	font-weight: 900;
	padding-top: 2px;
}
#page .featured-case-section .view-footer .book-strategy-call-btn {
	background-color: var(--color-blue-600);
	border: 1px solid var(--color-blue-600);
	color: var(--color-white);
}
#page .featured-case-section .view-footer .book-strategy-call-btn::after {
	color: var(--color-white);
}
#page .featured-case-section .view-footer .book-strategy-call-btn:hover {
	background-color: var(--color-blue-900);
	border-color: var(--color-blue-900);
}
#page .featured-case-section .view-footer .read-case-study-btn {
	background-color: var(--color-white);
	border: 1px solid var(--color-blue-400);
	color: var(--color-black);
}
#page .featured-case-section .view-footer .read-case-study-btn::after {
	color: var(--color-primary);
}
#page .featured-case-section .view-footer .read-case-study-btn:hover {
	background-color: var(--color-blue-50);
	border-color: var(--color-blue-600);
}

@media (max-width: 767px) {
	#page .featured-case-section .view-footer .columns-grid {
		align-items: flex-start;
		flex-direction: column;
		gap: 24px;
	}
	#page .featured-case-section .view-footer .columns-grid-column--right {
		flex-wrap: wrap;
	}
}
/*----- FEATURE CASE - Close -----*/

/*----- WHAT WE DO - Open -----*/
#page .what-we-do-section {
	background-color: var(--color-neutral-900);
	background-image: url('../images/2026/bg-section-03-1.jpg');
	background-image: image-set(url('../images/2026/bg-section-03-1.avif') type('image/avif'), url('../images/2026/bg-section-03-1.webp') type('image/webp'), url('../images/2026/bg-section-03-1.jpg') type('image/jpeg'));
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	padding-bottom: 80px !important;
	padding-top: 80px !important;
}

/* INTRO */
#page .what-we-do-section__content .apb-sc-body-wrapper {
	max-width: 620px;
}
#page .what-we-do-section__content .eyebrow__orange {
	color: var(--color-white);
}
#page .what-we-do-section__content h2 {
	color: var(--color-white);
	font-size: 44px;
	letter-spacing: -0.66px;
	margin-bottom: 24px;
}
#page .what-we-do-section__content p {
	color: var(--color-white);
	margin-bottom: 0;
}

/* CARDS */
#page .what-we-do-section__card {
	height: 100%;
}
#page .what-we-do-section__card .apb-sc-body-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}
#page .what-we-do-section__card--header {
	backdrop-filter: blur(4px);
	background-color: rgba(48, 59, 72, 0.9);
	border-bottom: 2px solid var(--color-neutral-900);
	border-radius: 8px 8px 0 0;
	font-family: 'Bitter', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	padding: 16px 32px 18px;
}
#page .what-we-do-section__card--content {
	background-color: var(--color-neutral-800);
	border-radius: 0 0 8px 8px;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 32px 32px;
}
#page .what-we-do-section__card--content h3 {
	color: var(--color-white);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.48px;
	line-height: 1.4;
	margin-bottom: 16px;
}
#page .what-we-do-section__card--content p {
	color: var(--color-white);
	margin-bottom: 32px;
}
#page .what-we-do-section__card--button {
	margin-top: auto;
}
#page .what-we-do-section__card--button a {
	align-items: center;
	background-color: var(--color-neutral-900);
	border-radius: 6px;
	color: var(--color-neutral-200);
	display: inline-flex;
	font-size: 16.5px;
	font-weight: 500;
	gap: 10px;
	line-height: 1.6;
	min-height: 45px;
	padding: 8px 14px 10px;
	text-decoration: none;
	transition: background-color var(--aero-transition-base);
}
#page .what-we-do-section__card--button a:hover {
	background-color: var(--color-neutral-700);
	color: var(--color-white);
}
#page .what-we-do-section__card--button a::after {
	content: '\f105'; /* angle-right */
	font-family: 'Font Awesome 7 Pro';
	font-size: 16px;
	font-weight: 900;
	padding-top: 2px;
}

/* CARD 01 - Build */
#page .what-we-do-section__card-01 .what-we-do-section__card--header {
	color: var(--color-blue-300);
}
#page .what-we-do-section__card-01 .what-we-do-section__card--button a::after {
	color: var(--color-secondary);
}

/* CARD 02 - Run */
#page .what-we-do-section__card-02 .what-we-do-section__card--header {
	color: var(--color-teal-400);
}
#page .what-we-do-section__card-02 .what-we-do-section__card--button a::after {
	color: var(--color-teal-400);
}

/* CARD 03 - Advise */
#page .what-we-do-section__card-03 .what-we-do-section__card--header {
	color: var(--color-orange-300);
}
#page .what-we-do-section__card-03 .what-we-do-section__card--button a::after {
	color: var(--color-orange-300);
}

@media (max-width: 767px) {
	#page .what-we-do-section {
		background-size: 150% !important;
		padding-bottom: 48px !important;
		padding-top: 48px !important;
	}
	#page .what-we-do-section__content h2 {
		font-size: 32px;
	}
	#page .what-we-do-section__card--header {
		padding: 14px 24px 16px;
	}
	#page .what-we-do-section__card--content {
		padding: 20px 24px 24px;
	}
}
/*----- WHAT WE DO - Close -----*/

/*----- INTEGRATIONS - Open -----*/
#page .integrations-section {
	background-image: url('../images/2026/bg-section-02-1.jpg');
	background-image: image-set(url('../images/2026/bg-section-02-1.avif') type('image/avif'), url('../images/2026/bg-section-02-1.webp') type('image/webp'), url('../images/2026/bg-section-02-1.jpg') type('image/jpeg'));
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	padding-bottom: 80px !important;
	padding-top: 70px !important;
}

/* HEADER */
#page .integrations-section__content .apb-sc-body-wrapper {
	margin-inline: auto;
	max-width: 720px;
	text-align: center;
}
#page .integrations-section__content .eyebrow__orange {
	color: var(--color-black);
}
#page .integrations-section__content h2 {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -0.66px;
	margin-bottom: 24px;
}
#page .integrations-section__content p {
	color: var(--color-text);
	font-size: 16.5px;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 0;
}

/* LOGOS */
#page .integrations-section__logos .apb-sc-body-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-inline: auto;
	max-width: 920px;
}
#page .integrations-section__logos .apb-sc-body-wrapper p {
	align-items: center;
	backdrop-filter: blur(4px);
	background: linear-gradient(180deg, var(--color-white) 15%, rgba(255, 255, 255, 0.8) 100%);
	border-radius: 8px;
	display: flex;
	height: 80px;
	justify-content: center;
	margin: 0;
	padding: 8px 24px;
}
#page .integrations-section__logos .apb-sc-body-wrapper p img {
	display: block;
	height: auto;
	margin: 0 !important;
	max-height: 46px;
	width: auto;
}

@media (max-width: 767px) {
	#page .integrations-section {
		padding-bottom: 48px !important;
		padding-top: 48px !important;
	}
	#page .integrations-section__content h2 {
		font-size: 32px;
	}
	#page .integrations-section__logos .apb-sc-body-wrapper p {
		height: 64px;
		padding: 8px 16px;
	}
	#page .integrations-section__logos .apb-sc-body-wrapper p img {
		max-height: 38px;
	}
}
/*----- INTEGRATIONS - Close -----*/

/*----- PARTNERSHIP PROOF - Open -----*/
#page .partnership-proof {
	margin-bottom: 80px !important;
	margin-top: 80px !important;
}
#page .partnership-proof__header .columns-grid {
	margin-top: 0 !important;
}
/* LONGEVITY TIMELINE
   case-study.js moves the .timeline__item nodes out of .view-content into
   .timeline and builds the chart there, so the source rows are hidden. */
#page .longevity-timeline-block .view-content {
	display: none;
}
#page .longevity-timeline-block .timeline {
	margin-top: 40px;
}

/* TESTIMONIALS - HEADER */
#page .testimonial-home .view-header {
	align-items: flex-end;
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}
#page .testimonial-home .view-header::after {
	border-bottom: 1px solid var(--color-neutral-100);
	content: '';
	flex: 1;
	order: 1;
	transform: translateY(-8px);
}
#page .testimonial-home .view-header h3 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.6px;
	line-height: 1.3;
	margin: 0;
}
#page .testimonial-home .view-header a {
	border-bottom: 1px solid var(--color-primary);
	color: var(--color-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	order: 2;
	padding-bottom: 4px;
	text-decoration: none;
	transform: translateY(-8px);
	transition: color var(--aero-transition-base);
	white-space: nowrap;

	display: none;
}
#page .testimonial-home .view-header a:hover {
	color: var(--color-primary);
}

/* TESTIMONIALS - GRID */
#page .testimonial-home .view-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#page .testimonial-home .view-content .views-row {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#page .testimonial-home .view-content .views-row:nth-child(odd) {
	padding-right: 48px;
}
#page .testimonial-home .view-content .views-row:nth-child(even) {
	border-left: 1px solid var(--color-neutral-100);
	padding-left: 48px;
}

/* TESTIMONIALS - QUOTE */
#page .testimonial-home .views-field-body::before {
	background-image: url('../images/2026/quote-icon.svg');
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	height: 72px;
	margin-bottom: 16px;
	width: 72px;
}
#page .testimonial-home .views-field-body {
	margin-bottom: 32px;
}
#page .testimonial-home .views-field-body .field-content p {
	color: var(--color-text);
	font-size: 19px;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 0;
}
#page .testimonial-home .views-field-body .field-content p + p {
	margin-top: 1rem;
}

/* TESTIMONIALS - AUTHOR */
#page .testimonial-home .testimonial__author {
	align-items: center;
	display: flex;
	gap: 16px;
}
#page .testimonial-home .testimonial__author-image img {
	border-radius: 50%;
	display: block;
	height: 88px;
	margin: 0;
	min-width: 88px;
	width: 88px;
}
#page .testimonial-home .testimonial__author-name {
	color: var(--color-heading);
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.4px;
	line-height: 1.4;
}
#page .testimonial-home .testimonial__author-meta {
	color: var(--color-text);
	font-size: 15px;
	font-weight: 600;
	line-height: 140%;
	margin-top: 4px;
}

@media (max-width: 768px) {
	#page .testimonial-home .view-content {
		grid-template-columns: 1fr;
	}
	#page .testimonial-home .view-content .views-row:nth-child(odd) {
		padding-right: 0;
	}
	#page .testimonial-home .view-content .views-row:nth-child(even) {
		border-left: none;
		border-top: 1px solid var(--color-neutral-100);
		margin-top: 32px;
		padding-left: 0;
		padding-top: 32px;
	}
}

@media (max-width: 767px) {
	#page .partnership-proof {
		margin-bottom: 48px !important;
		margin-top: 48px !important;
	}
	#page .testimonial-home .view-header {
		flex-wrap: wrap;
	}
	#page .testimonial-home .view-header h3 {
		font-size: 24px;
	}
	#page .testimonial-home .views-field-body::before {
		height: 56px;
		width: 56px;
	}
	#page .testimonial-home .views-field-body .field-content p {
		font-size: 17px;
	}
	#page .testimonial-home .testimonial__author-image img {
		height: 64px;
		min-width: 64px;
		width: 64px;
	}
}
/*----- PARTNERSHIP PROOF - Close -----*/

/*----- WHY AERO - Open -----*/
#page .why-aero {
	background-color: var(--color-white);
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}

/* LEFT PANEL */
#page .why-aero__content {
	align-self: stretch;
	background-color: var(--color-blue-800);
	border-radius: 0 8px 8px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 74px 40px 80px 0px !important;
	position: relative;
}
#page .why-aero__content::before {
	background-color: var(--color-blue-800);
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: translate(-100%);
	width: 50vw;
}
#page .why-aero__content .eyebrow__orange {
	color: var(--color-white);
}
#page .why-aero__content h2 {
	color: var(--color-white);
	font-size: 44px;
	letter-spacing: -0.66px;
	margin-bottom: 24px;
}
#page .why-aero__content h2 em,
#page .why-aero__content h2 em strong {
	color: var(--color-teal-400);
	font-family: 'Bitter', Georgia, serif;
	font-style: italic;
	font-weight: 600;
}
#page .why-aero__content p {
	color: var(--color-white);
}

/* CTA BUTTON */
#page .why-aero__content .apb-sc-body-wrapper p:last-of-type {
	margin-bottom: 0;
	margin-top: 16px;
}
#page .why-aero__content .apb-sc-body-wrapper p:last-of-type a {
	align-items: center;
	background-color: var(--color-white);
	border-radius: 6px;
	color: var(--color-blue-900);
	display: inline-flex;
	font-size: 16.5px;
	font-weight: 500;
	gap: 8px;
	line-height: 1.6;
	min-height: 48px;
	padding: 8px 16px 10px;
	text-decoration: none;
	transition: background-color var(--aero-transition-base);
}
#page .why-aero__content .apb-sc-body-wrapper p:last-of-type a:hover {
	background-color: var(--color-blue-50);
}
#page .why-aero__content .apb-sc-body-wrapper p:last-of-type a::after {
	color: var(--color-primary);
	content: '\f105'; /* angle-right */
	font-family: 'Font Awesome 7 Pro';
	font-size: 16px;
	font-weight: 900;
	padding-top: 2px;
}

/* RIGHT PANEL - ITEMS */
#page .why-aero__items {
	margin-bottom: 0 !important;
}
#page .why-aero__items .views-row {
	border-bottom: 1px solid var(--color-neutral-100);
	padding-bottom: 28px;
}
#page .why-aero__items .views-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
#page .why-aero__items .apb-sl-with-icon .apb-sl-content-wrapper {
	grid-gap: 20px;
}
#page .why-aero__items .apb-sl-icon {
	padding-top: 4px;
}
#page .why-aero__items .apb-sl-icon i {
	font-size: 32px;
}
#page .why-aero__items .title {
	color: var(--color-heading) !important;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.48px;
	line-height: 1.4;
	margin-bottom: 8px;
}
#page .why-aero__items .apb-special-list-description p {
	color: var(--color-text);
	font-size: 16.5px;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 0;
}

/* ITEM ACCENT COLORS */
#page .why-aero__item-1 .apb-sl-icon i {
	color: var(--color-tertiary) !important;
}
#page .why-aero__item-2 .apb-sl-icon i {
	color: var(--color-teal-500) !important;
}
#page .why-aero__item-3 .apb-sl-icon i {
	color: var(--color-primary) !important;
}

@media (max-width: 767px) {
	#page .why-aero__content {
		padding: 48px 24px;
	}
	#page .why-aero__content h2 {
		font-size: 36px;
	}
}
/*----- WHY AERO - Close -----*/

/*----- STRAIGHT ANSWERS - Open -----*/
#page .straight-answers {
	background-color: var(--color-white);
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	max-width: 640%;
	padding-bottom: 24px;
	padding-top: 70px !important;
}
#page .straight-answers h2 {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -0.66px;
	margin-bottom: 0;
}

/* FAQ ACCORDION */
#page .straight-answers__faq {
	background-color: var(--color-white);
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	padding-bottom: 32px !important;
	padding-top: 32px !important;
}

/* Neutralize the gray header colors injected by apb-accordion.js. */
#page .straight-answers__faq .ui-accordion .ui-accordion-header,
#page .straight-answers__faq .ui-accordion .ui-accordion-header:hover,
#page .straight-answers__faq .ui-accordion .ui-accordion-header-active,
#page .straight-answers__faq .ui-accordion .ui-accordion-header-active:hover {
	background: var(--color-white) !important;
	color: var(--color-heading) !important;
}

/* Question row: number | title | +/- icon. */
#page .straight-answers__faq .ui-accordion-header {
	align-items: flex-start;
	border: none !important;
	border-top: 1px solid var(--color-slate-100) !important;
	cursor: pointer;
	display: flex;
	font-family: var(--primary-font-family);
	gap: 20px;
	margin: 0 !important;
	padding: 28px 8px 28px 24px !important;
}
#page .straight-answers__faq .view-apb-accordion > .last {
	border-bottom: 1px solid var(--color-slate-100);
}
#page .straight-answers__faq .ui-accordion-header-icon {
	display: none !important;
}

/* Number (Bitter italic), muted by default, orange when open. */
#page .straight-answers__faq-number {
	color: var(--color-slate-400);
	flex: 0 0 auto;
	font-family: 'Bitter', Georgia, serif;
	font-size: 48px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	width: 80px;
}
#page .straight-answers__faq .ui-accordion-header-active .straight-answers__faq-number {
	color: var(--color-tertiary);
}

/* Question title. */
#page .straight-answers__faq .ui-accordion-header > span:not(.straight-answers__faq-number):not(.ui-accordion-header-icon) {
	color: var(--color-heading);
	flex: 1 1 auto;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	padding-top: 8px;
}

/* Toggle icon: blue outlined plus, orange filled minus when open. */
#page .straight-answers__faq .ui-accordion-header::after {
	align-items: center;
	border: 1.5px solid var(--color-primary);
	border-radius: 50%;
	color: var(--color-primary);
	content: '\f067'; /* plus */
	display: flex;
	flex: 0 0 auto;
	font-family: 'Font Awesome 7 Pro';
	font-size: 16px;
	font-weight: 900;
	height: 32px;
	justify-content: center;
	line-height: 1;
	margin-top: 6px;
	transition:
		background-color var(--aero-transition-base),
		border-color var(--aero-transition-base),
		color var(--aero-transition-base);
	width: 32px;
}
#page .straight-answers__faq .ui-accordion-header-active::after {
	background-color: var(--color-tertiary);
	border-color: var(--color-tertiary);
	color: var(--color-white);
	content: '\f068'; /* minus */
}

/* Answer body, indented to align under the title. */
#page .straight-answers__faq .ui-accordion .ui-accordion-content,
#page .straight-answers__faq .accordion-body {
	background: var(--color-white);
	border: none !important;
	font-family: var(--primary-font-family);
	margin: 0 !important;
	padding: 0;
}
#page .straight-answers__faq .accordion-body-inner {
	padding: 0 64px 52px 124px !important;
}
#page .straight-answers__faq .accordion-body-inner p {
	color: var(--color-text);
	font-size: 16.5px;
	font-weight: 300;
	line-height: 170%;
	margin: 0;
}

@media (max-width: 767px) {
	#page .straight-answers h2,
	#page .straight-answers__faq .ui-accordion-header > span:not(.straight-answers__faq-number):not(.ui-accordion-header-icon) {
		font-size: 32px;
	}
	#page .straight-answers__faq .ui-accordion-header > span:not(.straight-answers__faq-number):not(.ui-accordion-header-icon) {
		font-size: 18px;
		padding-top: 4px;
	}
	#page .straight-answers__faq .ui-accordion-header {
		gap: 12px;
		padding-left: 16px !important;
	}
	#page .straight-answers__faq-number {
		font-size: 32px;
		width: 48px;
	}
	#page .straight-answers__faq .accordion-body-inner {
		padding: 0 16px 24px 76px !important;
	}
}
/*----- STRAIGHT ANSWERS - Close -----*/

/*----- CTA WHERE TO START - Open -----*/
/* Blue CTA band flush to the container edges (block-content is capped 1270px). */
#page .cta-where-start--block .block-content {
	padding: 0 !important;
}

#page .cta-where-start {
	background: linear-gradient(270deg, rgba(1, 40, 84, 0) 50%, var(--color-blue-900) 100%), var(--color-blue-800);
	border-bottom: 1px solid var(--color-blue-700);
	display: flex;
	gap: 64px;
	padding: 80px 100px;
}
#page .cta-where-start,
#page .cta-where-start * {
	box-sizing: border-box;
}

/* LEFT COLUMN - copy pinned to the bottom of the band */
#page .cta-where-startheader {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 24px;
	justify-content: flex-end;
	width: 420px;
}
#page .cta-where-startheading {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#page .cta-where-starteyebrow {
	align-self: flex-start;
	border-bottom: 2px solid var(--color-tertiary);
	padding: 0 2px 8px;
}
#page .cta-where-starteyebrow-label {
	color: var(--color-white);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.88px;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}
#page .cta-where-startheading h2 {
	color: var(--color-white);
	font-size: 44px;
	font-weight: 700;
	letter-spacing: -0.66px;
	line-height: 1.2;
	margin: 0;
}
#page .cta-where-startbody-text {
	color: var(--color-white);
	font-size: 16.5px;
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

/* RIGHT COLUMN - two equal-height cards */
#page .cta-where-startcards {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
}
#page .cta-where-startcards-row {
	align-items: stretch;
	display: flex;
	gap: 16px;
	width: 100%;
}
#page .cta-where-startcard--strategy-call,
#page .cta-where-startcard--digital-audit {
	border-radius: 8px 8px 32px 32px;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	min-width: 0;
	padding: 32px 32px 120px;
	position: relative;
}
#page .cta-where-startcard--strategy-call {
	background-color: var(--color-blue-600);
}
#page .cta-where-startcard--digital-audit {
	background-color: var(--color-white);
}

#page .cta-where-startcard-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

/* The markup carries an extra "Ready to move" flag not present in the design. */
#page .cta-where-startcard-flag {
	display: none;
}

#page .cta-where-startcard-kicker {
	font-family: 'Bitter', Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}
#page .cta-where-startcard--strategy-call .cta-where-startcard-kicker {
	color: var(--color-white);
}
#page .cta-where-startcard--digital-audit .cta-where-startcard-kicker {
	/* blue-600 instead of primary: primary is 3.64:1 on white, below WCAG AA 4.5:1 */
	color: var(--color-blue-600);
}

#page .cta-where-startcard-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
#page .cta-where-startcard-content h3 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.56px;
	line-height: 1.3;
	margin: 0;
}
#page .cta-where-startcard--strategy-call .cta-where-startcard-content h3 {
	color: var(--color-white);
}
#page .cta-where-startcard--digital-audit .cta-where-startcard-content h3 {
	color: var(--color-heading);
}
#page .cta-where-startcard-description {
	font-size: 16.5px;
	line-height: 1.6;
	margin: 0;
}
#page .cta-where-startcard--strategy-call .cta-where-startcard-description {
	color: var(--color-white);
	font-weight: 400;
}
#page .cta-where-startcard--digital-audit .cta-where-startcard-description {
	color: var(--color-text);
	font-weight: 300;
}

/* CTA PILL - anchored to the bottom-left, hence the cards' 120px bottom padding */
#page .cta-where-startcard-cta {
	bottom: 32px;
	left: 32px;
	margin: 0;
	position: absolute;
}
#page .cta-where-startcard-cta-label {
	margin: 0;
}
#page .cta-where-startcard-cta a {
	align-items: center;
	border-radius: 64px;
	display: inline-flex;
	font-size: 16.5px;
	font-weight: 700;
	gap: 8px;
	line-height: 1.6;
	padding: 12px 18px 14px 24px;
	text-decoration: none;
	transition:
		background-color var(--aero-transition-base),
		color var(--aero-transition-base);
}
#page .cta-where-startcard-cta a::after {
	content: '\f0a9'; /* circle-arrow-right */
	font-family: 'Font Awesome 7 Pro';
	font-size: 24px;
	line-height: 1;
}
#page .cta-where-startcard--strategy-call .cta-where-startcard-cta a {
	background-color: var(--color-white);
	color: var(--color-blue-900);
}
#page .cta-where-startcard--strategy-call .cta-where-startcard-cta a::after {
	color: var(--color-blue-600);
	font-weight: 300;
}
#page .cta-where-startcard--strategy-call .cta-where-startcard-cta a:hover {
	background-color: var(--color-blue-50);
}
#page .cta-where-startcard--digital-audit .cta-where-startcard-cta a {
	background-color: var(--color-secondary);
	color: var(--color-white);
}
#page .cta-where-startcard--digital-audit .cta-where-startcard-cta a::after {
	color: var(--color-white);
	font-weight: 900;
}
#page .cta-where-startcard--digital-audit .cta-where-startcard-cta a:hover {
	background-color: var(--color-blue-800);
}

@media (max-width: 991px) {
	#page .cta-where-start {
		flex-direction: column;
		gap: 40px;
		padding: 56px 40px;
	}
	#page .cta-where-startheader {
		width: 100%;
	}
}

@media (max-width: 767px) {
	#page .cta-where-start {
		padding: 40px 20px;
	}
	#page .cta-where-startheading h2 {
		font-size: 32px;
	}
	#page .cta-where-startcards-row {
		flex-direction: column;
	}
	#page .cta-where-startcard--strategy-call,
	#page .cta-where-startcard--digital-audit {
		padding-bottom: 104px;
	}
}
/*----- CTA WHERE TO START - Close -----*/
