.pm-lead-wizard {
	--pm-surface: #ffffff;
	--pm-surface-strong: #ffffff;
	--pm-card: #ffffff;
	--pm-card-border: rgba(15, 23, 42, 0.08);
	--pm-text: #111827;
	--pm-muted: #667085;
	--pm-accent: #00CCC2;
	--pm-accent-2: #00CCC2;
	--pm-button-primary: #cf3270;
	--pm-button-primary-hover: #b82b63;
	--pm-button-secondary-bg: #ffffff;
	--pm-button-secondary-text: #111827;
	--pm-button-secondary-border: #d0d5dd;
	--pm-eyebrow-bg: #f8f8f8;
	--pm-card-hover-bg: #f8f8f8;
	--pm-card-selected-bg-start: #f8f8f8;
	--pm-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
	color: var(--pm-text);
	font-family: inherit;
	width: 100%;
	max-width: 1024px;
	min-width: 0;
	margin: 0;
}

.pm-lead-wizard * {
	box-sizing: border-box;
}

.pm-lead-wizard,
.pm-lead-wizard button,
.pm-lead-wizard a {
	font-family: inherit;
}

.pm-lead-wizard__shell {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 34px 34px 26px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 34px;
	background: #ffffff;
	box-shadow: var(--pm-shadow);
}

.pm-lead-wizard__layout {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0;
}

.pm-lead-wizard__hero,
.pm-lead-wizard__main,
.pm-lead-wizard__progress,
.pm-lead-wizard__footer {
	position: relative;
	z-index: 1;
}

.pm-lead-wizard__main {
	min-width: 0;
}

.pm-lead-wizard__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	margin: 0 0 16px;
	border-radius: 999px;
	background: var(--pm-eyebrow-bg);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pm-accent-2);
}

.pm-lead-wizard__title {
	margin: 0;
	font-size: clamp(2rem, 3.2vw, 3rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
	max-width: 12ch;
}

.pm-lead-wizard__subtitle {
	max-width: 46ch;
	margin: 14px 0 0;
	font-size: 1.08rem;
	line-height: 1.55;
	color: var(--pm-muted);
}

.pm-lead-wizard__progress {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 28px 0 20px;
}

.pm-lead-wizard__progress-bar {
	flex: 1 1 auto;
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(180deg, #eef2f7 0%, #e8edf5 100%);
	overflow: hidden;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.pm-lead-wizard__progress-fill {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--pm-accent) 0%, color-mix(in srgb, var(--pm-accent) 72%, white 28%) 100%);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 6px 18px color-mix(in srgb, var(--pm-accent) 24%, transparent 76%);
	transition: width 180ms ease;
}

.pm-lead-wizard__progress-text {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	color: color-mix(in srgb, var(--pm-accent) 45%, #1f2937 55%);
}

.pm-lead-wizard__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	min-width: 0;
	padding: 14px 0 0;
	border: 0;
	border-radius: 0;
	background: var(--pm-card);
}

.pm-lead-wizard__path {
	margin: 0 0 8px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #98a2b3;
}

.pm-lead-wizard__question,
.pm-lead-wizard__summary-title {
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 3vw, 2.55rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.pm-lead-wizard__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	width: 100%;
	min-width: 0;
}

.pm-lead-wizard__card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px 18px;
	width: 100%;
	min-width: 0;
	min-height: 112px;
	padding: 24px 26px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 24px;
	background: #ffffff;
	color: inherit;
	text-align: left;
	white-space: normal;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	overflow: hidden;
	will-change: transform;
	transition:
		transform 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		background-color 180ms ease,
		color 180ms ease;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.pm-lead-wizard__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 52%),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 42%);
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 220ms ease,
		transform 220ms ease;
	pointer-events: none;
	z-index: 0;
}

.pm-lead-wizard__card::after {
	content: "\203A";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-left: 6px;
	border-radius: 999px;
	color: #c0c7d4;
	font-size: 2rem;
	line-height: 1;
	transform: translateX(0);
	transition:
		transform 180ms ease,
		color 180ms ease,
		background-color 180ms ease;
	z-index: 2;
}

.pm-lead-wizard__card:hover,
.pm-lead-wizard__card:focus-visible {
	transform: translateY(-3px);
	background: #f3f4f6;
	border-color: color-mix(in srgb, var(--pm-accent) 55%, white 45%);
	box-shadow: 0 20px 42px color-mix(in srgb, var(--pm-accent) 12%, rgba(15, 23, 42, 0.1) 88%);
	color: var(--pm-text);
	outline: none;
}

