.ppf-funnel,
.ppf-funnel * {
	box-sizing: border-box;
}

.ppf-funnel {
	--ppf-primary-color: #1f5f4a;
	--ppf-primary-hover-color: #174838;
	--ppf-accent-color: #d9aa55;
	--ppf-text-color: #1f2933;
	--ppf-muted-color: #667085;
	--ppf-background-color: #fff;
	--ppf-card-background: #fff;
	--ppf-border-color: #d0d5dd;
	--ppf-error-color: #b42318;
	--ppf-success-color: #067647;
	--ppf-border-radius: 16px;
	--ppf-button-radius: 12px;
	--ppf-card-radius: 14px;
	--ppf-content-width: 760px;
	--ppf-font-family: inherit;
	--ppf-heading-font-family: inherit;
	--ppf-shadow: 0 12px 36px rgba(16, 24, 40, .1);
	width: 100%;
	max-width: var(--ppf-content-width);
	margin-inline: auto;
	/* WordPress global styles match the --ppf-border-color custom property as if
	 * it were an inline border-color declaration and otherwise add a border. */
	border: 0 !important;
	font-family: var(--ppf-font-family) !important;
	font-synthesis: none;
	color: var(--ppf-text-color);
}

.ppf-funnel button,
.ppf-funnel input,
.ppf-funnel textarea,
.ppf-funnel select {
	font: inherit;
}

.ppf-funnel__surface {
	position: relative;
	padding: clamp(22px, 5vw, 52px);
	border: 1px solid color-mix(in srgb, var(--ppf-border-color), transparent 12%);
	border-radius: var(--ppf-border-radius);
	background: var(--ppf-background-color);
	box-shadow: var(--ppf-shadow);
	isolation: isolate;
	overflow: hidden;
}

.ppf-funnel__surface::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--ppf-primary-color), var(--ppf-accent-color));
	z-index: -1;
}

.ppf-progress {
	margin-bottom: clamp(26px, 5vw, 42px);
}

.ppf-progress__meta {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 8px;
	font-size: clamp(var(--ppf-step-description-size-mobile), 2vw, var(--ppf-step-description-size-desktop));
	font-weight: 650;
	color: var(--ppf-muted-color);
}

.ppf-progress__track {
	height: 6px;
	border-radius: 99px;
	background: color-mix(in srgb, var(--ppf-border-color), transparent 38%);
	overflow: hidden;
}

.ppf-progress__bar {
	display: block;
	height: 100%;
	width: 4%;
	border-radius: inherit;
	background: var(--ppf-primary-color);
	transition: width .3s ease;
}

.ppf-step {
	animation: ppf-step-in .25s ease both;
}

.ppf-start {
	animation: ppf-step-in .25s ease both;
}

.ppf-funnel .ppf-start__title {
	margin: 0;
	font-family: var(--ppf-heading-font-family) !important;
	font-size: clamp(var(--ppf-step-title-size-mobile), 4vw, var(--ppf-step-title-size-desktop));
	font-weight: 700 !important;
	line-height: 1.15;
	letter-spacing: -.025em;
	color: var(--ppf-text-color);
	text-align: center;
}

.ppf-start__title:focus {
	outline: none;
}

.ppf-start__description {
	max-width: 58ch;
	margin: 8px 0 0;
	font-size: clamp(var(--ppf-step-description-size-mobile), 2vw, var(--ppf-step-description-size-desktop));
	line-height: 1.6;
	color: var(--ppf-muted-color);
}

.ppf-start__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: clamp(24px, 4vw, 36px);
}

