/*
 * DexOne – Stylesheet
 * ===================
 *
 * Aufbau der Datei:
 *   01  Design-Tokens
 *   02  Grundlagen und Reset
 *   03  Typografie
 *   04  Layout
 *   05  Buttons
 *   06  Kopfbereich und Navigation
 *   07  Hero und Geraetedarstellung
 *   08  Abschnitte, Hinweise
 *   09  Prozessdarstellung
 *   10  Funktionskarten und Mobilband
 *   11  Zielgruppen
 *   12  Praxisabschnitt
 *   13  Entwicklungsstatus
 *   14  Kontakt und Formular
 *   15  Footer
 *   16  Inhaltsseiten, Suche, 404
 *   17  Beschriftungen der SVG-Konzeptdarstellungen
 *   18  Barrierefreiheit
 *   19  Bewegungsreduktion
 *
 * Schriftart: bewusst der System-Font-Stack. Dadurch werden keine Schriften
 * von externen Servern geladen (Datenschutz) und es entsteht keine
 * zusaetzliche Ladezeit.
 *
 * Aufbau mobile-first: Die Grundregeln gelten fuer Smartphones, groessere
 * Bildschirme werden ueber min-width-Abfragen ergaenzt.
 */

/* ==================================================================== */
/* 01  Design-Tokens                                                     */
/* ==================================================================== */

:root {
	/* Vorgegebenes DexOne-Farbkonzept */
	--dx-petrol-dark: #0B3D3D;
	--dx-petrol: #0F6B6B;
	--dx-petrol-soft: #E6F0F0;

	--dx-action-blue: #2F7FED;
	--dx-info-blue: #2490EF;

	--dx-surface: #FFFFFF;
	--dx-surface-soft: #F2F4F7;
	--dx-text: #12211F;
	--dx-text-muted: #5C6763;
	--dx-border: #E2E6E4;

	/* Abgeleitete Werte */
	--dx-petrol-hover: #0C5757;
	--dx-petrol-deep: #072B2B;   /* Footer */
	--dx-petrol-line: #C7DEDD;
	--dx-petrol-light: #8FCFCC;  /* Text auf dunklem Petrol */
	--dx-line-soft: #EDF0EF;

	/* Statusfarben, uebernommen aus der DexOne-Oberflaeche */
	--dx-green: #16A34A;
	--dx-green-soft: #E7F6EC;
	--dx-green-ink: #116B37;
	--dx-amber: #E1902E;
	--dx-amber-soft: #FCECD5;
	--dx-amber-ink: #8A5518;
	--dx-grey-dot: #9AA3A0;
	--dx-error: #A5281B;
	--dx-error-soft: #FDECEA;
	--dx-error-line: #F5C6C0;

	/* Masse */
	--dx-header-h: 62px;
	--dx-radius-sm: 10px;
	--dx-radius: 14px;
	--dx-radius-lg: 20px;
	--dx-shadow-card: 0 1px 2px rgba(11, 61, 61, 0.04);
	--dx-shadow-lift: 0 12px 28px -18px rgba(11, 61, 61, 0.28);
	--dx-shadow-device: 0 26px 60px -26px rgba(11, 61, 61, 0.34), 0 2px 8px rgba(11, 61, 61, 0.05);

	--dx-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, "Noto Sans", "Liberation Sans", sans-serif;
	--dx-font-serif: Georgia, "Times New Roman", serif;
}

/* ==================================================================== */
/* 02  Grundlagen und Reset                                              */
/* ==================================================================== */

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

