/* =========================================================
   Design-System — Advokat Rechtsanwaltsgesellschaft mbH
   Farb-Token: aus Task 1 / assets/notizen-farbwelt.md
   ========================================================= */

:root {
	--blau:        #003866;  /* Logo-Pixel, verifiziert */
	--blau-dunkel: #002e5d;  /* Wix-Footer-CSS, verifiziert */
	--navy-tief:   #001f39;  /* Verlaufs-Tiefe (Redesign 2026-07-12) */
	--azur:        #2f7fb5;  /* Logo-Verlauf helles Ende (Redesign) */
	--azur-hell:   #6aa8d0;  /* Azur-Aufhellung für Linien/Marker */
	--hell:        #eef3f8;  /* Fallback — PO-Abnahme in Task 9 */
	--nebel:       #eaf1f8;  /* kühle Sektionsfläche (Redesign) */
	--tinte:       #1c2330;  /* Fallback — PO-Abnahme in Task 9 */
	--grau:        #3a4455;  /* Fließtext-Grau (bestehend, jetzt Token) */
	--papier:      #fafbfc;  /* Fallback — PO-Abnahme in Task 9 */
	--linie:       #dde3ea;  /* Fallback — PO-Abnahme in Task 9 */
	--serif:       'Literata', Georgia, serif;
	--sans:        'IBM Plex Sans', system-ui, sans-serif;
	--verlauf:     linear-gradient(135deg, var(--navy-tief) 0%, var(--blau) 45%, var(--azur) 100%);
}

/* ── Reset & Basis ─────────────────────────────────────── */

* {
	box-sizing: border-box;
}

[hidden] { display: none !important; }

body {
	margin: 0;
	font-family: var(--sans);
	color: var(--tinte);
	background: var(--papier);
	line-height: 1.65;
}

h1, h2, h3 {
	font-family: var(--serif);
	line-height: 1.25;
	color: var(--tinte);
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

img {
	max-width: 100%;
	height: auto;
}

/* ── Layout-Helfer ─────────────────────────────────────── */

.shell {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 20px;
}

.abschnitt {
	padding: 72px 20px;
}

/* ── Buttons ───────────────────────────────────────────── */

.btn {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-family: var(--sans);
	cursor: pointer;
	border: none;
	transition: background 0.15s ease;
}

.btn-primaer {
	background: var(--blau);
	color: #fff;
}

.btn-primaer:hover {
	background: var(--blau-dunkel);
}

.btn-klein {
	padding: 8px 18px;
	font-size: .95rem;
}

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

a:focus-visible {
	outline: 2px solid var(--blau);
	outline-offset: 2px;
}

/* ── Karte ─────────────────────────────────────────────── */

.karte {
	background: #fff;
	border: 1px solid var(--linie);
	border-radius: 10px;
	padding: 28px;
}

/* ── Links ─────────────────────────────────────────────── */

a {
	color: var(--blau-dunkel);
}

a:hover {
	color: var(--blau);
}

/* ── Skip-Link (Barrierefreiheit) ──────────────────────── */

.skip-link {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
	background: #fff;
	padding: 8px;
	z-index: 20;
}

/* ── Site Header ───────────────────────────────────────── */

.site-header {
	background: #fff;
	border-bottom: 1px solid var(--linie);
	position: sticky;
	top: 0;
	z-index: 10;
}

.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
}

.wortmarke {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-kanzlei {
	height: 52px;
	width: auto;
	display: block;
}

/* ── Hauptnavigation ───────────────────────────────────── */

.hauptnav {
	display: flex;
	align-items: center;
}

.nav-liste {
	display: flex;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-liste a {
	text-decoration: none;
	color: var(--tinte);
	font-size: .95rem;
}

.nav-liste a:hover {
	color: var(--blau);
}

.nav-toggle {
	display: none;
}

.nav-toggle:focus-visible {
	outline: 2px solid var(--blau);
	outline-offset: 2px;
}

.nav-toggle-balken {
	width: 18px;
	height: 2px;
	background: var(--tinte);
	display: block;
	position: relative;
}

.nav-toggle-balken::before,
.nav-toggle-balken::after {
	content: '';
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--tinte);
}

.nav-toggle-balken::before { top: -5px; }
.nav-toggle-balken::after  { top:  5px; }

/* ── Site Footer ───────────────────────────────────────── */

.site-footer {
	background: var(--hell);
	border-top: 1px solid var(--linie);
	margin-top: 72px;
	font-size: .95rem;
}

.footer-raster {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding: 48px 20px;
}

.footer-titel {
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--tinte);
}

