.bca-cq {
	--bca-cq-accent: #24a5d9;
	--bca-cq-accent-dark: #1686b4;
	--bca-cq-text: #252525;
	--bca-cq-muted: #667078;
	--bca-cq-panel: #e9eef0;
	--bca-cq-white: #fff;
	--bca-cq-border: #cbd5da;
	color: var(--bca-cq-text);
	font-family: Onest, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 40px auto;
	max-width: 1440px;
	width: 100%;
}

.bca-cq *,
.bca-cq *::before,
.bca-cq *::after {
	box-sizing: border-box;
}

.bca-cq__layout {
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
	min-width: 0;
}

.bca-cq__intro {
	align-self: start;
	min-width: 0;
	padding: 26px 8px;
}

.bca-cq__eyebrow,
.bca-cq__result-badge {
	color: var(--bca-cq-accent-dark);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .08em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.bca-cq__heading {
	font-size: clamp(30px, 4vw, 48px);
	letter-spacing: -.035em;
	line-height: 1.08;
	margin: 0 0 20px;
}

.bca-cq__lead,
.bca-cq__stage-copy {
	color: var(--bca-cq-muted);
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 24px;
}

.bca-cq__panel {
	background: var(--bca-cq-panel);
	border-radius: 8px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	min-height: 420px;
	min-width: 0;
	padding: clamp(24px, 5vw, 42px);
}

.bca-cq__progress {
	margin: 0 0 30px;
}

.bca-cq__progress-label {
	color: var(--bca-cq-muted);
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 8px;
}

.bca-cq__progress-track {
	background: rgba(255, 255, 255, .9);
	border-radius: 999px;
	display: block;
	height: 7px;
	overflow: hidden;
}

.bca-cq__progress-value {
	background: var(--bca-cq-accent);
	border-radius: inherit;
	display: block;
	height: 100%;
	transition: width .25s ease;
	width: 0;
}

.bca-cq__stage-title {
	border: 0;
	font-size: clamp(23px, 3vw, 31px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.25;
	margin: 0 0 22px;
	padding: 0;
}

.bca-cq__stage-title:focus {
	outline: none;
}

.bca-cq__fieldset {
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.bca-cq__help {
	color: var(--bca-cq-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: -8px 0 20px;
}

.bca-cq__options {
	display: grid;
	gap: 12px;
	margin: 0 0 8px;
}

.bca-cq__language-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bca-cq__language-group {
	background: rgba(255, 255, 255, .38);
	border: 1px solid rgba(128, 148, 157, .24);
	border-radius: 8px;
	padding: 16px;
}

.bca-cq__language-title {
	font-size: 18px;
	margin: 0 0 13px;
}

.bca-cq__options--compact {
	gap: 8px;
}

.bca-cq__options--compact .bca-cq__option {
	font-size: 15px;
	padding: 12px;
}

.bca-cq__option {
	align-items: flex-start;
	background: rgba(255, 255, 255, .83);
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	gap: 13px;
	line-height: 1.45;
	overflow-wrap: anywhere;
	padding: 16px 17px;
	transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
}

.bca-cq__option:hover {
	background: var(--bca-cq-white);
	border-color: #a9c9d6;
	transform: translateY(-1px);
}

.bca-cq__option input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.bca-cq__option-marker {
	background: var(--bca-cq-white);
	border: 2px solid #97a7ae;
	border-radius: 50%;
	flex: 0 0 21px;
	height: 21px;
	margin-top: 1px;
	position: relative;
	width: 21px;
}

.bca-cq__option input:checked + .bca-cq__option-marker {
	border-color: var(--bca-cq-accent);
}

.bca-cq__option input:checked + .bca-cq__option-marker::after {
	background: var(--bca-cq-accent);
	border-radius: 50%;
	content: "";
	inset: 4px;
	position: absolute;
}

.bca-cq__option:has(input:checked) {
	background: var(--bca-cq-white);
	border-color: var(--bca-cq-accent);
}

.bca-cq__option:has(input:focus-visible) {
	outline: 3px solid rgba(36, 165, 217, .3);
	outline-offset: 2px;
}

.bca-cq__field {
	display: grid;
	gap: 7px;
	margin: 0 0 16px;
}

.bca-cq .bca-cq__field-label {
	display: block;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.3;
	margin: 0 !important;
}

.bca-cq .bca-cq__field input,
.bca-cq .bca-cq__field textarea {
	background: var(--bca-cq-white);
	border: 1px solid var(--bca-cq-border);
	border-radius: 6px;
	color: var(--bca-cq-text);
	display: block;
	font: inherit;
	margin: 0 !important;
	min-height: 48px;
	min-width: 0;
	padding: 11px 13px;
	width: 100%;
}

.bca-cq__field textarea {
	resize: vertical;
}

.bca-cq__field input:focus,
.bca-cq__field textarea:focus {
	border-color: var(--bca-cq-accent);
	box-shadow: 0 0 0 3px rgba(36, 165, 217, .18);
	outline: none;
}

.bca-cq__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	margin-top: 28px;
}

.bca-cq__result-actions {
	justify-content: flex-start;
}

.bca-cq__button {
	align-items: center;
	appearance: none;
	border: 1px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	display: inline-flex;
	font: 650 18px/1.2 Onest, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	justify-content: center;
	min-height: 49px;
	padding: 13px 24px;
	text-align: center;
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.bca-cq__button:hover {
	transform: translateY(-1px);
}

.bca-cq__button:focus-visible,
.bca-cq__text-button:focus-visible {
	outline: 3px solid rgba(36, 165, 217, .35);
	outline-offset: 3px;
}

.bca-cq__button:disabled {
	cursor: wait;
	opacity: .65;
	transform: none;
}

.bca-cq__button--primary {
	background: var(--bca-cq-accent);
	color: var(--bca-cq-white);
}

.bca-cq__button--primary:hover {
	background: var(--bca-cq-accent-dark);
	color: var(--bca-cq-white);
}

.bca-cq__button--secondary {
	background: transparent;
	border-color: #9eacb2;
	color: var(--bca-cq-text);
}

.bca-cq__button--secondary:hover {
	background: rgba(255, 255, 255, .65);
	color: var(--bca-cq-text);
}

.bca-cq__notice {
	background: rgba(255, 255, 255, .65);
	border-left: 4px solid var(--bca-cq-accent);
	border-radius: 4px;
	color: #4c575c;
	font-size: 14px;
	line-height: 1.55;
	margin: 20px 0 25px;
	padding: 13px 15px;
}

.bca-cq__result-cta {
	background: rgba(255, 255, 255, .72);
	border: 1px solid rgba(36, 165, 217, .3);
	border-radius: 8px;
	margin: 24px 0 0;
	padding: 22px;
}

.bca-cq__result-cta-title {
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 8px;
}

.bca-cq__result-cta-text {
	color: #4c575c;
	font-size: 16px;
	line-height: 1.55;
	margin: 0 0 18px;
}

.bca-cq__contact-options-text {
	color: var(--bca-cq-muted);
	font-size: 17px;
	line-height: 1.55;
	margin: -6px 0 24px;
}

.bca-cq__contact-options-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bca-cq__contact-option {
	align-items: center;
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(36, 165, 217, .3);
	border-radius: 8px;
	color: var(--bca-cq-text);
	display: flex;
	gap: 14px;
	min-height: 78px;
	padding: 14px 16px;
	text-decoration: none;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.bca-cq__contact-option:hover {
	border-color: var(--bca-cq-accent);
	box-shadow: 0 7px 18px rgba(36, 165, 217, .12);
	color: var(--bca-cq-text);
	transform: translateY(-1px);
}

.bca-cq__contact-option:focus-visible {
	outline: 3px solid rgba(36, 165, 217, .35);
	outline-offset: 3px;
}

.bca-cq__contact-option-icon {
	flex: 0 0 44px;
	height: 44px;
	object-fit: contain;
	width: 44px;
}

.bca-cq__contact-option-label {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.bca-cq__contact-options-actions {
	justify-content: flex-start;
}

.bca-cq__validation {
	color: #a42121;
	font-size: 14px;
	font-weight: 600;
	margin: 12px 0 0;
	min-height: 21px;
}

.bca-cq__loading {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 280px;
	text-align: center;
}

.bca-cq__spinner {
	animation: bca-cq-spin .8s linear infinite;
	border: 4px solid rgba(36, 165, 217, .2);
	border-radius: 50%;
	border-top-color: var(--bca-cq-accent);
	height: 42px;
	margin-bottom: 15px;
	width: 42px;
}

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

.bca-cq__score {
	align-items: baseline;
	display: flex;
	gap: 8px;
	margin: -5px 0 18px;
}

.bca-cq__score-number {
	color: var(--bca-cq-accent-dark);
	font-size: 54px;
	letter-spacing: -.06em;
	line-height: 1;
}

.bca-cq__score-label {
	color: var(--bca-cq-muted);
	font-size: 16px;
}

.bca-cq__score-note {
	color: var(--bca-cq-muted);
	font-size: 14px;
	margin: -10px 0 18px;
}

.bca-cq__result-text {
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 16px;
	white-space: pre-line;
}

.bca-cq__submission-success {
	align-items: flex-start;
	background: #e5f5ec;
	border: 1px solid #b8dfc8;
	border-radius: 6px;
	color: #17653c;
	display: grid;
	gap: 3px;
	margin: 0 0 24px;
	padding: 14px 16px;
}

.bca-cq__submission-success strong {
	font-size: 16px;
}

.bca-cq__submission-success span {
	font-size: 14px;
	line-height: 1.5;
}

.bca-cq__text-button {
	background: none;
	border: 0;
	color: var(--bca-cq-accent-dark);
	cursor: pointer;
	font: 600 14px/1.4 inherit;
	margin: 0;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bca-cq__contact {
	border-top: 1px solid rgba(95, 114, 122, .22);
	margin-top: 22px;
	padding-top: 28px;
}

.bca-cq__contact-title {
	font-size: 23px;
	margin: 0 0 8px;
}

.bca-cq__form-grid {
	display: grid;
	gap: 0 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bca-cq__consent {
	align-items: flex-start;
	display: flex;
	font-size: 13px;
	gap: 9px;
	line-height: 1.5;
	margin: 12px 0;
}

.bca-cq__consent input {
	flex: 0 0 auto;
	margin-top: 3px;
}

.bca-cq__consent a {
	color: var(--bca-cq-accent-dark);
}

.bca-cq__submit {
	margin-top: 4px;
	width: 100%;
}

.bca-cq__hp {
	left: -10000px !important;
	position: absolute !important;
	top: auto !important;
}

.bca-cq__turnstile {
	margin: 15px 0;
	max-width: 100%;
	overflow: hidden;
}

.bca-cq__message {
	padding: 24px 0;
	text-align: center;
}

.bca-cq__success-icon {
	align-items: center;
	background: #e5f5ec;
	border-radius: 50%;
	color: #177944;
	display: inline-flex;
	font-size: 30px;
	height: 66px;
	justify-content: center;
	margin-bottom: 18px;
	width: 66px;
}

.bca-cq__message--error {
	color: #7a1e1e;
}

@media (max-width: 900px) {
	.bca-cq {
		margin: 24px auto;
	}

	.bca-cq__layout {
		grid-template-columns: 1fr;
	}

	.bca-cq__intro {
		padding: 0;
	}

	.bca-cq__panel {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.bca-cq__form-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.bca-cq__panel {
		border-radius: 6px;
		padding: 22px 17px;
	}

	.bca-cq__language-grid {
		grid-template-columns: 1fr;
	}

	.bca-cq__actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.bca-cq__actions .bca-cq__button {
		width: 100%;
	}

	.bca-cq__result-actions {
		flex-direction: column;
	}

	.bca-cq__result-cta {
		padding: 18px 16px;
	}

	.bca-cq__result-cta .bca-cq__button {
		width: 100%;
	}

	.bca-cq__contact-options-grid {
		grid-template-columns: 1fr;
	}

	.bca-cq__contact-option {
		min-height: 68px;
	}

	.bca-cq__contact-options-actions {
		flex-direction: column;
	}
}

@media (max-width: 360px) {
	.bca-cq__panel {
		padding-left: 14px;
		padding-right: 14px;
	}

	.bca-cq__turnstile > div {
		transform: scale(.9);
		transform-origin: left top;
		width: 111.12%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bca-cq *,
	.bca-cq *::before,
	.bca-cq *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
.bca-cq__form-grid .bca-cq__field--full {
	grid-column: 1 / -1;
}

.bca-cq__stage {
	scroll-margin-top: 180px;
}