/* ===================================================================
   COACHED QUIZ FUNNEL — Coursiv-Style Full Funnel
   Mobile-first, 375px → 768px → 1280px
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
	--quiz-primary: #3B82F6;
	--quiz-primary-light: #DBEAFE;
	--quiz-primary-dark: #2563EB;
	--quiz-accent: #1D4ED8;
	--quiz-success: #10B981;
	--quiz-warning: #F59E0B;
	--quiz-text: #111827;
	--quiz-text-secondary: #6B7280;
	--quiz-bg: #FFFFFF;
	--quiz-card: #FFFFFF;
	--quiz-card-hover: #F9FAFB;
	--quiz-card-selected: #EFF6FF;
	--quiz-border: #E5E7EB;
	--quiz-radius: 16px;
	--quiz-radius-lg: 24px;
	--quiz-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	--quiz-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
	--quiz-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
	--quiz-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--quiz-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body.quiz-page {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--quiz-bg);
	color: var(--quiz-text);
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Side accents removed for clean white look */

/* --- Layout Shell --- */
.quiz-shell {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	max-width: 520px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* --- Header --- */
.quiz-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 16px 20px 0;
}

html.quiz-page-html { scrollbar-gutter: stable; }

.quiz-header-top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 14px;
}

.quiz-back-btn {
	position: absolute;
	left: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: var(--quiz-text);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--quiz-transition);
}

.quiz-back-btn:hover {
	background: var(--quiz-primary-light);
	color: var(--quiz-primary);
}

.quiz-back-btn.hidden {
	visibility: hidden;
	pointer-events: none;
}

.quiz-logo {
	font-size: 28px;
	font-weight: 800;
	color: var(--quiz-primary);
	letter-spacing: -0.5px;
	font-style: italic;
}

.quiz-logo-img {
	height: 28px;
	width: auto;
	display: block;
}

/* Landing variant — used on the gender + age steps (0 and 1).
   Logo only; progress bar and step counter hidden. The progress bar uses
   visibility:hidden (not display:none) so the header keeps the same height
   as non-landing steps — the logo lands at the exact same Y-position and
   the page below doesn't shift up by the bar's 4px on landing. */
.quiz-header--landing {
	border-bottom: none !important;
}

.quiz-header--landing .quiz-progress {
	visibility: hidden !important;
}

.quiz-header--landing .quiz-step-counter {
	display: none !important;
}

.quiz-step-counter {
	position: absolute;
	right: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--quiz-text-secondary);
}

.quiz-step-counter .current {
	color: var(--quiz-primary);
	font-weight: 700;
}

/* --- Progress Bar --- */
.quiz-progress {
	height: 4px;
	background: #F3F4F6;
	border-radius: 3px;
	overflow: hidden;
	position: relative;
}

.quiz-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--quiz-primary), var(--quiz-accent));
	border-radius: 3px;
	transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Content Area --- */