.ppf-start-card {
	display: grid;
	justify-items: center;
	gap: 10px;
	min-width: 0;
	padding: clamp(22px, 3vw, 32px);
	border: 1px solid var(--ppf-border-color);
	border-radius: var(--ppf-card-radius);
	background: var(--ppf-card-background);
	color: var(--ppf-text-color);
	text-align: center;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.ppf-start-card:hover {
	border-color: color-mix(in srgb, var(--ppf-primary-color), var(--ppf-border-color) 35%);
	box-shadow: 0 8px 22px color-mix(in srgb, var(--ppf-primary-color), transparent 88%);
	transform: translateY(-2px);
}

.ppf-start-card:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--ppf-primary-color), transparent 72%);
	outline-offset: 2px;
}

.ppf-start-card__icon {
	width: clamp(62px, 8vw, 76px);
	height: clamp(62px, 8vw, 76px);
	margin-bottom: 4px;
	background-color: var(--ppf-primary-color);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	opacity: .8;
}

.ppf-start-card__icon--online {
	mask-image: url("property-icons/start/online-bewertung.svg");
	-webkit-mask-image: url("property-icons/start/online-bewertung.svg");
}

.ppf-start-card__icon--personal {
	mask-image: url("property-icons/start/persoenliche-bewertung.svg");
	-webkit-mask-image: url("property-icons/start/persoenliche-bewertung.svg");
}

.ppf-funnel .ppf-start-card__title {
	font-family: var(--ppf-heading-font-family) !important;
	font-size: clamp(var(--ppf-choice-label-size-mobile), 2vw, calc(var(--ppf-choice-label-size-desktop) + 4px));
	font-weight: 700 !important;
	line-height: 1.3;
	color: var(--ppf-primary-color);
}

.ppf-start-card__description {
	font-size: clamp(var(--ppf-choice-description-size-mobile), 1.7vw, calc(var(--ppf-choice-description-size-desktop) + 1px));
	line-height: 1.55;
	color: var(--ppf-primary-color);
	opacity: .8;
}

.ppf-start__benefits {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 40px;
	margin: clamp(22px, 4vw, 32px) 0 0;
	padding: 0;
	list-style: none;
}

.ppf-start__benefit {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--ppf-heading-font-family) !important;
	font-size: clamp(var(--ppf-step-description-size-mobile), 2vw, var(--ppf-step-description-size-desktop));
	font-weight: 700 !important;
	color: var(--ppf-text-color);
}

.ppf-start__check {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	background-color: var(--ppf-accent-color);
	mask: url("property-icons/start/check.svg") center / contain no-repeat;
	-webkit-mask: url("property-icons/start/check.svg") center / contain no-repeat;
}

.ppf-start__check.ppf-choice__icon--inline {
	color: var(--ppf-accent-color);
}

.ppf-step__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.ppf-funnel .ppf-step__title,
.ppf-funnel .ppf-completion__title {
	margin: 0;
	font-family: var(--ppf-heading-font-family) !important;
	font-weight: 700 !important;
	font-synthesis: none;
	font-size: clamp(var(--ppf-step-title-size-mobile), 4vw, var(--ppf-step-title-size-desktop));
	line-height: 1.15;
	letter-spacing: -.025em;
	color: var(--ppf-text-color);
}

.ppf-step__title:focus,
.ppf-completion__title:focus {
	outline: none;
}

.ppf-step__required {
	flex: 0 0 auto;
	padding: 5px 9px;
	border-radius: 99px;
	background: color-mix(in srgb, var(--ppf-primary-color), transparent 90%);
	font-size: clamp(var(--ppf-choice-description-size-mobile), 1.4vw, var(--ppf-choice-description-size-desktop));
	font-weight: 700;
	color: var(--ppf-primary-color);
	text-transform: none;
	letter-spacing: .04em;
}

.ppf-step__description {
	max-width: 62ch;
	margin-top: 8px;
	font-size: clamp(var(--ppf-step-description-size-mobile), 2vw, var(--ppf-step-description-size-desktop));
	line-height: 1.65;
	color: var(--ppf-muted-color);
}

.ppf-step__description > :first-child,
.ppf-choice__description > :first-child,
.ppf-consent__text > :first-child {
	margin-top: 0;
}