body {
	margin: 0;
	background: var(--dx-surface);
	color: var(--dx-text);
	font-family: var(--dx-font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
}

img,
svg,
video {
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: var(--dx-petrol);
}

button {
	font-family: inherit;
}

/* Ankerziele nicht unter dem Sticky-Header verstecken. */
[id] {
	scroll-margin-top: calc(var(--dx-header-h) + 12px);
}

/* ==================================================================== */
/* 03  Typografie                                                        */
/* ==================================================================== */

h1,
h2,
h3,
h4 {
	margin: 0 0 0.75rem;
	color: var(--dx-text);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

p {
	margin: 0 0 1rem;
}

p:last-child {
	margin-bottom: 0;
}

.dx-h1,
.dx-hero__title {
	font-size: clamp(2.05rem, 1.35rem + 3.1vw, 3.5rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.dx-h2 {
	font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.022em;
	margin-bottom: 1rem;
}

.dx-h3 {
	font-size: clamp(1.12rem, 1.02rem + 0.45vw, 1.35rem);
	line-height: 1.3;
	margin-bottom: 0.65rem;
}

.dx-eyebrow {
	margin: 0 0 0.7rem;
	color: var(--dx-petrol);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.dx-eyebrow--light {
	color: var(--dx-petrol-light);
}

.dx-lead p {
	margin-bottom: 0.9rem;
	color: var(--dx-text-muted);
	font-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.12rem);
	line-height: 1.7;
}

.dx-lead p:last-child {
	margin-bottom: 0;
}

/* ==================================================================== */
/* 04  Layout                                                            */
/* ==================================================================== */

.dx-container {
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.dx-container--narrow {
	max-width: 780px;
}

.dx-section {
	padding-block: clamp(3.25rem, 7vw, 6rem);
}

.dx-section--soft {
	background: var(--dx-surface-soft);
}

.dx-section--dark {
	background: var(--dx-petrol-dark);
	color: rgba(234, 243, 242, 0.85);
}

.dx-section__head {
	max-width: 46rem;
	margin-bottom: clamp(1.85rem, 4vw, 2.85rem);
}

.dx-section__foot {
	max-width: 52rem;
	margin-top: 1.75rem;
}

.dx-section__foot p {
	color: var(--dx-text-muted);
	font-size: 0.96rem;
}

/* ==================================================================== */
/* 05  Buttons                                                           */
/* ==================================================================== */

.dx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.7rem 1.1rem;
	border: 1px solid transparent;
	border-radius: var(--dx-radius-sm);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.16s ease, border-color 0.16s ease,
		color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.dx-btn--sm {
	padding: 0.55rem 0.95rem;
	font-size: 0.9rem;
}

.dx-btn--lg {
	padding: 0.88rem 1.4rem;
	font-size: 1rem;
}

.dx-btn--primary {
	background: var(--dx-petrol);
	color: #fff;
}

.dx-btn--primary:hover,
.dx-btn--primary:focus-visible {
	background: var(--dx-petrol-hover);
	box-shadow: 0 10px 22px -14px rgba(11, 61, 61, 0.75);
	transform: translateY(-1px);
}

.dx-btn--ghost {
	background: var(--dx-surface);
	border-color: var(--dx-border);
	color: var(--dx-petrol-dark);
}

.dx-btn--ghost:hover,
.dx-btn--ghost:focus-visible {
	border-color: var(--dx-petrol);
	background: var(--dx-petrol-soft);
}

.dx-btn .dx-icon {
	flex: 0 0 auto;
	transition: transform 0.16s ease;
}

.dx-btn:hover .dx-icon {
	transform: translateX(2px);
}

.dx-btn[disabled] {
	opacity: 0.65;
	cursor: progress;
	transform: none;
}

/* ==================================================================== */
/* 06  Kopfbereich und Navigation                                        */
/* ==================================================================== */

.dx-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@supports (backdrop-filter: blur(10px)) {
	.dx-header {
		background: rgba(255, 255, 255, 0.86);
		backdrop-filter: blur(12px);
	}
}

.dx-header.is-scrolled {
	border-bottom-color: var(--dx-border);
	box-shadow: 0 8px 22px -20px rgba(11, 61, 61, 0.7);
}

.dx-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--dx-header-h);
}

/* --- Logo --- */

.dx-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
}

.dx-logo__mark {
	flex: 0 0 auto;
	height: 22px;
	width: auto;
}

.dx-logo__chevron-1 {
	fill: var(--dx-petrol-dark);
}

.dx-logo__chevron-2 {
	fill: var(--dx-petrol);
}

.dx-logo__word {
	color: var(--dx-text);
	font-size: 1.32rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.dx-logo--image img {
	max-height: 44px;
	width: auto;
}

/* --- Menuschalter --- */

.dx-burger {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-sm);
	background: var(--dx-surface);
	color: var(--dx-text);
	cursor: pointer;
}

.dx-burger__icon {
	display: grid;
}

.dx-burger__icon--close {
	display: none;
}

.dx-burger[aria-expanded="true"] .dx-burger__icon--open {
	display: none;
}

.dx-burger[aria-expanded="true"] .dx-burger__icon--close {
	display: grid;
}

/* --- Menue (mobile Grundform) --- */

.dx-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	display: none;
	flex-direction: column;
	align-items: stretch;
	padding: 0.5rem clamp(1.15rem, 4vw, 2.5rem) 1.35rem;
	background: var(--dx-surface);
	border-bottom: 1px solid var(--dx-border);
	box-shadow: 0 20px 32px -24px rgba(11, 61, 61, 0.55);
}

.dx-menu.is-open {
	display: flex;
}

.dx-nav__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-nav__link {
	position: relative;
	display: block;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--dx-line-soft);
	color: var(--dx-text);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
}