.quiz-content {
	flex: 1;
	padding: 24px 20px 120px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* --- Step Container --- */
.quiz-step {
	display: none;
	animation: stepFadeIn 0.4s ease-out forwards;
}

.quiz-step.active {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.quiz-step.slide-in-right {
	animation: slideInRight 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.quiz-step.slide-in-left {
	animation: slideInLeft 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.quiz-step.slide-out-left {
	animation: slideOutLeft 0.35s ease-in forwards;
}

.quiz-step.slide-out-right {
	animation: slideOutRight 0.35s ease-in forwards;
}

@keyframes slideInRight {
	from {
		transform: translateX(80px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-80px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOutLeft {
	from {
		transform: translateX(0);
		opacity: 1;
	}

	to {
		transform: translateX(-80px);
		opacity: 0;
	}
}

@keyframes slideOutRight {
	from {
		transform: translateX(0);
		opacity: 1;
	}

	to {
		transform: translateX(80px);
		opacity: 0;
	}
}

@keyframes stepFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --- Question Title --- */
.quiz-question {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 24px;
	color: var(--quiz-text);
}

.quiz-question-sub {
	font-size: 15px;
	color: var(--quiz-text-secondary);
	text-align: center;
	margin-bottom: 28px;
	line-height: 1.5;
}

/* --- Landing Page --- */
.quiz-landing-title {
	font-size: 28px;
	font-weight: 900;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: -0.5px;
}

.quiz-landing-subtitle {
	font-size: 16px;
	text-align: center;
	color: var(--quiz-text-secondary);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.quiz-landing-subtitle strong {
	color: var(--quiz-text);
	font-weight: 800;
}

.quiz-landing-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 700;
	color: var(--quiz-text);
}

/* --- Gender / Age Cards (2 column grid) --- */
.quiz-landing-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.quiz-landing-card {
	position: relative;
	background: var(--quiz-card);
	border: 1px solid var(--quiz-border);
	border-radius: var(--quiz-radius);
	overflow: hidden;
	cursor: pointer;
	transition: all var(--quiz-bounce);
	-webkit-tap-highlight-color: transparent;
}

.quiz-landing-card:hover {
	border-color: var(--quiz-primary);
	transform: translateY(-4px);
	box-shadow: var(--quiz-shadow-lg);
}

.quiz-landing-card:active {
	transform: scale(0.97);
}

.quiz-landing-card-img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top;
	display: block;
}

.quiz-landing-card-label {
	display: block;
	text-align: center;
	padding: 12px;
	font-size: 14px;
	font-weight: 700;
	color: white;
	background: var(--quiz-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --- Age Grid (2x2) --- */
.quiz-age-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.quiz-age-card {
	position: relative;
	background: var(--quiz-card);
	border: 1px solid var(--quiz-border);
	border-radius: var(--quiz-radius);
	overflow: hidden;
	cursor: pointer;
	transition: all var(--quiz-bounce);
	-webkit-tap-highlight-color: transparent;
}

.quiz-age-card:hover {
	border-color: var(--quiz-primary);
	transform: translateY(-3px);
	box-shadow: var(--quiz-shadow-md);
}

.quiz-age-card:active {
	transform: scale(0.97);
}

.quiz-age-card-img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: top;
	display: block;
}

.quiz-age-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--quiz-primary-light), #C7D2FE);
	font-size: 52px;
	color: var(--quiz-primary);
}

.quiz-age-card-label {
	display: block;
	text-align: center;
	padding: 10px;
	font-size: 13px;
	font-weight: 700;
	color: white;
	background: var(--quiz-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* --- Remix Icon styled option icons --- */
.quiz-option-icon.ri-icon {
	background: linear-gradient(135deg, var(--quiz-primary-light), #C7D2FE);
	border-radius: 12px;
	color: var(--quiz-primary);
	font-size: 24px;
}

.quiz-option-icon.ri-icon i {
	font-size: 24px;
}

/* --- Motivational Interstitial Icon --- */
.quiz-motivational-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--quiz-primary-light), #C7D2FE);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 28px;
	font-size: 48px;
	color: var(--quiz-primary);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
	position: relative;
}

/* --- Info Circle Icon (group people replacement) --- */
.quiz-info-icon-circle {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--quiz-primary-light), #C7D2FE);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 56px;
	color: var(--quiz-primary);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
	position: relative;
}

/* Ripple rings for interstitial icons */
.quiz-motivational-icon::before,
.quiz-motivational-icon::after,
.quiz-info-icon-circle::before,
.quiz-info-icon-circle::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid rgba(59, 130, 246, 0.3);
	animation: quizIconRipple 2.5s ease-out infinite;
}

.quiz-motivational-icon::after,
.quiz-info-icon-circle::after {
	animation-delay: 1.25s;
}

@keyframes quizIconRipple {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

/* --- Profile Avatar Icon --- */
.quiz-profile-avatar-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #F0F7FF, #EBF0FF);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
	color: var(--quiz-primary);
	opacity: 0.6;
}

/* --- Character Icon (time step) --- */
.quiz-character-icon {
	position: absolute;
	bottom: -20px;
	right: -10px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--quiz-primary-light), #C7D2FE);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
	color: var(--quiz-primary);
	opacity: 0.7;
	pointer-events: none;
	z-index: 0;
}

/* --- Option Cards --- */
.quiz-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.quiz-option {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	background: var(--quiz-card);
	border: 1px solid #E5E7EB;
	border-radius: var(--quiz-radius);
	cursor: pointer;
	transition: all var(--quiz-bounce);
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	overflow: hidden;
}

.quiz-option:hover {
	border-color: var(--quiz-primary);
	transform: translateY(-2px);
	box-shadow: var(--quiz-shadow-md);
}

.quiz-option:active {
	transform: scale(0.97);
}

.quiz-option.selected {
	border-color: var(--quiz-primary);
	background: var(--quiz-card-selected);
	box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
}

/* Bounce animation on select */
.quiz-option.just-selected {
	animation: optionBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes optionBounce {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(0.95);
	}

	60% {
		transform: scale(1.03);
	}

	100% {
		transform: scale(1);
	}
}

.quiz-option-icon {
	font-size: 32px;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.quiz-option-icon img {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	object-fit: cover;
}

.quiz-option-text {
	font-size: 16px;
	font-weight: 600;
	color: var(--quiz-text);
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

.quiz-option-text small {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: var(--quiz-text-secondary);
	margin-top: 2px;
}

/* Checkmark for multi-select */
.quiz-option .quiz-check {
	margin-left: auto;
	width: 24px;
	height: 24px;
	border-radius: 8px;
	border: 2px solid var(--quiz-border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all var(--quiz-bounce);
	color: transparent;
	font-size: 14px;
}

.quiz-option.selected .quiz-check {
	background: var(--quiz-primary);
	border-color: var(--quiz-primary);
	color: white;
}

/* --- Text-only options (no icon, simpler layout) --- */
.quiz-options-simple .quiz-option {
	justify-content: flex-start;
	padding: 16px 20px;
}

.quiz-options-simple .quiz-option-text {
	font-size: 15px;
}

/* --- Half-width layout for time options --- */
.quiz-options-half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.quiz-options-half .quiz-option {
	justify-content: center;
	text-align: center;
	padding: 16px 12px;
}

.quiz-options-half .quiz-option-text {
	font-weight: 700;
}

/* --- 2-Column Grid for multi-select (AI tools, fields) --- */
.quiz-options-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.quiz-options-grid .quiz-option {
	padding: 12px 14px;
	gap: 10px;
	min-height: 56px;
}

.quiz-options-grid .quiz-option-icon {
	width: 36px;
	height: 36px;
	font-size: 28px;
}

.quiz-options-grid .quiz-option-icon.ri-icon {
	border-radius: 10px;
	font-size: 20px;
}

.quiz-options-grid .quiz-option-icon.ri-icon i {
	font-size: 20px;
}

.quiz-options-grid .quiz-option-text {
	font-size: 13px;
	font-weight: 600;
}

.quiz-options-grid .quiz-check {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	font-size: 12px;
}

/* --- Interstitial / Info Pages --- */
.quiz-info {
	text-align: center;
	padding: 10px 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.quiz-info-graphic {
	margin: 0 auto 24px;
	max-width: 340px;
}

.quiz-info-graphic img {
	width: 100%;
	border-radius: var(--quiz-radius-lg);
}

.quiz-info-group-img {
	margin: 0 auto 24px;
	width: 100%;
	max-width: 360px;
	border-radius: var(--quiz-radius-lg);
}

.quiz-info-title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.3;
}

.quiz-info-text {
	font-size: 15px;
	color: var(--quiz-text-secondary);
	line-height: 1.7;
	margin-bottom: 20px;
}

.quiz-info-stat {
	font-size: 42px;
	font-weight: 900;
	color: var(--quiz-primary);
	line-height: 1;
	margin-bottom: 4px;
}

/* Social proof card wrapper */
.quiz-social-card {
	background: var(--quiz-card);
	border-radius: var(--quiz-radius-lg);
	padding: 32px 24px;
	margin: 0 auto;
	box-shadow: var(--quiz-shadow);
	border: 1px solid #F3F4F6;
	text-align: center;
}

/* Star rating */
.quiz-social-stars {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-bottom: 16px;
	font-size: 22px;
	color: #F59E0B;
}

/* Social proof quote */
.quiz-quote-card {
	background: linear-gradient(135deg, #EFF6FF, #F0F4FF);
	border-radius: 14px;
	padding: 24px 20px;
	margin: 0;
	position: relative;
	border: none;
}

.quiz-quote-card::before,
.quiz-quote-card::after {
	display: none;
}

.quiz-quote-card p {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--quiz-text);
}

.quiz-quote-card cite {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-size: 13px;
	font-style: normal;
	color: var(--quiz-primary);
	justify-content: center;
	font-weight: 500;
}

.quiz-quote-card cite i {
	font-size: 14px;
}

.quiz-quote-card cite img {
	width: 20px;
	height: 20px;
	border-radius: 4px;
}

/* Divider */
.quiz-logos-divider {
	height: 1px;
	background: #E5E7EB;
	margin: 24px 0 20px;
}

/* Media logos */
.quiz-logos-title {
	font-size: 12px;
	font-weight: 500;
	color: var(--quiz-text-secondary);
	margin-bottom: 14px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quiz-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
	align-items: center;
}

.quiz-logos span {
	font-size: 14px;
	font-weight: 700;
	color: #9CA3AF;
	letter-spacing: 0.5px;
}

.quiz-logos .logo-wired {
	letter-spacing: 3px;
}

.quiz-logos .logo-time {
	font-style: italic;
}

.quiz-logos .logo-guardian {
	font-family: Georgia, serif;
	font-style: italic;
	font-weight: 700;
}

/* --- Interstitial Motivational --- */
.quiz-motivational {
	text-align: center;
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.quiz-motivational-img {
	display: block;
	width: 70%;
	max-width: 240px;
	margin: 0 auto 24px;
	border-radius: var(--quiz-radius-lg);
}

.quiz-motivational h2 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.3;
}

.quiz-motivational p {
	font-size: 15px;
	color: var(--quiz-text-secondary);
	line-height: 1.7;
}

/* --- Results Profile Page --- */
.quiz-profile {
	padding: 0;
}

.quiz-profile-title {
	font-size: 24px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 24px;
	line-height: 1.3;
}

.quiz-profile-card {
	background: var(--quiz-card);
	border-radius: var(--quiz-radius-lg);
	padding: 24px;
	box-shadow: var(--quiz-shadow-md);
	position: relative;
	overflow: hidden;
}

/* Readiness meter */
.quiz-readiness-label {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.quiz-readiness-result {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--quiz-border);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: var(--quiz-text-secondary);
	float: right;
	margin-top: -4px;
}

.quiz-readiness-tooltip {
	display: inline-block;
	padding: 6px 16px;
	background: var(--quiz-text);
	color: white;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	position: relative;
}

.quiz-readiness-tooltip::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid var(--quiz-text);
}

.quiz-readiness-bar-wrap {
	height: 10px;
	background: linear-gradient(90deg, #EF4444, #F59E0B, #EAB308, #22C55E);
	border-radius: 5px;
	position: relative;
	margin-bottom: 8px;
}

.quiz-readiness-handle {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background: white;
	border: 3px solid var(--quiz-border);
	border-radius: 50%;
	transition: left 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: var(--quiz-shadow);
}

.quiz-readiness-labels {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	font-weight: 600;
	color: var(--quiz-text-secondary);
	margin-bottom: 20px;
}

/* Impressive score callout */
.quiz-score-callout {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #F0F9FF;
	border-radius: var(--quiz-radius);
	padding: 16px;
	margin-bottom: 20px;
}

.quiz-score-callout .callout-icon {
	font-size: 24px;
	flex-shrink: 0;
	color: var(--quiz-primary);
}

.quiz-score-callout .callout-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
}

.quiz-score-callout .callout-text {
	font-size: 13px;
	color: var(--quiz-text-secondary);
	line-height: 1.5;
}

/* Trait rows */
.quiz-traits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.quiz-trait {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 16px 10px;
	background: var(--quiz-card);
	border: 1px solid #E5E7EB;
	border-radius: 14px;
}

.quiz-trait-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.quiz-trait-icon.motivation {
	background: #ecfdf5;
	color: #22c55e;
}

.quiz-trait-icon.potential {
	background: #ecfdf5;
	color: #22c55e;
}

.quiz-trait-icon.focus {
	background: #fefce8;
	color: #f59e0b;
}

.quiz-trait-icon.knowledge {
	background: #fef2f2;
	color: #ef4444;
}

.quiz-trait-label {
	font-size: 12px;
	color: var(--quiz-text-secondary);
}

.quiz-trait-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--quiz-text);
}

.quiz-trait-value.green {
	color: #22c55e;
}

.quiz-trait-value.yellow {
	color: #f59e0b;
}

.quiz-trait-value.red {
	color: #ef4444;
}

.quiz-profile-avatar {
	position: absolute;
	bottom: 0;
	right: -10px;
	width: 140px;
	height: auto;
	opacity: 0.9;
}

/* --- Growth Chart (Final Results) --- */
.quiz-final-results {
	text-align: center;
	padding: 0;
}

.quiz-final-title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 12px;
}

.quiz-final-sub {
	font-size: 14px;
	color: var(--quiz-text-secondary);
	margin-bottom: 8px;
	line-height: 1.5;
}

.quiz-final-date {
	font-size: 20px;
	font-weight: 800;
	color: var(--quiz-primary);
	text-decoration: underline;
	margin-bottom: 16px;
}

.quiz-final-goal {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 20px;
	background: linear-gradient(135deg, #FEF3C7, #FDE68A, #FBBF24, #FDE68A);
	background-size: 300% 100%;
	border: 1px solid #FBBF24;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	color: #92400E;
	letter-spacing: 0.5px;
	margin-bottom: 24px;
	box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25);
	animation: quizGoalShimmer 4s ease infinite;
}

@keyframes quizGoalShimmer {
	0% {
		background-position: -200% center;
	}

	100% {
		background-position: 200% center;
	}
}

.quiz-chart-wrap {
	background: var(--quiz-card);
	border-radius: var(--quiz-radius);
	padding: 20px;
	margin-bottom: 12px;
	box-shadow: var(--quiz-shadow);
}

.quiz-chart-canvas {
	width: 100%;
	height: 200px;
}

.quiz-results-disclaimer {
	font-size: 12px;
	color: #9CA3AF;
	font-style: italic;
	margin-top: 8px;
}

/* --- Loading Screen --- */
.quiz-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	text-align: center;
}

.quiz-loading-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid #E5E7EB;
	border-top: 4px solid var(--quiz-primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 24px;
}

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

.quiz-loading-text {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.quiz-loading-sub {
	font-size: 14px;
	color: var(--quiz-text-secondary);
	margin-bottom: 24px;
}

.quiz-loading-bar-wrap {
	width: 100%;
	max-width: 280px;
	height: 8px;
	background: #E5E7EB;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 8px;
}

.quiz-loading-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--quiz-primary), var(--quiz-accent));
	border-radius: 4px;
	width: 0%;
	transition: width 0.3s linear;
}