.footer-schluss {
	padding: 0 20px 28px;
	color: #5a6472;
}

.site-footer a {
	color: var(--blau-dunkel);
}

.site-footer a:hover {
	color: var(--blau);
}

/* ── Hero ──────────────────────────────────────────────── */

.hero {
	padding: 96px 20px 80px;
	background: var(--hell);
	border-bottom: 1px solid var(--linie);
}

.hero .shell {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.hero-text {
	max-width: 540px;
}

.hero-text h1 {
	margin-top: 0;
	margin-bottom: 20px;
}

.hero-text p {
	font-size: 1.1rem;
	margin-bottom: 32px;
	color: #3a4455;
}

/* Hero-Variante: nur Text, zentriert */
.hero--mitte {
	text-align: center;
}

.hero--mitte .shell {
	display: block;
}

.hero--mitte .hero-text {
	max-width: 700px;
	margin: 0 auto;
}

/* ── Welt-Raster (Karten-Grid 2×2) ────────────────────── */

.welt-raster {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: 40px;
}

.welt-raster .karte {
	display: flex;
	flex-direction: column;
}

.welt-raster .karte h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.15rem;
}

.welt-raster .karte p {
	margin: 0;
	flex: 1;
	color: #3a4455;
}

/* ── Ablauf-Schritte (nummerierte Liste) ───────────────── */

.ablauf-schritte {
	list-style: none;
	counter-reset: schritt;
	margin: 0;
	padding: 0;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

.ablauf-schritte li {
	counter-increment: schritt;
	position: relative;
	padding: 0 0 22px 56px;
	display: flex;
	flex-direction: column;
}

.ablauf-schritte li::before {
	content: counter(schritt);
	position: absolute;
	left: 0;
	top: -2px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--blau);
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ablauf-schritte li p {
	margin: 0;
	color: #3a4455;
}

/* ── SA-Karte (Smarter Anwalt — bewusst keine SA-Farben) ─ */

.sa-karte {
	background: var(--hell);
	border: 1px solid var(--linie);
	border-radius: 10px;
	padding: 36px 40px;
	margin-top: 48px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.sa-karte-text {
	flex: 1;
}

.sa-karte-text h2 {
	margin-top: 0;
	margin-bottom: 12px;
}

.sa-karte-text p {
	margin: 0 0 24px;
	color: #3a4455;
}

.sa-karte-logo {
	flex-shrink: 0;
}

/* ── Formular-Stile ────────────────────────────────────── */

.formular {
	max-width: 640px;
}

.formular-gruppe {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 28px;
}

.formular label {
	font-weight: 600;
	font-size: .95rem;
	color: var(--tinte);
}

.formular input:not([type="radio"]):not([type="checkbox"]),
.formular textarea,
.formular select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--linie);
	border-radius: 6px;
	font-family: var(--sans);
	font-size: 1rem;
	color: var(--tinte);
	background: #fff;
	transition: border-color 0.15s ease;
	appearance: none;
}

.formular input:focus,
.formular textarea:focus,
.formular select:focus {
	outline: none;
	border-color: var(--blau);
	box-shadow: 0 0 0 3px rgba(0, 56, 102, 0.12);
}

.formular textarea {
	resize: vertical;
	min-height: 140px;
	line-height: 1.6;
}

.formular-hinweis {
	font-size: .875rem;
	color: #5a6472;
	margin-top: 4px;
}

.formular-submit {
	margin-top: 8px;
}

/* ── Hero CTA-Zeile ────────────────────────────────────── */

