/* ==========================================================================
   WIZARD CLICKAPP — Premium UI/UX maximaliste (2026-05-12)
   3 variantes : standard | cyber | ia (via [data-variant])
   Spec : docs/superpowers/specs/2026-05-12-wizard-premium-design.md
   ========================================================================== */

/* ==========================================================================
   §1 TOKENS LOCAUX + VARIANTS COLOR
   ========================================================================== */
.caw-wiz {
	--wiz-accent: #1B6CF2;
	--wiz-glow: #00E5FF;
	--wiz-tint: rgba(0,229,255,0.18);
	--wiz-tint-strong: rgba(0,229,255,0.35);
	--wiz-grad: linear-gradient(135deg, #1B6CF2, #00E5FF);
	--wiz-grad-text: linear-gradient(90deg, #1B6CF2, #00E5FF, #7B2FF7);
	--wiz-easing: cubic-bezier(0.22, 1, 0.36, 1);
}
/* Variants cyber/ia : utilisation de la palette bleu/cyan signature ClickApp
   (décision utilisateur 2026-05-12 : unifier wizard sur palette standard) */
.caw-wiz[data-variant="cyber"],
.caw-wiz[data-variant="ia"] {
	--wiz-accent: #1B6CF2;
	--wiz-glow: #00E5FF;
	--wiz-tint: rgba(0,229,255,0.18);
	--wiz-tint-strong: rgba(0,229,255,0.35);
	--wiz-grad: linear-gradient(135deg, #1B6CF2, #00E5FF);
	--wiz-grad-text: linear-gradient(90deg, #1B6CF2, #00E5FF, #7B2FF7);
}

/* ==========================================================================
   §2 CONTAINER — fond deep-blue + 3 orbs animés + grid + noise
   ========================================================================== */
.caw-wiz {
	position: relative;
	background:
		radial-gradient(ellipse 45% 50% at 18% 25%, rgba(0,229,255,0.15) 0%, transparent 65%),
		radial-gradient(ellipse 45% 55% at 82% 75%, rgba(27,108,242,0.20) 0%, transparent 65%),
		radial-gradient(ellipse 60% 40% at 50% 110%, rgba(123,47,247,0.10) 0%, transparent 70%),
		linear-gradient(180deg, #0A0F1E 0%, #0D1A36 50%, #0A0F1E 100%);
	color: #fff;
	border-radius: 28px;
	padding: clamp(40px, 5vw, 72px);
	overflow: hidden;
	isolation: isolate;
	box-shadow:
		0 32px 80px -24px rgba(10,15,30,0.40),
		0 0 100px -30px var(--wiz-tint);
	margin-block: 24px;
}

.caw-wiz::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0,229,255,0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,229,255,0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 90%);
	-webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 90%);
	pointer-events: none;
	z-index: 1;
	animation: caw-grid-drift 80s linear infinite;
}
@keyframes caw-grid-drift {
	from { background-position: 0 0, 0 0; }
	to   { background-position: 64px 64px, 64px 64px; }
}

.caw-wiz .cta-glow {
	position: absolute;
	width: 380px;
	height: 380px;
	top: -120px;
	left: -120px;
	background: radial-gradient(circle, var(--wiz-glow) 0%, transparent 65%);
	filter: blur(80px);
	opacity: 0.18;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	animation: caw-orb-drift-1 60s ease-in-out infinite;
}
.caw-wiz::after {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	bottom: -100px;
	right: -100px;
	background: radial-gradient(circle, var(--wiz-accent) 0%, transparent 65%);
	filter: blur(80px);
	opacity: 0.14;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	animation: caw-orb-drift-2 70s ease-in-out infinite;
}
@keyframes caw-orb-drift-1 {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(60px, 40px); }
}
@keyframes caw-orb-drift-2 {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(-50px, -30px); }
}

