:root {
	--bg: #06101e;
	--card: #0b182b;
	--card2: #101f35;
	--blue: #1597ff;
	--red: #e32929;
	--green: #19a85b;
	--yellow: #ffd84a;
	--text: #f4f8ff;
	--muted: #b7c5d8;
	--border: rgba(255,255,255,.13);
	--shadow: 0 22px 60px rgba(0,0,0,.38);
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	background: #06101e;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(21,151,255,.18), transparent 34rem),
		radial-gradient(circle at top right, rgba(227,41,41,.14), transparent 32rem),
		linear-gradient(180deg, #06101e 0%, #081426 45%, #040912 100%);
	color: var(--text);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.55;
	-webkit-text-size-adjust: 100%;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.12));
	pointer-events: none;
}

a {
	color: inherit;
}

button,
input,
select,
textarea {
	-webkit-tap-highlight-color: transparent;
}

.app-shell,
.admin-shell {
	min-height: 100vh;
}

/* Header */

.app-header,
.admin-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	padding: .85rem clamp(1rem, 3vw, 2rem);
	background: rgba(5,12,23,.92);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border);
}

.brand {
	display: flex;
	align-items: center;
	gap: .8rem;
	text-decoration: none;
}

.brand-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	border-radius: 18px;
	background:
		linear-gradient(135deg, #117ee8, #1597ff),
		radial-gradient(circle at top left, rgba(255,255,255,.45), transparent 60%);
	color: #ffffff;
	font-weight: 950;
	letter-spacing: -.06em;
	box-shadow:
		0 0 30px rgba(21,151,255,.25),
		inset 0 1px 0 rgba(255,255,255,.22);
}

.brand-mark span {
	font-size: .78em;
	letter-spacing: -.05em;
	margin-left: .05rem;
}

.brand strong,
.admin-header strong {
	display: block;
	font-size: 1rem;
	line-height: 1.2;
	color: #ffffff;
}

.brand span,
.admin-header span {
	display: block;
	color: var(--muted);
	font-size: .86rem;
	line-height: 1.35;
}

.header-actions {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	margin-left: auto;
}

.header-actions a,
.primary-link,
.red-link,
.green-link,
.yellow-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: .7rem 1rem;
	font-weight: 900;
	text-decoration: none;
	background: rgba(255,255,255,.08);
	border: 1px solid var(--border);
	white-space: nowrap;
}

.header-actions .red,
.red-link {
	background: linear-gradient(135deg, #c91e1e, #e32929);
	border: 0;
	color: #fff;
}

.green-link {
	background: linear-gradient(135deg, #128545, #19a85b);
	border: 0;
	color: #fff;
}

.yellow-link {
	background: var(--yellow);
	color: #111827;
	border: 0;
}

.primary-link {
	background: linear-gradient(135deg, #117ee8, #1597ff);
	border: 0;
	color: #fff;
}

/* Layout */

.app-main,
.admin-main {
	width: min(1180px, calc(100% - 1.5rem));
	margin: 0 auto;
	padding: 1.25rem 0 3rem;
}

/* Hero */

.hero,
.premium-hero {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.2rem;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(9,23,42,.96), rgba(13,34,58,.94)),
		radial-gradient(circle at top left, rgba(21,151,255,.15), transparent 34rem),
		radial-gradient(circle at bottom right, rgba(227,41,41,.11), transparent 28rem);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	padding: clamp(1.25rem, 4vw, 3rem);
	margin-bottom: 1.25rem;
}

.hero::after,
.premium-hero::after {
	content: "";
	position: absolute;
	right: -90px;
	top: -90px;
	width: 260px;
	height: 260px;
	border-radius: 999px;
	background: rgba(21,151,255,.18);
	filter: blur(6px);
	pointer-events: none;
}

.hero > *,
.premium-hero > * {
	position: relative;
	z-index: 1;
}

.hero-badge,
.hero-kicker {
	display: inline-flex;
	padding: .45rem .85rem;
	border-radius: 999px;
	background: rgba(21,151,255,.14);
	border: 1px solid rgba(21,151,255,.3);
	color: #dff1ff;
	font-weight: 900;
	font-size: .9rem;
	margin-bottom: 1rem;
}

.hero h1,
.premium-hero h1 {
	font-size: clamp(2rem, 4vw, 3.55rem);
	line-height: 1.06;
	margin: 0 0 1rem;
	letter-spacing: -.05em;
	color: #ffffff;
}

.hero p,
.premium-hero p {
	max-width: 920px;
	color: var(--muted);
	font-size: 1.08rem;
	margin: 0;
}

.hero-grid,
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
	margin-top: 1.25rem;
}

.hero-grid span,
.trust-row span {
	padding: .48rem .78rem;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	font-weight: 800;
}

.hero-panel {
	align-self: stretch;
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(16,31,53,.94), rgba(5,12,23,.94)),
		radial-gradient(circle at top left, rgba(25,168,91,.12), transparent 20rem);
	border: 1px solid rgba(25,168,91,.25);
	padding: 1.2rem;
	box-shadow: 0 16px 45px rgba(0,0,0,.28);
}