.pm-lead-wizard__card:active {
	transform: translateY(1px) scale(0.992);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pm-lead-wizard__card.is-selected {
	border-color: var(--pm-accent);
	background: linear-gradient(180deg, var(--pm-card-selected-bg-start) 0%, #ffffff 100%);
	box-shadow: 0 22px 44px color-mix(in srgb, var(--pm-accent) 16%, rgba(15, 23, 42, 0.1) 84%);
	color: var(--pm-text);
}

.pm-lead-wizard__card.is-selected::before,
.pm-lead-wizard__card:hover::before,
.pm-lead-wizard__card:focus-visible::before {
	opacity: 0.55;
	transform: translateY(0);
}

.pm-lead-wizard__card.is-selected::after,
.pm-lead-wizard__card:hover::after,
.pm-lead-wizard__card:focus-visible::after {
	color: var(--pm-accent);
	transform: translateX(4px);
}

.pm-lead-wizard__card-label {
	grid-column: 1;
	position: relative;
	z-index: 1;
	min-width: 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--pm-accent);
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: normal;
	text-wrap: pretty;
}

.pm-lead-wizard__card-description {
	grid-column: 1;
	position: relative;
	z-index: 1;
	min-width: 0;
	font-size: 0.98rem;
	line-height: 1.45;
	color: var(--pm-muted);
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: normal;
	text-wrap: pretty;
}

.pm-lead-wizard__card:hover .pm-lead-wizard__card-label,
.pm-lead-wizard__card:focus-visible .pm-lead-wizard__card-label,
.pm-lead-wizard__card.is-selected .pm-lead-wizard__card-label {
	color: var(--pm-accent);
}

.pm-lead-wizard__card:hover .pm-lead-wizard__card-description,
.pm-lead-wizard__card:focus-visible .pm-lead-wizard__card-description,
.pm-lead-wizard__card.is-selected .pm-lead-wizard__card-description {
	color: #475467;
}

.pm-lead-wizard__next-step {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px;
	margin: 18px 0 20px;
	border: 1px solid rgba(255, 106, 0, 0.14);
	border-radius: 20px;
	background: #fff8f2;
	font-size: 1rem;
	line-height: 1.5;
}

.pm-lead-wizard__summary-text {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--pm-muted);
}

.pm-lead-wizard__summary-text p {
	margin: 0;
}

.pm-lead-wizard__summary-text.is-loading {
	display: grid;
	gap: 12px;
	color: #667085;
	font-style: italic;
}

.pm-lead-wizard__loading {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pm-lead-wizard__loading-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pm-accent) 78%, white 22%);
	opacity: 0.35;
	animation: pmLeadWizardLoadingPulse 1.2s ease-in-out infinite;
}

.pm-lead-wizard__loading-dot:nth-child(2) {
	animation-delay: 0.15s;
}

.pm-lead-wizard__loading-dot:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes pmLeadWizardLoadingPulse {
	0%,
	80%,
	100% {
		transform: scale(0.82);
		opacity: 0.32;
	}

	40% {
		transform: scale(1);
		opacity: 1;
	}
}

.pm-lead-wizard__summary-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 24px 0 0;
	list-style: none;
}

