.bauvora-wizard {
	--bw-navy: #00308c;
	--bw-navy-deep: #001f5c;
	--bw-amber: #f1a12a;
	--bw-steel: #6e6d6d;
	--bw-line: rgba(0, 48, 140, 0.12);
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--bw-line);
	border-top: 3px solid var(--bw-amber);
	box-shadow: 0 12px 32px rgba(0, 31, 92, 0.07);
	padding: clamp(1.1rem, 3vw, 1.75rem);
}

.bauvora-wizard__steps {
	list-style: none;
	margin: 0 0 0.75rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.4rem;
}

.bauvora-wizard__steps li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.5rem 0.4rem;
	border: 1px solid var(--bw-line);
	background: rgba(0, 48, 140, 0.02);
	color: #9a9999;
	text-align: center;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bauvora-wizard__step-icon {
	display: grid;
	place-items: center;
	width: 1.7rem;
	height: 1.7rem;
	flex-shrink: 0;
	border: 1px solid rgba(0, 48, 140, 0.14);
	background: #fff;
	color: #9a9999;
}

.bauvora-wizard__step-icon svg {
	width: 0.95rem;
	height: 0.95rem;
}

.bauvora-wizard__step-meta {
	display: grid;
	gap: 0;
	min-width: 0;
	text-align: left;
}

.bauvora-wizard__step-num {
	font-family: Outfit, system-ui, sans-serif;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.1;
}

.bauvora-wizard__step-label {
	font-family: Outfit, system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bauvora-wizard__steps li.is-active {
	color: var(--bw-navy-deep);
	border-color: rgba(0, 48, 140, 0.3);
	background: #fff;
}

.bauvora-wizard__steps li.is-active .bauvora-wizard__step-icon {
	background: var(--bw-navy);
	border-color: var(--bw-navy);
	color: #fff;
}

.bauvora-wizard__steps li.is-done {
	color: var(--bw-navy);
	border-color: rgba(241, 161, 42, 0.45);
}

.bauvora-wizard__steps li.is-done .bauvora-wizard__step-icon {
	background: rgba(241, 161, 42, 0.15);
	border-color: var(--bw-amber);
	color: var(--bw-navy);
}

.bauvora-wizard__progress {
	height: 3px;
	background: rgba(0, 48, 140, 0.1);
	margin-bottom: 1.15rem;
	overflow: hidden;
}

.bauvora-wizard__bar {
	display: block;
	height: 100%;
	width: 33.333%;
	background: linear-gradient(90deg, var(--bw-amber), var(--bw-navy));
	transition: width 0.35s ease;
}

.bauvora-wizard__panel h2 {
	margin: 0 0 0.35rem;
	font-size: clamp(1.2rem, 2.8vw, 1.5rem);
	color: var(--bw-navy-deep);
	text-align: center;
}

.bauvora-wizard__lead {
	margin: 0 auto 1rem;
	color: var(--bw-steel);
	max-width: 34rem;
	font-size: 0.95rem;
	text-align: center;
	line-height: 1.45;
}

.bauvora-wizard__group-title {
	margin: 0.9rem 0 0.45rem;
	font-family: Outfit, system-ui, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bw-navy);
	text-align: center;
}

.bauvora-wizard__group-title:first-of-type {
	margin-top: 0;
}

.bauvora-wizard__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.bauvora-wizard__cards--other {
	margin-top: 0.65rem;
	grid-template-columns: 1fr;
}

.bauvora-wizard__card,
.bauvora-wizard__choice {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.55rem;
	padding: 0.7rem 0.75rem;
	border: 1px solid rgba(0, 48, 140, 0.14);
	border-top: 2px solid var(--bw-amber);
	background: #fff;
	cursor: pointer;
	font-family: Outfit, system-ui, sans-serif;
	font-weight: 650;
	color: var(--bw-navy-deep);
	text-align: left;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bauvora-wizard__card--energy {
	border-top-color: var(--bw-navy);
}

.bauvora-wizard__card:hover,
.bauvora-wizard__choice:hover {
	border-color: rgba(0, 48, 140, 0.35);
	background: rgba(0, 48, 140, 0.03);
}

.bauvora-wizard__card:has(input:checked),
.bauvora-wizard__choice:has(input:checked) {
	border-color: var(--bw-navy);
	border-top-color: var(--bw-amber);
	background: rgba(0, 48, 140, 0.05);
	box-shadow: inset 0 0 0 1px rgba(0, 48, 140, 0.12);
}

.bauvora-wizard__card input,
.bauvora-wizard__choice input,
.bauvora-wizard__chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.bauvora-wizard__card-icon {
	display: grid;
	place-items: center;
	width: 2.15rem;
	height: 2.15rem;
	flex-shrink: 0;
	border: 1px solid rgba(0, 48, 140, 0.12);
	background: rgba(0, 48, 140, 0.04);
	color: var(--bw-navy);
}

.bauvora-wizard__card-icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.bauvora-wizard__card:has(input:checked) .bauvora-wizard__card-icon,
.bauvora-wizard__choice:has(input:checked) .bauvora-wizard__card-icon {
	background: var(--bw-navy);
	border-color: var(--bw-navy);
	color: #fff;
}

.bauvora-wizard__card-text {
	font-size: 0.88rem;
	line-height: 1.25;
}

.bauvora-wizard__choice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.45rem;
	margin-bottom: 0.25rem;
}

