.contact-cta-bar {
	position: relative;
	isolation: isolate;
	display: flex;
	width: 100%;
	min-height: 132px;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	box-sizing: border-box;
	overflow: hidden;
	padding: 31px 43px;
	border: 1px solid rgba(0, 157, 205, 0.2);
	border-radius: 5px;
	background:
		radial-gradient(72% 150% at 56% 0%, rgba(0, 145, 195, 0.055) 0%, rgba(0, 145, 195, 0.02) 34%, rgba(0, 145, 195, 0) 68%),
		linear-gradient(180deg, #04182b 0%, #03111f 100%);
	color: #aeb9c7;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.025),
		0 0 0 1px rgba(5, 25, 42, 0.35);
}

.card:has(> .card-body > .contact-cta-bar) {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.card:has(> .card-body > .contact-cta-bar):hover {
	border-color: transparent;
	box-shadow: none;
}

.card:has(> .card-body > .contact-cta-bar) > .card-body {
	padding: 0;
}

.contact-cta-bar *,
.contact-cta-bar *::before,
.contact-cta-bar *::after {
	box-sizing: border-box;
}

.contact-cta-bar::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -120px;
	left: 30%;
	width: 560px;
	height: 340px;
	border-radius: 50%;
	background: repeating-radial-gradient(ellipse at center, rgba(0, 185, 235, 0.07) 0 1px, transparent 1px 10px);
	opacity: 0.16;
	transform: rotate(10deg);
}

.contact-cta-bar::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 17, 31, 0.08) 0%, rgba(3, 17, 31, 0.24) 58%, rgba(3, 17, 31, 0.5) 100%);
	pointer-events: none;
}

.contact-cta-bar__main {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 36px;
}

.contact-cta-bar__icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background: rgba(0, 150, 205, 0.08);
	color: #04cfea;
}

.contact-cta-bar__icon svg {
	width: 40px;
	height: 40px;
	stroke: currentColor;
	stroke-width: 1.7;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contact-cta-bar__content {
	min-width: 0;
}

.contact-cta-bar__title {
	margin: 0;
	color: #edf2f7;
	font-size: 24px;
	line-height: 30px;
	font-weight: 800;
	letter-spacing: 0;
}

.contact-cta-bar__description {
	margin: 13px 0 0;
	color: #aeb9c7;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0;
}

.contact-cta-bar__button {
	display: inline-flex;
	flex: 0 0 auto;
	min-width: 308px;
	min-height: 70px;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 20px 34px;
	border: 1px solid #00a8d8;
	border-radius: 4px;
	background: rgba(0, 160, 210, 0.015);
	color: #edf2f7;
	font-size: 20px;
	line-height: 28px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, color 200ms ease, transform 200ms ease;
}

.contact-cta-bar__button:hover,
.contact-cta-bar__button:focus {
	border-color: #08c8f5;
	background: rgba(0, 165, 220, 0.1);
	color: #f4f8fb;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(0, 190, 245, 0.16);
	transform: translateY(-1px);
}

.contact-cta-bar__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
}

.contact-cta-bar__button svg {
	width: 24px;
	height: 24px;
	stroke: #00c8ec;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 767.98px) {
	.contact-cta-bar {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
		min-height: 0;
		padding: 22px;
	}

	.contact-cta-bar::before {
		left: 12%;
	}

	.contact-cta-bar::after {
		background: linear-gradient(180deg, rgba(3, 20, 33, 0) 0%, rgba(3, 20, 33, 0.34) 100%);
	}

	.contact-cta-bar__main {
		align-items: flex-start;
		gap: 18px;
	}

	.contact-cta-bar__icon {
		width: 48px;
		height: 48px;
	}

	.contact-cta-bar__icon svg {
		width: 30px;
		height: 30px;
	}

	.contact-cta-bar__title {
		font-size: 18px;
		line-height: 24px;
	}

	.contact-cta-bar__description {
		margin-top: 8px;
		font-size: 15px;
		line-height: 22px;
	}

	.contact-cta-bar__button {
		width: 100%;
		min-width: 0;
		min-height: 52px;
		padding: 14px 22px;
		font-size: 16px;
		line-height: 22px;
	}
}
