:root{--mps-z:9999;}
.mps-overlay{
	position:fixed; inset:0;
	background:rgba(0,0,0,.55);
	align-items:center; justify-content:center;
	padding:16px;
	z-index:var(--mps-z);
}
.mps-modal{
	width:min(520px,100%);
	background:#fff;
	border-radius:14px;
	box-shadow:0 18px 60px rgba(0,0,0,.25);
	overflow:hidden;
	font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.mps-header{
	padding:16px 18px;
	background:#111827;
	color:#fff;
	font-weight:700;
	font-size:16px;
	position:relative;
}
.mps-close{
	position:absolute;
	right:16px; top:12px;
	background:transparent;
	border:0;
	color:#fff;
	font-size:20px;
	line-height:1;
	cursor:pointer;
	opacity:.9;
}
.mps-body{padding:16px 18px; color:#111827; line-height:1.5;}
.mps-body p{margin:0 0 10px;}
.mps-contact{
	background:#f3f4f6;
	border-radius:10px;
	padding:10px 12px;
	margin-top:10px;
	font-weight:600;
}
.mps-actions{
	display:flex;
	gap:10px;
	justify-content:flex-end;
	padding:14px 18px 18px;
	background:#fff;
}
.mps-btn{
	border:0;
	padding:10px 14px;
	border-radius:10px;
	cursor:pointer;
	font-weight:700;
}
.mps-btn.primary{background:#111827; color:#fff;}
.mps-btn.ghost{background:#e5e7eb; color:#111827;}
