/* =============================================================
   Collaboration (Tapti partneriu) — multistep form
   Brand primary: #01478d   Accent/tan: #bea16f   Cream: #faf8f5
   UPLOAD-MARKER-XYZ-789
   ============================================================= */

/* === SCOPED RESET (stage only — don't touch header / footer) === */
body.configurator-step-1 .cfg-stage {
	font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #171a1f;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: left;
}

/* === STAGE LAYOUT === */
body.configurator-step-1 .cfg-stage {
	--cfg-top: 90px;
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	min-height: calc(100vh - var(--cfg-top));
	overflow: clip;                       /* clip x without creating a scroll container */
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "stage";
}

/* === STEP BASE & CROSSFADE TRANSITIONS === */
body.configurator-step-1 .cfg-step {
	grid-area: stage;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition:
		opacity 0.55s ease-in-out,
		transform 0.55s ease-in-out,
		visibility 0s linear 0.55s;
}

body.configurator-step-1 .cfg-step.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition:
		opacity 0.55s ease-in-out,
		transform 0.55s ease-in-out,
		visibility 0s linear 0s;
}

/* =============================================================
   STEP 0 — HERO
   ============================================================= */
body.configurator-step-1 .cfg-step--hero {
	position: relative;
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
}

/* Hero uses its own background image covering the full step */
body.configurator-step-1 .cfg-step--hero .cfg-step__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/configurator/step-0-bg.jpg");
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	z-index: 0;
}

body.configurator-step-1 .cfg-step--hero .cfg-step__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		#ffffff 0%,
		#ffffff 25%,
		rgba(255, 255, 255, 0.85) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	z-index: 1;
	pointer-events: none;
}

body.configurator-step-1 .cfg-step__content--hero {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 140px 24px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
}

body.configurator-step-1 .cfg-step__title--hero {
	font-family: "DM Serif Display", "Times New Roman", serif;
	font-weight: 400;
	font-size: 48px;
	line-height: 1.1;
	letter-spacing: 0;
	color: #01478d;
	margin: 0 auto;
	padding: 0;
	width: auto;
	max-width: 1100px;
	text-align: center;
	display: block;
}

body.configurator-step-1 .cfg-step__text {
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #171a1f;
	margin: 23px auto 0;
	padding: 0;
	width: auto;
	max-width: 774px;
	text-align: center;
	display: block;
}

/* =============================================================
   FORM STEPS 1-6 — SHARED LAYOUT
   ============================================================= */
body.configurator-step-1 .cfg-step--form {
	position: relative;
	background: #faf8f5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}

/* Full-coverage background photo (Figma node 369:394) */
body.configurator-step-1 .cfg-step--form .cfg-step__bg {
	position: absolute;
	inset: 0;
	background-image: url("../img/configurator/step-1-bg.jpg");
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	transform: scale(1.5);
	z-index: 0;
	pointer-events: none;
}

/* Cream gradient overlay — Figma node 369:397
   from-[#faf8f5] from-[23.916%] to-[rgba(255,255,255,0)] to-[159.53%] */
body.configurator-step-1 .cfg-step--form .cfg-step__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		#faf8f5 23.916%,
		rgba(255, 255, 255, 0) 159.53%
	);
	z-index: 1;
	pointer-events: none;
}

/* Content wrapper — centred, above the photo */
body.configurator-step-1 .cfg-step__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 110px 32px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Per-step max-width overrides */
body.configurator-step-1 .cfg-step-1 .cfg-step__content { max-width: 900px; }
body.configurator-step-1 .cfg-step-4 .cfg-step__content,
body.configurator-step-1 .cfg-step-5 .cfg-step__content { max-width: 920px; }

/* =============================================================
   PROGRESS INDICATOR (1 — 2 — 3 — 4 — 5)
   ============================================================= */
body.configurator-step-1 .cfg-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 32px;
}

body.configurator-step-1 .cfg-progress__dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1.5px solid #b5b1ad;
	background: transparent;
	color: #b5b1ad;
	font-family: "Outfit", sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	flex-shrink: 0;
}