.dx-menu__cta {
	margin-top: 1.1rem;
}

/* ==================================================================== */
/* 07  Hero und Geraetedarstellung                                       */
/* ==================================================================== */

.dx-hero {
	position: relative;
	padding-block: clamp(2.25rem, 5vw, 4.25rem) clamp(3rem, 6vw, 5rem);
	background:
		radial-gradient(90% 120% at 88% 6%, rgba(15, 107, 107, 0.09), transparent 62%),
		linear-gradient(180deg, #F3F8F8 0%, #FFFFFF 68%);
	overflow: hidden;
}

.dx-hero__inner {
	display: grid;
	gap: clamp(2.25rem, 5vw, 3.5rem);
	align-items: center;
}

.dx-hero__text {
	max-width: 36rem;
}

.dx-status {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1.15rem;
	padding: 0.4rem 0.8rem 0.4rem 0.65rem;
	border: 1px solid #EFE0C6;
	border-radius: 999px;
	background: var(--dx-amber-soft);
	color: var(--dx-amber-ink);
	font-size: 0.83rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.dx-status__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dx-amber);
	box-shadow: 0 0 0 3px rgba(225, 144, 46, 0.2);
}

.dx-hero__lead {
	margin-top: 1.1rem;
	max-width: 34rem;
}

.dx-hero__lead p {
	color: var(--dx-text-muted);
	font-size: clamp(1.04rem, 1rem + 0.28vw, 1.16rem);
	line-height: 1.68;
}

.dx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.85rem;
}

.dx-hero__trust {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 1.65rem 0 0;
	color: var(--dx-text-muted);
	font-size: 0.92rem;
	font-weight: 500;
}

.dx-hero__trust .dx-icon {
	flex: 0 0 auto;
	color: var(--dx-petrol);
}

/* --- Geraete --- */

.dx-devices {
	margin: 0;
}

/*
 * Der Freiraum unten nimmt die untere Haelfte des Smartphones auf. Als
 * Prozentwert bezieht er sich auf die Breite und skaliert damit im
 * gleichen Verhaeltnis wie die Geraete selbst.
 */
.dx-devices__stage {
	position: relative;
	padding-bottom: min(24%, 190px);
}

.dx-device--laptop {
	position: relative;
	z-index: 1;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius);
	background: var(--dx-surface);
	box-shadow: var(--dx-shadow-device);
	overflow: hidden;
}

.dx-device__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 28px;
	padding-inline: 13px;
	background: #F7F9F9;
	border-bottom: 1px solid var(--dx-border);
}

.dx-device__bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #D6DEDD;
}

.dx-device__screen {
	display: block;
	overflow: hidden;
}

.dx-device__screen > svg,
.dx-device__screen > img {
	display: block;
	width: 100%;
	height: auto;
}

.dx-device--phone {
	position: absolute;
	right: -1%;
	bottom: 0;
	z-index: 2;
	width: 27%;
	max-width: 168px;
	padding: 11px 6px 7px;
	border: 1px solid var(--dx-border);
	border-radius: 22px;
	background: var(--dx-surface);
	box-shadow: 0 22px 44px -20px rgba(11, 61, 61, 0.42);
}

.dx-device--phone .dx-device__screen {
	border-radius: 15px;
}