.ppf-step__description > :last-child,
.ppf-choice__description > :last-child,
.ppf-consent__text > :last-child {
	margin-bottom: 0;
}

.ppf-step__field {
	margin-top: clamp(24px, 5vw, 38px);
}

.ppf-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	align-items: stretch;
	gap: 12px;
}

.ppf-choice {
	position: relative;
	display: flex;
	height: 100%;
	box-sizing: border-box;
	min-width: 0;
	align-items: center;
	gap: 14px;
	min-height: 76px;
	padding: 16px 18px;
	border: 1px solid var(--ppf-border-color);
	border-radius: var(--ppf-card-radius);
	background: var(--ppf-card-background);
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.ppf-funnel[data-card-style="filled"] .ppf-choice {
	border-color: transparent;
	background: color-mix(in srgb, var(--ppf-primary-color), transparent 94%);
}

.ppf-funnel[data-card-style="minimal"] .ppf-choice {
	border-width: 0 0 1px;
	border-radius: 0;
	padding-inline: 4px;
}

.ppf-choice:hover {
	border-color: color-mix(in srgb, var(--ppf-primary-color), var(--ppf-border-color) 35%);
	transform: translateY(-1px);
}

.ppf-choice:focus-within {
	outline: 3px solid color-mix(in srgb, var(--ppf-primary-color), transparent 72%);
	outline-offset: 2px;
}

.ppf-choice:has(.ppf-choice__input:checked) {
	border-color: var(--ppf-primary-color);
	background: color-mix(in srgb, var(--ppf-primary-color), transparent 94%);
	box-shadow: 0 0 0 1px var(--ppf-primary-color);
}

.ppf-choice__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ppf-choice__content {
	display: grid;
	flex: 1 1 0;
	gap: 4px;
	min-width: 0;
	overflow-wrap: normal;
	font-family: var(--ppf-font-family) !important;
}

.ppf-choice__icon {
	flex: 0 0 clamp(42px, 6.6vw, 58px);
	width: clamp(42px, 6.6vw, 58px);
	height: clamp(42px, 6.6vw, 58px);
	display: grid;
	place-items: center;
	align-self: center;
	background-color: var(--ppf-primary-color);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
}

.ppf-choice__icon--inline {
	background: none;
	color: var(--ppf-primary-color);
	mask-image: none;
	-webkit-mask-image: none;
}

.ppf-choice__icon--inline svg {
	display: block;
	width: 100%;
	height: 100%;
}

.ppf-choice__icon--einfamilienhaus {
	mask-image: url("property-icons/einfamilienhaus.svg");
	-webkit-mask-image: url("property-icons/einfamilienhaus.svg");
}

.ppf-choice__icon--mehrfamilienhaus {
	mask-image: url("property-icons/mehrfamilienhaus.svg");
	-webkit-mask-image: url("property-icons/mehrfamilienhaus.svg");
}

.ppf-choice__icon--wohnung {
	mask-image: url("property-icons/wohnung.svg");
	-webkit-mask-image: url("property-icons/wohnung.svg");
}

.ppf-choice__icon--grundstueck {
	mask-image: url("property-icons/grundstueck.svg");
	-webkit-mask-image: url("property-icons/grundstueck.svg");
}

.ppf-choice__icon--q2-detached { mask-image: url("property-icons/question-2/freistehendes-einfamilienhaus.svg"); -webkit-mask-image: url("property-icons/question-2/freistehendes-einfamilienhaus.svg"); }
.ppf-choice__icon--q2-semi-detached { mask-image: url("property-icons/question-2/doppelhaushaelfte.svg"); -webkit-mask-image: url("property-icons/question-2/doppelhaushaelfte.svg"); }
.ppf-choice__icon--q2-mid-terrace { mask-image: url("property-icons/question-2/reihenmittelhaus.svg"); -webkit-mask-image: url("property-icons/question-2/reihenmittelhaus.svg"); }
.ppf-choice__icon--q2-end-terrace { mask-image: url("property-icons/question-2/reihenendhaus.svg"); -webkit-mask-image: url("property-icons/question-2/reihenendhaus.svg"); }
.ppf-choice__icon--q2-bungalow { mask-image: url("property-icons/question-2/bungalow.svg"); -webkit-mask-image: url("property-icons/question-2/bungalow.svg"); }
.ppf-choice__icon--q2-two-family { mask-image: url("property-icons/question-2/zweifamilienhaus.svg"); -webkit-mask-image: url("property-icons/question-2/zweifamilienhaus.svg"); }
.ppf-choice__icon--q2-multi-family { mask-image: url("property-icons/question-2/mehrfamilienhaus.svg"); -webkit-mask-image: url("property-icons/question-2/mehrfamilienhaus.svg"); }
.ppf-choice__icon--q2-mixed-use { mask-image: url("property-icons/question-2/wohn-und-geschaeftshaus.svg"); -webkit-mask-image: url("property-icons/question-2/wohn-und-geschaeftshaus.svg"); }
.ppf-choice__icon--q2-floor-apartment { mask-image: url("property-icons/question-2/etagenwohnung.svg"); -webkit-mask-image: url("property-icons/question-2/etagenwohnung.svg"); }
.ppf-choice__icon--q2-ground-floor { mask-image: url("property-icons/question-2/erdgeschosswohnung.svg"); -webkit-mask-image: url("property-icons/question-2/erdgeschosswohnung.svg"); }
.ppf-choice__icon--q2-attic { mask-image: url("property-icons/question-2/dachgeschosswohnung.svg"); -webkit-mask-image: url("property-icons/question-2/dachgeschosswohnung.svg"); }
.ppf-choice__icon--q2-maisonette { mask-image: url("property-icons/question-2/maisonette.svg"); -webkit-mask-image: url("property-icons/question-2/maisonette.svg"); }
.ppf-choice__icon--q2-penthouse { mask-image: url("property-icons/question-2/penthouse.svg"); -webkit-mask-image: url("property-icons/question-2/penthouse.svg"); }
.ppf-choice__icon--q2-building-plot { mask-image: url("property-icons/question-2/unbebautes-baugrundstueck.svg"); -webkit-mask-image: url("property-icons/question-2/unbebautes-baugrundstueck.svg"); }
.ppf-choice__icon--q2-built-plot { mask-image: url("property-icons/question-2/bebautes-grundstueck.svg"); -webkit-mask-image: url("property-icons/question-2/bebautes-grundstueck.svg"); }
.ppf-choice__icon--q2-demolition { mask-image: url("property-icons/question-2/abrissobjekt.svg"); -webkit-mask-image: url("property-icons/question-2/abrissobjekt.svg"); }
.ppf-choice__icon--q2-commercial { mask-image: url("property-icons/question-2/gewerbegrundstueck.svg"); -webkit-mask-image: url("property-icons/question-2/gewerbegrundstueck.svg"); }
.ppf-choice__icon--q2-agriculture { mask-image: url("property-icons/question-2/land-und-forstwirtschaft.svg"); -webkit-mask-image: url("property-icons/question-2/land-und-forstwirtschaft.svg"); }

.ppf-choice:has(.ppf-choice__icon) {
	min-height: 104px;
}

.ppf-funnel .ppf-choice__label {
	font-family: var(--ppf-heading-font-family) !important;
	font-size: clamp(var(--ppf-choice-label-size-mobile), 1.6vw, var(--ppf-choice-label-size-desktop));
	font-weight: 700 !important;
	font-synthesis: none;
	line-height: 1.35;
}

.ppf-choice__description {
	font-family: var(--ppf-font-family) !important;
	font-size: clamp(var(--ppf-choice-description-size-mobile), 1.4vw, var(--ppf-choice-description-size-desktop));
	line-height: 1.45;
	color: var(--ppf-muted-color);
}

.ppf-choice__check {
	display: grid;
	place-items: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	max-width: 24px;
	max-height: 24px;
	aspect-ratio: 1 / 1;
	margin-left: auto;
	border: 1px solid var(--ppf-border-color);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 800;
	color: transparent;
	background: #fff;
}

.ppf-choice:has(.ppf-choice__input:checked) .ppf-choice__check {
	border-color: var(--ppf-primary-color);
	background: var(--ppf-primary-color);
	color: #fff;
}

.ppf-input,
.ppf-input--number {
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	border: 1px solid var(--ppf-border-color);
	border-radius: 10px;
	background: #fff;
	color: var(--ppf-text-color);
	transition: border-color .18s ease, box-shadow .18s ease;
}

.ppf-input--number {
	-moz-appearance: textfield;
	appearance: textfield;
}

.ppf-input--number::-webkit-inner-spin-button,
.ppf-input--number::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

textarea.ppf-input {
	min-height: 130px;
	resize: vertical;
}

.ppf-input:focus,
.ppf-range__control:focus-visible,
.ppf-consent__input:focus-visible {
	border-color: var(--ppf-primary-color);
	outline: 3px solid color-mix(in srgb, var(--ppf-primary-color), transparent 75%);
	outline-offset: 1px;
	box-shadow: none;
}

.ppf-number-field {
	position: relative;
	max-width: 360px;
}

.ppf-number-field__unit {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-weight: 700;
	color: var(--ppf-muted-color);
	pointer-events: none;
}

.ppf-range {
	display: grid;
	gap: 22px;
}

.ppf-range__control {
	width: 100%;
	accent-color: var(--ppf-primary-color);
}

.ppf-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.ppf-field-label {
	display: grid;
	gap: 7px;
}

.ppf-field-label__text {
	font-size: 14px;
	font-weight: 700;
}

.ppf-consent {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 13px;
	align-items: flex-start;
	padding: 18px;
	border: 1px solid var(--ppf-border-color);
	border-radius: var(--ppf-card-radius);
	background: color-mix(in srgb, var(--ppf-primary-color), transparent 97%);
	cursor: pointer;
}

.ppf-consent__input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--ppf-primary-color);
}