.hero-panel-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: linear-gradient(135deg, #128545, #19a85b);
	font-weight: 950;
	font-size: 1.55rem;
	margin-bottom: .85rem;
}

.hero-panel strong {
	display: block;
	color: #ffffff;
	font-size: 1.16rem;
	line-height: 1.2;
	margin-bottom: .4rem;
}

/* Ablauf */

.process-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .85rem;
	margin: 0 0 1rem;
}

.process-strip div {
	border-radius: 22px;
	background:
		linear-gradient(145deg, rgba(13,30,52,.9), rgba(7,17,31,.9)),
		radial-gradient(circle at top left, rgba(21,151,255,.08), transparent 14rem);
	border: 1px solid var(--border);
	padding: 1rem;
	box-shadow: 0 16px 40px rgba(0,0,0,.24);
}

.process-strip strong {
	display: block;
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.2;
	margin-bottom: .25rem;
}

.process-strip span {
	display: block;
	color: var(--muted);
	font-size: .92rem;
}

/* Hinweis-Karte unter dem Ablauf */

.repair-notice-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin: 0 0 1rem;
	padding: 1.1rem;
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(16,31,53,.96), rgba(5,12,23,.96)),
		radial-gradient(circle at top left, rgba(25,168,91,.12), transparent 24rem);
	border: 1px solid rgba(25,168,91,.28);
	box-shadow: 0 20px 55px rgba(0,0,0,.34);
	color: #f4f8ff;
}

.repair-notice-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 18px;
	background: linear-gradient(135deg, #128545, #19a85b);
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 950;
	box-shadow: 0 14px 30px rgba(25,168,91,.2);
}

.repair-notice-card strong {
	display: block;
	color: #ffffff !important;
	font-size: 1.2rem;
	line-height: 1.2;
	margin-bottom: .25rem;
}

.repair-notice-card p {
	margin: 0;
	color: #b7c5d8 !important;
}

/* Wizard */

.wizard-card,
.admin-card,
.admin-login {
	background:
		linear-gradient(145deg, rgba(13,30,52,.96), rgba(7,17,31,.96)),
		radial-gradient(circle at top left, rgba(21,151,255,.08), transparent 22rem);
	border: 1px solid var(--border);
	border-radius: 26px;
	box-shadow: var(--shadow);
	padding: clamp(1rem, 3vw, 1.5rem);
}

.wizard-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.section-label {
	display: inline-flex;
	padding: .35rem .7rem;
	border-radius: 999px;
	background: rgba(21,151,255,.13);
	border: 1px solid rgba(21,151,255,.25);
	color: #dff1ff;
	font-size: .82rem;
	font-weight: 900;
	margin-bottom: .5rem;
}

.progress-info {
	min-width: 210px;
	text-align: right;
	color: var(--muted);
	font-weight: 800;
}

.progress-bar {
	height: 9px;
	margin-top: .45rem;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.08);
}

.progress-fill {
	display: block;
	height: 100%;
	width: 11.11%;
	border-radius: inherit;
	background: linear-gradient(90deg, #117ee8, #1597ff);
	transition: width .2s ease;
}

.steps {
	display: flex;
	gap: .45rem;
	overflow-x: auto;
	padding-bottom: .75rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--border);
	scrollbar-width: thin;
	scrollbar-color: rgba(21,151,255,.55) rgba(255,255,255,.07);
}