.quiz-loading-pct {
	font-size: 14px;
	font-weight: 600;
	color: var(--quiz-primary);
}

/* --- Email Capture --- */
.quiz-email-section {
	text-align: center;
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Animated email icon */
.quiz-email-icon-wrap {
	margin-bottom: 24px;
}

.quiz-email-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--quiz-primary-light), #C7D2FE);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-size: 44px;
	color: var(--quiz-primary);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
	position: relative;
	animation: quizEmailBounce 2s ease-in-out infinite;
}

.quiz-email-icon::before,
.quiz-email-icon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid rgba(59, 130, 246, 0.3);
	animation: quizIconRipple 2.5s ease-out infinite;
}

.quiz-email-icon::after {
	animation-delay: 1.25s;
}

@keyframes quizEmailBounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-6px);
	}
}

.quiz-email-title {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 8px;
}

.quiz-email-subtitle {
	font-size: 14px;
	color: var(--quiz-text-secondary);
	margin-bottom: 24px;
}

/* Input with icon */
.quiz-email-wrap {
	width: 100%;
	margin-bottom: 24px;
}

.quiz-email-input-group {
	position: relative;
}

.quiz-email-input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #9CA3AF;
	pointer-events: none;
	transition: color var(--quiz-transition);
}

.quiz-email-input-group:focus-within .quiz-email-input-icon {
	color: var(--quiz-primary);
}

.quiz-email-input {
	width: 100%;
	padding: 16px 20px 16px 48px;
	font-size: 16px;
	font-family: inherit;
	border: 2px solid var(--quiz-border);
	border-radius: 14px;
	background: var(--quiz-card);
	color: var(--quiz-text);
	outline: none;
	transition: all var(--quiz-transition);
}

.quiz-email-input:focus {
	border-color: var(--quiz-primary);
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.quiz-email-input::placeholder {
	color: #9CA3AF;
}

/* Benefits checklist */
.quiz-email-benefits {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
	width: 100%;
}

.quiz-email-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: #F0F7FF;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--quiz-text);
}

.quiz-email-benefit i {
	font-size: 18px;
	color: #22C55E;
	flex-shrink: 0;
}

/* Privacy notice */
.quiz-email-privacy {
	font-size: 12px;
	color: #9CA3AF;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.quiz-email-privacy i {
	font-size: 14px;
	color: #22C55E;
}

/* --- Buttons --- */
.quiz-btn {
	display: block;
	width: 100%;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 700;
	font-family: inherit;
	color: white;
	background: var(--quiz-primary);
	border: none;
	border-radius: 100px;
	cursor: pointer;
	transition: all var(--quiz-transition);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	-webkit-tap-highlight-color: transparent;
}

.quiz-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.quiz-btn:active {
	transform: scale(0.98);
}

.quiz-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

/* Fixed bottom button */
.quiz-bottom-bar {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 520px;
	padding: 16px 20px;
	padding-bottom: calc(16px + env(safe-area-inset-bottom));
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0));
	z-index: 50;
}

