/* ===================================================================
   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: linear-gradient(103deg,#021d33,#023c5b)!important;
	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: 88px;
	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 10px 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, #3B82F6);
	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;
}

/* ===================================================================
   Step 21 plan-select redesign — trust / social / reassurance bars
   (cosmetic; ported from tests/plan-step-mockup.html)
   =================================================================== */

/* Black separator between plans and the trust bar */
.plan-separator {
	height: 1px;
	background: #374151;
	margin: 8px 0 18px;
}

/* The trust + assure bars break out wider than the plan-card column. The
   funnel's .quiz-content has overflow:hidden for the step slide animations,
   which would clip the breakout — so it's overridden ONLY while step 21 is
   active (the last step; nothing slides after it). */
body:has(.quiz-step[data-step="14"].active) .quiz-content { overflow: visible; }

/* Trust / guarantee bar — white card, breaks out wider than the column.
   Boss wants this bar bigger, wider and more readable than the others. */
.trust-bar {
	display: flex;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: min(760px, 96vw);
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
	margin: 4px 0 16px;
	overflow: hidden;
}
.trust-item {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 18px 14px;
	border-left: 1px solid #eef2f7;
}
.trust-item:first-child { border-left: none; }
.trust-item i { font-size: 28px; color: var(--quiz-primary); }
.trust-item h5 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 0; line-height: 1.3; }
.trust-item p { font-size: 12px; color: #64748b; margin: 0; line-height: 1.4; }

/* Social-proof bar — borderless hairline strip */
.social-bar {
	display: flex;
	width: 100%;
	background: transparent;
	border-top: 1px solid #e5e7eb;
	margin: 16px 0 0;
}
.social-item {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 5px;
	padding: 14px 8px;
	border-left: 1px solid #e5e7eb;
}
.social-item:first-child { border-left: none; }
.social-item i { font-size: 20px; color: var(--quiz-primary); }
.social-item .social-stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; }
.social-item h5 { font-size: 11.5px; font-weight: 700; color: #1e293b; margin: 0; line-height: 1.25; }
.social-item p { font-size: 10px; color: #64748b; margin: 0; line-height: 1.35; }

/* Overlapping avatar cluster (pure CSS — no image deps) */
.avatar-cluster { display: flex; justify-content: center; }
.avatar-cluster span {
	width: 26px; height: 26px; border-radius: 50%;
	border: 2px solid #fff; margin-left: -8px;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 700; color: #fff;
}
.avatar-cluster span:first-child { margin-left: 0; }
.avatar-cluster span:nth-child(1) { background: #6366f1; }
.avatar-cluster span:nth-child(2) { background: #ec4899; }
.avatar-cluster span:nth-child(3) { background: #f59e0b; }
.avatar-cluster span:nth-child(4) { background: #10b981; }

/* Compact reassurance row — thin single-line items, breaks out wider than
   the column (mockup value) so the full labels fit on one line. */
.assure-bar {
	display: flex;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: min(680px, 96vw);
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}
.assure-item {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 6px;
	border-left: 1px solid #e5e7eb;
	font-size: 11px;
	font-weight: 600;
	color: #374151;
	text-align: center;
	line-height: 1.25;
	white-space: nowrap;
}
.assure-item:first-child { border-left: none; }
.assure-item i { color: var(--quiz-primary); font-size: 15px; flex-shrink: 0; }

/* Stack the bars to rows on narrow screens — no horizontal overflow */
@media (max-width: 480px) {
	.trust-bar, .social-bar, .assure-bar { flex-direction: column; }
	.trust-item, .social-item {
		flex-direction: row;
		text-align: left;
		gap: 12px;
		border-left: none;
		border-top: 1px solid #e8edf3;
		padding: 12px 14px;
	}
	.trust-item:first-child, .social-item:first-child { border-top: none; }
	.trust-item i, .social-item i,
	.social-item .social-stars, .social-item .avatar-cluster { flex-shrink: 0; }
	.trust-item .trust-text, .social-item .social-text { text-align: left; }
	.assure-item {
		justify-content: flex-start;
		border-left: none;
		border-top: 1px solid #e5e7eb;
		padding: 11px 14px;
	}
	.assure-item:first-child { border-top: none; }
}

/* ===================================================================
   Step 21 — post-CTA enrollment reassurance section
   Self-contained within the column (no breakout), responsive.
   =================================================================== */

/* Inline secure row */
.checkout-secure-row {
	display: flex; align-items: center; justify-content: center;
	gap: 14px; margin: 16px 0 26px;
	font-size: 15px; font-weight: 600; color: #334155;
}
.csr-item { display: flex; align-items: center; gap: 8px; }
.csr-badge {
	width: 34px; height: 34px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.csr-badge-green { background: #dcfce7; color: #16a34a; }
.csr-badge-blue  { background: #dbeafe; color: #3b82f6; }
.csr-dot { width: 5px; height: 5px; border-radius: 50%; background: #cbd5e1; flex-shrink: 0; }

/* Stat heading */
.enroll-stat { text-align: center; margin: 8px 0 26px; }
.enroll-stat h3 { font-size: 30px; font-weight: 800; color: #0f172a; margin: 0 0 6px; line-height: 1.2; }
.enroll-stat h3 span { color: #3b82f6; }
.enroll-stat p { font-size: 16px; color: #64748b; margin: 0; }

/* 3 feature tiles */
.feature-tiles { display: flex; gap: 12px; margin: 0 0 26px; }
.feature-tile {
	flex: 1; min-width: 0; text-align: center;
	display: flex; flex-direction: column; align-items: center;
}
/* Fixed-height head keeps every heading on the same baseline whether or not
   the tile has a stars row (middle tile). */
.ft-head {
	display: flex; flex-direction: column; align-items: center;
	min-height: 86px; margin-bottom: 10px;
}
.ft-icon {
	width: 64px; height: 64px; border-radius: 18px;
	display: flex; align-items: center; justify-content: center;
	font-size: 30px; flex-shrink: 0;
}
.ft-icon-blue  { background: #eff6ff; color: #3b82f6; }
.ft-icon-amber { background: #fffbeb; color: #f59e0b; }
.ft-icon-green { background: #f0fdf4; color: #22c55e; }
.ft-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-top: 7px; }
.feature-tile h4 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 0 0 4px; line-height: 1.3; }
.feature-tile p { font-size: 12.5px; color: #64748b; margin: 0; line-height: 1.4; }

/* Included With Enrollment card */
.enroll-card {
	background: #f8fafc; border: 1px solid #e8edf3; border-radius: 16px;
	padding: 18px 18px 6px; margin: 0 0 20px;
}
.enroll-card-title { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.enroll-card-title::before, .enroll-card-title::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.enroll-card-title span { font-size: 14px; font-weight: 700; color: #3b82f6; white-space: nowrap; }
.enroll-row {
	display: flex; align-items: flex-start; gap: 14px;
	padding: 14px 0; border-top: 1px solid #eef2f7;
}
.enroll-card-title + .enroll-row { border-top: none; }
.enroll-check {
	width: 30px; height: 30px; border-radius: 50%; background: #3b82f6; color: #fff;
	display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.enroll-row h5 { font-size: 14px; font-weight: 700; color: #0f172a; margin: 0 0 2px; line-height: 1.3; }
.enroll-row p { font-size: 12.5px; color: #64748b; margin: 0; line-height: 1.4; }

/* Payment footer */
.pay-footer {
	display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
	border: 1px solid #e8edf3; border-radius: 12px; padding: 14px 16px;
}
.pay-secure { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: #0f172a; }
.pay-secure i { color: #16a34a; }
.pay-sep { width: 1px; height: 18px; background: #e2e8f0; }
.pay-by { font-size: 13px; color: #94a3b8; }
/* Brand-styled wordmarks (text/CSS only — no external assets). */
.pay-logo-stripe { font-weight: 800; font-style: italic; color: #635BFF; font-size: 19px; letter-spacing: -0.5px; }
.pay-logo-paypal { font-weight: 800; font-style: italic; font-size: 16px; }
.pay-logo-paypal .pp1 { color: #003087; }
.pay-logo-paypal .pp2 { color: #009cde; }

/* Mobile: keep 3 tiles across but tighten; scale stat heading down */
@media (max-width: 480px) {
	.enroll-stat h3 { font-size: 25px; }
	.enroll-stat p { font-size: 14px; }
	.feature-tiles { gap: 6px; }
	.ft-head { min-height: 76px; margin-bottom: 8px; }
	.ft-icon { width: 54px; height: 54px; font-size: 25px; border-radius: 15px; }
	.ft-stars { font-size: 13px; margin-top: 6px; }
	.feature-tile h4 { font-size: 12.5px; }
	.feature-tile p { font-size: 11px; }
	.checkout-secure-row { gap: 10px; font-size: 13.5px; }
	.enroll-card { padding: 16px 14px 4px; }
	.pay-footer { gap: 8px; padding: 12px 12px; }
}

/* =====================================================================
   V2 REDESIGN — steps 14,15,16,18,19,20,21
   Scoped with rd-* prefixes; does not affect any legacy class.
   ===================================================================== */
/* Wider form ONLY on the redesigned steps (quiz-b: 8-13). The earlier question
   steps keep the original narrower shell so their images/cards aren't oversized.
   Scoped via :has() on the active step so nothing else is affected. */
body:has(.quiz-step[data-step="8"].active) .quiz-shell,
body:has(.quiz-step[data-step="9"].active) .quiz-shell,
body:has(.quiz-step[data-step="10"].active) .quiz-shell,
body:has(.quiz-step[data-step="11"].active) .quiz-shell,
body:has(.quiz-step[data-step="12"].active) .quiz-shell,
body:has(.quiz-step[data-step="13"].active) .quiz-shell,
body:has(.quiz-step[data-step="14"].active) .quiz-shell {
	max-width:680px;
}

/* Step 14 (plan) runs a 3-across goal/target/commitment strip that needs a bit
   more room than 680px to keep each value on one line — widen slightly and trim
   the content side-padding so the columns aren't cramped. */
body:has(.quiz-step[data-step="14"].active) .quiz-shell { max-width:720px; }
body:has(.quiz-step[data-step="14"].active) .quiz-content { padding-left:12px; padding-right:12px; }

/* Step 9 (AI tools grid) is the widest — a 3-then-2 tile grid that breathes
   better on desktop. Narrower steps are unaffected. */
body:has(.quiz-step[data-step="9"].active) .quiz-shell { max-width:860px; }

.rd-blue { color:#3B82F6; }
.rd-blue-bold { color:#3B82F6; font-weight:700; }
.rd-green { color:#22c55e; }
.rd-green-bold { color:#16a34a; font-weight:700; }
.rd-red { color:#ef4444; }
.rd-amber { color:#f59e0b; }
.rd-yellow { color:#ca8a04; }
.rd-purple { color:#7c3aed; }
.rd-blue-soft { background:#eff6ff; color:#3B82F6; }
.rd-green-soft { background:#f0fdf4; color:#22c55e; }
.rd-purple-soft { background:#f5f3ff; color:#7c3aed; }
.rd-amber-soft { background:#fffbeb; color:#f59e0b; }
.rd-sub { text-align:center; font-size:16.5px; font-weight:400; color:#64748b; line-height:1.55; margin:0 auto 24px; max-width:580px; }
.rd-h2 { text-align:center; font-size:38px; font-weight:700; line-height:1.16; color:#0f172a; margin:6px 0 14px; }
.rd-underline {
	color:#3B82F6;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 16' preserveAspectRatio='none'%3E%3Cpath d='M4 11 Q150 1 296 8' fill='none' stroke='%23FBBF24' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat 50% 100%;
	background-size:78% 0.38em;
	padding-bottom:0.18em;
}
.rd-cta { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:17px; margin:18px 0 8px; border:none; cursor:pointer; background:#3B82F6; color:#fff; font-size:16px; font-weight:800; letter-spacing:.3px; border-radius:14px; text-decoration:none; font-family:'Poppins',sans-serif; box-shadow:0 8px 20px rgba(37,99,235,.28); transition:transform .15s, box-shadow .15s; }
.rd-cta:hover { transform:translateY(-2px); box-shadow:0 12px 26px rgba(37,99,235,.36); }
.rd-cta-lg { padding:18px; font-size:16px; }
.rd-cta-sub { text-align:center; font-size:13px; color:#64748b; margin:0 0 8px; }
.rd-card { background:#fff; border:1px solid #eef2f7; border-radius:20px; box-shadow:0 6px 30px rgba(0,0,0,.05); padding:24px 22px; }

/* STEP 14 */
.rd-forecast-title { text-align:center; font-size:31px; font-weight:700; color:#0f172a; margin:4px 0 6px; }
.rd-forecast-title span { color:#3B82F6; }
.rd-forecast-title i { color:#3B82F6; font-size:20px; vertical-align:middle; }
.rd-forecast-top { display:flex; gap:18px; align-items:center; margin-bottom:18px; }
.rd-gauge { position:relative; width:138px; height:138px; flex-shrink:0; }
.rd-gauge svg { width:138px; height:138px; }
#rdGaugeArc { transition:stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.rd-gauge-val { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.rd-gauge-val strong { font-size:42px; font-weight:800; color:#0f172a; line-height:1; }
.rd-gauge-val span { font-size:14px; color:#94a3b8; font-weight:600; }
.rd-level-label { font-size:15px; font-weight:700; color:#0f172a; }
.rd-level-name { font-size:26px; font-weight:800; color:#16a34a; display:flex; align-items:center; gap:8px; margin:3px 0 10px; }
.rd-shield { color:#22c55e; font-size:20px; }
.rd-forecast-copy p { font-size:15px; color:#334155; line-height:1.65; margin:0; }
.rd-meter { margin:6px 0 18px; }
.rd-meter-bar { position:relative; height:8px; border-radius:6px; margin:0 0 8px; background:linear-gradient(90deg,#ef4444,#f97316,#eab308,#84cc16,#22c55e); }
.rd-meter-bar .gauge-indicator { position:absolute; top:50%; transform:translate(-50%,-50%); transition:left 1s cubic-bezier(.34,1.4,.64,1); }
.rd-meter-dot { display:block; width:22px; height:22px; border-radius:50%; background:#fff; border:4px solid #16a34a; box-shadow:0 2px 8px rgba(0,0,0,.15); }
.rd-meter-labels { display:flex; justify-content:space-between; font-size:12px; font-weight:600; color:#64748b; }
.rd-callout { display:flex; gap:14px; align-items:flex-start; background:#f0fdf4; border-radius:14px; padding:16px; margin-bottom:6px; }
.rd-callout-icon { width:44px; height:44px; border-radius:50%; background:#dcfce7; color:#16a34a; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.rd-callout strong { font-size:16px; color:#0f172a; }
.rd-callout p { font-size:14.5px; color:#334155; line-height:1.6; margin:3px 0 0; }

/* STEP 15 */
.rd-stat-row { display:flex; align-items:center; justify-content:center; gap:16px; margin:0 0 20px; }
.rd-stat-item { display:flex; gap:12px; align-items:center; }
.rd-stat-icon { width:46px; height:46px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.rd-stat-cap { font-size:12px; font-weight:700; letter-spacing:.6px; color:#94a3b8; margin-bottom:2px; }
.rd-stat-val { font-size:23px; font-weight:700; color:#3B82F6; }
.rd-stat-divider { width:1px; height:52px; background:#e2e8f0; }
.rd-goal-badge { display:inline-block; background:#fde68a; color:#92400e; font-weight:700; font-size:16px; padding:4px 14px; border-radius:8px; }
.rd-journey-card { background:#fff; border:1px solid #eef2f7; border-radius:20px; box-shadow:0 6px 30px rgba(0,0,0,.05); padding:22px 16px; }
.rd-journey-title { text-align:center; font-size:19px; font-weight:800; color:#0f172a; margin:0; }
.rd-journey-script { text-align:center; font-size:15px; color:#3B82F6; font-style:italic; margin:4px 0 22px; }
/* Grid per column: row 1 is a fixed-height bar track (all bars share one
   baseline), row 2 is the label — so every week label starts at the same Y
   (no vertical stagger). Tighter gap gives the labels more width. */
.rd-bar-chart .chart-bars { align-items:flex-start; height:auto; border-left:none; padding:46px 0 0 4px; gap:6px; }
.rd-bar-chart .chart-bar-group { display:grid; grid-template-rows:170px auto; }
.rd-bar-chart .chart-bar-wrapper { height:170px; display:flex; flex-direction:column; justify-content:flex-end; align-items:center; width:100%; }
/* Icon sits in normal flow directly above its bar (both bottom-aligned), so as
   the bar grows the icon rides up with it — never overlaps the title. */
.rd-bar-icon { width:40px; height:40px; border-radius:50%; background:#fff; border:1px solid #e2e8f0; box-shadow:0 2px 8px rgba(0,0,0,.06); display:flex; align-items:center; justify-content:center; font-size:19px; color:#6366f1; margin:0 auto 8px; flex-shrink:0; }
.rd-bar-icon-gold { color:#16a34a; }
.rd-bar { width:82% !important; max-width:none; border-radius:12px 12px 4px 4px; display:flex; align-items:flex-start; justify-content:center; padding-top:10px; transition:height 1s cubic-bezier(.34,1.2,.64,1); }
.rd-bar span { color:#fff; font-weight:800; font-size:19px; }
.rd-bar span small { font-size:12px; font-weight:700; }
.rd-bar-1 { background:linear-gradient(to top,#6366f1,#818cf8); }
.rd-bar-2 { background:linear-gradient(to top,#7c3aed,#a78bfa); }
.rd-bar-3 { background:linear-gradient(to top,#2563eb,#60a5fa); }
.rd-bar-4 { background:linear-gradient(to top,#16a34a,#4ade80); }
.rd-week { display:flex; flex-direction:column; gap:2px; margin-top:12px; white-space:normal; }
.rd-week strong { font-size:14px; color:#0f172a; }
.rd-week em { font-size:12.5px; font-weight:700; font-style:normal; }
.rd-week small { font-size:11.5px; color:#64748b; line-height:1.35; }
.rd-journey-note { display:flex; gap:14px; align-items:center; justify-content:center; background:#eff6ff; border-radius:16px; padding:20px 24px; margin-top:20px; font-size:15px; color:#334155; line-height:1.55; }
.rd-journey-note i { color:#3B82F6; flex-shrink:0; font-size:26px; }
.rd-jn-txt { flex:0 1 auto; max-width:460px; }

/* STEP 16 */
.rd-curve-card { background:#fff; border:1px solid #eef2f7; border-radius:20px; box-shadow:0 6px 30px rgba(0,0,0,.05); padding:22px 18px; }
.rd-curve-title { font-size:20px; font-weight:800; color:#0f172a; margin:0; }
.rd-curve-sub { font-size:14px; color:#64748b; margin:2px 0 8px; }
.rd-curve-wrap { position:relative; }
.rd-curve-wrap .readiness-svg { width:100%; height:auto; overflow:visible; }
.rd-curve-tooltip { position:absolute; top:0; right:0; max-width:170px; background:#fff; border:1.5px solid #22c55e; border-radius:12px; padding:8px 12px; font-size:11px; color:#334155; box-shadow:0 4px 14px rgba(0,0,0,.08); z-index:2; }
.rd-curve-tooltip i { color:#22c55e; }
.rd-curve-tooltip strong { display:inline; font-size:12px; color:#0f172a; }
.rd-curve-tooltip span { display:block; font-weight:700; }
.rd-curve-tooltip small { color:#64748b; }
.rd-curve-now { position:absolute; left:2%; bottom:16%; background:#0f172a; color:#fff; font-size:11px; font-weight:700; padding:3px 9px; border-radius:6px; z-index:2; }
.rd-weeks-row { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-top:14px; text-align:center; border-top:1px solid #f1f5f9; padding-top:14px; }
.rd-weeks-row strong { display:block; font-size:13.5px; color:#0f172a; }
.rd-weeks-row em { display:block; font-size:12.5px; font-weight:700; font-style:normal; margin:1px 0; }
.rd-weeks-row small { display:block; font-size:11.5px; color:#64748b; line-height:1.25; margin-top:2px; }
.rd-info-banner { position:relative; display:flex; gap:14px; align-items:flex-start; background:#eff6ff; border-radius:14px; padding:16px; margin:18px 0; overflow:hidden; }
.rd-info-icon { width:44px; height:44px; border-radius:50%; background:#3B82F6; color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.rd-info-banner strong { font-size:14px; color:#0f172a; }
.rd-info-banner p { font-size:13px; color:#334155; margin:2px 0 0; line-height:1.5; }
.rd-info-banner > div { flex:1; min-width:0; }
.rd-info-art { font-size:40px; color:#bfdbfe; flex-shrink:0; align-self:center; }
.rd-able-title { text-align:center; font-size:16px; font-weight:800; color:#0f172a; margin:6px 0 14px; }
.rd-able-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.rd-able-item { text-align:center; }
.rd-able-icon { width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 8px; }
.rd-able-item p { font-size:11.5px; color:#334155; line-height:1.35; margin:0; font-weight:600; }

/* STEP 18 */
.rd-proc { text-align:center; padding-top:8px; }
.rd-proc-title { font-size:32px; font-weight:700; color:#0f172a; line-height:1.2; margin:0 0 10px; }
.rd-proc-ring { position:relative; width:180px; height:180px; margin:22px auto 8px; }
.rd-proc-ring .progress-svg { width:180px; height:180px; transform:rotate(-90deg); }
.rd-proc-ring .progress-bg { fill:none; stroke:#e5e7eb; stroke-width:8; }
.rd-proc-ring .progress-fill { fill:none; stroke:#3B82F6; stroke-width:8; stroke-linecap:round; }
.rd-proc-pct { position:absolute; inset:0; transform:none; display:flex; align-items:center; justify-content:center; font-size:40px; font-weight:800; color:#0f172a; }
.rd-proc-spark { position:absolute; left:50%; bottom:38px; transform:translateX(-50%); color:#3B82F6; font-size:18px; }
.rd-proc-label { font-size:16px; font-weight:700; color:#0f172a; margin:16px 0 12px; }
.rd-proc-track { height:12px; border-radius:6px; background:#e2e8f0; overflow:hidden; max-width:420px; margin:0 auto 28px; }
.rd-proc-track-fill { height:100%; width:100%; background:repeating-linear-gradient(45deg,#3B82F6,#3B82F6 8px,#60a5fa 8px,#60a5fa 16px); }
.rd-proc-social { display:flex; gap:14px; align-items:center; justify-content:flex-start; text-align:left; background:#eff6ff; border-radius:16px; padding:18px; }
.rd-proc-social-icon { width:56px; height:56px; border-radius:50%; background:#3B82F6; color:#fff; display:flex; align-items:center; justify-content:center; font-size:26px; flex-shrink:0; }
.rd-proc-social-num { font-size:22px; font-weight:800; color:#3B82F6; }
.rd-proc-social-txt { font-size:16px; font-weight:700; color:#0f172a; }

/* avatars (shared) */
.rd-avatars { display:flex; align-items:center; margin-top:12px; }
.rd-av { width:40px; height:40px; border-radius:50%; border:3px solid #fff; margin-left:-10px; background-size:cover; background-position:center; box-shadow:0 1px 3px rgba(0,0,0,.1); }
.rd-av:first-child { margin-left:0; }
/* Social-proof avatar cluster. Colored fallback shows if the GCS image is
   missing (background-image over a solid color — no broken-img icon).
   Upload 5 square avatar photos to: coached-media/funnels/common/avatars/1..5.jpg */
.rd-av1 { background:#93c5fd center/cover url("../images/1_1.jpg"); }
.rd-av2 { background:#fca5a5 center/cover url("../images/2_1.jpg"); }
.rd-av3 { background:#fcd34d center/cover url("../images/3_2.jpg"); }
.rd-av4 { background:#a7f3d0 center/cover url("../images/4_1.jpg"); }
.rd-av5 { background:#c4b5fd center/cover url("../images/5.jpg"); }
.rd-av-plus { display:flex; align-items:center; justify-content:center; background:#dbeafe; color:#3B82F6; font-weight:800; font-size:16px; }

/* STEP 19 */
.rd-badge-pill { display:inline-flex; align-items:center; gap:8px; background:#eff6ff; color:#1e3a8a; font-weight:700; font-size:14px; padding:8px 18px; border-radius:999px; margin:4px auto 16px; }
.rd-badge-pill i { color:#3B82F6; }
.rd-badge-sm { font-size:12px; letter-spacing:.5px; padding:6px 14px; }
.quiz-step[data-step="12"] { text-align:center; }
.rd-email-title, .rd-plan-title { font-size:34px; font-weight:700; color:#0f172a; line-height:1.15; margin:0 0 20px; }
.rd-email-card { background:#fff; border:1px solid #eef2f7; border-radius:22px; box-shadow:0 6px 30px rgba(0,0,0,.05); padding:32px 28px; text-align:center; }
.rd-email-icon { width:62px; height:62px; border-radius:50%; background:#eff6ff; color:#3B82F6; display:flex; align-items:center; justify-content:center; font-size:26px; margin:0 auto 16px; }
.rd-email-h2 { font-size:25px; font-weight:700; color:#0f172a; line-height:1.3; margin:0 0 8px; }
.rd-email-p { font-size:15.5px; color:#64748b; margin:0 0 20px; }
.rd-input-wrap .email-input, .rd-input-wrap .name-input { height:60px; font-size:16px; border-radius:12px; }
.rd-email-privacy { font-size:13.5px; color:#64748b; margin:14px 0 0; }
.rd-receive-title { text-align:center; font-size:17px; font-weight:700; color:#0f172a; margin:28px 0 16px; }
.rd-receive-row { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; }
.rd-receive-item { text-align:center; padding:6px 4px; border-left:1px solid #f1f5f9; }
.rd-receive-item:first-child { border-left:none; }
.rd-receive-icon { width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 9px; }
.rd-receive-item h5 { font-size:13.5px; font-weight:700; color:#0f172a; margin:0 0 3px; line-height:1.25; }
.rd-receive-item p { font-size:12px; color:#64748b; margin:0; line-height:1.4; }

/* STEP 20 */
.rd-name-title { text-align:center; font-size:34px; font-weight:700; color:#0f172a; margin:6px 0 8px; }
.rd-name-field { margin:8px 0 26px; }
.rd-name-label { display:block; font-size:14px; font-weight:700; color:#0f172a; margin:0 0 8px; }
.rd-name-privacy { font-size:13px; color:#64748b; margin:10px 0 0; }
.rd-why-title { font-size:18px; font-weight:700; color:#0f172a; margin:0 0 18px; }
.rd-why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:26px; }
.rd-why-item { text-align:center; }
.rd-why-icon { width:62px; height:62px; border-radius:50%; background:#eff6ff; color:#3B82F6; display:flex; align-items:center; justify-content:center; font-size:26px; margin:0 auto 11px; }
.rd-why-item h5 { font-size:14.5px; font-weight:700; color:#0f172a; margin:0 0 4px; }
.rd-why-item p { font-size:13px; color:#64748b; margin:0; line-height:1.45; }
.rd-social-proof { display:flex; gap:16px; align-items:center; background:#eff6ff; border-radius:16px; padding:18px; margin-bottom:8px; }
.rd-social-copy { text-align:left; }
.rd-social-num { font-size:21px; font-weight:800; color:#3B82F6; }
.rd-social-txt { font-size:15px; font-weight:700; color:#0f172a; }
.rd-social-stars { font-size:13.5px; color:#334155; margin-top:3px; }
.rd-stars { color:#22c55e; letter-spacing:1px; }

/* STEP 21 */
.quiz-step[data-step="14"] { text-align:center; }
.quiz-step[data-step="9"]  { text-align:center; }
.rd-gtc-row { display:flex; flex-wrap:nowrap; justify-content:space-between; align-items:flex-start; gap:0; margin:6px 0 18px; }
.rd-gtc-item { flex:1 1 0; min-width:0; display:flex; gap:9px; align-items:center; text-align:left; padding:0 12px; }
.rd-gtc-item + .rd-gtc-item { border-left:1px solid #e8edf3; }
.rd-gtc-icon { width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:19px; flex-shrink:0; }
.rd-gtc-cap { font-size:11.5px; color:#94a3b8; font-weight:600; white-space:nowrap; }
.rd-gtc-val { font-size:13px; font-weight:700; color:#0f172a; line-height:1.25; }
.rd-intro-banner { display:flex; gap:12px; align-items:center; background:#f0fdf4; border:1px solid #bbf7d0; border-radius:12px; padding:14px 16px; text-align:left; margin-bottom:18px; }
.rd-intro-icon { color:#16a34a; font-size:24px; }
.rd-intro-banner strong { font-size:14px; color:#166534; }
.rd-intro-banner p { font-size:13px; color:#15803d; margin:2px 0 0; }
.rd-plan-choose { font-size:20px; font-weight:700; color:#0f172a; margin:0 0 16px; }
.rd-plan-grid { align-items:stretch; }
.rd-plan-card { padding:16px 10px 40px !important; opacity:1 !important; }
.rd-plan-card .rd-radio { position:absolute; bottom:12px; left:50%; transform:translateX(-50%); width:22px; height:22px; border-radius:50%; border:2px solid #cbd5e1; background:#fff; }
.rd-plan-card.selected .rd-radio { border-color:#3B82F6; background:#3B82F6; }
.rd-plan-card.selected .rd-radio::after { content:"\2713"; color:#fff; font-size:13px; font-weight:800; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.rd-plan-card.selected { border-color:#3B82F6 !important; box-shadow:0 6px 24px rgba(59,130,246,.15) !important; }
.rd-plan-card .sell-plan-tag { background:#3B82F6; }
.rd-plan-trust { display:flex; background:#f8fafc; border:1px solid #eef2f7; border-radius:14px; margin:14px 0; overflow:hidden; }
.rd-plan-trust-item { flex:1; text-align:center; padding:14px 6px; border-left:1px solid #eef2f7; display:flex; flex-direction:column; align-items:center; gap:4px; }
.rd-plan-trust-item:first-child { border-left:none; }
.rd-plan-trust-ic { color:#3B82F6; font-size:20px; }
.rd-plan-trust-item strong { font-size:11.5px; color:#0f172a; line-height:1.2; }
.rd-plan-trust-item small { font-size:10.5px; color:#64748b; }
.rd-gift-cta { border-radius:16px; padding:18px; margin:14px 0; }
.rd-gift-head { display:flex; gap:12px; align-items:center; text-align:left; margin-bottom:12px; }
.rd-gift-icon { width:44px; height:44px; border-radius:12px; background:#dbeafe; color:#3B82F6; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.rd-gift-head strong { font-size:16px; color:#0f172a; }
.rd-gift-head p { font-size:13.5px; color:#334155; margin:2px 0 0; }
.rd-gift-secure { font-size:13px; color:#64748b; margin:10px 0 0; }
.rd-plan-agree { justify-content:center; font-size:12px; margin:14px 0 8px; }
.rd-plan-terms { font-size:12px; color:#64748b; line-height:1.55; text-align:center; margin:0 0 18px; }
.rd-plan-terms a { color:#3B82F6; text-decoration:underline; }
.rd-plan-social { display:flex; gap:14px; align-items:center; background:#f8fafc; border:1px solid #eef2f7; border-radius:16px; padding:16px; margin-bottom:16px; }
.rd-plan-feat { display:flex; gap:10px; margin-bottom:14px; }
.rd-plan-feat-item { flex:1; display:flex; gap:10px; align-items:flex-start; text-align:left; }
.rd-plan-feat-ic { color:#3B82F6; font-size:22px; flex-shrink:0; }
.rd-plan-feat-item strong { font-size:12.5px; color:#0f172a; display:block; }
.rd-plan-feat-item small { display:block; font-size:11px; color:#64748b; line-height:1.25; margin-top:2px; }
.rd-pay-footer { display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; background:#f8fafc; border-radius:12px; padding:14px; }
.rd-pay-secure { display:flex; align-items:center; gap:6px; font-size:14px; font-weight:700; color:#0f172a; }
.rd-pay-secure i { color:#16a34a; }
.rd-pay-sep { width:1px; height:18px; background:#e2e8f0; }
.rd-pay-by { font-size:13px; color:#94a3b8; }
.rd-logo-stripe { font-weight:800; font-style:italic; color:#635BFF; font-size:19px; letter-spacing:-.5px; }
.rd-logo-paypal { font-weight:800; font-style:italic; font-size:16px; }
.rd-logo-paypal .pp1 { color:#003087; }
.rd-logo-paypal .pp2 { color:#009cde; }

@media (max-width:480px) {
	/* Responsive break: drop the forced <br> on phones so headings wrap
	   naturally to fit — never a broken 3-line forced wrap. */
	br.rd-br { display:none; }

	/* Headings + body — smaller, phone-appropriate */
	.rd-h2 { font-size:23px; line-height:1.2; }
	.rd-email-title, .rd-plan-title, .rd-name-title, .rd-proc-title, .rd-forecast-title { font-size:22px; }
	.rd-email-h2 { font-size:18px; }
	.rd-sub { font-size:13.5px; margin-bottom:16px; }
	.rd-journey-title, .rd-curve-title { font-size:16px; }
	.rd-plan-choose, .rd-why-title, .rd-receive-title, .rd-able-title { font-size:15px; }

	/* Step 14 forecast */
	.rd-forecast-top { flex-direction:column; text-align:center; gap:10px; }
	.rd-level-name { justify-content:center; font-size:22px; }
	.rd-gauge, .rd-gauge svg { width:118px; height:118px; }
	.rd-gauge-val strong { font-size:34px; }
	.rd-forecast-copy p { font-size:13.5px; }

	/* Step 15 — date + goal stay side-by-side on one row, just smaller */
	.rd-stat-row { gap:10px; }
	.rd-stat-item { gap:8px; }
	.rd-stat-icon { width:36px; height:36px; font-size:17px; border-radius:10px; }
	.rd-stat-cap { font-size:9.5px; letter-spacing:.3px; }
	.rd-stat-val { font-size:16px; }
	.rd-goal-badge { font-size:12.5px; padding:3px 9px; }
	.rd-stat-divider { height:38px; }
	.rd-bar span { font-size:15px; }
	.rd-bar span small { font-size:10px; }
	.rd-bar-icon { width:32px; height:32px; font-size:15px; }
	.rd-week strong { font-size:12px; }
	.rd-week em { font-size:11px; }
	.rd-week small { font-size:10px; line-height:1.3; }

	/* Step 16 */
	.rd-weeks-row small { display:none; }
	.rd-weeks-row { gap:4px; }
	.rd-weeks-row strong { font-size:11px; }
	.rd-weeks-row em { font-size:10px; white-space:nowrap; }
	.rd-info-art { display:none; }
	.rd-able-grid { grid-template-columns:repeat(2,1fr); }

	/* Step 19 — receive icons 2 per row */
	.rd-receive-row { grid-template-columns:repeat(2,1fr); }
	.rd-receive-item { border-left:none; }
	.rd-email-card { padding:22px 16px; }

	/* Stacked social/plan blocks: images on top, text centered UNDERNEATH
	   (not image-left / text-right, which looks cramped on phones). */
	.rd-social-proof, .rd-proc-social, .rd-plan-social {
		flex-direction:column; text-align:center; gap:10px; padding:16px;
	}
	.rd-social-copy, .rd-proc-social > div { text-align:center; }
	.rd-avatars { justify-content:center; }
	.rd-social-num { font-size:18px; }
	.rd-proc-social-num { font-size:19px; }

	/* Keep long CTA labels on a single line even at ~390px. */
	.rd-cta { font-size:13.5px; letter-spacing:.2px; padding:16px 10px; gap:8px; white-space:nowrap; }

	/* Step 21 — 2-column grid for goal/target/commitment (above). */
	.rd-gtc-row { display:grid; grid-template-columns:1fr 1fr; gap:18px 12px; width:auto; margin:6px 0 18px; align-items:start; justify-items:start; }
	/* Lone 3rd item (Commitment) spans the full row and centers. */
	.rd-gtc-row .rd-gtc-item:nth-child(3) { grid-column:1 / -1; justify-self:start; }
	.rd-plan-feat { flex-direction:column; gap:8px; }
	.rd-gift-head { align-items:flex-start; }

	/* Tighter card gutters on phones — reclaim horizontal width. */
	.rd-card { padding:24px 10px; }
}
/* ===================================================================
   QUIZ-B — Step 9: "The AI tools you'll master" grid (new design)
   Scoped with qb-* prefixes; does not affect any quiz1/rd-* class.
   ===================================================================== */

/* Section label with flanking rules ("THE AI TOOLS YOU'LL MASTER (AND MORE)") */
.qb-section-label { display:flex; align-items:center; justify-content:center; gap:14px; margin:26px 0 18px; color:#3B82F6; font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase; }
.qb-section-label::before, .qb-section-label::after { content:""; height:1px; flex:1; max-width:120px; background:linear-gradient(to right, transparent, #cbd5e1, transparent); }

/* Tools grid: 3 tiles then 2, centered */
.qb-tools-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; margin:0 auto 8px; max-width:760px; }
.qb-tool-card { flex:0 1 224px; max-width:240px; background:#fff; border:1px solid #eef2f7; border-radius:18px; box-shadow:0 6px 24px rgba(0,0,0,.05); padding:22px 18px; text-align:center; }
.qb-tool-logo { width:72px; height:72px; margin:0 auto 14px; border-radius:18px; display:flex; align-items:center; justify-content:center; background:#f8fafc; overflow:hidden; }
.qb-tool-logo img { width:100%; height:100%; object-fit:contain; }
.qb-tool-card h4 { font-size:19px; font-weight:700; color:#0f172a; margin:0 0 6px; }
.qb-tool-card p { font-size:13.5px; color:#64748b; line-height:1.45; margin:0; }

/* "Plus new tools as they are released" info banner */
.qb-plus-banner { display:flex; align-items:center; justify-content:center; gap:12px; max-width:520px; margin:16px auto 4px; background:#eff6ff; border-radius:14px; padding:14px 22px; text-align:left; }
.qb-plus-banner > i { color:#3B82F6; font-size:20px; flex-shrink:0; }
.qb-plus-banner strong { display:block; font-size:14px; color:#0f172a; }
.qb-plus-banner span { font-size:13px; color:#475569; }

/* "By Day 28, You'll Be Able To" section heading */
.qb-day28-title { display:flex; align-items:center; justify-content:center; gap:14px; margin:30px 0 18px; font-size:18px; font-weight:700; color:#0f172a; }
.qb-day28-title::before, .qb-day28-title::after { content:""; height:1px; flex:1; max-width:90px; background:#e2e8f0; }

/* 5-across ability row with vertical dividers */
.qb-ability-row { display:flex; flex-wrap:nowrap; gap:0; margin:0 auto 6px; }
.qb-ability-item { flex:1 1 0; min-width:0; padding:0 12px; text-align:center; }
.qb-ability-item + .qb-ability-item { border-left:1px solid #eef2f7; }
.qb-ability-item i { font-size:26px; margin-bottom:8px; display:block; }
.qb-ability-item h5 { font-size:13.5px; font-weight:700; color:#0f172a; margin:0 0 4px; }
.qb-ability-item p { font-size:11.5px; color:#64748b; line-height:1.35; margin:0; }
.qb-ic-blue { color:#3B82F6; } .qb-ic-teal { color:#14b8a6; } .qb-ic-indigo { color:#6366f1; }
.qb-ic-sky { color:#0ea5e9; } .qb-ic-gold { color:#f59e0b; }

/* Bottom trust strip (12,000+ students / 30-Day Money-Back / Your privacy) */
.qb-trust-strip { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:20px; background:#fff; border:1px solid #eef2f7; border-radius:16px; padding:16px; }
.qb-trust-strip .qb-ts-item { flex:1 1 0; min-width:150px; display:flex; align-items:center; gap:10px; justify-content:center; text-align:left; }
.qb-ts-ic { width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:19px; flex-shrink:0; }
.qb-ts-item strong { display:block; font-size:13px; color:#0f172a; }
.qb-ts-item span { font-size:12px; color:#64748b; }

@media (max-width:480px) {
	.qb-tool-card { flex:0 1 46%; max-width:none; padding:16px 10px; }
	.qb-tool-card h4 { font-size:16px; }
	.qb-tool-card p { font-size:12px; }
	.qb-tool-logo { width:58px; height:58px; }
	.qb-ability-row { flex-wrap:wrap; }
	.qb-ability-item { flex:0 0 33.33%; padding:10px 4px; border-left:none; }
	.qb-section-label::before, .qb-section-label::after { max-width:40px; }
	.qb-day28-title::before, .qb-day28-title::after { max-width:36px; }
	.qb-trust-strip .qb-ts-item { flex:0 0 100%; }
}