body.configurator-step-1 .cfg-progress__dot.is-active {
	background: #01478d;
	border-color: #01478d;
	color: #fff;
}

body.configurator-step-1 .cfg-progress__line {
	width: 40px;
	height: 2px;
	background: #b5b1ad;
	flex-shrink: 0;
}

/* Title — shared across all form steps */
body.configurator-step-1 .cfg-step__title {
	font-family: "DM Serif Display", "DM Serif Text", "Times New Roman", serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 1.2;
	letter-spacing: 0;
	color: #01478d;
	margin: 0;
	padding: 0;
	text-align: center;
	display: block;
	width: auto;
}

/* Step 2 title hint "(pasirinkite kelis)" */
body.configurator-step-1 .cfg-step__title-hint {
	font-family: "Open Sans", "Outfit", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 28px;
	color: rgba(86, 93, 109, 0.8);
	margin-left: 6px;
	white-space: nowrap;
}

/* Form wrapper */
body.configurator-step-1 .cfg-step__form {
	width: 100%;
	margin: 56px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

body.configurator-step-1 .cfg-step-4 .cfg-step__form,
body.configurator-step-1 .cfg-step-5 .cfg-step__form {
	margin-top: 40px;
}

/* =============================================================
   BUTTONS — .cfg-btn
   ============================================================= */

/* Primary (blue filled) */
body.configurator-step-1 .cfg-btn--primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 165px;
	min-width: 165px;
	height: 46px;
	padding: 0 24px;
	border: 0;
	border-radius: 46px !important;
	background: #01478d;
	color: #ffffff;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0;
	text-align: center;
	cursor: pointer;
	box-shadow:
		0 2px 5px 0 rgba(23, 26, 31, 0.09),
		0 0 2px 0 rgba(23, 26, 31, 0.12);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
	text-decoration: none;
	-webkit-appearance: none;
	appearance: none;
}

body.configurator-step-1 .cfg-btn--primary:hover,
body.configurator-step-1 .cfg-btn--primary:focus-visible {
	background: #01376d;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow:
		0 6px 14px 0 rgba(1, 71, 141, 0.22),
		0 0 2px 0 rgba(23, 26, 31, 0.12);
	outline: none;
}

body.configurator-step-1 .cfg-btn--primary:active {
	transform: translateY(0);
}

body.configurator-step-1 .cfg-btn--primary:disabled,
body.configurator-step-1 .cfg-btn--primary[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Hero CTA — larger variant */
body.configurator-step-1 .cfg-step--hero .cfg-btn--primary {
	width: 227px;
	min-width: 227px;
	height: 63px;
	border-radius: 46px;
	font-size: 18px;
	line-height: 25px;
	margin-top: 41px;
	box-shadow:
		0 2.6px 6.6px 0 rgba(23, 26, 31, 0.09),
		0 0 2.6px 0 rgba(23, 26, 31, 0.12);
}

/* Wide variant for the submit button on step 5 */
body.configurator-step-1 .cfg-btn--wide {
	width: 209px;
	min-width: 209px;
}

/* Secondary (outlined ghost) */
body.configurator-step-1 .cfg-btn--secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	height: 46px;
	padding: 0 24px;
	border: 1.5px solid #01478d;
	border-radius: 46px !important;
	background: transparent;
	color: #01478d;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

body.configurator-step-1 .cfg-btn--secondary:hover,
body.configurator-step-1 .cfg-btn--secondary:focus-visible {
	background: #01478d;
	color: #fff;
	outline: none;
}

body.configurator-step-1 .cfg-btn--secondary:active {
	background: #01376d;
	color: #fff;
}

/* =============================================================
   NAVIGATION ROW
   ============================================================= */
body.configurator-step-1 .cfg-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 56px;
}

/* =============================================================
   FORM CONTROLS
   ============================================================= */

/* ---- Custom radio ---- */
body.configurator-step-1 .cfg-radio {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #4e484a;
	cursor: pointer;
	user-select: none;
	white-space: normal;
}

body.configurator-step-1 .cfg-radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}

