.qpr-quiz {
	--qpr-navy: #1c2452;
	--qpr-navy-light: #7b83c4;
	--qpr-bg-option: #eef0fb;
	--qpr-border: #d9dcf2;
	--qpr-text-muted: #9a9fc2;
	max-width: 900px;
	margin: 0 auto;
	padding: 32px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--qpr-navy);
	box-sizing: border-box;
}
.qpr-quiz *, .qpr-quiz *::before, .qpr-quiz *::after { box-sizing: border-box; }

.qpr-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.qpr-step-label {
	font-size: 22px;
	color: var(--qpr-navy-light);
	font-weight: 400;
}
.qpr-progress-dots { display: flex; gap: 12px; }
.qpr-dot {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #eceffc;
	color: #b7bce3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.qpr-dot.is-active { background: var(--qpr-navy); color: #fff; }
.qpr-dot.is-done { background: var(--qpr-navy); color: #fff; }

.qpr-divider {
	border: none;
	border-top: 1px solid #eceef7;
	margin: 24px 0 40px;
}

.qpr-question {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 40px;
	font-weight: 400;
	margin: 0 0 48px;
	color: #14142b;
}

.qpr-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.qpr-options--needs { grid-template-columns: repeat(2, 1fr); }

.qpr-option {
	appearance: none;
	border: 1px solid var(--qpr-border);
	background: var(--qpr-bg-option);
	color: var(--qpr-navy);
	font-size: 20px;
	font-family: inherit;
	padding: 28px 20px;
	border-radius: 6px;
	cursor: pointer;
	text-align: center;
	transition: all .15s ease;
}
.qpr-option:hover {
	border-color: var(--qpr-navy);
	transform: translateY(-2px);
}
.qpr-option.is-selected {
	background: var(--qpr-navy);
	color: #fff;
	border-color: var(--qpr-navy);
}

.qpr-footnote {
	margin-top: 60px;
	color: var(--qpr-text-muted);
	font-size: 15px;
}

.qpr-back-btn {
	margin-top: 32px;
	background: none;
	border: none;
	color: var(--qpr-navy-light);
	font-size: 15px;
	cursor: pointer;
	padding: 0;
}
.qpr-back-btn:hover { text-decoration: underline; }

/* Result card */
.qpr-step--result { text-align: center; }
.qpr-result-card {
	border: 1px solid var(--qpr-border);
	border-radius: 10px;
	padding: 40px;
	position: relative;
	background: #fff;
}
.qpr-result-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--qpr-navy);
	color: #fff;
	font-size: 12px;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 20px;
}
.qpr-result-tag {
	color: var(--qpr-navy-light);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin: 0 0 8px;
}
.qpr-result-title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 36px;
	margin: 0 0 16px;
	color: #14142b;
}
.qpr-result-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #4a4f6b;
	max-width: 560px;
	margin: 0 auto;
}

.qpr-disclaimer {
	color: var(--qpr-text-muted);
	font-size: 14px;
	max-width: 560px;
	margin: 24px auto;
}

.qpr-cta-btn {
	appearance: none;
	border: none;
	background: var(--qpr-navy);
	color: #fff;
	font-size: 18px;
	font-family: inherit;
	padding: 18px 40px;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 12px;
	display: inline-block;
	text-decoration: none;
}
.qpr-cta-btn:hover,
.qpr-cta-btn:visited,
.qpr-cta-btn:active { color: #fff; text-decoration: none; }
.qpr-cta-btn:hover { background: #131a3d; }

@media (max-width: 700px) {
	.qpr-options,
	.qpr-options--needs { grid-template-columns: 1fr; }
	.qpr-question { font-size: 28px; }
}

