:root {
	--skr-accent: #ff7a45;
	--skr-accent-dark: #d95220;
	--skr-ink: #14231f;
	--skr-muted: #68716e;
	--skr-line: #dde3e0;
	--skr-soft: #f5f7f6;
	--skr-error: #b42318;
	--skr-success: #176b50;
}

.skr-form-shell,
.skr-form-shell * {
	box-sizing: border-box;
}

.skr-form-shell {
	width: min(100%, 820px);
	margin: 0 auto;
	color: var(--skr-ink);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.5;
}

.skr-form {
	position: relative;
	overflow: hidden;
	padding: clamp(24px, 5vw, 48px);
	border: 1px solid rgba(20, 35, 31, 0.08);
	border-radius: 32px;
	background: #fff;
	box-shadow: 0 22px 70px rgba(18, 32, 28, 0.14);
}

.skr-progress {
	margin-bottom: 24px;
}

.skr-progress__bar {
	display: block;
	overflow: hidden;
	height: 5px;
	border-radius: 999px;
	background: #edf0ee;
}

.skr-progress__fill {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--skr-accent);
	transition: width 300ms ease;
}

.skr-progress__meta {
	display: flex;
	justify-content: space-between;
	margin-top: 16px;
	color: #7a8380;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.skr-step[hidden] {
	display: none !important;
}

.skr-step__header {
	margin-bottom: 24px;
}