/* --- Footer / Legal --- */
.quiz-footer {
	padding: 24px 20px;
	text-align: center;
	font-size: 12px;
	color: #9CA3AF;
	line-height: 1.6;
}

.quiz-footer a {
	color: var(--quiz-primary);
	text-decoration: underline;
}

.quiz-copyright {
	text-align: center;
	font-size: 11px;
	color: #9CA3AF;
	margin-top: 8px;
}

/* --- Fun celebrations --- */
.quiz-celebration {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 72px;
	z-index: 200;
	pointer-events: none;
	animation: celebrationPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes celebrationPop {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 0;
	}

	40% {
		transform: translate(-50%, -50%) scale(1.3);
		opacity: 1;
	}

	60% {
		transform: translate(-50%, -50%) scale(0.9);
	}

	80% {
		transform: translate(-50%, -50%) scale(1.05);
	}

	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0;
	}
}

/* Confetti particles */
.confetti-piece {
	position: fixed;
	z-index: 200;
	pointer-events: none;
	width: 10px;
	height: 10px;
	border-radius: 2px;
	animation: confettiFall 1.5s cubic-bezier(0.25, 0, 0.5, 1) forwards;
}

@keyframes confettiFall {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}

	100% {
		transform: translateY(100vh) rotate(720deg);
		opacity: 0;
	}
}

/* --- Selling Page (Step 12 old, now not used but kept for compat) --- */
.quiz-selling {
	padding-bottom: 40px;
}

.quiz-selling-hero {
	text-align: center;
	margin-bottom: 32px;
}

.quiz-selling-hero h2 {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 12px;
}

.quiz-selling-hero h2 span {
	color: var(--quiz-primary);
}

.quiz-selling-hero p {
	font-size: 15px;
	color: var(--quiz-text-secondary);
}

/* Timer bar */
.quiz-timer-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #FEF3C7, #FDE68A);
	border-radius: var(--quiz-radius);
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #92400E;
}

.quiz-timer-bar i {
	font-size: 18px;
}

/* Plan cards */
.quiz-plan-cards {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.quiz-plan-card {
	display: flex;
	align-items: center;
	padding: 18px 20px;
	background: var(--quiz-card);
	border: 2px solid #E5E7EB;
	border-radius: var(--quiz-radius);
	cursor: pointer;
	transition: all var(--quiz-transition);
	position: relative;
}

.quiz-plan-card.popular {
	border-color: var(--quiz-primary);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.quiz-plan-badge {
	position: absolute;
	top: -10px;
	left: 20px;
	padding: 3px 12px;
	background: var(--quiz-primary);
	color: white;
	font-size: 11px;
	font-weight: 700;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quiz-plan-radio {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--quiz-border);
	margin-right: 14px;
	flex-shrink: 0;
	transition: all var(--quiz-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.quiz-plan-card.selected .quiz-plan-radio {
	border-color: var(--quiz-primary);
	background: var(--quiz-primary);
}

.quiz-plan-card.selected .quiz-plan-radio::after {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.quiz-plan-info {
	flex: 1;
}

.quiz-plan-name {
	font-size: 15px;
	font-weight: 700;
}

.quiz-plan-desc {
	font-size: 12px;
	color: var(--quiz-text-secondary);
	margin-top: 2px;
}

.quiz-plan-price {
	text-align: right;
}

.quiz-plan-price .current {
	font-size: 24px;
	font-weight: 800;
	color: var(--quiz-text);
}

.quiz-plan-price .period {
	font-size: 12px;
	color: var(--quiz-text-secondary);
	display: block;
}

.quiz-plan-price .original {
	font-size: 13px;
	color: #9CA3AF;
	text-decoration: line-through;
}

/* Features list */
.quiz-features {
	background: var(--quiz-card);
	border-radius: var(--quiz-radius);
	padding: 24px;
	margin-bottom: 24px;
}

.quiz-features h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}

.quiz-features ul {
	list-style: none;
	padding: 0;
}

.quiz-features ul li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	font-size: 14px;
	color: var(--quiz-text);
	border-bottom: 1px solid #F3F4F6;
}

.quiz-features ul li:last-child {
	border-bottom: none;
}

.quiz-features ul li i {
	color: var(--quiz-success);
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}

/* Guarantee badge */
.quiz-guarantee {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: #ECFDF5;
	border-radius: var(--quiz-radius);
	margin-bottom: 24px;
}

.quiz-guarantee i {
	font-size: 32px;
	color: var(--quiz-success);
	flex-shrink: 0;
}

.quiz-guarantee-text h4 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
}

.quiz-guarantee-text p {
	font-size: 13px;
	color: var(--quiz-text-secondary);
	line-height: 1.4;
}

/* --- Option with character image --- */
.quiz-step-with-character {
	position: relative;
}

.quiz-character-img {
	position: absolute;
	bottom: -60px;
	right: -20px;
	width: 150px;
	height: auto;
	pointer-events: none;
	z-index: 0;
}

/* --- Responsive --- */
@media (min-width: 768px) {
	.quiz-question {
		font-size: 28px;
	}

	.quiz-landing-title {
		font-size: 34px;
	}

	.quiz-option {
		padding: 20px 22px;
	}

	.quiz-info-stat {
		font-size: 42px;
	}

	.quiz-profile-title {
		font-size: 28px;
	}

	.quiz-final-title {
		font-size: 28px;
	}
}

@media (min-width: 1024px) {
	.quiz-shell {
		max-width: 600px;
	}

	.quiz-content {
		padding: 40px 32px 120px;
	}
}

/* Utility: hide on specific conditions */
.quiz-header.hide-for-results {
	display: none;
}

/* Tag pop animation */
@keyframes tagPop {
	from {
		transform: scale(0.5);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* ===================================================================
   FUNNEL-NEW: Image-based option cards
   =================================================================== */
.quiz-options-img {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.quiz-option-img {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 20px 12px 12px;
	border-radius: var(--quiz-radius);
	background: #f7faff;
	border: 1px solid #BFDBFE;
	cursor: pointer;
	transition: var(--quiz-transition);
	overflow: hidden;
	min-height: 80px;
}

.quiz-option-img:hover {
	background: #ffffff;
}

.quiz-option-img.selected {
	border-color: var(--quiz-primary);
	background: var(--quiz-card-selected);
}

.quiz-option-thumb {
	width: 80px;
	height: 80px;
	object-fit: cover;
	flex-shrink: 0;
}

.quiz-option-img .quiz-option-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--quiz-text);
}

/* Icon background box inside option cards */
.quiz-option-img .quiz-option-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 12px;
	font-size: 22px;
	color: var(--quiz-primary);
	flex-shrink: 0;
}

.quiz-option-emoji {
	font-size: 48px;
	line-height: 1;
	flex-shrink: 0;
	width: 80px;
	text-align: center;
}

/* 2-column grid for multi-select image options */
.quiz-options-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

@media (max-width: 400px) {
	.quiz-options-grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
}

/* ===================================================================
   FUNNEL-NEW: 2×3 Image Grid Cards (vertical: image on top, label below)
   =================================================================== */
.quiz-options-img-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.quiz-option-img-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: var(--quiz-radius);
	background: #f7faff;
	border: 1px solid #BFDBFE;
	cursor: pointer;
	transition: var(--quiz-transition);
	overflow: hidden;
	text-align: center;
	padding: 0;
	gap: 0;
}

.quiz-option-img-card:hover {
	background: #ffffff;
	transform: translateY(-2px);
}

.quiz-option-img-card.selected {
	border-color: var(--quiz-primary);
	background: var(--quiz-card-selected);
}

.quiz-option-card-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: top;
	border-radius: 0;
}

