/**
 * FoneFix Repair Enquiries — Stage 6 (review, submission, confirmation).
 */
.ffe-app {
	--ffe-navy: #0B1D44;
	--ffe-blue: #1C93ED;
	--ffe-blue-hover: #147CCB;
	--ffe-white: #FFFFFF;
	--ffe-soft: #F3F7FB;
	--ffe-selected: #E7F3FD;
	--ffe-line: #E7EDF3;
	--ffe-ink: #0B1D44;
	--ffe-muted: #5C6778;
	--ffe-danger: #B42318;
	--ffe-danger-bg: #FEF3F2;
	--ffe-shadow: 0 8px 28px rgba(11, 29, 68, 0.08);
	--ffe-radius: 16px;
	--ffe-font: inherit;

	box-sizing: border-box;
	font-family: var(--ffe-font);
	color: var(--ffe-ink);
	background: var(--ffe-white);
	max-width: 52.5rem;
	margin: 0 auto;
	padding: 1.75rem 1.75rem 1.25rem;
	border: 1px solid var(--ffe-line);
	border-radius: var(--ffe-radius);
	box-shadow: var(--ffe-shadow);
	overflow-x: hidden;
}

.ffe-app *,
.ffe-app *::before,
.ffe-app *::after {
	box-sizing: border-box;
}

.ffe-app [hidden] {
	display: none !important;
}

.ffe-app button,
.ffe-app input,
.ffe-app textarea {
	font: inherit;
	color: inherit;
}

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

.ffe-aside-field {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ffe-noscript {
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	background: var(--ffe-soft);
	border: 1px solid var(--ffe-line);
	border-radius: 10px;
}

.ffe-app__header {
	margin-bottom: 1.35rem;
}

.ffe-app__eyebrow {
	margin: 0 0 0.4rem;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ffe-blue);
}

.ffe-app__heading {
	margin: 0 0 0.5rem;
	font-size: 1.55rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--ffe-navy);
}

.ffe-app__lede {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.5;
	color: var(--ffe-muted);
}

.ffe-app__escape {
	margin: 0.85rem 0 0;
	font-size: 0.9rem;
	color: var(--ffe-muted);
}

.ffe-app__escape a {
	color: var(--ffe-blue);
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}

.ffe-app__escape a:hover {
	color: var(--ffe-blue-hover);
	text-decoration: underline;
}

.ffe-app :focus-visible {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 2px;
}

.ffe-steps-compact {
	display: none;
	margin: 0 0 1rem;
	padding: 0.7rem 0.9rem;
	background: var(--ffe-soft);
	border: 1px solid var(--ffe-line);
	border-radius: 12px;
}

.ffe-steps-compact span {
	display: block;
	font-size: 0.75rem;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ffe-blue);
}

.ffe-steps-compact strong {
	display: block;
	margin-top: 0.15rem;
	font-size: 1rem;
	color: var(--ffe-navy);
}

.ffe-steps {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.35rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid var(--ffe-line);
	padding-bottom: 1rem;
}

.ffe-steps__item {
	min-width: 0;
}

.ffe-steps__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	width: 100%;
	padding: 0.2rem;
	border: 0;
	background: none;
	cursor: pointer;
	text-align: center;
	color: var(--ffe-muted);
}

.ffe-steps__btn.is-disabled {
	cursor: default;
	opacity: 0.55;
}

.ffe-steps__item.is-current .ffe-steps__btn.is-disabled {
	opacity: 1;
}

.ffe-steps__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 999px;
	border: 1.5px solid var(--ffe-line);
	font-size: 0.75rem;
	font-weight: 700;
	background: var(--ffe-white);
}

