.bhrlf-funnel {
	--bhrlf-accent: #c8902f;
	--bhrlf-dark: #17242d;
	--bhrlf-border: #d8dee3;
	--bhrlf-error: #b42318;
	max-width: 720px;
	margin: 2rem auto;
	padding: clamp(1.25rem, 4vw, 2.5rem);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(23, 36, 45, .12);
	color: var(--bhrlf-dark);
}

.bhrlf-progress {
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: #eef1f3;
}

.bhrlf-progress__bar {
	display: block;
	width: 20%;
	height: 100%;
	background: var(--bhrlf-accent);
	transition: width .25s ease;
}

.bhrlf-progress__label {
	margin: .65rem 0 2rem;
	color: #5c6972;
	font-size: .9rem;
}

.bhrlf-step fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.bhrlf-step legend {
	margin-bottom: 1.5rem;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
}

.bhrlf-options {
	display: grid;
	gap: .75rem;
}

.bhrlf-option {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: 1rem;
	border: 1px solid var(--bhrlf-border);
	border-radius: 10px;
	cursor: pointer;
}

.bhrlf-option:has(input:checked) {
	border-color: var(--bhrlf-accent);
	background: #fffaf0;
}

.bhrlf-option input {
	width: 1.15rem;
	height: 1.15rem;
	accent-color: var(--bhrlf-accent);
}

.bhrlf-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.bhrlf-contact-grid label,
.bhrlf-consent label {
	display: grid;
	gap: .4rem;
}

.bhrlf-text-input,
.bhrlf-contact-grid input {
	width: 100%;
	box-sizing: border-box;
	padding: .85rem 1rem;
	border: 1px solid var(--bhrlf-border);
	border-radius: 8px;
	font: inherit;
}

.bhrlf-text-input:focus,
.bhrlf-contact-grid input:focus {
	outline: 3px solid rgba(200, 144, 47, .2);
	border-color: var(--bhrlf-accent);
}

.bhrlf-consent {
	margin-top: 1.25rem;
	padding: 1rem;
	border-radius: 8px;
	background: #f6f8f9;
	font-size: .88rem;
}

.bhrlf-consent label {
	display: flex;
	align-items: flex-start;
}

.bhrlf-consent input {
	flex: 0 0 auto;
	margin-top: .2rem;
	accent-color: var(--bhrlf-accent);
}

.bhrlf-actions {
	display: flex;
	justify-content: flex-end;
	gap: .75rem;
	margin-top: 2rem;
}

.bhrlf-button {
	display: inline-block;
	padding: .85rem 1.4rem;
	border: 1px solid var(--bhrlf-dark);
	border-radius: 8px;
	background: var(--bhrlf-dark);
	color: #fff;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.bhrlf-button--secondary {
	margin-right: auto;
	background: #fff;
	color: var(--bhrlf-dark);
}

.bhrlf-button:disabled {
	opacity: .6;
	cursor: wait;
}

.bhrlf-message {
	min-height: 1.4em;
	margin-top: 1rem;
	color: var(--bhrlf-error);
}

.bhrlf-results {
	max-width: 720px;
	margin: 3rem auto;
	padding: 2.5rem;
	text-align: center;
}

@media (max-width: 600px) {
	.bhrlf-contact-grid {
		grid-template-columns: 1fr;
	}
}