.caw-wiz .cta-inner {
	position: relative;
	z-index: 5;
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}
.caw-wiz .cta-inner > * {
	text-align: left;
}
.caw-wiz .cta-inner > .cta-eyebrow,
.caw-wiz .cta-inner > h2,
.caw-wiz .cta-inner > .s-desc,
.caw-wiz .cta-inner > .cta-note {
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	.caw-wiz::before,
	.caw-wiz::after,
	.caw-wiz .cta-glow {
		animation: none !important;
	}
}

/* ==========================================================================
   §3 HEADER — eyebrow badge + title gradient + subtitle
   ========================================================================== */
.caw-wiz .cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(0,229,255,0.10);
	border: 1px solid rgba(0,229,255,0.25);
	border-radius: 999px;
	color: var(--wiz-glow);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 20px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
/* Eyebrow palette unifiée bleu/cyan pour cyber/ia */
.caw-wiz[data-variant="cyber"] .cta-eyebrow,
.caw-wiz[data-variant="ia"] .cta-eyebrow {
	background: rgba(0,229,255,0.10);
	border-color: rgba(0,229,255,0.25);
	color: var(--wiz-glow);
}
@keyframes caw-pulse-eyebrow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255,59,48,0.40); }
	50%      { box-shadow: 0 0 0 6px rgba(255,59,48,0); }
}

.caw-wiz h2 {
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	font-weight: 700;
	margin: 0 0 20px;
	color: #fff;
}
.caw-wiz h2 i,
.caw-wiz h2 em,
.caw-wiz h2 strong {
	background: var(--wiz-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-style: normal;
	font-weight: inherit;
}

.caw-wiz .s-desc {
	font-size: clamp(1rem, 1.3vw, 1.18rem);
	line-height: 1.6;
	color: rgba(255,255,255,0.78);
	max-width: 60ch;
	margin: 0 auto 36px;
}

.caw-wiz .cta-note {
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	margin: 24px 0 0;
	letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
	.caw-wiz[data-variant="cyber"] .cta-eyebrow {
		animation: none;
	}
}

/* ==========================================================================
   §4 STEPPER PROGRESS — pills + connectors + dot pulse + check anim
   ========================================================================== */
.caw-wiz .wiz-tabs {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	margin: 0 auto 32px;
	max-width: 560px;
	position: relative;
	counter-reset: wt-counter;
}

.caw-wiz .wt {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	color: rgba(255,255,255,0.50);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	cursor: default;
}

.caw-wiz .wt::before {
	content: counter(wt-counter);
	counter-increment: wt-counter;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid rgba(255,255,255,0.18);
	color: rgba(255,255,255,0.55);
	font-size: 15px;
	font-weight: 700;
	transition: all 400ms var(--wiz-easing);
	position: relative;
	z-index: 2;
}

.caw-wiz .wt:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 22px;
	left: calc(50% + 22px);
	right: calc(-50% + 22px);
	height: 2px;
	background: rgba(255,255,255,0.10);
	z-index: 1;
}

.caw-wiz .wt.active::before {
	background: var(--wiz-grad);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 0 0 0 var(--wiz-glow);
	animation: caw-dot-pulse 1.6s ease-out infinite;
}
.caw-wiz .wt.active {
	color: var(--wiz-glow);
}
@keyframes caw-dot-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(0,229,255,0.50); }
	100% { box-shadow: 0 0 0 12px rgba(0,229,255,0); }
}

/* Pills "done" — classe ajoutée par wizard.js */
.caw-wiz .wt.done::before {
	background: var(--wiz-grad);
	border-color: transparent;
	color: #fff;
	content: '✓';
	font-size: 18px;
}
.caw-wiz .wt.done {
	color: var(--wiz-glow);
}
.caw-wiz .wt.done::after {
	background: var(--wiz-grad);
	transition: background 400ms var(--wiz-easing);
}

/* Strip the "1. " "2. " prefix from labels using ::before content */
.caw-wiz .wt {
	text-indent: -999em;
	position: relative;
}
.caw-wiz .wt::before {
	text-indent: 0;
}