.bauvora-wizard__choice {
	font-size: 0.84rem;
	padding: 0.65rem 0.7rem;
}

.bauvora-wizard__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	margin-bottom: 0.9rem;
}

.bauvora-wizard__chip {
	position: relative;
	cursor: pointer;
}

.bauvora-wizard__chip span {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(0, 48, 140, 0.16);
	background: #fff;
	font-family: Outfit, system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--bw-navy-deep);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bauvora-wizard__chip:hover span {
	border-color: rgba(0, 48, 140, 0.35);
}

.bauvora-wizard__chip:has(input:checked) span {
	background: var(--bw-navy);
	border-color: var(--bw-navy);
	color: #fff;
}

.bauvora-wizard__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.bauvora-wizard__field,
.bauvora-wizard__form label.bauvora-wizard__field {
	display: grid;
	gap: 0.3rem;
	font-family: Outfit, system-ui, sans-serif;
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--bw-navy-deep);
	margin-bottom: 0.75rem;
	text-align: left;
}

.bauvora-wizard__field--full {
	grid-column: 1 / -1;
}

.bauvora-wizard__form input[type="text"],
.bauvora-wizard__form input[type="email"],
.bauvora-wizard__form input[type="tel"],
.bauvora-wizard__form select,
.bauvora-wizard__form textarea {
	font: inherit;
	font-size: 1rem;
	font-weight: 500;
	padding: 0.7rem 0.85rem;
	border: 1px solid #cfcbc4;
	background: #fcfbf9;
	color: #1a1a1a;
	width: 100%;
	border-radius: 0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bauvora-wizard__form input:focus,
.bauvora-wizard__form textarea:focus {
	outline: none;
	border-color: var(--bw-navy);
	box-shadow: 0 0 0 3px rgba(0, 48, 140, 0.12);
}

.bauvora-wizard__form textarea {
	resize: vertical;
	min-height: 5rem;
}

.bauvora-wizard__check {
	display: flex !important;
	align-items: flex-start;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 0.15rem;
	font-family: Outfit, system-ui, sans-serif;
	font-weight: 500 !important;
	font-size: 0.88rem;
	color: var(--bw-navy-deep);
	text-align: left;
}

.bauvora-wizard__check input {
	margin-top: 0.15rem;
	accent-color: var(--bw-amber);
	width: 1.05rem;
	height: 1.05rem;
	flex-shrink: 0;
}

.bauvora-wizard__check a {
	color: var(--bw-navy);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.bauvora-wizard__footer {
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid var(--bw-line);
	display: grid;
	gap: 0.65rem;
}

.bauvora-wizard__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	justify-content: center;
}

.bauvora-wizard__nav .btn {
	min-width: 7rem;
	padding: 0.55rem 1rem;
	font-size: 0.88rem;
	gap: 0.35rem;
}

.bauvora-wizard__nav .btn[hidden] {
	display: none !important;
}

.bauvora-wizard__message {
	padding: 0.7rem 0.85rem;
	font-family: Outfit, system-ui, sans-serif;
	font-weight: 650;
	font-size: 0.9rem;
	line-height: 1.35;
	text-align: center;
	border: 1px solid var(--bw-line);
	border-top: 3px solid var(--bw-amber);
}

.bauvora-wizard__message--ok {
	background: rgba(0, 48, 140, 0.06);
	color: var(--bw-navy-deep);
}

.bauvora-wizard__message--err {
	background: rgba(180, 40, 40, 0.07);
	color: #8a1f1f;
	border-top-color: #b42828;
	border-color: rgba(180, 40, 40, 0.2);
}

.bauvora-wizard .honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

@media (max-width: 720px) {
	.bauvora-wizard {
		max-width: 100%;
	}

	.bauvora-wizard__cards,
	.bauvora-wizard__choice-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bauvora-wizard__steps li {
		flex-direction: column;
		gap: 0.3rem;
		padding: 0.45rem 0.3rem;
	}

	.bauvora-wizard__step-meta {
		text-align: center;
	}

	.bauvora-wizard__step-label {
		font-size: 0.7rem;
	}
}

@media (max-width: 640px) {
	.bauvora-wizard {
		padding: 1rem 0.85rem 1.15rem;
		text-align: center;
	}

	.bauvora-wizard__cards--other,
	.bauvora-wizard__grid {
		grid-template-columns: 1fr;
	}

	.bauvora-wizard__choice-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bauvora-wizard__card,
	.bauvora-wizard__choice {
		justify-content: flex-start;
		min-height: 3.1rem;
	}

	.bauvora-wizard__field,
	.bauvora-wizard__form label.bauvora-wizard__field {
		text-align: left;
	}

	.bauvora-wizard__nav {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.bauvora-wizard__nav .btn {
		width: 100%;
		min-width: 0;
		justify-content: center;
		padding: 0.65rem 1rem;
		font-size: 0.9rem;
	}

	.bauvora-wizard__check {
		justify-content: flex-start;
		max-width: 22rem;
		margin-inline: auto;
	}

	.bauvora-wizard__chips {
		justify-content: center;
	}
}