body.configurator-step-1 .cfg-radio__circle {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1.5px solid #b5b1ad;
	background: #ffffff;
	position: relative;
	transition: border-color 0.18s ease, background-color 0.18s ease;
}

body.configurator-step-1 .cfg-radio__circle::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: #01478d;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

body.configurator-step-1 .cfg-radio input[type="radio"]:checked + .cfg-radio__circle {
	border-color: #01478d;
}

body.configurator-step-1 .cfg-radio input[type="radio"]:checked + .cfg-radio__circle::after {
	opacity: 1;
	transform: scale(1);
}

body.configurator-step-1 .cfg-radio input[type="radio"]:focus-visible + .cfg-radio__circle {
	box-shadow: 0 0 0 3px rgba(1, 71, 141, 0.18);
}

body.configurator-step-1 .cfg-radio__label {
	font: inherit;
	color: inherit;
}

/* ---- "Kita" textbox (step 1) ---- */
body.configurator-step-1 .cfg-textbox {
	width: 100%;
	max-width: 240px;
	height: 32px;
	padding: 0 18px;
	border: 1px solid #dedede;
	border-radius: 6px;
	background: #ffffff;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #171a1f;
	box-shadow: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
	justify-self: start;
}

body.configurator-step-1 .cfg-textbox::placeholder { color: rgba(86, 93, 109, 0.6); }

body.configurator-step-1 .cfg-textbox:focus {
	outline: none;
	border-color: #01478d;
	box-shadow: 0 0 0 3px rgba(1, 71, 141, 0.12);
}

/* ---- Custom checkbox (golden/tan when checked) ---- */
body.configurator-step-1 .cfg-checkbox {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #4e484a;
	cursor: pointer;
	user-select: none;
	white-space: normal;
	text-align: left;
}

body.configurator-step-1 .cfg-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}

body.configurator-step-1 .cfg-checkbox__box {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	border-radius: 2px;
	border: 1px solid #565e6c;
	background: #ffffff;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.18s ease, background-color 0.18s ease;
}

body.configurator-step-1 .cfg-checkbox__box svg {
	width: 11px;
	height: 11px;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

body.configurator-step-1 .cfg-checkbox input[type="checkbox"]:checked + .cfg-checkbox__box {
	background: #bea16f;
	border-color: #bea16f;
}

body.configurator-step-1 .cfg-checkbox input[type="checkbox"]:checked + .cfg-checkbox__box svg {
	opacity: 1;
	transform: scale(1);
}

body.configurator-step-1 .cfg-checkbox input[type="checkbox"]:focus-visible + .cfg-checkbox__box {
	box-shadow: 0 0 0 3px rgba(190, 161, 111, 0.28);
}

body.configurator-step-1 .cfg-checkbox__label {
	font: inherit;
	color: inherit;
}

/* ---- Text inputs (step 4) ---- */
body.configurator-step-1 .cfg-input {
	width: 100%;
	height: 39px;
	padding: 0 14px;
	border: 1px solid #dedede;
	border-radius: 6px;
	background: #ffffff;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #171a1f;
	box-shadow: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

body.configurator-step-1 .cfg-input::placeholder { color: rgba(86, 93, 109, 0.6); }

body.configurator-step-1 .cfg-input:focus {
	outline: none;
	border-color: #01478d;
	box-shadow: 0 0 0 3px rgba(1, 71, 141, 0.12);
}

body.configurator-step-1 .cfg-input--full {
	grid-column: 1 / -1;
}

/* ---- Textarea (step 5) ---- */
body.configurator-step-1 .cfg-textarea {
	width: 100%;
	max-width: 863px;
	min-height: 111px;
	padding: 12px 17px 12px 12px;
	border: 1px solid #dedede;
	border-radius: 6px;
	background: #ffffff;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #171a1f;
	box-shadow: none;
	resize: vertical;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

body.configurator-step-1 .cfg-textarea::placeholder { color: rgba(86, 93, 109, 0.6); }

body.configurator-step-1 .cfg-textarea:focus {
	outline: none;
	border-color: #01478d;
	box-shadow: 0 0 0 3px rgba(1, 71, 141, 0.12);
}

/* ---- Divider (step 3) ---- */
body.configurator-step-1 .cfg-divider {
	width: 100%;
	max-width: 864px;
	height: 1px;
	background: #e3dfd9;
	margin: 28px auto;
	border: 0;
}

/* =============================================================
   PER-STEP GRID OVERRIDES
   ============================================================= */

/* Step 1 — 3-col radio grid */
body.configurator-step-1 .cfg-step-1__options {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 48px;
	row-gap: 22px;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	align-items: start;
	justify-items: start;
	text-align: left;
}

/* Step 2 — 2-col checkbox grid */
body.configurator-step-1 .cfg-step-2__options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, auto));
	column-gap: 64px;
	row-gap: 22px;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	align-items: start;
	justify-items: start;
	justify-content: center;
	text-align: left;
}