.quiz-option-img-card .quiz-option-text {
	padding: 12px 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--quiz-text);
	text-align: center;
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 480px) {
	.quiz-options-img-grid {
		gap: 12px;
	}

	.quiz-option-img-card .quiz-option-text {
		padding: 10px 8px;
		font-size: 14px;
	}
}

/* ===================================================================
   FUNNEL-NEW: Thank You Interstitial
   =================================================================== */
.quiz-thankyou {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 32px;
	padding: 40px 0;
	min-height: 60vh;
}

.quiz-thankyou-content h2 {
	font-size: 26px;
	font-weight: 800;
	color: var(--quiz-text);
	margin-bottom: 16px;
	line-height: 1.3;
}

.quiz-thankyou-content p {
	font-size: 16px;
	color: var(--quiz-text-secondary);
	line-height: 1.6;
}

.quiz-thankyou-img img {
	width: 100%;
	max-width: 480px;
	border-radius: 16px;
}

/* Text-only centered option cards */
.quiz-option-center {
	justify-content: center;
	text-align: center;
	padding: 20px !important;
}

/* ===================================================================
   FUNNEL-NEW: Persistent Global Footer
   =================================================================== */
.quiz-global-footer {
	text-align: center;
	padding: 16px 20px;
	font-size: 12px;
	color: #9CA3AF;
	border-top: 1px solid #F3F4F6;
	margin-top: auto;
}

.quiz-global-footer a {
	color: var(--quiz-primary);
	text-decoration: none;
	font-weight: 500;
}

.quiz-global-footer a:hover {
	text-decoration: underline;
}

/* Step bottom image */
.quiz-step-img {
	text-align: center;
	margin-top: auto;
	padding: 24px 0 0;
}

@media (max-width: 480px) {
	.quiz-step-img {
		display: none;
	}
}

.quiz-step-img img {
	width: 100%;
	max-width: 300px;
	border-radius: 16px 16px 0 0;
}

/* Ensure footer always shows on mobile */
.quiz-global-footer {
	display: block !important;
}

/* Hide scrollbar on mobile */
body.quiz-page {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body.quiz-page::-webkit-scrollbar {
	display: none;
}

/* 2-column grid for multi-select options */
.quiz-options-grid-2 {
	display: flex !important;
	flex-direction: column;
	gap: 12px;
}

/* Centered text-only options (no icon) */
.quiz-options-centered .quiz-option-img {
	justify-content: center;
	text-align: center;
}

/* ===================================================================
   GROWTH PROFILE RESULTS CARD
   =================================================================== */
.profile-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	padding: 24px;
	margin-top: 8px;
}

.profile-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.profile-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
}

.profile-badge {
	font-size: 13px;
	font-weight: 500;
	color: #64748b;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 4px 12px;
}

/* Gauge */
.profile-gauge {
	margin-bottom: 20px;
}

.gauge-track {
	position: relative;
	padding-top: 40px;
}

.gauge-indicator {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateX(-50%);
	transition: left 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 2;
}

.gauge-label-bubble {
	background: #2d2d3a;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 5px 16px;
	border-radius: 20px;
	margin-bottom: 4px;
	position: relative;
	white-space: nowrap;
}

.gauge-label-bubble::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #2d2d3a;
}

.gauge-dot {
	width: 20px;
	height: 20px;
	background: #fff;
	border: 3px solid #cbd5e1;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	position: relative;
	top: -5px;
}

