/*---*\
Homepage CTA Banner V2
Full-width navy-to-orange gradient CTA with call and schedule buttons.

KEY FEATURES:
- Hardcoded gradient background and decorative house-outline logo (inline SVG)
- Responsive logo duplication: mobile and desktop path sets
- Desktop: headline left, buttons right in a row
- Mobile: centered stack; buttons stacked

IMPLEMENTATION NOTES:
- Uses global .btn-solid / .btn-solid--white; tokens from custom-properties.css
- Vertical padding 89px; band min-height 437px on desktop
- Logo SVGs via fx_get_inline_svg(); show/hide at 1200px
\*---*/

.cta-banner-v2 {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 89px;
	padding-bottom: 89px;
	color: var(--text-inverse);
}

.cta-banner-v2__bg {
	position: absolute;
	z-index: 0;
	inset: 0;
	pointer-events: none;
}

.cta-banner-v2__gradient {
	position: absolute;
	inset: 0;
	background-color: var(--dark-blue);
	background-image:
		linear-gradient(
			103deg,
			var(--dark-blue) 0%,
			rgba(5, 21, 41, 0.67) 44.56%,
			rgba(242, 103, 39, 0.3) 100%
		);
}

.cta-banner-v2__logo {
	position: absolute;
	display: block;
	top: 11%;
	left: 2%;
	width: 92%;
	height: auto;
	opacity: 0.9;
	pointer-events: none;
}

.cta-banner-v2__logo--desktop {
	display: none;
}

.cta-banner-v2__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding-left: 22px;
	padding-right: 22px;
}

.cta-banner-v2__layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 100%;
}

.cta-banner-v2__heading {
	margin: 0;
	padding: 0;
	width: 100%;
	color: var(--text-inverse);
	font-family: var(--font-heading);
	font-size: var(--fs-h1);
	font-weight: var(--font-weight-bold);
	line-height: var(--lh-heading);
	text-align: center;
	white-space: pre-line;
}

.cta-banner-v2__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	width: 100%;
}

.cta-banner-v2__btn {
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.cta-banner-v2__inner {
		padding-left: 40px;
		padding-right: 40px;
	}

	.cta-banner-v2__layout {
		gap: var(--section-content-gap);
	}

	.cta-banner-v2__actions {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (min-width: 1200px) {
	.cta-banner-v2 {
		min-height: 437px;
		padding-top: 89px;
		padding-bottom: 89px;
	}

	.cta-banner-v2__logo--mobile {
		display: none;
	}

	.cta-banner-v2__logo--desktop {
		display: block;
		top: 21.51%;
		right: 0;
		left: 33.42%;
		width: 66.58%;
		max-width: none;
		height: 78.49%;
	}

	.cta-banner-v2__layout {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 40px;
	}

	.cta-banner-v2__heading {
		max-width: 408px;
		text-align: left;
	}

	.cta-banner-v2__actions {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-end;
		width: auto;
	}
}