/* Step 3 — checkboxes (2-col) + radios (2-col) with tan colour */
body.configurator-step-1 .cfg-step-3__checkboxes,
body.configurator-step-1 .cfg-step-3__radios {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, auto));
	column-gap: 64px;
	row-gap: 22px;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	align-items: start;
	justify-items: start;
	justify-content: center;
	text-align: left;
}

/* Tan radios for step 3 only */
body.configurator-step-1 .cfg-step-3 .cfg-radio input[type="radio"]:checked + .cfg-radio__circle {
	border-color: #bea16f;
}
body.configurator-step-1 .cfg-step-3 .cfg-radio input[type="radio"]:checked + .cfg-radio__circle::after {
	background: #bea16f;
}
body.configurator-step-1 .cfg-step-3 .cfg-radio input[type="radio"]:focus-visible + .cfg-radio__circle {
	box-shadow: 0 0 0 3px rgba(190, 161, 111, 0.28);
}

/* Step 4 — 2-col input grid */
body.configurator-step-1 .cfg-step-4__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 16px;
	width: 100%;
	max-width: 863px;
	margin: 0 auto;
}

/* =============================================================
   VALIDATION — error states & shake
   ============================================================= */
body.configurator-step-1 input.cfg-field--error,
body.configurator-step-1 textarea.cfg-field--error {
	border-color: #c0392b !important;
	box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

body.configurator-step-1 .cfg-radio.cfg-field--error .cfg-radio__circle,
body.configurator-step-1 .cfg-checkbox.cfg-field--error .cfg-checkbox__box {
	border-color: #c0392b;
	box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

body.configurator-step-1 .cfg-error-msg {
	display: block;
	margin-top: 8px;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #c0392b;
	line-height: 1.3;
}

@keyframes cfg-shake {
	0%, 100% { transform: translateX(0); }
	10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
	20%, 40%, 60%, 80% { transform: translateX(4px); }
}

body.configurator-step-1 .cfg-shake {
	animation: cfg-shake 0.5s ease-in-out;
}

/* =============================================================
   STEP 6 — THANK-YOU CONFIRMATION
   ============================================================= */
body.configurator-step-1 .cfg-step__content--thanks {
	padding-top: 160px;
	align-items: center;
	text-align: center;
}

body.configurator-step-1 .cfg-thanks__icon {
	margin-bottom: 28px;
}

body.configurator-step-1 .cfg-step__title--thanks {
	font-family: "DM Serif Display", "DM Serif Text", "Times New Roman", serif;
	font-weight: 400;
	font-size: 45px;
	line-height: 42px;
	color: #01478d;
	margin: 0;
}

body.configurator-step-1 .cfg-thanks__subtitle {
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 14.275px;
	line-height: 22.431px;
	color: #4e484a;
	margin: 20px 0 0;
	text-align: center;
}

/* =============================================================
   CF7 HIDDEN MOUNT
   ============================================================= */
body.configurator-step-1 .cfg-cf7 {
	position: absolute;
	left: -99999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
}

/* =============================================================
   RESPONSIVE — 1024 px
   ============================================================= */
@media (max-width: 1024px) {
	/* Hero */
	body.configurator-step-1 .cfg-step__content--hero { padding-top: 100px; }
	body.configurator-step-1 .cfg-step__title--hero   { font-size: 40px; }
	body.configurator-step-1 .cfg-step__text           { margin-top: 20px; }
	body.configurator-step-1 .cfg-step--hero .cfg-btn--primary { margin-top: 36px; }

	/* All form steps */
	body.configurator-step-1 .cfg-step__content { padding-top: 90px; }

	/* Step 1 */
	body.configurator-step-1 .cfg-step-1__options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 32px;
	}

	/* Step 2 */
	body.configurator-step-1 .cfg-step-2__options {
		grid-template-columns: repeat(2, minmax(0, auto));
		column-gap: 40px;
		row-gap: 18px;
	}

	/* Step 3 */
	body.configurator-step-1 .cfg-step-3__checkboxes,
	body.configurator-step-1 .cfg-step-3__radios {
		grid-template-columns: repeat(2, minmax(0, auto));
		column-gap: 40px;
		row-gap: 18px;
	}
}

/* =============================================================
   RESPONSIVE — 640 px
   ============================================================= */
@media (max-width: 640px) {
	/* Progress */
	body.configurator-step-1 .cfg-progress__dot {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
	body.configurator-step-1 .cfg-progress__line {
		width: 28px;
	}
	body.configurator-step-1 .cfg-progress {
		margin-bottom: 24px;
	}

	/* Nav */
	body.configurator-step-1 .cfg-nav {
		margin-top: 36px;
		gap: 12px;
	}
	body.configurator-step-1 .cfg-btn--secondary {
		min-width: 90px;
		height: 42px;
		font-size: 15px;
		padding: 0 18px;
	}

	/* Hero */
	body.configurator-step-1 .cfg-step__content--hero { padding-top: 80px; }
	body.configurator-step-1 .cfg-step__title--hero   { font-size: 30px; }
	body.configurator-step-1 .cfg-step__text           { font-size: 16px; line-height: 24px; margin-top: 20px; }
	body.configurator-step-1 .cfg-step--hero .cfg-btn--primary {
		width: auto; min-width: 200px; height: 56px;
		font-size: 18px; padding: 0 32px; margin-top: 28px;
	}

	/* All form steps */
	body.configurator-step-1 .cfg-step__content {
		padding: 70px 20px 0;
	}
	body.configurator-step-1 .cfg-step__title {
		font-size: 24px;
		line-height: 1.25;
	}
	body.configurator-step-1 .cfg-step__form {
		margin-top: 36px;
	}
	body.configurator-step-1 .cfg-btn--primary {
		width: auto; min-width: 180px; height: 52px; font-size: 18px;
	}
	body.configurator-step-1 .cfg-btn--wide {
		min-width: 220px;
	}
	/* Step 1 */
	body.configurator-step-1 .cfg-step-1__options {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 16px;
		justify-items: center;
		text-align: center;
	}
	body.configurator-step-1 .cfg-textbox {
		max-width: 280px;
		margin-top: 4px;
		justify-self: center;
	}

	/* Step 2 */
	body.configurator-step-1 .cfg-step-2__options {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 16px;
		justify-items: start;
		justify-content: start;
		max-width: 320px;
	}
	body.configurator-step-1 .cfg-step__title-hint {
		display: block;
		margin-left: 0;
		margin-top: 6px;
		white-space: normal;
	}

	/* Step 3 */
	body.configurator-step-1 .cfg-step-3__checkboxes,
	body.configurator-step-1 .cfg-step-3__radios {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 16px;
		justify-items: start;
		justify-content: start;
		max-width: 320px;
	}
	body.configurator-step-1 .cfg-divider {
		margin: 22px auto;
	}

	/* Step 4 */
	body.configurator-step-1 .cfg-step-4__fields {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 12px;
		max-width: 360px;
	}

	/* Step 5 */
	body.configurator-step-1 .cfg-textarea {
		max-width: 100%;
		min-height: 130px;
	}

	/* Step 6 — thank you */
	body.configurator-step-1 .cfg-step__content--thanks {
		padding-top: 100px;
	}
	body.configurator-step-1 .cfg-step__title--thanks {
		font-size: 28px;
		line-height: 36px;
	}
}