.ppf-consent__text {
	font-size: 14px;
	line-height: 1.55;
	color: var(--ppf-muted-color);
}

.ppf-consent__text a {
	color: var(--ppf-primary-color);
	text-underline-offset: 2px;
}

.ppf-info {
	padding: 16px 18px;
	border-left: 3px solid var(--ppf-accent-color);
	background: color-mix(in srgb, var(--ppf-accent-color), transparent 92%);
	color: var(--ppf-muted-color);
}

.ppf-navigation {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: clamp(28px, 6vw, 48px);
}

.ppf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--ppf-button-radius);
	font-size: clamp(var(--ppf-step-description-size-mobile), 2vw, var(--ppf-step-description-size-desktop));
	font-weight: 750;
	line-height: 1;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.ppf-button:hover {
	transform: translateY(-1px);
}

.ppf-button:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--ppf-primary-color), transparent 68%);
	outline-offset: 3px;
}

.ppf-button--primary {
	margin-left: auto;
	background: var(--ppf-primary-color);
	color: #fff;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--ppf-primary-color), transparent 75%);
}

.ppf-button--primary:hover {
	background: var(--ppf-primary-hover-color);
	color: #fff;
}

.ppf-button--secondary {
	border-color: var(--ppf-border-color);
	background: transparent;
	color: var(--ppf-text-color);
}