.dx-device__notch {
	position: absolute;
	top: 5px;
	left: 50%;
	width: 30px;
	height: 4px;
	border-radius: 2px;
	background: #D6DEDD;
	transform: translateX(-50%);
}

.dx-caption {
	margin: 1rem 0 0;
	color: var(--dx-text-muted);
	font-size: 0.8rem;
	line-height: 1.5;
	text-align: center;
}

/* ==================================================================== */
/* 08  Hinweisboxen                                                      */
/* ==================================================================== */

.dx-callout {
	display: flex;
	gap: 0.75rem;
	max-width: 46rem;
	margin-top: 1.5rem;
	padding: 0.95rem 1.1rem;
	border: 1px solid var(--dx-border);
	border-left: 3px solid var(--dx-petrol);
	border-radius: var(--dx-radius-sm);
	background: var(--dx-surface);
	color: var(--dx-text-muted);
	font-size: 0.94rem;
	line-height: 1.6;
}

.dx-callout .dx-icon {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--dx-petrol);
}

.dx-callout--warm {
	max-width: none;
	border-color: #F0E2CB;
	border-left-color: var(--dx-amber);
	background: #FDF7EE;
	color: #7A5117;
}

.dx-callout--warm .dx-icon {
	color: #B9741F;
}

/* ==================================================================== */
/* 09  Prozessdarstellung                                                */
/* ==================================================================== */

.dx-process {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding: clamp(1.35rem, 3vw, 2.25rem);
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	background: var(--dx-surface);
	box-shadow: var(--dx-shadow-card);
}

.dx-process__title {
	margin-bottom: 1.35rem;
}

.dx-process__list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-process__step {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.5rem 0;
}

/* Verbindungslinie zwischen den Schritten. */
.dx-process__step::after {
	content: "";
	position: absolute;
	top: 52px;
	bottom: -8px;
	left: 20px;
	width: 2px;
	background: var(--dx-border);
}

.dx-process__step:last-child::after {
	display: none;
}

.dx-process__num {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border: 1px solid var(--dx-petrol-line);
	border-radius: 50%;
	background: var(--dx-petrol-soft);
	color: var(--dx-petrol);
	font-size: 0.95rem;
	font-weight: 700;
}

.dx-process__label {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--dx-text);
	overflow-wrap: anywhere;
	hyphens: auto;
}

/* ==================================================================== */
/* 10  Funktionskarten und Mobilband                                     */
/* ==================================================================== */

/*
 * Bei sieben Karten ergibt ein Raster von vier Spalten die ruhigere
 * Aufteilung (4 + 3) als eines von drei Spalten (3 + 3 + 1).
 */
.dx-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-card {
	padding: 1.5rem 1.35rem;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius);
	background: var(--dx-surface);
	box-shadow: var(--dx-shadow-card);
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.dx-card:hover {
	border-color: var(--dx-petrol-line);
	box-shadow: var(--dx-shadow-lift);
	transform: translateY(-2px);
}

.dx-card__icon {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1rem;
	border-radius: 12px;
	background: var(--dx-petrol-soft);
	color: var(--dx-petrol);
}

.dx-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.07rem;
	font-weight: 700;
}

.dx-card__text p {
	margin: 0;
	color: var(--dx-text-muted);
	font-size: 0.95rem;
	line-height: 1.62;
}

/* --- Band mit mobiler Vorschau --- */

.dx-band {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	margin-top: clamp(1.75rem, 4vw, 2.75rem);
	padding: clamp(1.4rem, 3vw, 2.5rem);
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	background: var(--dx-surface);
}

.dx-band__lead p {
	color: var(--dx-text-muted);
	font-size: 1rem;
	line-height: 1.68;
}

.dx-ticks {
	display: grid;
	gap: 0.55rem;
	margin: 1.15rem 0 0;
	padding: 0;
	list-style: none;
}

.dx-ticks li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.95rem;
	font-weight: 600;
}

.dx-ticks .dx-icon {
	flex: 0 0 auto;
	color: var(--dx-green-ink);
}

.dx-band__visual {
	margin: 0;
}

.dx-device--sm {
	position: relative;
	right: auto;
	bottom: auto;
	width: min(206px, 100%);
	max-width: none;
	margin-inline: auto;
}