.ffe-steps__label {
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ffe-steps__item.is-current .ffe-steps__num {
	border-color: var(--ffe-blue);
	background: var(--ffe-blue);
	color: var(--ffe-white);
}

.ffe-steps__item.is-current .ffe-steps__label {
	color: var(--ffe-navy);
	font-weight: 700;
}

.ffe-steps__item.is-complete .ffe-steps__num {
	border-color: var(--ffe-navy);
	background: var(--ffe-navy);
	color: var(--ffe-white);
}

.ffe-steps__item.is-complete .ffe-steps__num::after {
	content: "";
}

.ffe-panel {
	min-width: 0;
}

.ffe-panel__heading {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
	line-height: 1.3;
	color: var(--ffe-navy);
}

.ffe-panel__heading:focus {
	outline: none;
}

.ffe-panel__heading:focus-visible {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 3px;
}

.ffe-panel__lede {
	margin: 0 0 1.15rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--ffe-muted);
}

.ffe-panel--hold {
	padding: 1rem 0 0.5rem;
}

.ffe-panel__note {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--ffe-muted);
}

.ffe-detail-progress {
	margin: -0.55rem 0 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ffe-blue);
}

.ffe-fieldset {
	margin: 0 0 1.15rem;
	padding: 0;
	border: 0;
	min-width: 0;
}

.ffe-fieldset legend {
	padding: 0;
	margin: 0 0 0.65rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ffe-navy);
}

.ffe-field {
	margin: 0 0 1.15rem;
	min-width: 0;
}

.ffe-field > label:not(.ffe-check) {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ffe-navy);
	margin-bottom: 0.4rem;
}

.ffe-field input[type="text"],
.ffe-field input[type="email"],
.ffe-field input[type="tel"] {
	width: 100%;
	max-width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1.5px solid var(--ffe-line);
	border-radius: 12px;
	background: var(--ffe-white);
	color: var(--ffe-navy);
	min-height: 2.9rem;
}

.ffe-field input[type="text"]:disabled {
	background: var(--ffe-soft);
	color: var(--ffe-muted);
	cursor: not-allowed;
}

.ffe-field-help {
	margin: 0.4rem 0 0;
	font-size: 0.84rem;
	line-height: 1.45;
	font-weight: 500;
	color: var(--ffe-muted);
}

.ffe-fieldset > .ffe-field-help {
	margin: -0.35rem 0 0.7rem;
}

.ffe-grid-2 {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0 1rem;
	min-width: 0;
}

.ffe-cards--delivery {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffe-cards--delivery .ffe-card {
	align-items: flex-start;
	min-height: 4.1rem;
}

.ffe-cards--delivery .ffe-card__label {
	white-space: normal;
}

.ffe-seg--urgency {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffe-seg--urgency .ffe-seg__opt {
	min-height: 3rem;
	padding: 0.55rem 0.45rem;
	text-align: center;
}

.ffe-seg--urgency .ffe-seg__label {
	white-space: normal;
	line-height: 1.25;
}

.ffe-check--privacy {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0.15rem 0 0;
	padding: 0.85rem 0.95rem;
	background: var(--ffe-soft);
	border: 1.5px solid var(--ffe-line);
	border-radius: 14px;
}

.ffe-field--privacy.is-invalid .ffe-check--privacy {
	border-color: #F5C2C0;
}

.ffe-check--privacy input {
	margin-top: 0.3rem;
	width: 1.15rem;
	height: 1.15rem;
	accent-color: var(--ffe-blue);
	flex: 0 0 auto;
}

.ffe-check--privacy label {
	display: block;
	margin: 0;
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--ffe-ink);
	cursor: pointer;
}

a.ffe-privacy-link {
	color: var(--ffe-blue);
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 2px;
}

a.ffe-privacy-link:hover {
	color: var(--ffe-blue-hover);
}

.ffe-check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 0.75rem 0 0;
	font-weight: 500;
	cursor: pointer;
}

.ffe-check input {
	margin-top: 0.2rem;
	width: 1.1rem;
	height: 1.1rem;
	accent-color: var(--ffe-blue);
	flex: 0 0 auto;
}

.ffe-check span {
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--ffe-ink);
}

.ffe-field .ffe-check.ffe-check--model-unknown {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	align-self: flex-start;
	gap: 0.5rem;
	width: fit-content;
	max-width: 100%;
	min-width: 0;
	min-height: 2.75rem;
	margin: 0.85rem 0 0.2rem;
	padding: 0.35rem 0.2rem 0.35rem 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	box-shadow: none;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ffe-navy);
	cursor: pointer;
}