.ppf-button--secondary:hover {
	border-color: var(--ppf-primary-color);
	color: var(--ppf-primary-color);
}

.ppf-form__error {
	margin-top: 20px;
	padding: 12px 14px;
	border: 1px solid color-mix(in srgb, var(--ppf-error-color), transparent 55%);
	border-radius: 10px;
	background: color-mix(in srgb, var(--ppf-error-color), transparent 93%);
	font-size: 14px;
	font-weight: 650;
	color: var(--ppf-error-color);
}

.ppf-funnel--has-error .ppf-step__field {
	animation: ppf-error-shake .22s ease;
}

.ppf-completion {
	display: grid;
	justify-items: center;
	padding-block: 20px;
	text-align: center;
	animation: ppf-step-in .25s ease both;
}

.ppf-completion__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--ppf-success-color), transparent 88%);
	font-size: 28px;
	font-weight: 900;
	color: var(--ppf-success-color);
}

.ppf-completion__text {
	max-width: 52ch;
	margin: 14px 0 28px;
	line-height: 1.65;
	color: var(--ppf-muted-color);
}

.ppf-funnel__noscript,
.ppf-admin-message {
	padding: 14px 16px;
	border: 1px solid var(--ppf-border-color, #d0d5dd);
	border-radius: 10px;
	background: #fff;
	color: #1f2933;
}

.ppf-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.ppf-preview-page {
	min-height: 100vh;
	margin: 0;
	background: #f2f4f7;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ppf-preview-toolbar {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 20px;
	background: #101828;
	color: #fff;
}

.ppf-preview-toolbar a {
	color: #fff;
}

.ppf-preview-main {
	display: grid;
	place-items: center;
	min-height: calc(100vh - 46px);
	padding: clamp(20px, 5vw, 70px);
}

@keyframes ppf-step-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes ppf-error-shake {
	0%, 100% { transform: translateX(0); }
	35% { transform: translateX(-4px); }
	70% { transform: translateX(4px); }
}

@media (max-width: 640px) {
	.ppf-start__cards {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 22px;
	}

	.ppf-start-card {
		grid-template-columns: 1fr;
		row-gap: 6px;
		padding: 18px;
	}

	.ppf-start-card__icon {
		grid-row: auto;
		width: 62px;
		height: 62px;
		margin: 0;
	}

	.ppf-start-card__title,
	.ppf-start-card__description {
		grid-column: auto;
	}

	.ppf-start__benefits {
		width: max-content;
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.ppf-choice__icon {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
	}

	.ppf-choice {
		gap: 6px;
		padding-inline: 10px;
	}

	.ppf-choice:has(.ppf-choice__icon) {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: auto auto;
		column-gap: 10px;
		row-gap: 8px;
		align-items: center;
		padding: 10px 14px;
	}

	.ppf-choice:has(.ppf-choice__icon) .ppf-choice__icon {
		grid-column: 1;
		grid-row: 1;
	}

	.ppf-choice:has(.ppf-choice__icon) .ppf-choice__check {
		grid-column: 2;
		grid-row: 1;
		margin-left: 0;
	}

	.ppf-choice:has(.ppf-choice__icon) .ppf-choice__content {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.ppf-funnel__surface {
		padding: 24px 18px;
		border-radius: min(var(--ppf-border-radius), 14px);
	}

	.ppf-choice-grid,
	.ppf-contact-grid {
		grid-template-columns: 1fr;
	}

	.ppf-step__header {
		flex-direction: column;
		gap: 18px;
	}

	.ppf-step__required {
		order: -1;
		align-self: flex-end;
	}

	.ppf-step__description {
		margin-top: 6px;
	}

	.ppf-navigation {
		align-items: stretch;
	}

	.ppf-button {
		min-height: 52px;
		padding-inline: 16px;
	}
}

@media (max-width: 380px) {
	.ppf-navigation {
		flex-direction: column-reverse;
	}

	.ppf-button,
	.ppf-button--primary {
		width: 100%;
		margin-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ppf-funnel *,
	.ppf-funnel *::before,
	.ppf-funnel *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

.ppf-honeypot {
	position: absolute !important;
	inline-size: 1px !important;
	block-size: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.ppf-button[disabled] {
	cursor: wait;
	opacity: 0.68;
}