.pm-lead-wizard__summary-item {
	display: grid;
	gap: 4px;
	padding: 16px 18px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.pm-lead-wizard__summary-label {
	font-size: 0.88rem;
	font-weight: 700;
	color: #667085;
}

.pm-lead-wizard__summary-value {
	font-size: 1rem;
}

.pm-lead-wizard__cta-row,
.pm-lead-wizard__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pm-lead-wizard__cta-row {
	margin-top: 24px;
}

.pm-lead-wizard__footer {
	justify-content: space-between;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.pm-lead-wizard__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	cursor: pointer;
	transition:
		transform 180ms ease,
		background 180ms ease,
		border-color 180ms ease;
}

.pm-lead-wizard a.pm-lead-wizard__button,
.pm-lead-wizard button.pm-lead-wizard__button {
	text-decoration: none !important;
	box-shadow: none;
}

.pm-lead-wizard__button:hover,
.pm-lead-wizard__button:focus-visible {
	transform: translateY(-1px);
	outline: none;
}

.pm-lead-wizard__button--primary {
	background: var(--pm-button-primary) !important;
	border-color: var(--pm-button-primary) !important;
	color: #ffffff !important;
}

.pm-lead-wizard__button--secondary-link,
.pm-lead-wizard__button--secondary {
	background: var(--pm-button-secondary-bg) !important;
	border-color: var(--pm-button-secondary-border) !important;
	color: var(--pm-button-secondary-text) !important;
}

.pm-lead-wizard__button--primary:hover,
.pm-lead-wizard__button--primary:focus-visible {
	background: var(--pm-button-primary-hover) !important;
	border-color: var(--pm-button-primary-hover) !important;
	color: #ffffff !important;
}

.pm-lead-wizard__button--ghost {
	background: transparent !important;
	border-color: var(--pm-button-secondary-border) !important;
	color: var(--pm-button-secondary-text) !important;
}

.pm-lead-wizard__button--secondary-link:hover,
.pm-lead-wizard__button--secondary-link:focus-visible,
.pm-lead-wizard__button--secondary:hover,
.pm-lead-wizard__button--secondary:focus-visible,
.pm-lead-wizard__button--ghost:hover,
.pm-lead-wizard__button--ghost:focus-visible {
	background: var(--pm-button-secondary-bg) !important;
	border-color: var(--pm-button-secondary-border) !important;
	color: var(--pm-button-secondary-text) !important;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__shell {
	padding: 30px;
	border-radius: 30px;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__layout {
	grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.42fr);
	align-items: start;
	gap: 32px;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__hero {
	position: sticky;
	top: 0;
	padding: 6px 6px 0 0;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__title {
	font-size: clamp(1.8rem, 2.4vw, 2.7rem);
	max-width: 11ch;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__subtitle {
	max-width: 32ch;
	font-size: 1rem;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__progress {
	margin-top: 0;
	gap: 16px;
	margin-bottom: 24px;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__question,
.pm-lead-wizard--layout-split .pm-lead-wizard__summary-title {
	font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.pm-lead-wizard--layout-split .pm-lead-wizard__card {
	min-height: 92px;
	padding: 18px 20px;
	border-radius: 20px;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__card-label {
	font-size: 1rem;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__card::after {
	color: color-mix(in srgb, var(--pm-accent) 26%, #94a3b8 74%);
}

.pm-lead-wizard--layout-split .pm-lead-wizard__card:hover,
.pm-lead-wizard--layout-split .pm-lead-wizard__card:focus-visible {
	background: #f3f4f6;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__card.is-selected {
	background: linear-gradient(180deg, var(--pm-card-selected-bg-start) 0%, #ffffff 100%);
}

.pm-lead-wizard--layout-split .pm-lead-wizard__card:hover .pm-lead-wizard__card-label,
.pm-lead-wizard--layout-split .pm-lead-wizard__card:focus-visible .pm-lead-wizard__card-label,
.pm-lead-wizard--layout-split .pm-lead-wizard__card.is-selected .pm-lead-wizard__card-label {
	color: var(--pm-accent);
}

.pm-lead-wizard--layout-split .pm-lead-wizard__card-description,
.pm-lead-wizard--layout-split .pm-lead-wizard__summary-text,
.pm-lead-wizard--layout-split .pm-lead-wizard__summary-value,
.pm-lead-wizard--layout-split .pm-lead-wizard__next-step {
	font-size: 0.95rem;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__summary-list {
	margin-top: 18px;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__summary-item {
	padding: 14px 16px;
}

.pm-lead-wizard--layout-split .pm-lead-wizard__footer {
	margin-top: 14px;
	padding-top: 14px;
}

@media (max-width: 980px) {
	.pm-lead-wizard--layout-split .pm-lead-wizard__layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.pm-lead-wizard--layout-split .pm-lead-wizard__hero {
		position: static;
		padding-right: 0;
	}

	.pm-lead-wizard--layout-split .pm-lead-wizard__subtitle {
		max-width: 46ch;
	}
}

@media (max-width: 720px) {
	.pm-lead-wizard {
		width: 100%;
	}

	.pm-lead-wizard__shell {
		padding: 20px;
		border-radius: 26px;
	}

	.pm-lead-wizard__panel {
		padding-top: 10px;
	}

	.pm-lead-wizard__progress {
		align-items: flex-start;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.pm-lead-wizard__card {
		min-height: 118px;
		padding: 18px 18px 18px 20px;
	}

	.pm-lead-wizard__card::after {
		align-self: center;
	}

	.pm-lead-wizard__button,
	.pm-lead-wizard__cta-row a {
		width: 100%;
	}

	.pm-lead-wizard__footer {
		justify-content: stretch;
	}

	.pm-lead-wizard--layout-split .pm-lead-wizard__shell {
		padding: 20px;
		border-radius: 26px;
	}
}
