.fixed-cta-bar {
	position: fixed;
	left: 240px;
	right: 0;
	bottom: 20px;
	width: calc(100vw - 240px);
	z-index: 1000;
	display: none;
	justify-content: center;
	background: transparent;
	padding: 0;
	box-shadow: none;
	margin: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.fixed-cta-bar.fadein {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}


.fixed-cta-inner {
	height: 100px;
	max-width: 100vw;
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background-color: rgba(237, 237, 237, 0.8);
	border-radius: 20px;
	padding: 10px 20px;
}

@media (max-width: 1050px) {
	.fixed-cta-bar {
		left: 0;
		right: 0;
		width: 100vw;
		bottom: 0;
	}

	.fixed-cta-inner {
		gap: 14px;
		max-width: 96vw;
		width: 100%;
		height: auto;
		min-height: 0;
	}

	.fixed-cta-bar {
		margin: 18px 0 0 0;
	}

	.fixed-cta-btn {
		width: 100%;
		font-size: 1.25em;
		justify-content: center;
		padding: 14px 0;
	}
}

.fixed-cta-inner {
	display: flex;
	gap: 24px;
	max-width: 70rem;
	width: 100%;
	justify-content: center;
}

.fixed-cta-btn {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 18px;
	border-radius: 14px;
	background: #58c4d8;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.2s;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
	width: 100%;
	justify-content: center;
}

.fixed-cta-btn.cta-mail {
	background: #00a7ee;
}

.cta-mail:hover {
	background: #007fa3;
	color: #fff;
}

.fixed-cta-btn .cta-icon {
	display: inline-block;
	vertical-align: middle;
	height: 38px;
	width: 38px;
}

@media (max-width: 700px) {
	.fixed-cta-inner {
		flex-direction: column;
		gap: 14px;
		max-width: 96vw;
	}

	.fixed-cta-btn {
		width: 100%;
		font-size: 1.25em;
		justify-content: center;
		padding: 14px 0;
	}
}