.ffe-field .ffe-check.ffe-check--model-unknown input {
	position: static;
	inset: auto;
	width: 1.125rem;
	height: 1.125rem;
	margin: 0;
	opacity: 1;
	flex: 0 0 auto;
	accent-color: var(--ffe-blue);
	cursor: pointer;
	z-index: auto;
}

.ffe-field .ffe-check.ffe-check--model-unknown span {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--ffe-navy);
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	width: 100%;
	max-width: 100%;
	min-height: 2.75rem;
	margin: 0;
	padding: 14px 16px;
	border: 1.5px solid #DBE7F2;
	border-radius: 12px;
	background: #FFFFFF;
	box-shadow: none;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice__tick {
	flex: 0 0 auto;
	width: 1.1rem;
	height: 1.1rem;
	border: 1.5px solid #C9D4E0;
	border-radius: 999px;
	background: #FFFFFF;
	position: relative;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice input.ffe-model-input {
	flex: 1 1 auto;
	width: auto;
	max-width: 100%;
	min-width: 0;
	min-height: 1.4rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	appearance: none;
	color: #0B1D44;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice input.ffe-model-input::placeholder {
	color: var(--ffe-muted);
	font-weight: 500;
	opacity: 1;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice:hover:has(input:not(:disabled)) {
	background: #F8FBFE;
	border-color: #C5D8EA;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice:has(input:not(:placeholder-shown):not(:disabled)) {
	border-color: #1C93ED;
	background: #F5F9FD;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice:has(input:not(:placeholder-shown):not(:disabled)) .ffe-model-choice__tick {
	border-color: #1C93ED;
	background: #1C93ED;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice:has(input:not(:placeholder-shown):not(:disabled)) .ffe-model-choice__tick::after {
	content: "";
	position: absolute;
	left: 0.28rem;
	top: 0.1rem;
	width: 0.26rem;
	height: 0.48rem;
	border: solid #FFFFFF;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice:has(input:focus-visible) {
	outline: 2px solid #1C93ED;
	outline-offset: 2px;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice input.ffe-model-input:focus,
.ffe-app [data-ffe-model-wrap] .ffe-model-choice input.ffe-model-input:focus-visible {
	outline: none;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice:has(input:disabled) {
	background: var(--ffe-soft);
	border-color: #DBE7F2;
}

.ffe-app [data-ffe-model-wrap] .ffe-model-choice input.ffe-model-input:disabled {
	background: transparent;
	color: var(--ffe-muted);
	cursor: not-allowed;
}

.ffe-app [data-ffe-model-wrap].is-invalid .ffe-model-choice {
	border-color: #F5C2C0;
}

.ffe-cards {
	display: grid;
	gap: 0.7rem;
	min-width: 0;
}

.ffe-cards--2 {
	grid-template-columns: 1fr 1fr;
}

.ffe-cards--mfr {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffe-cards--problems {
	grid-template-columns: 1fr 1fr;
}

.ffe-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
	min-height: 4.25rem;
	margin: 0;
	padding: 0.85rem 0.9rem 0.85rem 0.8rem;
	border: 1.5px solid var(--ffe-line);
	border-radius: 14px;
	background: var(--ffe-white);
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ffe-card input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}

.ffe-card__tick {
	flex: 0 0 auto;
	width: 1.2rem;
	height: 1.2rem;
	border: 1.5px solid #C9D4E0;
	border-radius: 999px;
	background: var(--ffe-white);
	position: relative;
}

.ffe-card--check .ffe-card__tick {
	border-radius: 5px;
}

.ffe-card__body {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	min-width: 0;
}

.ffe-icon {
	flex: 0 0 auto;
	color: var(--ffe-navy);
}

.ffe-card__label {
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.3;
	color: var(--ffe-navy);
	min-width: 0;
}

.ffe-card:hover {
	border-color: #C5D8EA;
}

.ffe-card:has(input:checked) {
	border-color: var(--ffe-blue);
	background: var(--ffe-selected);
	box-shadow: inset 0 0 0 1px var(--ffe-blue);
}

.ffe-card:has(input:checked) .ffe-card__tick {
	border-color: var(--ffe-blue);
	background: var(--ffe-blue);
}

.ffe-card:has(input:checked) .ffe-card__tick::after {
	content: "";
	position: absolute;
	left: 0.32rem;
	top: 0.12rem;
	width: 0.28rem;
	height: 0.52rem;
	border: solid var(--ffe-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.ffe-card:has(input:focus-visible) {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 2px;
}

.ffe-card.is-invalid {
	border-color: var(--ffe-danger);
}

.ffe-errors {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	background: var(--ffe-danger-bg);
	border: 1px solid #FECDCA;
	border-radius: 12px;
	color: var(--ffe-danger);
}

.ffe-errors__title {
	margin: 0 0 0.35rem;
	font-weight: 700;
	color: var(--ffe-navy);
}

.ffe-errors ul {
	margin: 0;
	padding-left: 1.1rem;
}

.ffe-errors a {
	color: var(--ffe-danger);
	font-weight: 600;
}

.ffe-field-error {
	margin: 0 0 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ffe-danger);
}

.ffe-field.is-invalid input[type="text"],
.ffe-field.is-invalid input[type="email"],
.ffe-field.is-invalid input[type="tel"],
.ffe-fieldset.is-invalid .ffe-card,
.ffe-fieldset.is-invalid .ffe-seg__opt {
	border-color: #F5C2C0;
}

.ffe-field.is-invalid .ffe-model-input {
	border-color: transparent;
}

.ffe-nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.65rem;
	margin-top: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--ffe-line);
}

.ffe-nav [data-ffe-back] {
	margin-right: auto;
}

.ffe-btn {
	appearance: none;
	border: 0;
	border-radius: 12px;
	padding: 0.8rem 1.25rem;
	min-height: 2.85rem;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.ffe-btn:focus-visible {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 2px;
}

.ffe-app a.ffe-btn {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ffe-btn--primary {
	background: var(--ffe-blue);
	color: var(--ffe-white);
	min-width: 8.5rem;
}

.ffe-btn--primary:hover {
	background: var(--ffe-blue-hover);
}

.ffe-btn--ghost {
	background: transparent;
	color: var(--ffe-navy);
	border: 1.5px solid var(--ffe-line);
}

.ffe-btn--ghost:hover {
	background: var(--ffe-soft);
}

@media (max-width: 720px) {
	.ffe-cards--mfr {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.ffe-app {
		padding: 1.15rem 0.95rem 0.75rem;
		border-radius: 14px;
		box-shadow: 0 4px 16px rgba(11, 29, 68, 0.06);
	}

	.ffe-app__heading {
		font-size: 1.32rem;
	}

	.ffe-steps {
		display: none;
	}

	.ffe-steps-compact {
		display: block;
	}

	.ffe-grid-2,
	.ffe-cards--delivery,
	.ffe-seg--urgency {
		grid-template-columns: 1fr;
	}

	.ffe-cards--problems {
		grid-template-columns: 1fr 1fr;
	}

	.ffe-card {
		min-height: 3.85rem;
		padding: 0.7rem 0.65rem;
	}

	.ffe-card__label {
		font-size: 0.86rem;
	}

	.ffe-field .ffe-check.ffe-check--model-unknown {
		width: fit-content;
		max-width: 100%;
		min-height: 2.75rem;
		border: 0;
		background: transparent;
	}

	.ffe-app [data-ffe-model-wrap] .ffe-model-choice {
		width: 100%;
		max-width: 100%;
		min-height: 2.75rem;
		padding: 14px 16px;
	}

	[data-ffe-panel="2"],
	[data-ffe-panel="3"],
	[data-ffe-panel="4"],
	[data-ffe-panel="5"],
	[data-ffe-panel="6"] {
		padding-bottom: 4.5rem;
	}

	.ffe-seg {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ffe-seg.ffe-seg--urgency {
		grid-template-columns: 1fr;
	}

	.ffe-q-opts {
		grid-template-columns: 1fr;
	}

	.ffe-seg__opt,
	.ffe-q-opt {
		min-height: 2.75rem;
	}

	.ffe-nav {
		position: sticky;
		bottom: 0;
		z-index: 2;
		margin: 0.75rem -0.95rem 0;
		padding: 0.75rem 0.95rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
		border-top: 1px solid var(--ffe-line);
		background: var(--ffe-white);
		justify-content: stretch;
		flex-wrap: wrap;
	}

	.ffe-nav [data-ffe-back] {
		margin-right: 0;
	}

	.ffe-btn {
		flex: 1 1 0;
	}

	.ffe-btn--primary {
		min-width: 0;
	}

	[data-ffe-skip] {
		flex: 1.35 1 0;
	}

	[data-ffe-send] {
		flex: 1.6 1 0;
	}
}

.ffe-upload {
	margin: 1rem 0 0.25rem;
	min-width: 0;
	position: relative;
}

.ffe-upload__drop {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.45rem;
	padding: 1.15rem 1rem 1.2rem;
	background: var(--ffe-soft);
	border: 1.5px dashed #C5D8EA;
	border-radius: 16px;
	min-width: 0;
}

.ffe-upload__drop.is-hover {
	border-color: var(--ffe-blue);
	background: var(--ffe-selected);
}

.ffe-upload__drop.is-full {
	opacity: 0.72;
}

.ffe-upload__drop .ffe-icon {
	color: var(--ffe-blue);
	width: 2rem;
	height: 2rem;
}

.ffe-upload__title {
	margin: 0.15rem 0 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--ffe-navy);
}

.ffe-upload__help {
	margin: 0 0 0.35rem;
	max-width: 28rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--ffe-muted);
}

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

.ffe-upload__input:focus-visible + .ffe-upload__btn {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 2px;
}

.ffe-upload__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8.5rem;
}

.ffe-upload__btn.is-disabled,
.ffe-upload__btn[hidden] {
	opacity: 0.5;
	pointer-events: none;
}

.ffe-upload__status {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0.2rem 0 0;
	font-size: 0.88rem;
	font-weight: 650;
	color: var(--ffe-navy);
}

.ffe-upload__status::before {
	content: "";
	width: 0.85rem;
	height: 0.85rem;
	border: 2px solid var(--ffe-line);
	border-top-color: var(--ffe-blue);
	border-radius: 50%;
	animation: ffe-spin 0.7s linear infinite;
}

@keyframes ffe-spin {
	to {
		transform: rotate(360deg);
	}
}

.ffe-upload__max {
	margin: 0.7rem 0 0;
	font-size: 0.88rem;
	font-weight: 650;
	color: var(--ffe-navy);
}

.ffe-thumbs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.7rem;
	margin: 0.9rem 0 0;
	padding: 0;
	list-style: none;
}

.ffe-thumb {
	min-width: 0;
	padding: 0.55rem;
	background: var(--ffe-soft);
	border: 1px solid var(--ffe-line);
	border-radius: 12px;
}

.ffe-thumb__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 8px;
	background: var(--ffe-white);
}

.ffe-thumb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ffe-thumb__ph {
	font-size: 0.8rem;
	font-weight: 650;
	color: var(--ffe-muted);
}

.ffe-thumb__name {
	margin: 0.4rem 0 0;
	font-size: 0.8rem;
	font-weight: 650;
	color: var(--ffe-navy);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ffe-thumb__status {
	margin: 0.15rem 0 0;
	font-size: 0.72rem;
	font-weight: 650;
	color: var(--ffe-blue);
}

.ffe-thumb__remove {
	display: block;
	width: 100%;
	margin-top: 0.4rem;
	padding: 0.45rem 0.4rem;
	min-height: 2.4rem;
	border: 1.5px solid var(--ffe-line);
	border-radius: 8px;
	background: var(--ffe-white);
	color: var(--ffe-navy);
	font-weight: 650;
	cursor: pointer;
}

.ffe-thumb__remove:hover {
	border-color: var(--ffe-danger);
	color: var(--ffe-danger);
}

@media (max-width: 400px) {
	.ffe-cards--2,
	.ffe-cards--mfr,
	.ffe-cards--problems,
	.ffe-cards--contact {
		grid-template-columns: 1fr;
	}

	.ffe-card {
		min-height: 3.5rem;
	}

	.ffe-field .ffe-check.ffe-check--model-unknown {
		width: fit-content;
		max-width: 100%;
		min-height: 2.75rem;
	}

	.ffe-app [data-ffe-model-wrap] .ffe-model-choice {
		width: 100%;
		max-width: 100%;
		min-height: 2.75rem;
	}

	.ffe-q-opts {
		grid-template-columns: 1fr;
	}

	.ffe-thumbs {
		grid-template-columns: 1fr;
	}
}

.ffe-q-section {
	margin: 0 0 1rem;
	padding: 0.85rem 0.9rem 0.35rem;
	background: var(--ffe-soft);
	border: 1px solid var(--ffe-line);
	border-radius: 14px;
	min-width: 0;
}

.ffe-q-section__title {
	margin: 0 0 0.75rem;
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ffe-blue);
}

.ffe-q {
	margin: 0 0 0.85rem;
	padding: 0;
	border: 0;
	min-width: 0;
}

.ffe-q legend {
	padding: 0;
	margin: 0 0 0.45rem;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.35;
	color: var(--ffe-navy);
}

.ffe-q__help {
	margin: -0.15rem 0 0.5rem;
	font-size: 0.84rem;
	line-height: 1.45;
	font-weight: 500;
	color: var(--ffe-muted);
}

.ffe-q.is-invalid legend {
	color: var(--ffe-danger);
}

.ffe-seg,
.ffe-q-opts {
	display: grid;
	gap: 0.4rem;
	min-width: 0;
}

.ffe-seg {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ffe-seg[data-count="2"] {
	grid-template-columns: 1fr 1fr;
}

.ffe-q-opts {
	grid-template-columns: 1fr 1fr;
}

.ffe-seg__opt,
.ffe-q-opt {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin: 0;
	min-width: 0;
	min-height: 2.65rem;
	padding: 0.45rem 0.5rem;
	border: 1.5px solid var(--ffe-line);
	border-radius: 10px;
	background: var(--ffe-white);
	cursor: pointer;
}

.ffe-q-opt {
	justify-content: flex-start;
}

.ffe-seg__opt input,
.ffe-q-opt input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}

.ffe-seg__tick {
	flex: 0 0 auto;
	width: 0.95rem;
	height: 0.95rem;
	border: 1.5px solid #C9D4E0;
	border-radius: 999px;
	background: var(--ffe-white);
	position: relative;
}

.ffe-seg__label {
	font-size: 0.86rem;
	font-weight: 650;
	line-height: 1.25;
	color: var(--ffe-navy);
	min-width: 0;
	text-align: center;
}

.ffe-q-opt .ffe-seg__label {
	text-align: left;
}

.ffe-seg__opt:hover,
.ffe-q-opt:hover {
	border-color: #C5D8EA;
}

.ffe-seg__opt:has(input:checked),
.ffe-q-opt:has(input:checked) {
	border-color: var(--ffe-blue);
	background: var(--ffe-selected);
	box-shadow: inset 0 0 0 1px var(--ffe-blue);
}

.ffe-seg__opt:has(input:checked) .ffe-seg__tick,
.ffe-q-opt:has(input:checked) .ffe-seg__tick {
	border-color: var(--ffe-blue);
	background: var(--ffe-blue);
}

.ffe-seg__opt:has(input:checked) .ffe-seg__tick::after,
.ffe-q-opt:has(input:checked) .ffe-seg__tick::after {
	content: "";
	position: absolute;
	left: 0.24rem;
	top: 0.08rem;
	width: 0.22rem;
	height: 0.42rem;
	border: solid var(--ffe-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.ffe-seg__opt:has(input:focus-visible),
.ffe-q-opt:has(input:focus-visible) {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 2px;
}

.ffe-q.is-invalid .ffe-seg__opt,
.ffe-q.is-invalid .ffe-q-opt,
.ffe-q.is-invalid textarea {
	border-color: #F5C2C0;
}

.ffe-q textarea {
	width: 100%;
	max-width: 100%;
	min-height: 6.5rem;
	padding: 0.75rem 0.85rem;
	border: 1.5px solid var(--ffe-line);
	border-radius: 12px;
	background: var(--ffe-white);
	color: var(--ffe-navy);
	resize: vertical;
	line-height: 1.45;
}

.ffe-counter {
	margin: 0.35rem 0 0;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ffe-muted);
	text-align: right;
}

.ffe-q--notes {
	margin: 0.15rem 0 0;
	padding: 0.85rem 0.9rem 0.75rem;
	background: var(--ffe-soft);
	border: 1px solid var(--ffe-line);
	border-radius: 14px;
}

.ffe-review {
	display: grid;
	gap: 0.7rem;
	margin: 0.9rem 0 0.85rem;
	min-width: 0;
}

.ffe-review-card {
	min-width: 0;
	padding: 0.75rem 0.85rem 0.8rem;
	background: var(--ffe-soft);
	border: 1px solid var(--ffe-line);
	border-radius: 14px;
}

.ffe-review-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
}

.ffe-review-card__title {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ffe-muted);
}

.ffe-review-card__edit {
	appearance: none;
	border: 0;
	background: transparent;
	color: var(--ffe-blue);
	font: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	padding: 0.35rem 0.15rem;
	min-height: 2.25rem;
	cursor: pointer;
}

.ffe-review-card__edit:hover {
	color: var(--ffe-blue-hover);
}

.ffe-review-card__edit:focus-visible {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 2px;
	border-radius: 6px;
}

.ffe-review-dl {
	margin: 0;
	min-width: 0;
}

.ffe-review-dl > div {
	display: grid;
	grid-template-columns: minmax(5.75rem, 32%) minmax(0, 1fr);
	gap: 0.2rem 0.75rem;
	padding: 0.32rem 0;
	border-top: 1px solid #E4EBF2;
}

.ffe-review-dl > div:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.ffe-review-dl dt {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 650;
	color: var(--ffe-muted);
}

.ffe-review-dl dd {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 650;
	color: var(--ffe-navy);
	overflow-wrap: anywhere;
	word-break: break-word;
	min-width: 0;
}

.ffe-review-list {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--ffe-navy);
	font-weight: 650;
	font-size: 0.92rem;
}