/* ==================================================================== */
/* 11  Zielgruppen                                                       */
/* ==================================================================== */

.dx-tags {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-tag {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.95rem 1.05rem;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius);
	background: var(--dx-surface);
	box-shadow: var(--dx-shadow-card);
}

.dx-tag__icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--dx-petrol-soft);
	color: var(--dx-petrol);
}

.dx-tag__label {
	font-size: 0.96rem;
	font-weight: 600;
}

/* ==================================================================== */
/* 12  Praxisabschnitt                                                   */
/* ==================================================================== */

.dx-praxis {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.dx-section--dark .dx-h2 {
	color: #fff;
}

.dx-section--dark .dx-lead p {
	color: rgba(234, 243, 242, 0.86);
}

.dx-praxis__second p {
	margin-top: 1rem;
	color: rgba(234, 243, 242, 0.72);
	font-size: 1rem;
	line-height: 1.68;
}

.dx-swiss {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 1.75rem 0 0;
	padding: 0.55rem 0.9rem;
	border-radius: var(--dx-radius-sm);
	background: rgba(255, 255, 255, 0.95);
	color: var(--dx-petrol-dark);
	font-size: 0.9rem;
	font-weight: 700;
}

.dx-swiss__mark {
	flex: 0 0 auto;
}

.dx-values {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-value {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.95rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--dx-radius);
	background: rgba(255, 255, 255, 0.06);
}

.dx-value__icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: rgba(143, 207, 204, 0.18);
	color: var(--dx-petrol-light);
}

.dx-value__label {
	color: #fff;
	font-size: 0.97rem;
	font-weight: 600;
}

/* ==================================================================== */
/* 13  Entwicklungsstatus                                                */
/* ==================================================================== */

.dx-status-grid {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.dx-status-note {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 1.5rem 0 0;
	color: var(--dx-text-muted);
	font-size: 0.94rem;
}

.dx-status-note .dx-icon {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--dx-petrol);
}

.dx-timeline {
	margin: 0;
	padding: 0.35rem 1.25rem;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	background: var(--dx-surface);
	box-shadow: var(--dx-shadow-card);
	list-style: none;
}

.dx-timeline__item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--dx-line-soft);
}

.dx-timeline__item:last-child {
	border-bottom: 0;
}

.dx-timeline__marker {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--dx-grey-dot);
}

.dx-timeline__label {
	flex: 1 1 auto;
	font-size: 0.97rem;
	font-weight: 600;
}

.dx-timeline__state {
	flex: 0 0 auto;
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 700;
	white-space: nowrap;
}

.dx-state--konzept .dx-timeline__marker {
	background: var(--dx-green);
}

.dx-state--konzept .dx-timeline__state {
	background: var(--dx-green-soft);
	color: var(--dx-green-ink);
}

.dx-state--arbeit .dx-timeline__marker {
	background: var(--dx-petrol);
}

.dx-state--arbeit .dx-timeline__state {
	background: var(--dx-petrol-soft);
	color: var(--dx-petrol-dark);
}

.dx-state--vorbereitung .dx-timeline__marker {
	background: var(--dx-grey-dot);
}

.dx-state--vorbereitung .dx-timeline__state {
	background: #EEF1F0;
	color: var(--dx-text-muted);
}

.dx-state--laufend .dx-timeline__marker {
	background: var(--dx-amber);
}

.dx-state--laufend .dx-timeline__state {
	background: var(--dx-amber-soft);
	color: var(--dx-amber-ink);
}

/* ==================================================================== */
/* 14  Kontakt und Formular                                              */
/* ==================================================================== */

.dx-contact {
	display: grid;
	gap: clamp(1.5rem, 4vw, 2.5rem);
	align-items: start;
}

.dx-contact__form {
	padding: clamp(1.25rem, 3vw, 2.15rem);
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	background: var(--dx-surface);
	box-shadow: var(--dx-shadow-card);
}

.dx-contact__info {
	padding: clamp(1.25rem, 3vw, 1.9rem);
	border: 1px solid var(--dx-petrol-line);
	border-radius: var(--dx-radius-lg);
	background: var(--dx-petrol-soft);
}