.gauge-bar {
	position: relative;
	height: 10px;
	border-radius: 5px;
	background: linear-gradient(to right, #e74c3c, #e67e22, #f1c40f, #2ecc71);
}

.gauge-labels {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	font-weight: 700;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 8px;
}

/* Callout */
.profile-callout {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: #fef9f0;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 20px;
}

.profile-callout-icon {
	font-size: 24px;
	flex-shrink: 0;
}

.profile-callout strong {
	font-size: 14px;
	color: #1a1a2e;
	display: block;
	margin-bottom: 4px;
}

.profile-callout p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* Bottom: Metrics + Avatar */
.profile-bottom {
	display: flex;
	gap: 16px;
	align-items: flex-end;
}

.profile-metrics {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.profile-metric {
	display: flex;
	align-items: center;
	gap: 10px;
}

.metric-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #eff3ff;
	color: var(--quiz-primary);
	font-size: 16px;
	flex-shrink: 0;
}

.metric-label {
	font-size: 13px;
	color: #94a3b8;
	display: block;
	line-height: 1.2;
}

.metric-value {
	font-size: 15px;
	font-weight: 700;
	display: block;
	line-height: 1.3;
}

.metric-value.high {
	color: #2563eb;
}

.metric-value.limited {
	color: #f59e0b;
}

.metric-value.low {
	color: #ef4444;
}

/* 2x2 Metric Cards Grid */
.profile-cards-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.profile-metric-card {
	background: #f7faff;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}

.metric-card-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #eff3ff;
	color: var(--quiz-primary);
	font-size: 20px;
	margin-bottom: 4px;
}

.metric-card-icon.green {
	background: #ecfdf5;
	color: #22c55e;
}

.metric-card-icon.yellow {
	background: #fefce8;
	color: #f59e0b;
}

.metric-card-icon.red {
	background: #fef2f2;
	color: #ef4444;
}

.metric-value.green {
	color: #22c55e !important;
}

@media (max-width: 480px) {
	.profile-card {
		padding: 16px;
	}

	.profile-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* Brand icon images in option cards */
.brand-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

/* ===================================================================
   GROWTH SUMMARY CHART
   =================================================================== */
.growth-target {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	text-align: center;
	margin: 12px 0;
}

.growth-goal-badge {
	display: inline-block;
	background: linear-gradient(135deg, #FEF3C7, #FDE68A, #FBBF24, #FDE68A);
	background-size: 300% 100%;
	border: 1px solid #FDE68A;
	border-radius: 20px;
	padding: 6px 18px;
	font-size: 14px;
	color: #92400E;
	margin: 0 auto 20px;
	text-align: center;
	width: fit-content;
	box-shadow: 0 2px 12px rgba(251, 191, 36, 0.2);
	animation: goalShimmer 4s ease infinite;
}

@keyframes goalShimmer {
	0% {
		background-position: -200% center;
	}

	100% {
		background-position: 200% center;
	}
}

.growth-goal-badge strong {
	color: #92400E;
}

.growth-chart {
	display: flex;
	gap: 12px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	padding: 28px 16px 16px;
	margin: 0 auto 8px;
	max-width: 100%;
}

.chart-y-axis {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: 12px;
	color: #94a3b8;
	font-weight: 600;
	padding-bottom: 32px;
	min-width: 32px;
	text-align: right;
}

.chart-bars {
	flex: 1;
	display: flex;
	justify-content: space-evenly;
	align-items: flex-end;
	height: 220px;
	border-left: 1px dashed #e2e8f0;
	padding-left: 20px;
	gap: 20px;
}

.chart-bar-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	max-width: 80px;
}

.chart-bar-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 200px;
	position: relative;
	width: 100%;
}

.chart-bar {
	width: 52px;
	border-radius: 10px 10px 4px 4px;
	transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	min-height: 0;
}

.chart-label {
	font-size: 13px;
	color: #64748b;
	font-weight: 600;
	margin-top: 10px;
	white-space: nowrap;
}

.chart-bubble {
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	padding: 4px 12px;
	border-radius: 14px;
	margin-bottom: 6px;
	white-space: nowrap;
	position: relative;
}

.chart-bubble::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

.beginner-bubble {
	background: #6366f1;
}

.beginner-bubble::after {
	border-top: 5px solid #6366f1;
}

.master-bubble {
	background: #2563eb;
}

.master-bubble::after {
	border-top: 5px solid #2563eb;
}

.growth-disclaimer {
	font-size: 13px;
	color: #94a3b8;
	text-align: center;
	font-style: italic;
	margin-top: 4px;
}

@media (max-width: 480px) {
	.growth-chart {
		padding: 20px 10px 12px;
	}

	.chart-bar {
		width: 44px;
	}

	.chart-bars {
		height: 200px;
		padding-left: 10px;
	}

	.chart-bar-wrapper {
		height: 180px;
	}
}

/* ===================================================================
   PROCESSING SCREEN
   =================================================================== */
.processing-screen {
	text-align: center;
	padding: 20px 0;
}

/* Circular SVG progress */
.circular-progress {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 0 auto 16px;
}

.progress-svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.progress-bg {
	fill: none;
	stroke: #e8ecf1;
	stroke-width: 8;
}

.progress-fill {
	fill: none;
	stroke: var(--quiz-primary);
	stroke-width: 8;
	stroke-linecap: round;
	transition: stroke-dashoffset 0.05s linear;
}

.progress-pct {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 32px;
	font-weight: 700;
	color: #1a1a2e;
}

.processing-label {
	font-size: 15px;
	color: #64748b;
	margin-bottom: 20px;
}

.processing-divider {
	border: none;
	border-top: 1px solid #e2e8f0;
	margin: 0 0 24px;
}

.processing-stat {
	font-size: 28px;
	font-weight: 700;
	color: #2563eb;
	margin: 0 0 2px;
}

.stat-number {
	color: #2563eb;
}

.processing-stat-sub {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 20px;
}

/* Review card */
.processing-review {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px 20px;
	text-align: left;
	margin: 0 auto 12px;
	max-width: 400px;
}

.review-stars {
	font-size: 20px;
	margin-bottom: 8px;
	display: flex;
	gap: 2px;
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.review-header strong {
	font-size: 15px;
	color: #1a1a2e;
}

.review-author {
	font-size: 14px;
	color: #94a3b8;
}

.review-text {
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

.processing-trustpilot {
	font-size: 13px;
	color: #94a3b8;
	margin-top: 8px;
}

/* ===================================================================
   EMAIL CAPTURE
   =================================================================== */
.email-input-wrap {
	position: relative;
	margin: 24px 0 12px;
}

.email-input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #94a3b8;
}

.email-input {
	width: 100%;
	padding: 16px 16px 16px 44px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	font-size: 16px;
	font-family: inherit;
	color: #1a1a2e;
	background: #f8fafc;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.email-input:focus {
	border-color: var(--quiz-primary);
	background: #fff;
}

.email-input::placeholder {
	color: #94a3b8;
}

.email-privacy {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.5;
	display: flex;
	gap: 6px;
	align-items: flex-start;
}

.email-privacy i {
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ===================================================================
   READINESS LEVEL CHART
   =================================================================== */
.readiness-title {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 8px;
	text-align: left;
}

.readiness-chart {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	padding: 12px 8px 0;
	margin-bottom: 8px;
}

.readiness-svg {
	width: 100%;
	height: auto;
}

.readiness-disclaimer {
	font-size: 12px;
	color: #94a3b8;
	font-style: italic;
	margin: 4px 0 0;
	text-align: left;
}

/* Pulsing green dot */
.pulse-dot {
	animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {

	0%,
	100% {
		r: 10;
		opacity: 1;
	}

	50% {
		r: 14;
		opacity: 0.6;
	}
}

/* ===================================================================
   FINAL SELLING PAGE
   =================================================================== */
.sell-page {
	padding-bottom: 24px;
}

.text-gradient {
	color: var(--quiz-primary);
}

/* Hero */
.sell-hero {
	text-align: center;
	padding: 8px 0 24px;
}

.sell-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #eff3ff, #f0e6ff);
	color: var(--quiz-primary);
	font-size: 13px;
	font-weight: 600;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.sell-badge-gold {
	background: linear-gradient(135deg, #FEF3C7, #FDE68A, #FBBF24, #FDE68A);
	background-size: 300% 100%;
	color: #92400E;
	border: 1px solid #FDE68A;
	box-shadow: 0 2px 12px rgba(251, 191, 36, 0.2);
	animation: goalShimmer 4s ease infinite;
}

.sell-hero-title {
	font-size: 24px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.3;
	margin: 0 0 10px;
}

.sell-hero-sub {
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* Sections */
.sell-section {
	padding: 20px 0;
	border-top: 1px solid #f1f5f9;
}

.sell-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 16px;
	text-align: center;
}

/* AI Easy Grid */
.sell-easy-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}

.sell-easy-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	background: #f7faff;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	padding: 16px 10px;
}

.sell-easy-item>i {
	font-size: 22px;
	color: var(--quiz-primary);
	width: 40px;
	height: 40px;
	background: #eff3ff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sell-easy-item strong {
	font-size: 14px;
	color: #1a1a2e;
	display: block;
}

.sell-easy-item span {
	font-size: 12px;
	color: #94a3b8;
}

/* Benefits */
.sell-benefits {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sell-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #1a1a2e;
	font-weight: 500;
}

.sell-benefit i {
	color: #22c55e;
	font-size: 18px;
	flex-shrink: 0;
}

/* Pricing */
.sell-pricing-section {
	text-align: center;
}

.sell-pricing-grid {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 6px;
	margin-bottom: 12px;
	padding: 20px 10px 8px;
}

.sell-plan {
	background: #f4f6fa;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 10px;
	text-align: center;
	position: relative;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.7;
	flex: 1;
	min-width: 0;
}

.sell-plan:hover {
	border-color: var(--quiz-primary);
	opacity: 0.85;
}

.sell-plan.featured:not(.selected) {
	background: #f4f6fa;
	border: 1.5px solid #d0d8e8;
	box-shadow: none;
}

.sell-plan.selected {
	background: #fff;
	border: 2.5px solid #22c55e;
	box-shadow: 0 6px 24px rgba(34, 197, 94, 0.15);
	opacity: 1;
	z-index: 2;
	flex: 1.3;
	padding: 18px 10px;
}

.sell-plan-tag {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--quiz-primary);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 10px;
	white-space: nowrap;
	letter-spacing: 0.5px;
}

.sell-plan-tag.tag-selected {
	background: #22c55e;
}

.sell-plan h4 {
	font-size: 10px;
	font-weight: 700;
	color: #94a3b8;
	letter-spacing: 0.5px;
	margin: 0 0 2px;
	transition: all 0.3s ease;
}

.sell-plan.selected h4 {
	font-size: 13px;
	color: #1e293b;
	margin: 0 0 6px;
}

.sell-plan-old {
	font-size: 10px;
	color: #b0b8c9;
	margin: 0 0 2px;
	transition: all 0.3s ease;
}

.sell-plan.selected .sell-plan-old {
	font-size: 13px;
	color: #94a3b8;
	margin: 0 0 4px;
}

.sell-plan-price .big {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	transition: all 0.3s ease;
}

.sell-plan.selected .sell-plan-price .big {
	font-size: 28px;
}

.sell-plan-price small {
	font-size: 9px;
	color: #94a3b8;
	transition: all 0.3s ease;
}

.sell-plan.selected .sell-plan-price small {
	font-size: 12px;
}

.sell-plan-daily {
	font-size: 10px;
	color: #b0b8c9;
	margin: 4px 0 0;
	transition: all 0.3s ease;
}

.sell-plan.selected .sell-plan-daily {
	font-size: 12px;
	color: #64748b;
}

.sell-pricing-note {
	font-size: 12px;
	color: #22c55e;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 8px 0 16px;
}

.sell-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 16px;
	background: var(--quiz-primary);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border: none;
	border-radius: 14px;
	cursor: pointer;
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.sell-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.sell-pricing-sub {
	font-size: 11px;
	color: #94a3b8;
	margin-top: 12px;
}

/* Guarantee */
.sell-guarantee {
	text-align: center;
	background: linear-gradient(135deg, #fefce8, #fef9f0);
	border: 1px solid #fde68a;
	border-radius: 16px;
	padding: 24px 20px !important;
}

.sell-guarantee-icon {
	font-size: 40px;
	color: #f59e0b;
	margin-bottom: 8px;
}

.sell-guarantee h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 8px;
}

.sell-guarantee p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Capacity-status card — blue counterpart to the yellow money-back card.
   Used on step 0 (gender selection) below the gender option pair. */
.capacity-status {
	background: linear-gradient(135deg, #EFF6FF, #F0F7FF);
	border: 1px solid #DBEAFE;
	border-radius: 16px;
	padding: 20px;
	margin: 16px 0 0;
	text-align: left;
}

.capacity-status-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	color: var(--quiz-primary-dark);
	margin-bottom: 8px;
}

.capacity-status-heading {
	font-size: 18px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 6px;
}

.capacity-status-text {
	font-size: 13px;
	color: #64748B;
	line-height: 1.55;
	margin: 0 0 14px;
}

.capacity-status-bar {
	height: 8px;
	background: #E0EBFF;
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 6px;
}

.capacity-status-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--quiz-primary), var(--quiz-primary-dark));
	border-radius: 999px;
	transition: width 600ms ease-out;
}

