.gp-pm-sticky-cta {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9998;
	width: min(360px, calc(100vw - 32px));
	max-width: calc(100vw - 32px);
	padding: 20px 20px 18px;
	border-radius: 4px;
	background: #031326;
	color: #fff;
	box-shadow: 0 16px 40px rgba(3, 19, 38, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
	pointer-events: none;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.gp-pm-sticky-cta.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.gp-pm-sticky-cta__close {
	position: absolute;
	top: 8px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.gp-pm-sticky-cta__close:hover,
.gp-pm-sticky-cta__close:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	outline: none;
}

.gp-pm-sticky-cta__top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
	padding-right: 18px;
}

.gp-pm-sticky-cta__icon {
	flex: 0 0 auto;
	color: #2dd4bf;
}

.gp-pm-sticky-cta__icon svg {
	display: block;
	width: 48px;
	height: 48px;
}

.gp-pm-sticky-cta__copy {
	flex: 1 1 auto;
	min-width: 0;
}

.gp-pm-sticky-cta__heading {
	margin: 0 0 6px;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
}

.gp-pm-sticky-cta__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	line-height: 1.5;
}

.gp-pm-sticky-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border-radius: 2px;
	background: #f5cb5c;
	color: #031326;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.gp-pm-sticky-cta__btn:hover,
.gp-pm-sticky-cta__btn:focus-visible {
	background: #fff;
	color: #031326;
	outline: none;
}

.gp-pm-sticky-cta__btn-label--mobile {
	display: none;
}

body.has-gp-pm-sticky-cta {
	transition: padding-bottom 0.35s ease;
}

@media (max-width: 767px) {
	.gp-pm-sticky-cta {
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		max-width: none;
		padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
		border-radius: 14px 14px 0 0;
		box-shadow: 0 -8px 32px rgba(3, 19, 38, 0.35);
		transform: translateY(100%);
	}

	.gp-pm-sticky-cta.is-visible {
		transform: translateY(0);
	}

	.gp-pm-sticky-cta__close {
		top: 10px;
		right: 8px;
		width: 44px;
		height: 44px;
		font-size: 26px;
	}

	.gp-pm-sticky-cta__top {
		gap: 12px;
		margin-bottom: 12px;
		padding-right: 40px;
		align-items: center;
	}

	.gp-pm-sticky-cta__icon svg {
		width: 40px;
		height: 40px;
	}

	.gp-pm-sticky-cta__heading {
		font-size: 0.98rem;
		line-height: 1.3;
	}

	.gp-pm-sticky-cta__text {
		font-size: 0.82rem;
		line-height: 1.45;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

	.gp-pm-sticky-cta__btn {
		min-height: 48px;
		padding: 14px 16px;
		border-radius: 8px;
		font-size: 1rem;
	}

	.gp-pm-sticky-cta__btn-label--desktop {
		display: none;
	}

	.gp-pm-sticky-cta__btn-label--mobile {
		display: inline;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gp-pm-sticky-cta,
	body.has-gp-pm-sticky-cta {
		transition: none;
	}
}