.steps::-webkit-scrollbar {
	height: 8px;
}

.steps::-webkit-scrollbar-track {
	background: rgba(255,255,255,.07);
	border-radius: 999px;
}

.steps::-webkit-scrollbar-thumb {
	background: rgba(21,151,255,.55);
	border-radius: 999px;
}

.step {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	border: 1px solid var(--border);
	background: rgba(255,255,255,.06);
	color: var(--text);
	border-radius: 999px;
	padding: .65rem .85rem;
	font-weight: 900;
	cursor: pointer;
	font-size: .92rem;
}

.step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(255,255,255,.1);
	font-size: .78rem;
}

.step.active {
	background: linear-gradient(135deg, #117ee8, #1597ff);
	border-color: transparent;
}

.step.done {
	border-color: rgba(25,168,91,.32);
	background: rgba(25,168,91,.12);
}

.panel {
	display: none;
}

.panel.active {
	display: block;
	animation: fadeIn .18s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.panel-head {
	display: flex;
	align-items: flex-start;
	gap: .9rem;
	margin-bottom: 1rem;
}

.panel-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex: 0 0 50px;
	border-radius: 17px;
	background: rgba(21,151,255,.12);
	border: 1px solid rgba(21,151,255,.3);
	color: #dff1ff;
	font-weight: 950;
}

h2 {
	margin: 0 0 .15rem;
	font-size: clamp(1.45rem, 3vw, 2.1rem);
	letter-spacing: -.025em;
	line-height: 1.15;
	color: #ffffff;
}

h3 {
	margin: 0 0 .25rem;
	font-size: clamp(1.35rem, 2.4vw, 1.9rem);
	letter-spacing: -.025em;
	line-height: 1.15;
	color: #ffffff;
}

h4 {
	margin: 1.2rem 0 .7rem;
	font-size: 1.08rem;
	line-height: 1.25;
	color: #ffffff;
}

p {
	color: var(--muted);
}

/* Forms */

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .9rem;
	margin: 1rem 0;
}

label {
	display: block;
	font-weight: 900;
	color: #eaf4ff;
}

input,
select,
textarea {
	width: 100%;
	margin-top: .4rem;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.16);
	color: #fff;
	border-radius: 14px;
	min-height: 48px;
	padding: .75rem .85rem;
	font: inherit;
	font-size: 16px;
}

select {
	appearance: auto;
	cursor: pointer;
}

textarea {
	min-height: 120px;
	resize: vertical;
}

select option {
	background: #0b182b;
	color: #fff;
}

input::placeholder,
textarea::placeholder {
	color: rgba(255,255,255,.48);
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: rgba(21,151,255,.8);
	box-shadow: 0 0 0 .2rem rgba(21,151,255,.15);
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .75rem;
	margin: 1rem 0;
}

.choice-grid label,
.choice-card {
	display: flex;
	align-items: center;
	gap: .65rem;
	min-height: 54px;
	padding: .85rem;
	background: rgba(255,255,255,.06);
	border: 1px solid var(--border);
	border-radius: 16px;
	cursor: pointer;
	line-height: 1.35;
	transition:
		background-color .18s ease,
		border-color .18s ease,
		transform .18s ease;
}

.choice-grid label:hover,
.choice-card:hover {
	background: rgba(255,255,255,.09);
	border-color: rgba(21,151,255,.32);
	transform: translateY(-1px);
}

.choice-grid input,
.choice-card input {
	width: auto;
	min-height: auto;
	margin: 0;
	accent-color: var(--blue);
	flex: 0 0 auto;
}

.choice-grid input:checked + span,
.choice-card input:checked + span {
	color: #ffffff;
}

/* Fehler */

.field-error input,
.field-error select,
.field-error textarea {
	border-color: rgba(227,41,41,.95) !important;
	box-shadow: 0 0 0 .2rem rgba(227,41,41,.2) !important;
}

.field-error {
	color: #ffd6d6 !important;
}

/* Notices */

.notice,
.small-notice,
.danger-notice,
.consent-box {
	border-radius: 18px;
	padding: .95rem;
	margin: 1rem 0;
}

.notice {
	background: rgba(255,216,74,.1);
	border: 1px solid rgba(255,216,74,.28);
	color: #fff4c3;
}

