.eooh-lead-form-shell {
	--eooh-navy: #082b60;
	--eooh-navy-dark: #051d43;
	--eooh-blue: #1769aa;
	--eooh-teal: #0e8a8a;
	--eooh-ink: #17243a;
	--eooh-muted: #5d6b80;
	--eooh-border: #d8e1ec;
	--eooh-surface: #ffffff;
	--eooh-soft: #f3f7fb;
	box-sizing: border-box;
	max-width: 980px;
	margin: 2rem auto;
	padding: clamp(1.25rem, 3vw, 2.5rem);
	color: var(--eooh-ink);
	background:
		radial-gradient(circle at 100% 0, rgba(23, 105, 170, 0.1), transparent 30%),
		var(--eooh-surface);
	border: 1px solid rgba(8, 43, 96, 0.12);
	border-radius: 24px;
	box-shadow: 0 22px 60px rgba(8, 43, 96, 0.12);
	font-family: inherit;
}

.eooh-lead-form-shell *,
.eooh-lead-form-shell *::before,
.eooh-lead-form-shell *::after {
	box-sizing: inherit;
}

.eooh-lead-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.15rem;
}

.eooh-lead-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.42rem;
}

.eooh-lead-form-field--half {
	grid-column: span 1;
}

.eooh-lead-form-field label,
.eooh-lead-form-options legend {
	color: var(--eooh-ink);
	font-size: 0.9rem;
	font-weight: 700;
}

.eooh-lead-form input[type="text"],
.eooh-lead-form input[type="email"],
.eooh-lead-form input[type="tel"],
.eooh-lead-form input[type="number"],
.eooh-lead-form textarea {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 0.75rem 0.9rem;
	color: var(--eooh-ink);
	background: #fff;
	border: 1px solid var(--eooh-border);
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(8, 43, 96, 0.04);
	font: inherit;
	line-height: 1.4;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.eooh-lead-form textarea {
	min-height: 112px;
	resize: vertical;
}

.eooh-lead-form input:focus,
.eooh-lead-form textarea:focus {
	outline: none;
	border-color: var(--eooh-blue);
	box-shadow: 0 0 0 4px rgba(23, 105, 170, 0.14);
}

.eooh-lead-form-options {
	min-width: 0;
	margin: 1.65rem 0 0;
	padding: 0;
	border: 0;
}

.eooh-lead-form-options legend {
	padding: 0;
	font-size: 1rem;
}

.eooh-lead-form-help {
	margin: 0.28rem 0 0.9rem;
	color: var(--eooh-muted);
	font-size: 0.86rem;
}

.eooh-lead-form-check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.eooh-lead-form-check {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	min-height: 52px;
	padding: 0.75rem 0.8rem;
	background: var(--eooh-soft);
	border: 1px solid transparent;
	border-radius: 12px;
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 550;
	line-height: 1.4;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.eooh-lead-form-check:hover {
	background: #edf4fa;
	border-color: rgba(23, 105, 170, 0.25);
	transform: translateY(-1px);
}

.eooh-lead-form-check:has(input:checked) {
	background: rgba(23, 105, 170, 0.1);
	border-color: rgba(23, 105, 170, 0.45);
}

.eooh-lead-form-check input {
	width: 18px;
	height: 18px;
	margin: 0.08rem 0 0;
	accent-color: var(--eooh-blue);
	flex: 0 0 auto;
}

.eooh-lead-form-other {
	margin-top: 1rem;
}

.eooh-lead-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.6rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--eooh-border);
}

.eooh-lead-form-footer p {
	margin: 0;
	color: var(--eooh-muted);
	font-size: 0.8rem;
}

.eooh-lead-form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 48px;
	padding: 0.72rem 1.25rem;
	color: #fff;
	background: linear-gradient(135deg, var(--eooh-navy), var(--eooh-blue));
	border: 0;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(8, 43, 96, 0.22);
	cursor: pointer;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.eooh-lead-form button[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(8, 43, 96, 0.26);
}

.eooh-lead-form button[type="submit"]:focus-visible {
	outline: 3px solid rgba(23, 105, 170, 0.3);
	outline-offset: 3px;
}

.eooh-lead-form button[type="submit"]:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.eooh-lead-form-spinner {
	display: none;
	width: 17px;
	height: 17px;
	border: 2px solid rgba(255, 255, 255, 0.38);
	border-top-color: #fff;
	border-radius: 50%;
	animation: eooh-lead-spin 700ms linear infinite;
}

.eooh-lead-form.is-submitting .eooh-lead-form-spinner {
	display: block;
}

.eooh-lead-form-message {
	max-width: 980px;
	margin: 1rem auto;
	padding: 0.9rem 1rem;
	border: 1px solid;
	border-radius: 12px;
	font-size: 0.92rem;
	line-height: 1.5;
}

.eooh-lead-form-message--success {
	color: #155c43;
	background: #eaf8f1;
	border-color: #9dd8bd;
}

.eooh-lead-form-message--error {
	color: #8a2f28;
	background: #fff1ef;
	border-color: #efb1aa;
}

.eooh-lead-form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@keyframes eooh-lead-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
	.eooh-lead-form-shell {
		margin: 1rem auto;
		border-radius: 18px;
	}

	.eooh-lead-form-grid,
	.eooh-lead-form-check-grid {
		grid-template-columns: 1fr;
	}

	.eooh-lead-form-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.eooh-lead-form button[type="submit"] {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eooh-lead-form-shell *,
	.eooh-lead-form-shell *::before,
	.eooh-lead-form-shell *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
