.eel-lead-section,
.eel-lead-section * {
	box-sizing: border-box;
}

.eel-lead-section {
	--eel-orange: #fd6a0d;
	--eel-orange-dark: #d95300;
	--eel-orange-soft: #fff1e8;
	--eel-charcoal: #343638;
	position: relative;
	width: 100%;
	padding: 28px 20px;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
}

.eel-lead-shell {
	position: relative;
	width: min(1380px, 100%);
	margin-inline: auto;
	padding: 31px 32px 30px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 25px;
	background:
		radial-gradient(circle at 4% 0%, rgba(253, 106, 13, 0.36), transparent 29%),
		radial-gradient(circle at 98% 100%, rgba(253, 106, 13, 0.18), transparent 25%),
		linear-gradient(135deg, #252729 0%, var(--eel-charcoal) 50%, #27292b 100%);
/* 	box-shadow: 0 24px 58px rgba(25, 28, 31, 0.19); */
}

.eel-lead-shell::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.22;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 34px 34px;
	pointer-events: none;
}

.eel-lead-heading,
.eel-lead-form {
	position: relative;
	z-index: 1;
}

.eel-lead-heading {
	margin: 0 auto 22px;
	text-align: center;
}

.eel-lead-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 8px;
	color: #ffb17e;
	font-size: 11px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 1.65px;
	text-transform: uppercase;
}

.eel-lead-kicker::before,
.eel-lead-kicker::after {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 99px;
	background: var(--eel-orange);
}

.eel-lead-heading h2 {
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.8px;
	text-transform: uppercase;
}

.eel-lead-heading h2 span {
	color: var(--eel-orange);
}

.eel-lead-heading p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 1.5;
}

.eel-lead-form {
	display: grid;
	grid-template-columns: 1.08fr 1.08fr 1.08fr 1.08fr auto;
	align-items: start;
	gap: 12px;
}

.eel-field {
	position: relative;
	min-width: 0;
}

.eel-field-icon {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 16px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	fill: none;
	stroke: #777c82;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

.eel-field input,
.eel-field select {
	width: 100%;
	height: 56px;
	margin: 0;
	padding: 0 42px 0 47px;
	border: 1px solid transparent;
	border-radius: 11px;
	outline: 0;
	display: block;
	background: #f5f5f7;
	color: #111;
	font: 600 14px/1 Arial, Helvetica, sans-serif;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.eel-field input::placeholder {
	color: #555b61;
	opacity: 1;
}

.eel-field select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #555b61 50%),
		linear-gradient(135deg, #555b61 50%, transparent 50%);
	background-position:
		calc(100% - 20px) 24px,
		calc(100% - 15px) 24px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.eel-field input:hover,
.eel-field select:hover {
	background-color: #fff;
}

.eel-field input:focus,
.eel-field select:focus {
	border-color: var(--eel-orange);
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(253, 106, 13, 0.16);
}

.eel-field.is-invalid input,
.eel-field.is-invalid select {
	border-color: #e53935;
	box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.13);
}

.eel-submit {
	position: relative;
	min-width: 130px;
	height: 56px;
	padding: 0 21px;
	border: 0;
	border-radius: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: linear-gradient(135deg, #ff7c28, var(--eel-orange-dark));
	color: #fff;
	font: 800 14px/1 Arial, Helvetica, sans-serif;
	cursor: pointer;
	box-shadow: 0 12px 25px rgba(253, 106, 13, 0.26);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.eel-submit svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.2s ease;
}

.eel-submit:hover:not(:disabled) {
	transform: translateY(-2px);
	filter: brightness(1.04);
	box-shadow: 0 16px 30px rgba(253, 106, 13, 0.33);
}

.eel-submit:hover:not(:disabled) svg {
	transform: translateX(3px);
}

.eel-submit:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.76);
	outline-offset: 3px;
}

.eel-submit:disabled {
	opacity: 0.74;
	cursor: wait;
}

.eel-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.42);
	border-top-color: #fff;
	border-radius: 50%;
	display: none;
	animation: eel-spin 0.7s linear infinite;
}

.eel-lead-form.is-loading .eel-spinner {
	display: inline-block;
}

.eel-lead-form.is-loading .eel-submit svg {
	display: none;
}

.eel-form-status {
	grid-column: 1 / -1;
	min-height: 0;
	margin: 0;
	border-radius: 9px;
	color: #fff;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 700;
	text-align: center;
	transition: margin 0.2s ease, padding 0.2s ease;
}

.eel-form-status.is-success,
.eel-form-status.is-error {
	margin-top: 2px;
	padding: 10px 14px;
}

.eel-form-status.is-success {
	background: rgba(34, 197, 94, 0.16);
	color: #c8ffd8;
}

.eel-form-status.is-error {
	background: rgba(239, 68, 68, 0.16);
	color: #ffd1d1;
}

.eel-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.eel-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

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

@media (max-width: 1180px) {
	.eel-lead-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eel-submit {
		width: 100%;
	}
}

@media (max-width: 700px) {
	.eel-lead-section {
		padding: 20px 14px;
	}

	.eel-lead-shell {
		padding: 29px 20px 24px;
		border-radius: 20px;
	}

	.eel-lead-heading {
		margin-bottom: 20px;
	}

	.eel-lead-heading h2 {
		font-size: clamp(27px, 8.4vw, 39px);
	}

	.eel-lead-heading p {
		font-size: 12.5px;
	}

	.eel-lead-form {
		grid-template-columns: 1fr;
		gap: 11px;
	}

	.eel-field input,
	.eel-field select,
	.eel-submit {
		height: 54px;
	}
}

@media (max-width: 390px) {
	.eel-lead-section {
		padding-inline: 10px;
	}

	.eel-lead-shell {
		padding-inline: 15px;
	}

	.eel-lead-kicker::before,
	.eel-lead-kicker::after {
		width: 16px;
	}
}

@media (hover: none) {
	.eel-submit:hover:not(:disabled),
	.eel-submit:hover:not(:disabled) svg {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eel-field input,
	.eel-field select,
	.eel-submit,
	.eel-submit svg,
	.eel-form-status {
		transition: none;
	}

	.eel-spinner {
		animation-duration: 1.2s;
	}
}