@media (max-width: 480px) {
	.caw-wiz .wt:not(.active) {
		font-size: 0;
	}
	.caw-wiz .wt::before {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}
	.caw-wiz .wt:not(:last-child)::after {
		top: 16px;
		left: calc(50% + 16px);
		right: calc(-50% + 16px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.caw-wiz .wt.active::before {
		animation: none;
	}
}

/* ==========================================================================
   §5 OPTIONS CARDS — glassmorphism + hover + selected (.wgrid/.wc)
   ========================================================================== */
.caw-wiz .wq {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	text-align: center;
}
.caw-wiz .wsub {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.65);
	text-align: center;
	margin: 0 0 28px;
}

.caw-wiz .wgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-bottom: 32px;
}

.caw-wiz .wc {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px 22px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(0,229,255,0.10);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 16px;
	color: #fff;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: transform 350ms var(--wiz-easing), border-color 350ms, box-shadow 350ms, background 200ms;
	position: relative;
}
.caw-wiz .wc:hover {
	transform: translateY(-4px);
	border-color: rgba(0,229,255,0.40);
	box-shadow: 0 16px 40px -16px rgba(0,229,255,0.30);
}
.caw-wiz .wc:focus-visible {
	outline: 2px solid var(--wiz-glow);
	outline-offset: 2px;
}
.caw-wiz .wc.on,
.caw-wiz .wc.selected,
.caw-wiz .wc[aria-pressed="true"],
.caw-wiz .wc.is-selected {
	border-color: var(--wiz-glow);
	background: rgba(0,229,255,0.10);
	box-shadow: 0 0 0 2px var(--wiz-glow), 0 16px 40px -16px var(--wiz-tint-strong);
	transform: translateY(-2px);
}
.caw-wiz .wc.on::after,
.caw-wiz .wc.selected::after,
.caw-wiz .wc[aria-pressed="true"]::after,
.caw-wiz .wc.is-selected::after {
	content: '✓';
	position: absolute;
	top: 12px;
	right: 12px;
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--wiz-grad);
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 4px 12px var(--wiz-tint-strong);
	animation: caw-check-pop 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.caw-wiz .wc.on .wc-ico {
	transform: scale(1.05);
	box-shadow: 0 10px 24px var(--wiz-tint-strong);
}
@keyframes caw-check-pop {
	from { transform: scale(0); }
	to   { transform: scale(1); }
}

.caw-wiz .wc-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--wiz-grad);
	border-radius: 12px;
	font-size: 22px;
	flex-shrink: 0;
	box-shadow: 0 6px 18px var(--wiz-tint);
	color: #fff;
	transition: transform 300ms var(--wiz-easing), box-shadow 300ms var(--wiz-easing);
}
.caw-wiz .wc-ico .iconify,
.caw-wiz .wc-ico svg {
	width: 24px;
	height: 24px;
	color: #fff;
	font-size: 24px;
}
.caw-wiz .wc > span:not(.wc-ico) {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}
.caw-wiz .wc-lbl {
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.caw-wiz .wc-sub {
	font-size: 0.825rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.4;
}

/* Budget options (Step 3) — layout liste pleine largeur */
.caw-wiz .wbudget {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}
.caw-wiz .wb {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(0,229,255,0.10);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 14px;
	color: #fff;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: transform 350ms var(--wiz-easing), border-color 350ms, box-shadow 350ms;
}
.caw-wiz .wb:hover {
	transform: translateX(4px);
	border-color: rgba(0,229,255,0.40);
	box-shadow: 0 12px 32px -16px rgba(0,229,255,0.30);
}
.caw-wiz .wb:focus-visible {
	outline: 2px solid var(--wiz-glow);
	outline-offset: 2px;
}
.caw-wiz .wb.on,
.caw-wiz .wb.selected,
.caw-wiz .wb[aria-pressed="true"] {
	border-color: var(--wiz-glow);
	background: rgba(0,229,255,0.10);
	box-shadow: 0 0 0 2px var(--wiz-glow), 0 12px 32px -16px var(--wiz-tint-strong);
	transform: translateX(4px);
}
.caw-wiz .wb.on::before {
	content: '✓';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: var(--wiz-grad);
	color: #fff;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 4px 12px var(--wiz-tint-strong);
	animation: caw-check-pop 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.caw-wiz .wb.on .wb-arr {
	color: var(--wiz-glow);
	transform: translateX(6px);
}
.caw-wiz .wb-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}
.caw-wiz .wb-lbl {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}
.caw-wiz .wb-sub {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.65);
}
.caw-wiz .wb-arr {
	font-size: 1.5rem;
	color: var(--wiz-glow);
	transition: transform 300ms var(--wiz-easing);
}
.caw-wiz .wb:hover .wb-arr {
	transform: translateX(6px);
}

