#lead-popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.lp-hidden { display: none; }
.lp-wrap {
	background: #fff;
	width: 90%;
	max-width: 640px;
	padding: 2rem;
	border-radius: 8px;
	position: relative;
	overflow-y: auto;
	max-height: 90vh;
}
.lp-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: 0;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}
body.lp-noscr { overflow: hidden; }
