/* Webified Quote Intake — public-facing two-stage form. */

.wcq-form {
	margin: 0 auto;
}
.wcq-section {
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 0 2rem;
	padding: 1.5rem 0 0;
}
.wcq-section:first-of-type {
	border-top: 0;
}
.wcq-section legend {
	font-weight: 700;
	font-size: 1.1rem;
	padding: 0;
	margin-bottom: 1rem;
}
.wcq-field {
	margin: 0 0 1.1rem;
}
.wcq-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.3rem;
}
.wcq-field input[type="text"],
.wcq-field input[type="email"],
.wcq-field input[type="tel"],
.wcq-field select,
.wcq-field textarea {
	width: 100%;
	padding: 0.55rem 0.7rem;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	font: inherit;
}
.wcq-field textarea {
	resize: vertical;
}
.wcq-help {
	display: block;
	font-size: 0.8rem;
	opacity: 0.65;
	margin-top: 0.25rem;
}
.wcq-radios,
.wcq-checkboxes {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.2rem;
}
.wcq-radio,
.wcq-checkbox {
	font-weight: 400 !important;
	display: flex !important;
	align-items: center;
	gap: 0.4rem;
}

.wcq-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-top: 1.5rem;
}

.wcq-btn {
	display: inline-block;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	background: #1a1d21;
	color: #fff;
	border: 0;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
}

.wcq-btn-secondary {
	display: inline-block;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	background: transparent;
	color: #1a1d21;
	border: 1px solid rgba(0, 0, 0, 0.3);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
}

.wcq-notice {
	padding: 1rem 1.25rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}
.wcq-notice-success {
	background: #e6f4ea;
	color: #1e4620;
}
.wcq-notice-error {
	background: #fdecea;
	color: #611a15;
}

/* Honeypot: visually hidden, but present for bots to fill in. */
.wcq-hp-wrap {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
