.hello-quote-widget {
	min-height: 100vh;
	background: #050505;
	padding: 120px 20px 60px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.hello-quote-widget .wizard {
	width: 100%;
	max-width: 680px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 48px;
	position: relative;
}

.hello-quote-widget .progress-wrap {
	margin-bottom: 32px;
}

.hello-quote-widget .progress-label {
	font-size: 13px;
	color: var(--muted, #9b9b9b);
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.hello-quote-widget .progress-track {
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	overflow: hidden;
}

.hello-quote-widget .progress-fill {
	height: 100%;
	width: 0;
	background: var(--red, #d71920);
	border-radius: 2px;
	transition: width 0.35s ease;
}

.hello-quote-widget .step {
	display: none;
}

.hello-quote-widget .step.active {
	display: block;
}

.hello-quote-widget .step-title {
	font-family: Impact, sans-serif;
	font-size: 26px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 28px;
	color: #fff;
}

.hello-quote-widget .cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 32px;
}

.hello-quote-widget .card {
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	padding: 22px 18px;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
	text-align: center;
	font-size: 15px;
	color: #ddd;
	user-select: none;
}

.hello-quote-widget .card:hover {
	border-color: rgba(215, 25, 32, 0.5);
	background: rgba(215, 25, 32, 0.06);
}

.hello-quote-widget .card.selected {
	border-color: var(--red, #d71920);
	background: rgba(215, 25, 32, 0.1);
	color: #fff;
}

.hello-quote-widget .wizard-btns {
	display: flex;
	gap: 12px;
}

.hello-quote-widget .btn-continue,
.hello-quote-widget .btn-back,
.hello-quote-widget .btn-submit {
	border: none;
	border-radius: 6px;
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: opacity 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
	text-align: center;
	text-decoration: none;
}

.hello-quote-widget .btn-continue,
.hello-quote-widget .btn-submit {
	flex: 1;
	background: var(--red, #d71920);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hello-quote-widget .btn-continue:hover,
.hello-quote-widget .btn-submit:hover {
	background: #b5151b;
	color: #fff;
}

.hello-quote-widget .btn-back {
	width: 100px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--muted, #9b9b9b);
}

.hello-quote-widget .btn-back:hover {
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

.hello-quote-widget .price-result {
	text-align: center;
	margin-bottom: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hello-quote-widget .price-result .label {
	font-size: 13px;
	color: var(--muted, #9b9b9b);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.hello-quote-widget .price-result .range {
	font-family: Impact, sans-serif;
	font-size: 34px;
	color: var(--red, #d71920);
	letter-spacing: 0.5px;
}

.hello-quote-widget .price-result .disclaimer {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 10px;
	line-height: 1.5;
}

.hello-quote-widget .quote-description {
	color: var(--muted, #9b9b9b);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 24px;
}

.hello-quote-widget .quote-description p {
	margin: 0 0 16px;
}

.hello-quote-widget .quote-description p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.hello-quote-widget {
		min-height: 0;
		padding: 28px 0;
	}

	.hello-quote-widget .wizard {
		padding: 28px 20px;
	}

	.hello-quote-widget .cards {
		grid-template-columns: 1fr;
	}

	.hello-quote-widget .step-title {
		font-size: 22px;
	}

	.hello-quote-widget .price-result .range {
		font-size: 26px;
	}
}