.ffe-review-list li + li {
	margin-top: 0.2rem;
}

.ffe-review-empty {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ffe-muted);
}

.ffe-review-photos {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0.5rem 0 0;
}

.ffe-review-photos img {
	width: 3.5rem;
	height: 3.5rem;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid var(--ffe-line);
	background: var(--ffe-white);
}

.ffe-review-ack {
	margin: 0.55rem 0 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ffe-muted);
}

.ffe-submit-note {
	margin: 0 0 0.25rem;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--ffe-muted);
}

.ffe-success {
	text-align: center;
	padding: 0.35rem 0.15rem 0.5rem;
}

.ffe-success__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ffe-blue);
}

.ffe-success__heading {
	margin: 0 0 1rem;
	font-size: 1.55rem;
	line-height: 1.25;
	color: var(--ffe-navy);
}

.ffe-success__heading:focus {
	outline: none;
}

.ffe-success__heading:focus-visible {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 4px;
}

.ffe-success__ref {
	margin: 0 auto 1.15rem;
	max-width: 22rem;
	padding: 0.95rem 1rem;
	background: var(--ffe-soft);
	border: 1px solid var(--ffe-line);
	border-radius: 14px;
}

.ffe-success__ref-label {
	margin: 0 0 0.25rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ffe-muted);
}

