/* Product quote lead form — matches cubicle archive .ls section */

.coil-product-quote-section {
	margin: 2rem 0;
	padding: 36px 32px;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, #0d2548 0%, #1a3a6b 100%);
}

.coil-product-quote-section__title {
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #fff;
}

.coil-product-quote-section__subtitle {
	margin: 0 0 22px;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
}

.coil-product-quote-section__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 9px 0 0;
	font-size: 11px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

.coil-product-quote-section__footer i {
	font-size: 13px;
}

.coil-product-lead-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	max-width: 580px;
	margin: 0 auto;
}

.coil-product-lead-form input,
.coil-product-lead-form select {
	padding: 11px 14px;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 13px;
	outline: none;
	font-family: inherit;
}

.coil-product-lead-form input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.coil-product-lead-form select {
	color: rgba(255, 255, 255, 0.6);
}

.coil-product-lead-form select option {
	color: #212529;
	background: #fff;
}

.coil-product-lead-submit {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	padding: 13px;
	border: none;
	border-radius: 7px;
	background: #c8902a;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
}

.coil-product-lead-submit:hover {
	background: #b07a22;
}

.coil-product-lead-submit:disabled {
	opacity: 0.75;
	cursor: wait;
}

.coil-product-lead-submit i {
	font-size: 15px;
}

.coil-product-lead-form .coil-cubicle-form-msg {
	grid-column: 1 / -1;
	margin: 0;
	text-align: center;
}

.coil-product-lead-form .coil-cubicle-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.coil-product-lead-form .coil-cubicle-captcha {
	margin-top: 2px;
}

.coil-product-lead-form .coil-cubicle-captcha--math {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	align-items: center;
}

.coil-product-lead-form .coil-cubicle-captcha--math label {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
}

.coil-product-lead-form .coil-cubicle-captcha--math input {
	max-width: 88px;
}

.coil-product-lead-form .coil-cubicle-captcha--recaptcha {
	grid-column: 1 / -1;
	display: flex;
	justify-content: flex-start;
}

.coil-cubicle-form-msg {
	margin: 0;
	padding: 10px 12px;
	border-radius: 7px;
	font-size: 12px;
	line-height: 1.45;
}

.coil-cubicle-form-msg.is-success {
	background: #eaf3de;
	color: #27500a;
	border: 1px solid #c0dd97;
}

.coil-cubicle-form-msg.is-error {
	background: #fff3cd;
	color: #856404;
	border: 1px solid #ffc107;
}

@media (max-width: 640px) {
	.coil-product-quote-section {
		padding: 28px 20px;
	}

	.coil-product-quote-section__title {
		font-size: 20px;
	}

	.coil-product-lead-form {
		grid-template-columns: 1fr;
	}
}