.dx-contact__address {
	display: grid;
	gap: 0.15rem;
	margin: 0 0 1.25rem;
	font-style: normal;
	font-size: 0.97rem;
}

.dx-contact__list {
	display: grid;
	gap: 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-contact__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.dx-contact__icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border: 1px solid var(--dx-petrol-line);
	border-radius: 10px;
	background: var(--dx-surface);
	color: var(--dx-petrol);
}

.dx-contact__caption {
	display: block;
	color: var(--dx-text-muted);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.dx-contact__value {
	display: inline-block;
	color: var(--dx-petrol-dark);
	font-weight: 600;
	word-break: break-word;
}

a.dx-contact__value:hover {
	color: var(--dx-petrol);
}

.dx-contact__value--todo {
	padding: 0.05rem 0.4rem;
	border-radius: 6px;
	background: var(--dx-amber-soft);
	color: var(--dx-amber-ink);
	font-size: 0.9rem;
}

.dx-contact__note p {
	margin: 1.35rem 0 0;
	color: var(--dx-text-muted);
	font-size: 0.85rem;
	line-height: 1.6;
}

/* --- Formularfelder --- */

.dx-form__grid {
	display: grid;
	gap: 1rem 1.1rem;
}

.dx-field__label {
	display: block;
	margin-bottom: 0.38rem;
	font-size: 0.89rem;
	font-weight: 600;
}

.dx-field__req {
	margin-left: 0.12rem;
	color: #B4451F;
}

.dx-field__opt {
	margin-left: 0.28rem;
	color: var(--dx-text-muted);
	font-size: 0.84rem;
	font-weight: 400;
}

.dx-field__control {
	width: 100%;
	padding: 0.68rem 0.85rem;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-sm);
	background: var(--dx-surface);
	color: var(--dx-text);
	font: inherit;
	font-size: 0.97rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.dx-field__control:focus {
	outline: none;
	border-color: var(--dx-petrol);
	box-shadow: 0 0 0 3px rgba(15, 107, 107, 0.16);
}

textarea.dx-field__control {
	min-height: 150px;
	resize: vertical;
}

select.dx-field__control {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--dx-text-muted) 50%),
		linear-gradient(135deg, var(--dx-text-muted) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 13px) calc(50% + 2px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 2.25rem;
}

.dx-field--invalid .dx-field__control {
	border-color: #C0392B;
	background: #FFF8F7;
}

.dx-field__error {
	margin: 0.4rem 0 0;
	color: var(--dx-error);
	font-size: 0.86rem;
	font-weight: 500;
}

.dx-consent {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.65rem;
	align-items: start;
	margin-top: 1.35rem;
}

.dx-consent input {
	width: 18px;
	height: 18px;
	margin: 0.22rem 0 0;
	accent-color: var(--dx-petrol);
}

.dx-consent label {
	color: var(--dx-text-muted);
	font-size: 0.89rem;
	line-height: 1.55;
}

.dx-consent .dx-field__error {
	grid-column: 2;
}

.dx-form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem 1.25rem;
	margin-top: 1.5rem;
}

.dx-form__hint {
	margin: 0;
	color: var(--dx-text-muted);
	font-size: 0.84rem;
}

/* Honeypot: fuer Menschen unsichtbar, fuer Bots sichtbar. */
.dx-hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

/* --- Rueckmeldungen --- */

.dx-notice {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding: 0.95rem 1.1rem;
	border-radius: var(--dx-radius-sm);
}

.dx-notice .dx-icon {
	flex: 0 0 auto;
	margin-top: 1px;
}

.dx-notice__title {
	margin: 0;
	font-weight: 600;
	line-height: 1.55;
}

.dx-notice--success {
	border: 1px solid #BFE5CD;
	background: var(--dx-green-soft);
	color: #0F5E33;
}

.dx-notice--error {
	border: 1px solid var(--dx-error-line);
	background: var(--dx-error-soft);
	color: #8E2016;
}

/* ==================================================================== */
/* 15  Footer                                                            */
/* ==================================================================== */

.dx-footer {
	padding-block: clamp(2.5rem, 5vw, 3.75rem) 1.65rem;
	background: var(--dx-petrol-deep);
	color: rgba(234, 243, 242, 0.78);
	font-size: 0.94rem;
}