.small-notice {
	background: rgba(255,255,255,.06);
	border: 1px solid var(--border);
	color: var(--muted);
	font-size: .92rem;
}

.danger-notice {
	background: rgba(227,41,41,.13);
	border: 1px solid rgba(227,41,41,.35);
	color: #ffe1e1;
}

.photo-list {
	color: var(--muted);
	margin: 1rem 0;
	padding-left: 1.2rem;
}

.photo-list li {
	margin-bottom: .35rem;
}

.consent-box {
	background: rgba(255,255,255,.06);
	border: 1px solid var(--border);
}

.consent-box label {
	display: flex;
	gap: .7rem;
	align-items: flex-start;
	margin: .65rem 0;
	line-height: 1.35;
}

.consent-box input {
	width: auto;
	min-height: auto;
	margin-top: .25rem;
	flex: 0 0 auto;
}

/* Aufklappbereiche */

.conditional-section {
	margin-top: 1rem;
	padding-top: .25rem;
}

.conditional-section[hidden] {
	display: none !important;
}

/* Upload */

.upload-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 185px;
	text-align: center;
	padding: 1.25rem;
	border-radius: 22px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.035)),
		radial-gradient(circle at top left, rgba(21,151,255,.08), transparent 18rem);
	border: 1px dashed rgba(21,151,255,.45);
	cursor: pointer;
	overflow: hidden;
}

.upload-box input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.upload-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: linear-gradient(135deg, #117ee8, #1597ff);
	color: #ffffff;
	font-size: 2rem;
	font-weight: 950;
	margin-bottom: .75rem;
}

.upload-box strong {
	color: #ffffff;
	font-size: 1.1rem;
}

.upload-box small {
	display: block;
	color: var(--muted);
	margin-top: .2rem;
}

.upload-action-buttons {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .55rem;
	margin: .85rem 0;
}

.upload-action-buttons button {
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	background: rgba(255,255,255,.07);
	color: #ffffff;
	padding: .65rem .7rem;
	font-weight: 900;
	cursor: default;
}

/* Buttons */

.wizard-actions {
	display: flex;
	justify-content: space-between;
	gap: .75rem;
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
}

.primary-btn,
.secondary-btn,
.submit-btn {
	border: 0;
	border-radius: 999px;
	padding: .88rem 1.15rem;
	font-weight: 900;
	color: #fff;
	cursor: pointer;
	min-height: 50px;
	font-size: 1rem;
}

.primary-btn,
.submit-btn {
	background: linear-gradient(135deg, #117ee8, #1597ff);
}

.submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #128545, #19a85b);
	margin-top: .5rem;
}

.secondary-btn {
	background: rgba(255,255,255,.08);
	border: 1px solid var(--border);
}

.primary-btn:hover,
.secondary-btn:hover,
.submit-btn:hover,
.header-actions a:hover,
.primary-link:hover,
.red-link:hover,
.green-link:hover,
.yellow-link:hover {
	filter: brightness(1.08);
	text-decoration: none;
}

.primary-btn:disabled,
.secondary-btn:disabled,
.submit-btn:disabled {
	opacity: .55;
	cursor: not-allowed;
	filter: none;
}

/* Footer */

.app-footer {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	width: min(1180px, calc(100% - 1.5rem));
	margin: 0 auto;
	padding: 1.5rem 0 2.5rem;
	color: var(--muted);
	border-top: 1px solid var(--border);
}

.app-footer a {
	display: inline-block;
	margin-left: .7rem;
	font-weight: 900;
	color: var(--yellow);
	text-decoration: none;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
	justify-content: flex-end;
}

/* Root-Footer in Schaden-App */

.site-footer-wrap {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #f4f8ff;
}

.site-footer-wrap,
.site-footer-wrap * {
	box-sizing: border-box;
}

.site-footer-wrap a {
	color: inherit;
}

/* Danke / Success */

.thank-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: 1.25rem;
}

.success-hero {
	text-align: left;
}

/* Admin */

.admin-login {
	width: min(480px, calc(100% - 1.5rem));
	margin: 3rem auto;
}

.admin-card {
	margin-bottom: 1rem;
}