.ffe-success__ref-value {
	margin: 0;
	font-size: 1.85rem;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: var(--ffe-navy);
	overflow-wrap: anywhere;
}

.ffe-success__lede {
	margin: 0 auto 0.75rem;
	max-width: 32rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--ffe-navy);
}

.ffe-success__note {
	margin: 0 auto 1.25rem;
	max-width: 30rem;
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--ffe-muted);
}

.ffe-success__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
}

@media (max-width: 430px) {
	.ffe-review-dl > div {
		grid-template-columns: 1fr;
		gap: 0.08rem;
		padding: 0.38rem 0;
	}

	.ffe-success__heading {
		font-size: 1.32rem;
	}

	.ffe-success__ref-value {
		font-size: 1.55rem;
	}

	.ffe-success__actions .ffe-btn {
		flex: 1 1 100%;
	}

	.ffe-offer__book {
		flex: 1 1 100%;
		text-align: center;
	}

	.ffe-app.is-offer .ffe-nav [data-ffe-back],
	.ffe-app.is-human .ffe-nav [data-ffe-back] {
		flex: 0 0 auto;
	}
}

.ffe-panel--offer {
	padding: 0.25rem 0 0.5rem;
}

.ffe-offer__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ffe-blue);
}

.ffe-offer__card {
	margin: 0 0 1.1rem;
	padding: 1.1rem 1.15rem 1.05rem;
	background: var(--ffe-white);
	border: 1.5px solid var(--ffe-line);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(11, 29, 68, 0.06);
}