.hero-cta {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.hero-telefon {
	font-size: .95rem;
	color: #5a6472;
}

/* ── Karten-Link ───────────────────────────────────────── */

.karte-mehr {
	display: inline-block;
	margin-top: 16px;
	font-size: .9rem;
	font-weight: 600;
	color: var(--blau-dunkel);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.karte-mehr:hover {
	color: var(--blau);
}

/* ── Abschnitt Hell-Hintergrund ────────────────────────── */

.abschnitt--hell {
	background: var(--hell);
	border-top: 1px solid var(--linie);
	border-bottom: 1px solid var(--linie);
}

/* ── Kanzlei-Anriss ────────────────────────────────────── */

.kanzlei-anriss-raster {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
}

.portrait-platzhalter {
	aspect-ratio: 4 / 5;
	background: var(--linie);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5a6472;
	font-size: .9rem;
}

.kanzlei-anriss-text h2 {
	margin-top: 0;
	margin-bottom: 16px;
}

.kanzlei-anriss-text p {
	margin-bottom: 28px;
	color: #3a4455;
}

/* ── SA-Karte Unterzeile ───────────────────────────────── */

.sa-unterzeile {
	margin-top: 16px;
	font-size: .85rem;
	color: #5a6472;
	margin-bottom: 0;
}

/* ── SA-Karte Logo-Position ────────────────────────────── */

.sa-karte-logo img {
	height: 28px;
	width: 28px;
	object-fit: contain;
}

/* ── Abschluss ─────────────────────────────────────────── */

.abschluss-inhalt {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.abschluss-inhalt h2 {
	margin-top: 0;
	margin-bottom: 12px;
}

.abschluss-inhalt > p {
	margin-bottom: 32px;
	font-size: 1.1rem;
	color: #3a4455;
}

.abschluss-standorte {
	margin-top: 36px;
	font-size: .9rem;
	color: #5a6472;
	line-height: 1.8;
}

.abschluss-standorte p {
	margin: 0;
}

/* ── Seite „Kanzlei" ──────────────────────────────────── */

.kanzlei-intro h1 {
	margin-top: 0;
	margin-bottom: 16px;
}

.kanzlei-vorspann {
	max-width: 720px;
	font-size: 1.1rem;
	color: #3a4455;
}

.kanzlei-vita-raster {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
}

.kanzlei-vita-text h2 {
	margin-top: 0;
	margin-bottom: 24px;
}

.vita-kasten {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vita-kasten li {
	padding: 14px 0;
	border-top: 1px solid var(--linie);
	color: #3a4455;
	line-height: 1.6;
}

.vita-kasten li:last-child {
	border-bottom: 1px solid var(--linie);
}

.kanzlei-prinzipien h2 {
	margin-top: 0;
	margin-bottom: 24px;
}

.prinzipien-liste {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 680px;
}

.prinzipien-liste li {
	padding: 12px 0;
	border-top: 1px solid var(--linie);
	color: #3a4455;
	line-height: 1.6;
}

.prinzipien-liste li:last-child {
	border-bottom: 1px solid var(--linie);
}

.kanzlei-ki h2 {
	margin-top: 0;
	margin-bottom: 16px;
}

.kanzlei-ki p {
	max-width: 720px;
	color: #3a4455;
}

.kanzlei-cta .abschluss-inhalt {
	text-align: left;
}

/* ── Seite „Anliegen" ──────────────────────────────────── */

.anliegen-intro {
	padding-bottom: 40px;
}

.anliegen-intro h1 {
	margin-top: 0;
	margin-bottom: 16px;
}

.anliegen-vorspann {
	max-width: 720px;
	font-size: 1.1rem;
	color: #3a4455;
}

.welt-abschnitt > .shell {
	max-width: 760px;
}

.welt-abschnitt > .shell > h2 {
	margin-top: 0;
	margin-bottom: 28px;
}

.welt-block {
	margin-bottom: 26px;
}

.welt-block-titel {
	font-size: 1.05rem;
	margin: 0 0 6px;
	color: var(--blau-dunkel);
}

.welt-block p {
	margin: 0;
	color: #3a4455;
}

.welt-abschnitt .btn-primaer {
	margin-top: 10px;
}

.anliegen-abschluss .shell {
	max-width: 640px;
}

.anliegen-abschluss h2 {
	margin-top: 0;
	margin-bottom: 12px;
}

.anliegen-abschluss p {
	margin-bottom: 28px;
	color: #3a4455;
}

/* ── Seite „Kontakt" ──────────────────────────────────── */

.kontakt-intro {
	padding-bottom: 16px;
}

.kontakt-intro h1 {
	margin-top: 0;
	margin-bottom: 16px;
}

.kontakt-vorspann {
	max-width: 680px;
	font-size: 1.05rem;
	color: #3a4455;
}

.kontakt-formular-abschnitt {
	padding-top: 32px;
}

.kontakt-erwartung {
	margin-top: 20px;
	font-size: .9rem;
	color: #5a6472;
	max-width: 580px;
	line-height: 1.65;
}

.formular-meldung {
	padding: 14px 18px;
	border-radius: 6px;
	margin-bottom: 24px;
	font-size: .95rem;
}

.formular-meldung--fehler {
	background: #fff1f0;
	border: 1px solid #f5c0bc;
	color: #a12b2b;
}

.formular-fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

.formular-legend {
	font-weight: 600;
	font-size: .95rem;
	color: var(--tinte);
	margin-bottom: 10px;
}

.formular-radio-gruppe {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.formular-radio-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-weight: normal;
}

/* Native Auswahlfelder: keine Textfeld-Breite oder appearance:none. */
.formular input[type="radio"],
.formular input[type="checkbox"] {
	appearance: auto;
	width: 1.15rem;
	height: 1.15rem;
	flex: 0 0 1.15rem;
	margin: 0;
	padding: 0;
	accent-color: var(--blau);
}

.formular-optional {
	font-weight: normal;
	color: #5a6472;
	font-size: .875rem;
}

.kontakt-bestaetigung {
	max-width: 560px;
	padding: 32px;
	background: var(--hell);
	border: 1px solid var(--linie);
	border-radius: 10px;
}

.kontakt-bestaetigung p {
	margin: 0;
	color: #3a4455;
	line-height: 1.7;
}

.kontakt-daten {
	padding-top: 48px;
	padding-bottom: 48px;
}

.kontakt-daten-raster {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 32px;
}

.kontakt-datenschutz {
	font-size: .875rem;
	color: #5a6472;
	margin: 0;
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 760px) {

	/* Navigation */
	.nav-toggle {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: none;
		border: 1px solid var(--linie);
		border-radius: 6px;
		padding: 8px 14px;
		font-family: var(--sans);
		cursor: pointer;
	}

	.nav-liste {
		display: none;
		position: absolute;
		right: 16px;
		top: 64px;
		flex-direction: column;
		background: #fff;
		border: 1px solid var(--linie);
		border-radius: 10px;
		padding: 18px 22px;
		box-shadow: 0 8px 30px rgba(28, 35, 48, .12);
	}

	.nav-liste.offen {
		display: flex;
	}

	.nav-liste .nav-cta {
		margin-top: 8px;
		border-top: 1px solid var(--linie);
		padding-top: 12px;
	}

	/* Footer */
	.footer-raster {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* Abstände */
	.abschnitt {
		padding: 48px 20px;
	}

	/* Hero */
	.hero {
		padding: 64px 20px;
	}

	.hero .shell {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	/* Welt-Raster */
	.welt-raster {
		grid-template-columns: 1fr;
	}

	/* SA-Karte */
	.sa-karte {
		flex-direction: column;
		padding: 28px 24px;
		gap: 24px;
	}

	/* Kanzlei-Anriss */
	.kanzlei-anriss-raster {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.portrait-platzhalter {
		aspect-ratio: 3 / 2;
	}

	/* Kanzlei-Seite */
	.kanzlei-vita-raster {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	/* Hero CTA */
	.hero-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	/* Abschluss */
	.abschluss-inhalt {
		text-align: left;
	}

	/* Kontakt */
	.kontakt-daten-raster {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.formular-radio-gruppe {
		flex-direction: column;
		gap: 14px;
	}

}

/* ── PL-Elemente: unsichtbar außer für polnischsprachige Browser (D.21) ── */
.pl-nur { display: none; }
html.pl-browser li.pl-nur { display: list-item; }
html.pl-browser div.pl-nur, html.pl-browser p.pl-nur, html.pl-browser section.pl-nur { display: block; }
html.pl-browser span.pl-nur, html.pl-browser a.pl-nur { display: inline; }

/* ── Hero-Weiche (Privat-Zeile + PL-Zeile, dezent unter dem CTA) ── */
.hero-weiche { margin-top: 0.9rem; font-size: 0.92rem; opacity: 0.85; }
.hero-weiche a { text-decoration: underline; }

/* ── SA-Hinweis im Kontaktformular (Privat-Weiche, freundlich) ── */
.formular-hinweis-karte { padding: 0.9rem 1.1rem; border-left: 3px solid var(--azur); background: var(--nebel); margin-bottom: 1.2rem; font-size: 0.95rem; }
.formular-hinweis-karte p { margin: 0; }

/* ═════════════════════════════════════════════════════════════════
   REDESIGN 2026-07-12 — Logo-Sprache (Rauten-Motiv, Navy→Azur-Verlauf)
   Angehängt: überschreibt Basis-Regeln bei gleicher/höherer Spezifität.
   ═════════════════════════════════════════════════════════════════ */

/* ── Rhythmus & Sektionen ─────────────────────────────────────── */
.abschnitt { padding: 92px 20px; }
.abschnitt--hell { background: var(--nebel); border-top: 1px solid var(--linie); border-bottom: 1px solid var(--linie); }

/* Eyebrow — getrackte Azur-Rubrik mit vorangestellter Mini-Raute */
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--sans); font-weight: 600; font-size: .72rem;
	letter-spacing: .19em; text-transform: uppercase; color: #155a87; /* dunkleres Azur: WCAG-AA auf hellen Flächen */
	margin: 0 0 18px;
}
.eyebrow::before {
	content: ""; width: 9px; height: 9px; flex: none;
	background: var(--verlauf); transform: rotate(45deg);
}
.hero--mitte .eyebrow, .abschluss-inhalt .eyebrow { justify-content: center; }

/* Serifen-Display etwas kräftiger im Rhythmus */
h1 { letter-spacing: -0.015em; }
h2 { letter-spacing: -0.01em; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn { padding: 14px 30px; border-radius: 8px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primaer { background: var(--verlauf); box-shadow: 0 6px 18px -8px rgba(0,40,90,.6); }
.btn-primaer:hover { background: var(--verlauf); transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(0,40,90,.7); }

/* ── Front-Page-Hero: Verlaufs-Panel + Rauten-Motiv (Signatur) ── */
.hero:not(.hero--mitte) {
	position: relative; overflow: hidden;
	background: var(--verlauf); border-bottom: none;
	padding: 118px 20px 104px; color: #fff;
}
.hero:not(.hero--mitte) .shell { position: relative; z-index: 2; grid-template-columns: 1fr; }
.hero:not(.hero--mitte) .hero-text { max-width: 680px; }
.hero:not(.hero--mitte) .hero-text h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.3rem); }
.hero:not(.hero--mitte) .hero-text p { color: rgba(255,255,255,.82); font-size: 1.18rem; max-width: 600px; }
.hero:not(.hero--mitte) .btn-primaer { background: #fff; color: var(--blau); box-shadow: 0 8px 24px -10px rgba(0,0,0,.5); }
.hero:not(.hero--mitte) .btn-primaer:hover { background: #eaf1f8; }
.hero:not(.hero--mitte) .eyebrow { color: var(--azur-hell); }
.hero:not(.hero--mitte) .hero-weiche { opacity: 1; color: rgba(255,255,255,.72); }
.hero:not(.hero--mitte) .hero-weiche a { color: #fff; }
/* Rauten-Motiv als großes, ruhiges Wasserzeichen (SVG im Markup) */
.hero-motiv {
	position: absolute; z-index: 1; right: -80px; top: 50%;
	transform: translateY(-50%); width: 560px; height: 560px;
	opacity: .16; pointer-events: none;
}
.hero-motiv svg { width: 100%; height: 100%; display: block; }

/* Subseiten-Hero (hero--mitte): hell, mit Eyebrow + zentrierter Raute */
.hero--mitte { background: var(--nebel); border-bottom: 1px solid var(--linie); padding: 84px 20px 76px; }
.hero--mitte .hero-text h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

/* ── Situations-Karten: Tiefe, Hover, Rauten-Marker, Akzentkante ── */
.welt-raster { gap: 26px; margin-top: 44px; }
.welt-raster .karte {
	position: relative; background: #fff; border: 1px solid var(--linie);
	border-radius: 14px; padding: 34px 30px 30px; overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.welt-raster .karte::before { /* obere Akzentkante im Verlauf */
	content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
	background: var(--verlauf); transform: scaleX(0); transform-origin: left;
	transition: transform .25s ease;
}
.welt-raster .karte::after { /* Rauten-Marker oben links */
	content: ""; position: absolute; left: 30px; top: 30px;
	width: 12px; height: 12px; background: var(--verlauf); transform: rotate(45deg);
}
.welt-raster .karte h3 { margin: 26px 0 10px; font-size: 1.24rem; }
.welt-raster .karte:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,40,90,.45); border-color: var(--azur-hell); }
.welt-raster .karte:hover::before { transform: scaleX(1); }
.karte-mehr { text-decoration: none; color: #155a87; font-weight: 600; }
.karte-mehr:hover { color: var(--blau); }
/* Ganze Situations-Karte klickbar: unsichtbares Link-Overlay (ein Fokus-Ziel, barrierefrei) */
.welt-raster .karte { cursor: pointer; }
.welt-raster .karte .karte-mehr::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.welt-raster .karte:focus-within { border-color: var(--azur-hell); box-shadow: 0 18px 40px -22px rgba(0,40,90,.45); }
.welt-raster .karte:focus-within::before { transform: scaleX(1); }

/* Fünf Karten: drittes Raster bricht sauber (3+2 auf Desktop) */
.welt-raster--fuenf { grid-template-columns: repeat(3, 1fr); }

/* ── Ablauf: Schritt-Nummern in Rauten (echte Sequenz) ─────────── */
.ablauf-schritte { gap: 30px; margin-top: 44px; }
.ablauf-schritte li { padding-left: 68px; }
.ablauf-schritte li::before { /* Raute (rotiertes Verlaufsquadrat) statt Kreis */
	content: ""; left: 4px; top: 0; width: 38px; height: 38px;
	border-radius: 7px; background: var(--verlauf); transform: rotate(45deg);
}
.ablauf-schritte li::after { /* Nummer aufrecht über der Raute */
	content: counter(schritt); position: absolute; left: 4px; top: 0;
	width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
	color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
}
.ablauf-schritte li strong { display: block; margin-bottom: 4px; font-size: 1.05rem; color: var(--tinte); }

/* ── SA/Weiche-Karte: wärmerer Rahmen ──────────────────────────── */
.sa-karte { border-radius: 14px; border-color: var(--linie); }
.sa-karte-logo { display: flex; align-items: center; justify-content: center; width: 66px; height: 66px; border-radius: 12px; background: #fff; border: 1px solid var(--linie); }

/* ── Header: Logo-Marke + Wortmarke ────────────────────────────── */
.nav-liste .btn-primaer { color: #fff; } /* Nav-CTA: weißer Text schlägt .nav-liste a */
.logo-kanzlei { height: 44px; }
.wortmarke { gap: 13px; }
.wortmarke-text { display: flex; flex-direction: column; line-height: 1.05; }
.wortmarke-name { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--tinte); letter-spacing: .01em; }
.wortmarke-zusatz { font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--azur); margin-top: 2px; }

/* ── Portrait-Platzhalter im neuen Look (bis echtes Foto) ──────── */
.portrait-platzhalter { background: var(--verlauf); color: rgba(255,255,255,.85); border-radius: 14px; }

/* ── Abschluss-Sektion: Rauten-Akzent über dem Titel ──────────── */
.abschluss-inhalt .eyebrow { margin-bottom: 14px; }

/* ── Responsive Redesign ──────────────────────────────────────── */
@media (max-width: 860px) {
	.welt-raster--fuenf { grid-template-columns: repeat(2, 1fr); }
	.hero-motiv { width: 380px; height: 380px; right: -120px; opacity: .12; }
	.abschnitt { padding: 66px 20px; }
	.hero:not(.hero--mitte) { padding: 88px 20px 76px; }
}
@media (max-width: 620px) {
	.welt-raster, .welt-raster--fuenf { grid-template-columns: 1fr; }
	.hero-motiv { display: none; }
}

/* ── Reduced Motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.btn, .welt-raster .karte, .welt-raster .karte::before { transition: none; }
	.welt-raster .karte:hover { transform: none; }
}

/* ── Anfrage-Wizard ─────────────────────────────────────────────── */
.wizard { max-width: 640px; }
.wizard-phasen { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0 0 28px; }
.wizard-phasen li { flex: 1; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #7a8494; padding-top: 12px; border-top: 3px solid var(--linie); }
.wizard-phasen li.aktiv { color: #155a87; border-top-color: var(--azur); }
.wizard-schritt h2 { margin: 0 0 8px; font-size: 1.35rem; }
.wizard-schritt p { color: var(--grau); margin: 0 0 18px; }
.auswahl-liste { display: flex; flex-direction: column; gap: 10px; }
.auswahl-liste .auswahl-option { display: block; width: 100%; text-align: left; padding: 14px 18px; border: 1px solid var(--linie); border-radius: 10px; background: #fff; cursor: pointer; font: inherit; transition: border-color .15s ease, box-shadow .15s ease; }
.auswahl-liste .auswahl-option:hover { border-color: var(--azur-hell); box-shadow: 0 10px 24px -16px rgba(0,40,90,.4); }
.wizard textarea, .wizard input[type="text"] { width: 100%; padding: 12px 14px; border: 1px solid var(--linie); border-radius: 8px; font: inherit; }
.wizard-nav { margin-top: 20px; }
.wizard-hinweis { margin-top: 24px; font-size: .82rem; color: #7a8494; }
.tipp-indikator { color: #7a8494; font-style: italic; }
.tipp-punkte span { opacity: .6; }
@media (prefers-reduced-motion: reduce) { .auswahl-liste .auswahl-option { transition: none; } }

/* ── Ratgeber ─────────────────────────────────────────────────── */
.shell-schmal { max-width: 760px; }
.ratgeber-artikel h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 8px; }
.ratgeber-artikel h2 { margin-top: 40px; }
.ratgeber-artikel p, .ratgeber-artikel li { color: var(--tinte); }
.brotkrumen { font-size: .82rem; color: #7a8494; margin: 0 0 8px; }
.brotkrumen a { color: #155a87; text-decoration: none; }
.artikel-lead { font-size: 1.15rem; color: var(--grau); }
.kurzantwort { background: var(--nebel); border-left: 3px solid var(--azur); border-radius: 10px; padding: 20px 24px; margin-top: 28px; }
.kurzantwort h2 { margin-top: 0; font-size: 1.15rem; }
.kurzantwort ul { margin: 0; padding-left: 20px; }
.situationen { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px; }
.situationen .karte { border: 1px solid var(--linie); border-radius: 12px; padding: 20px; }
.situationen .karte h3 { margin: 0 0 8px; font-size: 1.05rem; }
.praxis-tipp { background: #fff; border: 1px solid var(--linie); border-radius: 10px; padding: 14px 18px; }
.praxis-tipp-titel { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #155a87; margin-right: 8px; }
.artikel-faq details { border-bottom: 1px solid var(--linie); padding: 12px 0; }
.artikel-faq summary { cursor: pointer; font-weight: 600; }
.fundstellen { background: var(--nebel); border-radius: 10px; padding: 20px 24px; margin-top: 40px; }
.fundstellen h2 { margin-top: 0; font-size: 1.1rem; }
.fundstellen a { color: #155a87; }
.ratgeber-saeule { margin-top: 36px; }
.saeule-titel { font-size: 1.15rem; }
.hub-karten { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.hub-karte { display: block; border: 1px solid var(--linie); border-radius: 12px; padding: 20px; text-decoration: none; transition: border-color .15s ease, box-shadow .15s ease; }
.hub-karte:hover { border-color: var(--azur-hell); box-shadow: 0 12px 30px -20px rgba(0,40,90,.4); }
.hub-karte h3 { margin: 0; font-size: 1.05rem; color: var(--tinte); }
.hub-hinweis { color: var(--grau); font-size: .95rem; margin-top: 32px; }
.ratgeber-artikel .artikel-cta { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--linie); text-align: center; } /* Artikel-CTA (Vertrag T1); erbt Rest von .abschluss-inhalt */
@media (max-width: 620px) { .situationen, .hub-karten { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .hub-karte { transition: none; } }

/* ── Verzugszinsen-Rechner ──────────────────────────────────────── */
.rechner { background: var(--nebel); border: 1px solid var(--linie); border-radius: 14px; padding: 24px 28px; margin-top: 28px; }
.rechner-zeile { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-bottom: 14px; align-items: flex-end; }
.rechner-zeile label { display: flex; flex-direction: column; gap: 5px; font-size: .88rem; color: var(--grau); font-weight: 500; }
.rechner-zeile--typ { flex-direction: row; gap: 20px; }
.rechner-zeile--typ label { flex-direction: row; align-items: center; gap: 6px; color: var(--tinte); font-size: .92rem; }
.rechner-zeile input[type="number"],
.rechner-zeile input[type="date"] { padding: 9px 12px; border: 1px solid var(--linie); border-radius: 8px; font: inherit; font-size: .95rem; background: #fff; color: var(--tinte); min-width: 140px; }
.rechner-zeile input[type="number"]:focus,
.rechner-zeile input[type="date"]:focus { outline: 2px solid var(--azur-hell); outline-offset: 2px; border-color: var(--azur); }
.rechner-ergebnis { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: #155a87; margin: 8px 0 4px; min-height: 1.6em; }
.rechner-hinweis { font-size: .78rem; color: #7a8494; margin: 0; line-height: 1.5; }
@media (max-width: 560px) {
	.rechner { padding: 18px 16px; }
	.rechner-zeile { flex-direction: column; }
	.rechner-zeile input[type="number"],
	.rechner-zeile input[type="date"] { min-width: 0; width: 100%; }
}

/* Verbraucher-Weiche — dezenter, site-weiter Wegweiser zu smarteranwalt.de (Leiste über dem Header) */
.verbraucher-weiche {
	background: var(--nebel);
	border-bottom: 1px solid var(--linie);
}
.verbraucher-weiche-innen {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: .82rem;
	line-height: 1.35;
}
.verbraucher-weiche-frage { color: var(--grau); }
.verbraucher-weiche-link {
	color: var(--blau-dunkel);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
}
.verbraucher-weiche-link:hover,
.verbraucher-weiche-link:focus { color: var(--azur); }
@media (max-width: 620px) {
	.verbraucher-weiche-innen { justify-content: center; }
}

/* ── Visual-Polish: ruhende Tiefe + Marken-Textur (nur Optik, KEINE Inhalte) ─── */
/* Karten bekommen im Ruhezustand sanfte Tiefe statt flacher Umrisse.
   Der stärkere Hover-Lift (weiter oben definiert) bleibt als Steigerung erhalten. */
.karte { box-shadow: 0 3px 14px -8px rgba(0,40,90,.20); }
.hub-karte { box-shadow: 0 2px 12px -8px rgba(0,40,90,.15); }
.rechner { box-shadow: 0 3px 16px -10px rgba(0,40,90,.18); }

/* Sehr dezente Marken-Raute (echot das Hero-Motiv) in den hellen Bändern,
   damit die großen einfarbigen Flächen nicht kahl wirken. */
.abschnitt--hell { position: relative; overflow: hidden; }
.abschnitt--hell::after {
	content: "";
	position: absolute;
	right: -72px;
	bottom: -72px;
	width: 300px;
	height: 300px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 6 L194 100 L100 194 L6 100 Z' fill='none' stroke='%232f7fb5' stroke-width='5'/%3E%3C/svg%3E") no-repeat center / contain;
	opacity: .06;
	pointer-events: none;
	z-index: 0;
}
.abschnitt--hell > .shell { position: relative; z-index: 1; }