.admin-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.admin-card header strong,
.admin-card header span {
	display: block;
}

.status-pill {
	border-radius: 999px;
	background: rgba(21,151,255,.14);
	border: 1px solid rgba(21,151,255,.3);
	padding: .45rem .75rem;
	font-weight: 900;
	white-space: nowrap;
}

details {
	margin: .65rem 0;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: .8rem;
	background: rgba(255,255,255,.04);
}

summary {
	cursor: pointer;
	font-weight: 900;
	color: #fff;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: .8rem;
}

th,
td {
	text-align: left;
	vertical-align: top;
	border-top: 1px solid rgba(255,255,255,.08);
	padding: .55rem;
	word-break: break-word;
}

th {
	width: 34%;
	color: var(--muted);
}

.admin-files {
	margin: .8rem 0 0;
	padding-left: 1.1rem;
}

.admin-files a {
	color: var(--yellow);
	font-weight: 900;
}

.admin-files small {
	color: var(--muted);
	margin-left: .5rem;
}

/* Mobile */

@media (max-width: 900px) {
	.process-strip {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.app-header,
	.admin-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.brand {
		align-items: center;
	}

	.header-actions {
		width: 100%;
		margin-left: 0;
	}

	.header-actions a {
		flex: 1;
	}

	.app-main,
	.admin-main {
		width: min(100% - 1rem, 1180px);
		padding-top: .75rem;
	}

	.hero,
	.premium-hero,
	.wizard-card,
	.admin-card {
		border-radius: 20px;
	}

	.hero,
	.premium-hero {
		padding: 1.15rem;
	}

	.hero h1,
	.premium-hero h1 {
		font-size: 2rem;
	}

	.hero p,
	.premium-hero p {
		font-size: 1rem;
	}

	.wizard-top {
		flex-direction: column;
	}

	.progress-info {
		min-width: 0;
		width: 100%;
		text-align: left;
	}

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

	.choice-grid label,
	.choice-card {
		min-height: 52px;
	}

	.steps {
		margin-left: -.25rem;
		margin-right: -.25rem;
	}

	.step {
		font-size: .86rem;
		padding: .6rem .75rem;
	}

	.panel-head {
		gap: .75rem;
	}

	.panel-number {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
		border-radius: 15px;
	}

	.repair-notice-card {
		border-radius: 20px;
		padding: 1rem;
	}

	.repair-notice-icon {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
		border-radius: 15px;
		font-size: 1.45rem;
	}

	.upload-action-buttons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wizard-actions {
		position: sticky;
		bottom: 0;
		z-index: 15;
		background: rgba(5,12,23,.94);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		margin-left: -1rem;
		margin-right: -1rem;
		margin-bottom: -1rem;
		padding: .85rem 1rem;
		border-radius: 0 0 20px 20px;
	}

	.primary-btn,
	.secondary-btn {
		flex: 1;
	}

	.app-footer {
		width: min(100% - 1rem, 1180px);
	}

	.app-footer a {
		margin-left: 0;
		margin-right: .7rem;
	}

	.footer-links {
		justify-content: flex-start;
	}

	th,
	td {
		display: block;
		width: 100%;
	}

	th {
		padding-bottom: .15rem;
	}

	td {
		padding-top: .15rem;
	}
}

@media (max-width: 520px) {
	.repair-notice-card {
		flex-direction: column;
	}

	.upload-action-buttons {
		grid-template-columns: 1fr;
	}

	.wizard-actions {
		gap: .5rem;
	}

	.primary-btn,
	.secondary-btn {
		padding-left: .8rem;
		padding-right: .8rem;
	}
}

@media (max-width: 420px) {
	.brand {
		align-items: flex-start;
	}

	.brand-mark {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
		border-radius: 14px;
		font-size: .9rem;
	}

	.hero h1,
	.premium-hero h1 {
		font-size: 1.75rem;
	}

	h2 {
		font-size: 1.45rem;
	}

	h3 {
		font-size: 1.35rem;
	}

	.wizard-card {
		padding: .9rem;
	}

	.wizard-actions {
		margin-left: -.9rem;
		margin-right: -.9rem;
		margin-bottom: -.9rem;
	}

	input,
	select,
	textarea {
		border-radius: 13px;
	}
}