.ffe-offer__device-name {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ffe-muted);
}

.ffe-offer__repair-name {
	margin: 0.35rem 0 0;
	font-size: 1.22rem;
	line-height: 1.25;
	font-weight: 750;
	color: var(--ffe-navy);
}

.ffe-offer__price {
	margin: 0.45rem 0 0;
	font-size: 1.55rem;
	line-height: 1.2;
	font-weight: 750;
	color: var(--ffe-navy);
}

.ffe-offer__options {
	list-style: none;
	margin: 0.7rem 0 0;
	padding: 0;
}

.ffe-offer__option {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.45rem 0 0;
}

.ffe-offer__option-name {
	font-weight: 650;
	color: var(--ffe-navy);
}

.ffe-offer__option-price {
	font-weight: 700;
	color: var(--ffe-navy);
	white-space: nowrap;
}

.ffe-offer__option-desc {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--ffe-muted);
}

.ffe-offer__protect {
	margin: 0 0 0.35rem;
	font-size: 0.98rem;
	line-height: 1.35;
	font-weight: 700;
	color: var(--ffe-navy);
}

.ffe-offer__note {
	margin: 0 0 1.15rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--ffe-navy);
}

.ffe-offer__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.95rem;
}

.ffe-offer__actions .ffe-btn {
	text-decoration: none;
}

.ffe-offer__book {
	width: 100%;
	min-height: 3.15rem;
	font-size: 1.05rem;
}

.ffe-offer__alt {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	text-align: center;
}

.ffe-offer__alt-q {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--ffe-muted);
}

.ffe-offer__alt-btn {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0.2rem 0.4rem;
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.4;
	color: var(--ffe-navy);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	cursor: pointer;
}

.ffe-offer__alt-btn:hover {
	color: var(--ffe-blue);
}

.ffe-offer__alt-btn:focus-visible {
	outline: 2px solid var(--ffe-blue);
	outline-offset: 3px;
	border-radius: 6px;
}

.ffe-panel--human {
	padding: 0.25rem 0 0.5rem;
}

.ffe-app.is-offer .ffe-nav,
.ffe-app.is-human .ffe-nav {
	justify-content: flex-start;
	border-top-color: transparent;
	padding-top: 0.35rem;
}

.ffe-app.is-offer .ffe-nav [data-ffe-back],
.ffe-app.is-human .ffe-nav [data-ffe-back] {
	margin-right: 0;
	background: transparent;
	border: 0;
	color: var(--ffe-muted);
	font-weight: 600;
	min-height: 2.4rem;
	padding: 0.35rem 0.15rem;
}
