/**
 * Lead gate modal — product contact.
 */
.ea-contact-gate-open {
	overflow: hidden;
}

.ea-contact-gate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.ea-contact-gate[hidden] {
	display: none !important;
}

.ea-contact-gate__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 10, 144, 0.55);
	backdrop-filter: blur(3px);
}

.ea-contact-gate__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 420px);
	background: #fff;
	border-radius: 18px;
	padding: 1.75rem 1.5rem 1.5rem;
	box-shadow: 0 24px 60px rgba(5, 10, 144, 0.25);
	animation: eaContactIn 0.25s ease;
}

@keyframes eaContactIn {
	from { opacity: 0; transform: translateY(12px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.ea-contact-gate__close {
	position: absolute;
	top: 0.75rem;
	right: 0.85rem;
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	color: #5c678a;
	cursor: pointer;
}

.ea-contact-gate h2 {
	margin: 0 0 0.5rem;
	font-family: "Barlow", sans-serif;
	font-size: 1.45rem;
	font-weight: 800;
	color: #050A90;
}

.ea-contact-gate__hint {
	margin: 0 0 1.25rem;
	color: #5c678a;
	font-size: 0.9375rem;
	line-height: 1.45;
}

.ea-contact-gate__field {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.ea-contact-gate__field span {
	font-weight: 700;
	font-size: 0.9375rem;
	color: #1a2240;
}

.ea-contact-gate__field input {
	width: 100%;
	min-height: 52px;
	padding: 0.75rem 1rem;
	border: 2px solid #c5cfe0;
	border-radius: 12px;
	font-size: 1.0625rem;
	font-family: "DM Sans", sans-serif;
}

.ea-contact-gate__field input:focus {
	border-color: #050A90;
	outline: none;
	box-shadow: 0 0 0 3px rgba(5, 10, 144, 0.12);
}

.ea-contact-gate__error {
	margin: 0 0 0.75rem;
	padding: 0.75rem 1rem;
	background: #fff0ee;
	border: 1px solid #FF1800;
	border-radius: 10px;
	color: #8a1200;
	font-size: 0.875rem;
	font-weight: 600;
}

.ea-contact-gate__submit {
	width: 100%;
	min-height: 54px;
	border: 0;
	border-radius: 12px;
	background: #050A90;
	color: #fff;
	font-size: 1.0625rem;
	font-weight: 800;
	cursor: pointer;
	font-family: "DM Sans", sans-serif;
}

.ea-contact-gate__submit:hover {
	background: #040875;
}

.ea-contact-gate__submit:disabled {
	opacity: 0.7;
	cursor: wait;
}
