/* Exit-intent popup - MCA / business-debt listicles only */
.rk-exit-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 15, 25, 0.78);
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.rk-exit-overlay.is-open {
	display: flex;
	opacity: 1;
}

.rk-exit-modal {
	background: #fff;
	max-width: 520px;
	width: 100%;
	border-radius: 14px;
	padding: 38px 32px 32px;
	position: relative;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	text-align: center;
	transform: translateY(12px);
	transition: transform 0.25s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rk-exit-overlay.is-open .rk-exit-modal {
	transform: translateY(0);
}

.rk-exit-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: 0;
	font-size: 30px;
	line-height: 1;
	color: #9aa3b2;
	cursor: pointer;
	padding: 4px 8px;
}

.rk-exit-close:hover {
	color: #0a0f19;
}

.rk-exit-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8860b;
	margin-bottom: 14px;
}

.rk-exit-title {
	font-size: 28px;
	line-height: 1.2;
	font-weight: 800;
	color: #0a0f19;
	margin: 0 0 12px;
}

.rk-exit-sub {
	font-size: 16px;
	line-height: 1.5;
	color: #475569;
	margin: 0 0 24px;
}

.rk-exit-cta-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 18px;
}

.rk-exit-btn {
	display: block;
	padding: 15px 22px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	letter-spacing: 0.01em;
}

.rk-exit-btn-primary {
	background: #0a3d62;
	color: #fff;
}

.rk-exit-btn-primary:hover {
	background: #082f4a;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(10, 61, 98, 0.35);
	text-decoration: none;
}

.rk-exit-btn-call {
	background: #16a34a;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.rk-exit-btn-call:hover {
	background: #13863d;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
	text-decoration: none;
}

.rk-exit-btn-call svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.rk-exit-fine {
	font-size: 12px;
	color: #94a3b8;
	margin: 0;
}

@media (max-width: 560px) {
	.rk-exit-modal {
		padding: 32px 22px 26px;
	}

	.rk-exit-title {
		font-size: 22px;
	}

	.rk-exit-sub {
		font-size: 15px;
	}
}