/* ==========================================================================
   §6 FORM FIELDS — winput + recap
   ========================================================================== */
.caw-wiz .winput {
	display: block;
	width: 100%;
	padding: 16px 18px;
	font-size: 16px;
	font-family: inherit;
	color: #fff;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	margin-bottom: 12px;
	min-height: 52px;
	transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.caw-wiz .winput::placeholder {
	color: rgba(255,255,255,0.40);
}
.caw-wiz .winput:focus {
	outline: none;
	border-color: var(--wiz-glow);
	background: rgba(0,229,255,0.05);
	box-shadow: 0 0 0 4px rgba(0,229,255,0.18);
}
.caw-wiz textarea.winput {
	min-height: 120px;
	resize: vertical;
}

.caw-wiz .winput.is-error {
	border-color: #FF3B30;
}
.caw-wiz .winput.is-error:focus {
	box-shadow: 0 0 0 4px rgba(255,59,48,0.18);
}

.caw-wiz .wrecap {
	background: linear-gradient(145deg, rgba(0,229,255,0.06), rgba(27,108,242,0.03));
	border: 1px solid rgba(0,229,255,0.18);
	border-radius: 14px;
	padding: 16px 18px;
	margin-bottom: 20px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.caw-wiz .wrecap-lbl {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wiz-glow);
	margin-bottom: 8px;
}
.caw-wiz .wrecap-txt {
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255,255,255,0.78);
}

.caw-wiz .caw-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

/* ==========================================================================
   §7 BUTTONS — wnav + wback (ghost) + wnext (primary gradient)
   ========================================================================== */
.caw-wiz .wnav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.caw-wiz .wstep-ind {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}

.caw-wiz .wback {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 22px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 14px;
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
	font-family: inherit;
	cursor: pointer;
	min-height: 48px;
	transition: border-color 200ms ease, background 200ms ease;
}
.caw-wiz .wback:hover {
	border-color: rgba(0,229,255,0.40);
	background: rgba(0,229,255,0.05);
}
.caw-wiz .wback:focus-visible {
	outline: 2px solid var(--wiz-glow);
	outline-offset: 2px;
}

.caw-wiz .wnext {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--wiz-grad);
	border: none;
	border-radius: 14px;
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	font-family: inherit;
	cursor: pointer;
	min-height: 52px;
	box-shadow: 0 12px 32px var(--wiz-tint);
	transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}
.caw-wiz .wnext:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 50px var(--wiz-tint-strong);
	filter: brightness(1.05);
}
.caw-wiz .wnext:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}
.caw-wiz .wnext:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.caw-wiz .wnext.is-loading {
	pointer-events: none;
	opacity: 0.7;
}
.caw-wiz .wnext.is-loading::before {
	content: '';
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.30);
	border-top-color: #fff;
	border-radius: 50%;
	animation: caw-spin 1s linear infinite;
}
@keyframes caw-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
	.caw-wiz .wnav {
		flex-direction: column-reverse;
		align-items: stretch;
	}
	.caw-wiz .wback,
	.caw-wiz .wnext {
		width: 100%;
		justify-content: center;
	}
	.caw-wiz .wstep-ind {
		text-align: center;
		order: -1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.caw-wiz .wnext.is-loading::before {
		animation-duration: 2s;
	}
}