.capacity-status-caption {
	font-size: 11px;
	color: #64748B;
	text-align: right;
	font-weight: 500;
}

/* Features List */
.sell-features-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sell-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #374151;
	line-height: 1.4;
}

.sell-feature-item i {
	color: var(--quiz-primary);
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}

/* Testimonials */
.sell-testimonials {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sell-testimonial {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px;
}

.sell-test-stars {
	color: #f59e0b;
	font-size: 16px;
	margin-bottom: 8px;
	display: flex;
	gap: 2px;
}

.sell-testimonial p {
	font-size: 13px;
	color: #475569;
	line-height: 1.5;
	margin: 0 0 8px;
	font-style: italic;
}

.sell-test-author {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
}

.sell-test-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #e2e8f0;
}

/* Final CTA */
.sell-final-cta {
	text-align: center;
	padding: 28px 0 !important;
}

.sell-final-cta h2 {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #1a1a2e;
}

.sell-final-cta>p:first-of-type {
	font-size: 14px;
	color: #64748b;
	margin: 0 0 20px;
}

.sell-trust-badge {
	font-size: 13px;
	color: #64748b;
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

/* Mobile: stack pricing cards vertically */
@media (max-width: 520px) {
	.sell-page {
		padding-bottom: 32px;
	}

	.sell-hero-title {
		font-size: 22px;
	}

	.sell-hero-sub {
		font-size: 14px;
	}

	.sell-pricing-grid {
		gap: 4px;
		padding: 18px 6px 8px;
	}

	.sell-plan {
		padding: 10px 6px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.sell-plan.selected {
		padding: 16px 6px;
		flex: 1.3;
	}

	.sell-plan.featured {
		padding: 10px 6px;
	}

	.sell-plan.featured.selected {
		padding: 16px 6px;
	}

	.sell-plan h4 {
		font-size: 9px;
	}

	.sell-plan.selected h4 {
		font-size: 12px;
	}

	.sell-plan-old {
		font-size: 9px;
	}

	.sell-plan.selected .sell-plan-old {
		font-size: 12px;
	}

	.sell-plan-price .big {
		font-size: 16px;
	}

	.sell-plan.selected .sell-plan-price .big {
		font-size: 24px;
	}

	.sell-plan-price small {
		font-size: 8px;
	}

	.sell-plan.selected .sell-plan-price small {
		font-size: 11px;
	}

	.sell-plan-daily {
		font-size: 9px;
	}

	.sell-plan.selected .sell-plan-daily {
		font-size: 11px;
	}

	.sell-plan-tag {
		font-size: 10px;
		padding: 4px 14px;
	}

	.sell-cta-btn {
		font-size: 17px;
		padding: 18px;
		border-radius: 14px;
	}

	.sell-section-title {
		font-size: 20px;
	}

	.sell-benefit {
		font-size: 15px;
	}

	.sell-feature-item {
		font-size: 15px;
	}

	.sell-guarantee h3 {
		font-size: 18px;
	}

	.sell-guarantee p {
		font-size: 14px;
	}

	.sell-testimonial p {
		font-size: 14px;
	}

	.sell-final-cta h2 {
		font-size: 22px;
	}
}

/* Desktop enhancements */
@media (min-width: 600px) {
	.sell-hero-title {
		font-size: 30px;
	}

	.sell-pricing-grid {
		gap: 8px;
		margin-bottom: 24px;
		padding: 24px 16px 8px;
	}

	.sell-plan {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 18px 12px;
		border-radius: 16px;
		background: #f4f6fa;
		border: 2px solid #e2e8f0;
		text-align: center;
		position: relative;
		opacity: 0.65;
		transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.sell-plan:hover {
		border-color: #93c5fd;
		opacity: 0.85;
	}

	.sell-plan.selected {
		background: #fff;
		border: 2.5px solid #22c55e;
		box-shadow: 0 8px 30px rgba(34, 197, 94, 0.18);
		opacity: 1;
		z-index: 2;
		flex: 1.4;
		padding: 28px 16px;
	}

	.sell-plan-tag {
		position: absolute;
		top: -12px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 11px;
		padding: 4px 14px;
		border-radius: 20px;
	}

	.sell-plan-tag.tag-selected {
		background: #22c55e;
	}

	.sell-plan h4 {
		font-size: 12px;
		letter-spacing: 1px;
		margin: 0 0 4px;
		color: #94a3b8;
		font-weight: 700;
	}

	.sell-plan.selected h4 {
		font-size: 15px;
		color: #1e293b;
		margin: 0 0 8px;
	}

	.sell-plan-old {
		font-size: 12px;
		margin: 0 0 2px;
		color: #b0b8c9;
	}

	.sell-plan.selected .sell-plan-old {
		font-size: 15px;
		color: #94a3b8;
		margin: 0 0 4px;
	}

	.sell-plan-price {
		display: flex;
		align-items: baseline;
		gap: 2px;
		justify-content: center;
	}

	.sell-plan-price .big {
		font-size: 26px;
		font-weight: 700;
		color: #0f172a;
		letter-spacing: -1px;
	}

	.sell-plan.selected .sell-plan-price .big {
		font-size: 42px;
	}

	.sell-plan-price small {
		font-size: 11px;
		color: #94a3b8;
		font-weight: 500;
	}

	.sell-plan.selected .sell-plan-price small {
		font-size: 15px;
		color: #64748b;
	}

	.sell-plan-daily {
		font-size: 11px;
		margin: 4px 0 0;
		color: #b0b8c9;
		text-align: center;
		white-space: nowrap;
	}

	.sell-plan.selected .sell-plan-daily {
		font-size: 14px;
		color: #64748b;
	}

	.signup-checkbox {
		font-size: 14px;
	}
}

/* --- Mobile: tighter layout for image-grid steps to avoid scroll --- */
@media (max-width: 480px) {
	.quiz-content {
		padding: 16px 16px 100px;
	}

	.quiz-question {
		font-size: 20px;
		margin-bottom: 14px;
	}

	.quiz-question-sub {
		font-size: 13px;
		margin-bottom: 16px;
	}

	.quiz-options-img-grid {
		gap: 6px;
	}

	.quiz-option-img-card .quiz-option-text {
		padding: 10px 4px;
		font-size: 12px;
	}

	.quiz-global-footer {
		padding: 8px 16px;
		font-size: 11px;
	}
}

/* ===================================================================
   SIGNUP-SPECIFIC STYLES (checkout, timer, payment)
   Moved from inline <style> in quiz.html
   =================================================================== */
.signup-timer-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-bottom: 16px;
}

.signup-timer-label {
	font-size: 13px;
	color: #64748b;
}

.signup-timer {
	display: flex;
	align-items: center;
	gap: 2px;
	font-variant-numeric: tabular-nums;
}

.signup-timer .t-digit {
	background: #1a1a2e;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	width: 36px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.signup-timer .t-sep {
	font-size: 28px;
	font-weight: 800;
	color: #1a1a2e;
	padding: 0 4px;
}

.signup-badge {
	display: block;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	padding: 12px 20px;
	font-size: 14px;
	color: #9a3412;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.5;
}

.signup-plan-summary {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 20px;
}

.signup-plan-summary .plan-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #374151;
	margin-bottom: 8px;
}

.signup-plan-summary .plan-row.discount {
	color: #22c55e;
}

.signup-plan-summary .promo-code {
	font-size: 12px;
	color: #3b82f6;
	padding: 6px 12px;
	background: #eff6ff;
	border-radius: 8px;
	margin-bottom: 12px;
	display: inline-block;
}

.signup-plan-summary .plan-total {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a2e;
	padding-top: 12px;
	border-top: 1px solid #e2e8f0;
}

.signup-plan-summary .saved-text {
	font-size: 12px;
	color: #22c55e;
	text-align: right;
	margin-top: 4px;
}

.signup-express-btn {
	width: 100%;
	padding: 14px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 10px;
	transition: all 0.2s;
	background: #fff;
	color: #1a1a2e;
}

.signup-express-btn:hover {
	border-color: #94a3b8;
	background: #f8fafc;
}

.signup-express-btn.apple-pay {
	background: #1a1a2e;
	color: #fff;
	border-color: #1a1a2e;
}

.signup-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 16px 0;
	color: #94a3b8;
	font-size: 13px;
}