.skr-step__eyebrow {
	display: none;
	margin: 0 0 10px;
	color: var(--skr-accent-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.skr-step__title {
	margin: 0;
	color: var(--skr-ink);
	font-size: clamp(27px, 4.2vw, 42px);
	font-weight: 760;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.skr-step__title:focus {
	outline: none;
}

.skr-step__subtitle {
	margin: 9px 0 0;
	color: var(--skr-muted);
	font-size: 16px;
}

.skr-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.skr-choice-grid--single {
	grid-template-columns: 1fr;
}

.skr-choice {
	position: relative;
	display: block;
	cursor: pointer;
}

.skr-choice input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.skr-choice span {
	display: flex;
	min-height: 64px;
	align-items: center;
	padding: 14px 18px;
	border: 2px solid var(--skr-line);
	border-radius: 17px;
	background: #fff;
	color: var(--skr-ink);
	font-weight: 650;
	transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.skr-choice:hover span {
	border-color: #c7d0cc;
	transform: translateY(-1px);
}

.skr-choice input:checked + span {
	border-color: var(--skr-accent);
	background: #fff5ef;
	box-shadow: 0 0 0 1px var(--skr-accent);
}

.skr-choice input:focus-visible + span,
.skr-button:focus-visible,
.skr-field input:focus-visible,
.skr-field textarea:focus-visible,
.skr-consent input:focus-visible,
.skr-area-control__range:focus-visible,
.skr-fullness__range:focus-visible {
	outline: 3px solid rgba(13, 103, 75, 0.35);
	outline-offset: 3px;
}

.skr-field {
	margin-bottom: 14px;
}

.skr-field > label {
	display: block;
	margin: 0 0 7px;
	font-size: 14px;
	font-weight: 700;
}

.skr-field input,
.skr-field textarea {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 15px 16px;
	border: 1.5px solid var(--skr-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: none;
	color: var(--skr-ink);
	font: inherit;
	line-height: 1.35;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.skr-field input {
	min-height: 54px;
}

.skr-field textarea {
	min-height: 116px;
	resize: vertical;
}

.skr-field input::placeholder,
.skr-field textarea::placeholder {
	color: #929a97;
	opacity: 1;
}

.skr-field input:focus,
.skr-field textarea:focus {
	border-color: var(--skr-success);
	box-shadow: 0 0 0 3px rgba(23, 107, 80, 0.1);
	outline: none;
}

.skr-field input[aria-invalid="true"],
.skr-field textarea[aria-invalid="true"] {
	border-color: var(--skr-error);
}

.skr-fields--two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.skr-consent {
	margin-top: 18px;
}

.skr-consent > label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.skr-consent input {
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	margin: 3px 0 0;
	accent-color: var(--skr-accent-dark);
}

.skr-consent a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.skr-consent.has-error {
	padding: 12px;
	border-radius: 12px;
	background: #fff4f2;
}

.skr-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 30px;
}

.skr-button {
	appearance: none;
	min-height: 52px;
	margin: 0;
	padding: 13px 22px;
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	font: inherit;
	font-size: 14px;
	font-weight: 780;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.skr-button--next,
.skr-button--submit {
	min-width: 154px;
	background: var(--skr-accent);
	color: #1f170f;
	box-shadow: 0 10px 25px rgba(224, 82, 30, 0.22);
}

.skr-button--next:hover,
.skr-button--submit:hover {
	background: #ff8b5d;
	transform: translateY(-1px);
}

.skr-form .skr-navigation .skr-button.skr-button--submit {
	background: #000 !important;
	border-color: #000 !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
	color: #fff !important;
}

.skr-form .skr-navigation .skr-button.skr-button--submit:hover {
	background: #222 !important;
	border-color: #222 !important;
	color: #fff !important;
}

.skr-form .skr-navigation .skr-button.skr-button--back {
	min-width: 0 !important;
	padding: 10px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #6b7470 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	transform: none !important;
}

.skr-form .skr-navigation .skr-button.skr-button--back:hover {
	background: transparent !important;
	box-shadow: none !important;
	color: #343c39 !important;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.skr-button[disabled] {
	opacity: 0.6;
	cursor: wait;
}

.skr-field-error,
.skr-step-error {
	margin: 7px 0 0;
	color: var(--skr-error);
	font-size: 14px;
	font-weight: 650;
}

.skr-server-errors {
	margin: 0 0 24px;
	padding: 16px 18px;
	border: 1px solid #f2b8b2;
	border-radius: 14px;
	background: #fff4f2;
	color: #8a1c13;
}

.skr-server-errors ul {
	margin: 8px 0 0 20px;
	padding: 0;
}

.skr-success {
	padding: clamp(34px, 7vw, 64px);
	border: 1px solid rgba(20, 35, 31, 0.08);
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 22px 70px rgba(18, 32, 28, 0.14);
	text-align: center;
}

.skr-success__icon {
	display: inline-grid;
	width: 56px;
	height: 56px;
	place-items: center;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #e7f4ef;
	color: var(--skr-success);
	font-size: 28px;
	font-weight: 800;
}

.skr-success h2 {
	margin: 0 0 8px;
	font-size: clamp(28px, 5vw, 40px);
	letter-spacing: -0.03em;
}

.skr-success p {
	margin: 0;
	color: var(--skr-muted);
}

/* Visual area/fullness configurator. */
.skr-configurator {
	--skr-floor-width: 64%;
	--skr-floor-depth: 69%;
	margin-top: 8px;
	padding: clamp(14px, 3vw, 24px);
	border: 1px solid #e8ecea;
	border-radius: 24px;
	background: linear-gradient(180deg, #fafbfa 0%, #fff 100%);
}

.skr-configurator__summary {
	display: flex;
	justify-content: center;
	min-height: 28px;
	margin-bottom: 8px;
}

.skr-configurator__summary strong {
	padding: 4px 12px;
	border-radius: 999px;
	background: #fff0e8;
	color: #9c3d18;
	font-size: 14px;
	font-weight: 760;
}

.skr-configurator__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 92px;
	grid-template-rows: minmax(230px, 1fr) auto;
	column-gap: 10px;
	align-items: stretch;
}

.skr-scene {
	position: relative;
	overflow: hidden;
	min-width: 0;
	min-height: 230px;
	border-radius: 16px 4px 4px 16px;
	background: linear-gradient(180deg, #fff 0%, #fff 61%, #faf7f3 61%, #fff 100%);
}

.skr-scene__wall {
	position: absolute;
	inset: 22% 12% auto;
	height: 39%;
	border-bottom: 1px solid #e5e7e5;
	background: none;
}

.skr-floor {
	position: absolute;
	bottom: 9%;
	left: 50%;
	width: var(--skr-floor-width);
	height: var(--skr-floor-depth);
	clip-path: polygon(33% 8%, 67% 8%, 100% 100%, 0 100%);
	background: linear-gradient(180deg, #f5f4f0 0%, #e7e6e1 100%);
	border-bottom: 1px solid #d7d8d3;
	filter: drop-shadow(0 12px 11px rgba(30, 37, 33, 0.08));
	transform: translateX(-50%);
	transform-origin: center bottom;
	transition: width 360ms cubic-bezier(0.2, 0.75, 0.25, 1), height 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.skr-objects {
	position: absolute;
	bottom: 10%;
	left: 50%;
	width: var(--skr-floor-width);
	height: 72%;
	transform: translateX(-50%);
	transform-origin: center bottom;
	transition: width 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.skr-object {
	--x: 50;
	--y: 20;
	--scale: 1;
	--rotate: 0deg;
	--delay: 0ms;
	position: absolute;
	bottom: calc(var(--y) * 1%);
	left: calc(var(--x) * 1%);
	z-index: calc(100 - var(--y));
	display: block;
	width: 48px;
	height: 48px;
	opacity: 0;
	transform: translate(-50%, 15px) rotate(var(--rotate)) scale(calc(var(--scale) * 0.72));
	transform-origin: center bottom;
	transition: opacity 220ms ease var(--delay), transform 330ms cubic-bezier(0.2, 0.78, 0.28, 1.1) var(--delay);
}

.skr-object.is-visible {
	opacity: 1;
	transform: translate(-50%, 0) rotate(var(--rotate)) scale(var(--scale));
}

.skr-object--carton img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 5px 4px rgba(70, 42, 24, 0.18));
	pointer-events: none;
	user-select: none;
}

.skr-fullness {
	position: relative;
	display: grid;
	grid-column: 2;
	grid-row: 1;
	grid-template-columns: 39px 1fr;
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: 12px 0;
}

.skr-fullness__track {
	position: relative;
	grid-column: 1;
	justify-self: center;
	width: 34px;
	height: 172px;
}

.skr-fullness__track::before {
	position: absolute;
	top: 9px;
	bottom: 9px;
	left: 50%;
	width: 5px;
	border-radius: 999px;
	background: #858e89;
	content: "";
	transform: translateX(-50%);
}

.skr-fullness__range {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 34px;
	height: 172px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	writing-mode: vertical-lr;
	direction: rtl;
	cursor: pointer;
}

.skr-fullness__range::-webkit-slider-runnable-track {
	width: 5px;
	height: 100%;
	border-radius: 999px;
	background: transparent !important;
}

.skr-fullness__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	margin-left: -6.5px;
	border: 2px solid #fff;
	border-radius: 5px;
	background: var(--skr-accent);
	box-shadow: 0 2px 7px rgba(107, 50, 25, 0.32), 0 0 0 4px rgba(255, 122, 69, 0.13);
}

.skr-fullness__range::-moz-range-track {
	width: 5px;
	height: 100%;
	border-radius: 999px;
	background: transparent !important;
}

.skr-fullness__range::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border: 2px solid #fff;
	border-radius: 5px;
	background: var(--skr-accent);
	box-shadow: 0 2px 7px rgba(107, 50, 25, 0.32), 0 0 0 4px rgba(255, 122, 69, 0.13);
}

.skr-fullness__labels {
	display: flex;
	grid-column: 2;
	flex-direction: column;
	justify-content: space-between;
	height: 172px;
}

.skr-fullness__labels span {
	position: relative;
	display: flex;
	height: 18px;
	min-height: 18px;
	align-items: center;
	color: #707976;
	font-size: 14px;
	font-weight: 650;
	transition: color 180ms ease, font-weight 180ms ease;
}

.skr-fullness__labels span.is-active {
	color: var(--skr-ink);
	font-weight: 780;
}

.skr-area-control {
	display: grid;
	grid-column: 1;
	grid-row: 2;
	grid-template-columns: 1fr;
	padding: 2px 12px 0;
}

.skr-area-control__axis {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
}

.skr-area-control__limit {
	color: #727b78;
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	white-space: nowrap;
}

.skr-area-control__track {
	position: relative;
	min-width: 0;
	height: 30px;
}

.skr-area-control__track::before {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	height: 5px;
	border-radius: 999px;
	background: #858e89;
	content: "";
	transform: translateY(-50%);
}

.skr-area-control__range {
	appearance: none;
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 30px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	cursor: pointer;
}

.skr-area-control__range::-webkit-slider-runnable-track {
	height: 5px;
	border-radius: 999px;
	background: transparent !important;
}

.skr-area-control__range::-moz-range-track {
	height: 5px;
	border-radius: 999px;
	background: transparent !important;
}

.skr-area-control__range::-moz-range-progress {
	background: transparent !important;
}

.skr-area-control__range::-webkit-slider-thumb {
	appearance: none;
	width: 17px;
	height: 25px;
	margin-top: -11px;
	border: 2px solid #fff;
	border-radius: 3px;
	background: var(--skr-accent);
	box-shadow: 0 2px 7px rgba(107, 50, 25, 0.28);
}

.skr-area-control__range::-moz-range-thumb {
	width: 17px;
	height: 25px;
	border: 2px solid #fff;
	border-radius: 3px;
	background: var(--skr-accent);
	box-shadow: 0 2px 7px rgba(107, 50, 25, 0.28);
}

.skr-area-control__output {
	justify-self: center;
	min-width: 92px;
	margin-top: 4px;
	padding: 6px 12px;
	border: 1.5px solid var(--skr-ink);
	border-radius: 7px;
	background: #fff;
	color: var(--skr-accent-dark);
	font-size: 15px;
	font-weight: 760;
	text-align: center;
}

.skr-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.skr-sr-only {
	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;
}

@media (max-width: 640px) {
	.skr-form {
		padding: 22px 18px;
		border-radius: 24px;
	}

	.skr-progress {
		margin-bottom: 20px;
	}

	.skr-progress__meta {
		margin-top: 12px;
		font-size: 10px;
	}

	.skr-step__header {
		margin-bottom: 20px;
	}

	.skr-step__title {
		font-size: clamp(26px, 8vw, 34px);
	}

	.skr-step__subtitle {
		font-size: 15px;
	}

	.skr-choice-grid,
	.skr-fields--two {
		grid-template-columns: 1fr;
	}

	.skr-choice-grid {
		gap: 9px;
	}

	.skr-choice span {
		min-height: 56px;
		padding: 12px 15px;
		border-radius: 14px;
	}

	.skr-configurator {
		padding: 10px;
		border-radius: 18px;
	}

	.skr-configurator__grid {
		grid-template-columns: minmax(0, 1fr) 75px;
		grid-template-rows: minmax(205px, 1fr) auto;
		column-gap: 3px;
	}

	.skr-scene {
		min-height: 205px;
	}

	.skr-object {
		width: 40px;
		height: 40px;
	}

	.skr-fullness {
		grid-template-columns: 34px 1fr;
	}

	.skr-fullness__range,
	.skr-fullness__track,
	.skr-fullness__labels {
		height: 158px;
	}

	.skr-fullness__labels span {
		font-size: 12px;
	}

	.skr-area-control {
		padding-inline: 5px;
	}

	.skr-area-control__limit {
		font-size: 12px;
	}

	.skr-area-control__axis {
		gap: 8px;
	}

	.skr-navigation {
		margin-top: 24px;
	}

	.skr-button {
		min-height: 48px;
		padding: 11px 17px;
		font-size: 13px;
	}

	.skr-button--next,
	.skr-button--submit {
		min-width: 132px;
	}
}

@media (max-width: 390px) {
	.skr-form {
		padding-inline: 14px;
	}

	.skr-configurator__grid {
		grid-template-columns: minmax(0, 1fr) 69px;
	}

	.skr-configurator__summary strong {
		font-size: 13px;
	}

}

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

@media (forced-colors: active) {
	.skr-choice input:checked + span,
	.skr-fullness__range,
	.skr-area-control__output {
		border: 3px solid Highlight;
	}

	.skr-floor,
	.skr-object {
		forced-color-adjust: none;
	}
}

/* Bevorzugter Kontaktweg im letzten Schritt */
.skr-contact-preference {
	margin: 4px 0 16px;
}

.skr-contact-preference__title {
	margin: 0 0 9px;
	font-size: 14px;
	font-weight: 700;
	color: var(--skr-ink);
}

.skr-contact-preference__choices {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.skr-contact-preference__choices .skr-choice span {
	min-height: 58px;
}

.skr-contact-preference__choices .skr-contact-method-choice > span {
	gap: 10px;
}

.skr-contact-method-choice__icon {
	flex: 0 0 auto;
	font-style: normal;
	line-height: 1;
}

.skr-contact-method-choice__label {
	font: inherit;
	font-weight: inherit;
}

.skr-contact-preference__hint {
	margin: 8px 2px 0;
	color: var(--skr-muted);
	font-size: 13px;
	line-height: 1.45;
}

@media (max-width: 680px) {
	.skr-contact-preference__choices {
		grid-template-columns: 1fr;
	}
}
