/* Sticky scroll CTA — centered floating button + frosted halo (white borders) */

#sales-sticky-cta {
	position: fixed;
	left: 50%;
	right: auto;
	bottom: 28px;
	top: auto;
	z-index: 99990;
	padding: 0;
	margin: 0;
	width: max-content;
	max-width: calc(100vw - 32px);
	background: transparent;
	border: none;
	box-shadow: none;
	transform: translate(-50%, calc(100% + 48px));
	opacity: 0;
	visibility: hidden;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s;
	pointer-events: none;
}

#sales-sticky-cta.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Frosted halo — solid white borders */
.sales-sticky-cta__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px 8px;
	border-radius: 9999px;
	background: rgb(255, 255, 255);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border: 2px solid #fff;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.35) inset,
		0 12px 40px rgba(0, 0, 0, 0.12),
		0 4px 16px rgba(0, 0, 0, 0.06),
		0 0 48px rgba(220, 53, 69, 0.1);
}

/* CTA typography: match reference (Lota Grotesque 16px) + arrow */
#sales-sticky-cta .sales-sticky-cta__btn.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 280px;
	max-width: min(100%, 380px);
	padding: 16px 36px 16px 40px;
	font-family: "Lota Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
	text-align: center;
	border-radius: 9999px;
	border: 2px solid #fff;
	color: #fff;
	/* box-shadow:
		0 4px 14px rgba(0, 0, 0, 0.18),
		0 0 0 1px rgba(0, 0, 0, 0.04) inset; */
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sales-sticky-cta__text {
	white-space: nowrap;
}

.sales-sticky-cta__arrow {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 0;
}

.sales-sticky-cta__arrow svg {
	display: block;
	width: 18px;
	height: 18px;
}

#sales-sticky-cta .sales-sticky-cta__btn.btn:hover,
#sales-sticky-cta .sales-sticky-cta__btn.btn:focus {
	box-shadow:
		0 8px 28px rgba(0, 0, 0, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.35) inset;
	transform: translateY(-1px);
}

body.sales-sticky-cta-active {
	padding-bottom: 0;
}

/* Mobile: visible on load (no scroll), matches promedcert-style immediate CTA */
@media (max-width: 576px) {
	#sales-sticky-cta {
		bottom: 22px;
		max-width: calc(100vw - 24px);
		transform: translate(-50%, 0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		z-index: 5;

	}

	#sales-sticky-cta .sales-sticky-cta__btn.btn {
		min-width: 375px;
		width: auto;
		max-width: 100%;
		padding: 15px 28px;
		font-size: 16px;
	}

	circle {
	z-index: 9999;
    position: relative;
}

}
@media (max-width: 400px) {

	#sales-sticky-cta .sales-sticky-cta__btn.btn {
		min-width: 320px;
}
}