/* ==========================================================================
   §8 SUCCESS STATE + TRANSITIONS INTER-ÉTAPES
   ========================================================================== */
.caw-wiz .wstep {
	display: none;
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 350ms var(--wiz-easing), transform 350ms var(--wiz-easing);
}
.caw-wiz .wstep.on {
	display: block;
	opacity: 1;
	transform: translateX(0);
	animation: caw-step-enter 350ms var(--wiz-easing);
}
@keyframes caw-step-enter {
	from { opacity: 0; transform: translateX(20px); }
	to   { opacity: 1; transform: translateX(0); }
}

.caw-wiz .wsuccess {
	text-align: center;
	padding: 32px 16px;
	max-width: 480px;
	margin-inline: auto;
	position: relative;
}
.caw-wiz .wsuccess-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: var(--wiz-grad);
	color: #fff;
	font-size: 40px;
	margin-bottom: 24px;
	box-shadow:
		0 0 0 8px rgba(0,229,255,0.10),
		0 0 0 16px rgba(0,229,255,0.05),
		0 16px 40px -8px var(--wiz-tint-strong);
	animation: caw-success-pop 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes caw-success-pop {
	0%   { transform: scale(0); }
	60%  { transform: scale(1.15); }
	100% { transform: scale(1); }
}

.caw-wiz .wsuccess h3 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 16px;
}
.caw-wiz .wsuccess h3 strong {
	background: var(--wiz-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.caw-wiz .wsuccess p {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255,255,255,0.78);
	margin: 0 auto;
	max-width: 56ch;
}
.caw-wiz .wsuccess p strong {
	color: var(--wiz-glow);
	font-weight: 700;
}

/* Confetti subtle CSS only */
.caw-wiz[data-success="true"] .wsuccess::before,
.caw-wiz[data-success="true"] .wsuccess::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	pointer-events: none;
	animation: caw-confetti 1.2s ease-out forwards;
}
.caw-wiz[data-success="true"] .wsuccess::before {
	background: var(--wiz-glow);
	top: 0;
	left: 20%;
	animation-delay: 100ms;
}
.caw-wiz[data-success="true"] .wsuccess::after {
	background: var(--wiz-accent);
	top: 0;
	right: 20%;
	animation-delay: 200ms;
}
@keyframes caw-confetti {
	0%   { opacity: 0; transform: translateY(0); }
	20%  { opacity: 1; }
	100% { opacity: 0; transform: translateY(-40px); }
}

@media (prefers-reduced-motion: reduce) {
	.caw-wiz .wstep.on,
	.caw-wiz .wsuccess-ico,
	.caw-wiz[data-success="true"] .wsuccess::before,
	.caw-wiz[data-success="true"] .wsuccess::after {
		animation: none !important;
	}
	.caw-wiz .wstep {
		transition: opacity 200ms ease;
		transform: none;
	}
}

/* ==========================================================================
   §9 RESPONSIVE — viewports 320 → 2560+
   ========================================================================== */
@media (max-width: 767px) {
	.caw-wiz {
		padding: clamp(24px, 5vw, 32px);
		border-radius: 20px;
		margin-block: 16px;
	}
	.caw-wiz .cta-glow {
		width: 240px;
		height: 240px;
	}
	.caw-wiz .wgrid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.caw-wiz .wq {
		font-size: 1.15rem;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.caw-wiz {
		padding: clamp(32px, 5vw, 48px);
	}
	.caw-wiz .wgrid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.caw-wiz {
		max-width: 960px;
		margin-inline: auto;
	}
}

@media (max-width: 767px) {
	.caw-wiz .wc,
	.caw-wiz .wb,
	.caw-wiz .wback,
	.caw-wiz .wnext {
		min-height: 48px;
	}
	.caw-wiz .winput {
		min-height: 52px;
	}
}
