main {
	display: flex;
	flex-direction: column;
}

.hero-section {
	background: image-set(
		url('/images/assets/hero-bg-wave.avif') type('image/avif'),
		url('/images/assets/hero-bg-wave.webp') type('image/webp'),
		url('/images/assets/hero-bg-wave.png') type('image/png')
	) center/cover no-repeat;
	color: var(--color-base);
	padding: 7rem 0 5.5rem;
	position: relative;
	overflow: hidden;
}

.hero-section--fill {
	flex: 1 0 auto;
	min-height: 0;
	box-sizing: border-box;
}

.hero-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(249, 213, 12, 0.18) 0%, transparent 65%);
	pointer-events: none;
}

.hero-section .container {
	position: relative;
	z-index: 1;
}

.hero-section h1 {
	font-size: 3rem;
}

@media (max-width: 575px) {
	.hero-section {
		background-position: center;
		background-size: 100% 100%;
	}
	.hero-section h1 {
		font-size: 2.2rem;
	}
}

.hero-form-card {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(26, 61, 101, 0.12);
	border-radius: 1.5rem;
	padding: 2.4rem;
	padding-top: 28px;
	box-shadow: 0 26px 45px rgba(26, 61, 101, 0.12);
	backdrop-filter: blur(10px);
}

.hero-form-card .badge {
	background-color: rgba(26, 61, 101, 0.1);
	color: var(--color-base);
}

.hero-form-card .form-label {
	font-weight: 600;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-form-card .form-label .badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: auto;
	margin: 0;
}

.consult-form .form-label {
	margin-bottom: 0.35rem;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
	border-radius: 0.95rem;
	padding: 0.65rem 1rem;
	border-color: rgba(26, 61, 101, 0.25);
}

.consult-form .form-control,
.consult-form .form-select {
	min-height: 48px;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
	border-color: var(--color-orange);
	box-shadow: 0 0 0 0.2rem rgba(240, 123, 6, 0.18);
}

.wizard-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.wizard-option {
	position: relative;
	display: block;
	border: 1px solid rgba(26, 61, 101, 0.16);
	border-radius: 1rem;
	padding: 1rem 1.25rem;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(26, 61, 101, 0.08);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wizard-option:hover {
	border-color: rgba(240, 123, 6, 0.6);
	box-shadow: 0 16px 32px rgba(26, 61, 101, 0.12);
	transform: translateY(-2px);
}

.wizard-option input {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.wizard-option span {
	display: block;
	font-weight: 600;
	color: #1a3d65;
}

.wizard-option input:checked ~ span {
	color: var(--color-orange);
}

.wizard-option input:focus-visible ~ span {
	outline: 3px solid rgba(240, 123, 6, 0.35);
	outline-offset: 4px;
	border-radius: 0.9rem;
}

.consent-text {
	display: inline-flex;
	align-items: center;
	line-height: 1.6;
}

.consent-check-icon,
.consent-uncheck-icon {
	margin-right: 8px;
	font-size: 1rem;
}

.consent-check-icon {
	display: none;
	color: var(--color-orange);
}

.consent-uncheck-icon {
	display: inline-block;
	color: #999;
}

.wizard-option input[type="checkbox"]:checked + span .consent-check-icon {
	display: inline-block;
}

.wizard-option input[type="checkbox"]:checked + span .consent-uncheck-icon {
	display: none;
}

.wizard-note {
	margin-top: 1rem;
	margin-bottom: 0;
	color: rgba(26, 61, 101, 0.65);
	font-size: 0.9rem;
}

.wizard-summary {
	margin-top: 2rem;
	padding: 1.5rem;
	border: 1px solid rgba(26, 61, 101, 0.12);
	border-radius: 1.25rem;
	background: rgba(26, 61, 101, 0.04);
}

.wizard-summary-list {
	display: grid;
	gap: 0.85rem;
}

.wizard-summary-item {
	display: grid;
	gap: 0.35rem;
}

.wizard-summary-item dt {
	font-weight: 600;
	color: rgba(26, 61, 101, 0.75);
}

.wizard-summary-item dd {
	margin: 0;
	color: #1a3d65;
	white-space: pre-wrap;
	margin-left: 0.75em;
}

.wizard-loading-overlay {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.wizard-loading-overlay.is-visible {
	opacity: 1;
	pointer-events: all;
}

.wizard-loading-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9rem;
	color: #1a3d65;
	text-align: center;
}

.wizard-loading-spinner {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 6px solid rgba(26, 61, 101, 0.16);
	border-top-color: var(--color-orange);
	animation: wizard-loading-spin 0.9s linear infinite;
}

.wizard-loading-text {
	font-weight: 600;
	margin: 0;
}

@keyframes wizard-loading-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 575px) {
	.hero-form-card {
		padding: 24px;
		padding-top: 28px;
	}
}