.signup-divider::before,
.signup-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}

.signup-form-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

.signup-form-row {
	display: flex;
	gap: 12px;
}

.signup-form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.signup-form-label {
	font-size: 12px;
	font-weight: 600;
	color: #64748b;
}

.signup-form-input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	color: #1a1a2e;
	background: #f8fafc;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.signup-form-input:focus {
	border-color: var(--quiz-primary);
	background: #fff;
}

.signup-form-input::placeholder {
	color: #94a3b8;
}

.signup-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 12px;
	cursor: pointer;
	flex-wrap: nowrap;
}

.signup-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--quiz-primary);
}

.signup-checkbox span,
.signup-checkbox a {
	display: inline;
}

.signup-checkbox a {
	color: var(--quiz-primary);
	text-decoration: underline;
	white-space: nowrap;
}

.signup-subscription-info {
	font-size: 11px;
	color: #94a3b8;
	line-height: 1.5;
	margin-bottom: 16px;
}

.signup-subscription-info a {
	color: var(--quiz-primary);
	text-decoration: underline;
}

/* Dynamic consent block — replaces the legacy checkbox + subscription-info pair.
   Updates per selected plan via JS (see updateConsentText). Bordered box with
   left-aligned body text so the legalese reads like a disclaimer block, not a
   centered marketing paragraph. */
.signup-consent {
	font-size: 11px;
	line-height: 1.55;
	color: #64748B;
	text-align: left;
	border: 1px solid var(--quiz-border);
	border-radius: 8px;
	padding: 14px 16px;
	margin: 18px 0 14px;
	background: #FFFFFF;
}

.signup-consent strong {
	color: #1E293B;
	font-weight: 600;
}

.signup-secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	color: #22c55e;
	font-weight: 500;
	margin-top: 16px;
}

.signup-agree {
	font-size: 11px;
	color: #94a3b8;
	text-align: center;
	margin-top: 12px;
	line-height: 1.5;
}

.signup-agree a {
	color: var(--quiz-primary);
	text-decoration: underline;
}

.signup-confirmation {
	text-align: center;
	padding: 40px 0;
}

.signup-confirmation .woo-emoji {
	font-size: 64px;
	margin-bottom: 16px;
}

.signup-confirmation h2 {
	font-size: 24px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.signup-confirmation .welcome-text {
	font-size: 16px;
	color: var(--quiz-primary);
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1.4;
}

.signup-confirmation .login-detail {
	font-size: 14px;
	color: #374151;
	line-height: 1.5;
	margin-bottom: 20px;
	padding: 16px;
	background: #f0f7ff;
	border-radius: 12px;
}

.signup-confirmation .login-detail a {
	color: var(--quiz-primary);
	text-decoration: underline;
}

.step-processing {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 300px;
}

.step-processing .spinner {
	width: 48px;
	height: 48px;
	border: 4px solid #E5E7EB;
	border-top: 4px solid var(--quiz-primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

.signup-goal-target {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 16px;
}

.signup-goal-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px;
	text-align: center;
}

.signup-goal-box .label {
	font-size: 12px;
	color: #64748b;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 4px;
}

.signup-goal-box .value {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a2e;
}

.name-input-wrap {
	position: relative;
	margin: 24px 0 12px;
}

.name-input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #94a3b8;
}

.name-input {
	width: 100%;
	padding: 16px 16px 16px 44px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	font-size: 16px;
	font-family: inherit;
	color: #1a1a2e;
	background: #f8fafc;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.name-input:focus {
	border-color: var(--quiz-primary);
	background: #fff;
}

.name-input::placeholder {
	color: #94a3b8;
}

.signup-payment-processing {
	text-align: center;
	padding: 60px 0;
}

.signup-payment-processing .process-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3B82F6, #2563EB);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	animation: pulseProcess 2s ease-in-out infinite;
	box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

@keyframes pulseProcess {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.quiz-input-error {
	color: #ef4444;
	font-size: 13px;
	line-height: 1.4;
	margin-top: 8px;
	min-height: 18px;
	text-align: center;
}