.dx-footer__grid {
	display: grid;
	gap: 2rem;
}

.dx-footer .dx-logo__word {
	color: #fff;
}

.dx-footer .dx-logo__chevron-1 {
	fill: var(--dx-petrol-light);
}

.dx-footer .dx-logo__chevron-2 {
	fill: #fff;
}

.dx-footer__claim {
	margin: 0.6rem 0 0;
	color: #fff;
	font-weight: 600;
}

.dx-footer__status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.95rem 0 0;
	font-size: 0.9rem;
}

.dx-dot {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dx-amber);
	box-shadow: 0 0 0 4px rgba(225, 144, 46, 0.18);
}

.dx-footer__title {
	margin: 0 0 0.8rem;
	color: var(--dx-petrol-light);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.dx-footer__address {
	display: grid;
	gap: 0.2rem;
	font-style: normal;
}

.dx-footer__links {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-footer a {
	color: rgba(234, 243, 242, 0.86);
	text-decoration: none;
}

.dx-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.dx-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.4rem 1.5rem;
	margin-top: clamp(2rem, 4vw, 2.75rem);
	padding-top: 1.15rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.84rem;
}

.dx-footer__bottom p {
	margin: 0;
}

/* ==================================================================== */
/* 16  Inhaltsseiten, Suche, 404                                         */
/* ==================================================================== */

.dx-prose {
	color: var(--dx-text-muted);
	font-size: 1.02rem;
	line-height: 1.72;
}

.dx-prose h2,
.dx-prose h3 {
	margin-top: 2rem;
	color: var(--dx-text);
}

.dx-prose a {
	color: var(--dx-petrol);
	text-decoration: underline;
}

.dx-prose ul,
.dx-prose ol {
	padding-left: 1.25rem;
}

.dx-prose li {
	margin-bottom: 0.4rem;
}

.dx-postlist {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.dx-postlist__item {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--dx-border);
}

.dx-404 {
	text-align: center;
}

.dx-404 .dx-lead {
	margin-inline: auto;
	max-width: 34rem;
}

/* ==================================================================== */
/* 17  Beschriftungen der SVG-Konzeptdarstellungen                        */
/* ==================================================================== */

.dx-mockup {
	display: block;
	width: 100%;
	height: auto;
}

.dx-mockup text {
	font-family: var(--dx-font);
}

.dx-mk-title {
	font-size: 15px;
	font-weight: 700;
	fill: #12211F;
}

.dx-mk-week {
	font-size: 11px;
	fill: #5C6763;
}

.dx-mk-tab {
	font-size: 10.5px;
	font-weight: 600;
	fill: #5C6763;
}

.dx-mk-tab--on {
	fill: #0B3D3D;
}

.dx-mk-chip {
	font-size: 10px;
	font-weight: 600;
}

.dx-mk-th {
	font-size: 10.5px;
	font-weight: 700;
	fill: #5C6763;
}

.dx-mk-time {
	font-size: 10px;
	font-weight: 700;
}

.dx-mk-name {
	font-size: 10.5px;
	font-weight: 700;
	fill: #12211F;
}

.dx-mk-sub {
	font-size: 9.5px;
	fill: #5C6763;
}

.dx-mk-avatar {
	font-size: 9.5px;
	font-weight: 700;
}

.dx-mk-person {
	font-size: 11px;
	font-weight: 600;
	fill: #12211F;
}

.dx-mk-status {
	font-size: 12px;
	font-weight: 600;
	fill: #12211F;
}

.dx-mk-mtitle {
	font-size: 17px;
	font-weight: 700;
	fill: #12211F;
}

.dx-mk-seg {
	font-size: 12px;
	font-weight: 600;
	fill: #5C6763;
}

.dx-mk-seg--on {
	fill: #FFFFFF;
}

.dx-mk-daygroup {
	font-size: 11.5px;
	font-weight: 600;
	fill: #5C6763;
}

.dx-mk-customer {
	font-size: 15px;
	font-weight: 700;
	fill: #12211F;
}

.dx-mk-tl {
	font-size: 10px;
	font-weight: 700;
}

.dx-mk-tltime {
	font-size: 13px;
	font-weight: 700;
	fill: #12211F;
}

.dx-mk-caption {
	font-size: 9.5px;
	fill: #5C6763;
}

.dx-mk-value {
	font-size: 11.5px;
	font-weight: 600;
	fill: #12211F;
}

.dx-mk-btn {
	font-size: 11.5px;
	font-weight: 700;
}

/* ==================================================================== */
/* 18  Barrierefreiheit                                                  */
/* ==================================================================== */

.dx-skip {
	position: absolute;
	top: 0;
	left: -9999px;
	z-index: 200;
	padding: 0.75rem 1.15rem;
	border-radius: 0 0 var(--dx-radius-sm) 0;
	background: var(--dx-petrol);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.dx-skip:focus {
	left: 0;
}

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

/* Deutlich sichtbarer Fokusrahmen fuer die Tastaturbedienung. */
:focus-visible {
	outline: 3px solid var(--dx-info-blue);
	outline-offset: 2px;
	border-radius: 4px;
}

.dx-section--dark :focus-visible,
.dx-footer :focus-visible {
	outline-color: #FFFFFF;
}

/* Sanftes Einblenden – wird ausschliesslich per JavaScript aktiviert. */
.dx-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.dx-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ==================================================================== */
/* 19  Grosse Bildschirme                                                */
/* ==================================================================== */

@media (min-width: 700px) {
	.dx-form__grid {
		grid-template-columns: 1fr 1fr;
	}

	.dx-field--full {
		grid-column: 1 / -1;
	}

	.dx-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

@media (min-width: 860px) {
	/*
	 * Prozess: ab hier waagerecht mit Verbindungslinie.
	 * grid-auto-flow statt fester Spaltenzahl – dadurch passt sich die
	 * Darstellung automatisch an, wenn Schritte ergänzt oder entfernt werden.
	 */
	.dx-process__list {
		grid-auto-flow: column;
		grid-auto-columns: 1fr;
	}

	.dx-process__step {
		flex-direction: column;
		gap: 0.7rem;
		padding: 0 0.25rem;
		text-align: center;
	}

	.dx-process__step::after {
		top: 20px;
		bottom: auto;
		left: calc(50% + 27px);
		right: calc(-50% + 27px);
		width: auto;
		height: 2px;
	}

	.dx-process__label {
		font-size: 0.88rem;
		line-height: 1.35;
	}
}

@media (min-width: 820px) {
	.dx-band {
		grid-template-columns: 1.25fr 0.75fr;
	}

	.dx-praxis {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.dx-status-grid {
		grid-template-columns: 1fr 1fr;
	}

	.dx-contact {
		grid-template-columns: 1.4fr 0.6fr;
	}
}

@media (min-width: 900px) {
	:root {
		--dx-header-h: 74px;
	}

	.dx-burger {
		display: none;
	}

	.dx-menu {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1.75rem;
		padding: 0;
		border: 0;
		background: none;
		box-shadow: none;
	}

	.dx-nav__list {
		flex-direction: row;
		align-items: center;
		gap: 1.6rem;
	}

	.dx-nav__link {
		padding: 0.3rem 0;
		border-bottom: 0;
		color: var(--dx-text-muted);
		font-size: 0.94rem;
	}

	.dx-nav__link::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: -3px;
		left: 0;
		height: 2px;
		background: var(--dx-petrol);
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.18s ease;
	}

	.dx-nav__link:hover,
	.dx-nav__link[aria-current="true"] {
		color: var(--dx-petrol-dark);
	}

	.dx-nav__link:hover::after,
	.dx-nav__link[aria-current="true"]::after {
		transform: scaleX(1);
	}

	.dx-menu__cta {
		margin-top: 0;
	}
}

@media (min-width: 1000px) {
	.dx-hero__inner {
		grid-template-columns: 1.02fr 1fr;
	}

	.dx-caption {
		text-align: left;
	}
}

/* ==================================================================== */
/* 20  Bewegungsreduktion                                                */
/* ==================================================================== */

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

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

	.dx-card:hover,
	.dx-btn:hover {
		transform: none;
	}

	.dx-reveal {
		opacity: 1;
		transform: none;
	}
}
