.cta-bar {
	position: relative;
	isolation: isolate;
	display: flex;
	width: 100%;
	min-height: 156px;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	box-sizing: border-box;
	overflow: hidden;
	padding: 38px 55px;
	border: 1px solid rgba(0, 185, 235, 0.24);
	border-radius: 5px;
	background:
		radial-gradient(60% 130% at 58% 0%, rgba(0, 185, 235, 0.22) 0%, rgba(0, 185, 235, 0.08) 34%, rgba(0, 185, 235, 0) 68%),
		linear-gradient(180deg, #06233c 0%, #031626 100%);
	color: #c7d2e0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

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

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

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

.cta-bar::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -128px;
	left: 43%;
	width: 540px;
	height: 330px;
	border-radius: 50%;
	background:
		repeating-radial-gradient(ellipse at center, rgba(0, 210, 255, 0.35) 0 1px, transparent 1px 10px);
	opacity: 0.34;
	transform: rotate(12deg);
}

.cta-bar::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 22, 38, 0) 0%, rgba(3, 22, 38, 0.16) 54%, rgba(3, 22, 38, 0.58) 100%);
	pointer-events: none;
}

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

.cta-bar__title {
	margin: 0;
	color: #ffffff;
	font-size: 32px;
	line-height: 40px;
	font-weight: 800;
	letter-spacing: 0;
}

.cta-bar__description {
	margin: 13px 0 0;
	color: #ffffff;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	letter-spacing: 0;
}

.cta-bar__button {
	display: inline-flex;
	flex: 0 0 auto;
	min-width: 320px;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 16px 32px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(180deg, #20d7ff 0%, #08b6eb 100%);
	color: #02121f;
	font-size: 18px;
	line-height: 24px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.cta-bar__button:hover,
.cta-bar__button:focus {
	background: linear-gradient(180deg, #4ce2ff 0%, #10c8ff 100%);
	color: #02121f;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(0, 190, 245, 0.25);
	transform: translateY(-1px);
}

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

.cta-bar__button svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

	.cta-bar::before {
		left: 18%;
	}

	.cta-bar::after {
		background: linear-gradient(180deg, rgba(3, 22, 38, 0) 0%, rgba(3, 22, 38, 0.36) 100%);
	}

	.cta-bar__button {
		min-width: 0;
		width: 100%;
	}
}
