.contact-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(75px, 8vw, 120px) 0;
	background:
		radial-gradient(circle at 8% 20%, rgba(205, 144, 24, .1), transparent 24%),
		linear-gradient(135deg, #eef3f9, #ffffff 62%);
}

.contact-cta .section-eyebrow {
	display: inline-block;
	margin-bottom: 13px;
	color: #cd9018;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.contact-cta .section-title {
	margin: 0;
	color: #ffffff;
	font-size: clamp(36px, 4vw, 54px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.1;
	text-wrap: balance;
}

.contact-cta::before,
.contact-cta::after {
	position: absolute;
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.contact-cta::before {
	top: -100px;
	right: 5%;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(6, 43, 104, .08);
	box-shadow: 0 0 0 35px rgba(6, 43, 104, .018);
}

.contact-cta::after {
	bottom: 8%;
	left: 3%;
	width: 10px;
	height: 10px;
	background: rgba(205, 144, 24, .32);
	box-shadow:
		24px -22px 0 rgba(6, 43, 104, .14),
		48px 5px 0 rgba(205, 144, 24, .15);
}

.contact-cta__panel {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(6, 43, 104, .08);
	border-radius: 20px;
	box-shadow: 0 28px 70px rgba(3, 28, 71, .16);
}

.contact-cta__info {
	position: relative;
	height: 100%;
	padding: clamp(35px, 5vw, 62px);
	overflow: hidden;
	color: #ffffff;
	background:
		radial-gradient(circle at 100% 0, rgba(205, 144, 24, .28), transparent 34%),
		#031c47;
}

.contact-cta__info::before {
	position: absolute;
	right: -85px;
	bottom: -85px;
	width: 240px;
	height: 240px;
	border: 1px solid rgba(205, 144, 24, .16);
	border-radius: 50%;
	box-shadow:
		0 0 0 34px rgba(205, 144, 24, .035),
		0 0 0 68px rgba(255, 255, 255, .018);
	content: "";
}

.contact-cta__info > * {
	position: relative;
	z-index: 1;
}

.contact-cta__info > span {
	margin-bottom: 12px;
	color: #cd9018;
}

.contact-cta h2 {
	margin-bottom: 35px;
}

.contact-cta__item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 15px;
	margin-top: 12px;
	padding: 16px;
	background: rgba(255, 255, 255, .055);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 10px;
	backdrop-filter: blur(4px);
}

.contact-cta__item svg {
	width: 38px;
	height: 38px;
	padding: 9px;
	fill: #031c47;
	background: #cd9018;
	border-radius: 9px;
}

.contact-cta__item h3 {
	margin: 0 0 5px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
}

.contact-cta__item p,
.contact-cta__item a {
	margin: 0;
	color: rgba(255, 255, 255, .72);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.contact-cta__item a:hover {
	color: #cd9018;
}

.contact-cta__form {
	position: relative;
	height: 100%;
	padding: clamp(35px, 5vw, 62px);
	background:
		radial-gradient(circle at 100% 0, rgba(205, 144, 24, .08), transparent 28%),
		linear-gradient(145deg, rgba(242, 246, 251, .72), transparent 48%),
		#ffffff;
}

.contact-cta__form-heading {
	max-width: 620px;
	margin-bottom: 32px;
}

.contact-cta__form-heading > span {
	display: block;
	margin-bottom: 7px;
	color: #b77d10;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.contact-cta__form-heading h3 {
	margin: 0;
	color: #031c47;
	font-size: clamp(27px, 2.7vw, 38px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.15;
}

.contact-cta__form-heading p {
	max-width: 560px;
	margin: 12px 0 0;
	color: #697486;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.65;
}

.contact-cta__form label {
	display: block;
	margin-bottom: 8px;
	color: #17243a;
	font-size: 13px;
	font-weight: 500;
}

.contact-cta__form label span {
	color: #b77d10;
}

.contact-cta__form input,
.contact-cta__form select,
.contact-cta__form textarea {
	display: block;
	width: 100%;
	min-height: 53px;
	padding: 14px 16px;
	color: #17243a;
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(6, 43, 104, .15);
	border-radius: 7px;
	box-shadow: 0 5px 16px rgba(3, 28, 71, .035);
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-cta__form input::placeholder,
.contact-cta__form textarea::placeholder {
	color: #9aa2ad;
}

.contact-cta__form textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-cta__form input:focus,
.contact-cta__form select:focus,
.contact-cta__form textarea:focus {
	background: #ffffff;
	border-color: #cd9018;
	box-shadow: 0 0 0 3px rgba(205, 144, 24, .11), 0 8px 20px rgba(3, 28, 71, .06);
}

.contact-cta__form button {
	display: inline-flex;
	width: 100%;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 14px 24px;
	color: #ffffff;
	background: linear-gradient(135deg, #062b68, #031c47);
	border: 1px solid #031c47;
	border-radius: 7px;
	box-shadow: 0 10px 24px rgba(3, 28, 71, .18);
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-cta__form button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.contact-cta__form button:hover {
	color: #031c47;
	background: #cd9018;
	border-color: #cd9018;
	box-shadow: 0 12px 26px rgba(205, 144, 24, .2);
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.contact-cta {
		padding: 70px 0;
	}

	.contact-cta .section-title {
		font-size: 38px;
	}

	.contact-cta__panel {
		border-radius: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-cta__form input,
	.contact-cta__form select,
	.contact-cta__form textarea,
	.contact-cta__form button {
		transition: none;
	}
}
