/* =============================================================================
   Profi Offensive — main.css (V1)
   Gliederung:
   m01 Design-Tokens (:root)      m08 Mobile-Nav-Overlay
   m02 Fonts (@font-face)         m09 Hero
   m03 Reset & Base               m10 Section-Stubs (V1)
   m04 Layout (Container/Section) m11 Footer
   m05 Typografie                 m12 Misc (Skip/Search/404/Pagination/Posts)
   m06 Buttons                    m13 Reduced Motion
   m07 Header / Primär-Nav
   Marken-DNA: dunkel (#12111b), Akzent Sky-Blue (#5dc4e4) → Cyan-Hover (#00e4ff),
   scharfe Ecken (radius 0), Anton (Display) / Montserrat (Buttons) / Poppins (Body).
   ============================================================================= */

/* ----------------------------------------------------------------- m01 Tokens */
:root {
	/* Farben */
	--po-accent: #5dc4e4;
	--po-accent-hover: #00e4ff;
	--po-accent-2: #00b2ff;
	--po-accent-deep: #066aab;
	--po-bg: #12111b;
	--po-bg-2: #181820;
	--po-footer-bg: #181818;
	--po-line: rgba(255, 255, 255, 0.10);
	--po-text: #ffffff;
	--po-text-muted: #c7ccd6;
	--po-text-dim: #8c93a1;
	--po-on-accent: #0a0a12;

	/* Schrift */
	--po-font-display: "Anton", "Montserrat", Impact, sans-serif;
	--po-font-head: "Montserrat", "Poppins", Helvetica, Arial, sans-serif;
	--po-font-body: "Poppins", Helvetica, Arial, Verdana, sans-serif;

	/* Form & Raster */
	--po-radius: 0px;
	--po-container: 1200px;
	--po-gutter: clamp(1rem, 4vw, 2.25rem);
	--po-header-h: 76px;
	--po-section-pad: clamp(3.5rem, 8vw, 7rem);

	/* Bewegung */
	--po-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ m02 Fonts */
/* WOFF2 in assets/fonts/ ablegen (Dateinamen siehe assets/fonts/README.txt).
   Fehlen Dateien, greift dank font-display:swap der System-Fallback. */
@font-face {
	font-family: "Anton";
	src: url("../fonts/anton-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Montserrat";
	src: url("../fonts/montserrat-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--po-bg);
	color: var(--po-text);
	font-family: var(--po-font-body);
	font-size: 1rem;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--po-accent);
	text-decoration: none;
	transition: color 0.2s var(--po-ease);
}
a:hover {
	color: var(--po-accent-hover);
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

:focus-visible {
	outline: 2px solid var(--po-accent-hover);
	outline-offset: 3px;
}

/* JS-gesteuerte Sperre des Hintergrund-Scrolls bei offenem Mobile-Menü. */
html.po-nav-open,
html.po-nav-open body {
	overflow: hidden;
}

/* ----------------------------------------------------------------- m04 Layout */
.po-container {
	width: 100%;
	max-width: var(--po-container);
	margin-inline: auto;
	padding-inline: var(--po-gutter);
}

.po-section {
	padding-block: var(--po-section-pad);
	scroll-margin-top: var(--po-header-h);
	position: relative;
}
.po-section--dark {
	background: var(--po-bg);
}
.po-section--darker {
	background: var(--po-bg-2);
}

.po-main {
	display: block;
}

/* -------------------------------------------------------------- m05 Typografie */
.po-eyebrow {
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--po-accent);
	margin: 0 0 0.9rem;
}

.po-section-title {
	font-family: var(--po-font-display);
	font-weight: 400;
	font-size: clamp(1.9rem, 5vw, 3.25rem);
	line-height: 1.05;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	color: var(--po-text);
}

.po-prose {
	max-width: 760px;
}
.po-prose h2 {
	font-family: var(--po-font-head);
	font-weight: 700;
	margin-top: 2em;
}
.po-prose a {
	text-decoration: underline;
}
.po-prose p {
	color: var(--po-text-muted);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------------------------------------------------------------- m06 Buttons */
.po-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	padding: 0.95em 1.6em;
	border: 2px solid transparent;
	border-radius: var(--po-radius);
	cursor: pointer;
	text-align: center;
	transition: background-color 0.2s var(--po-ease), color 0.2s var(--po-ease), border-color 0.2s var(--po-ease), transform 0.2s var(--po-ease);
}
.po-btn--accent {
	background: var(--po-accent);
	border-color: var(--po-accent);
	color: var(--po-on-accent);
}
.po-btn--accent:hover {
	background: var(--po-accent-hover);
	border-color: var(--po-accent-hover);
	color: var(--po-on-accent);
	transform: translateY(-2px);
}
.po-btn--ghost {
	background: transparent;
	border-color: var(--po-accent);
	color: var(--po-accent);
}
.po-btn--ghost:hover {
	background: var(--po-accent);
	color: var(--po-on-accent);
}
.po-btn--lg {
	font-size: 1.05rem;
	padding: 1.1em 2em;
}

/* ----------------------------------------------------------------- m07 Header */
.po-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--po-bg);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s var(--po-ease), background-color 0.2s var(--po-ease);
}
.po-header.is-scrolled {
	border-bottom-color: var(--po-line);
	background: rgba(18, 17, 27, 0.96);
}
.po-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: var(--po-header-h);
}

.po-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
.po-logo img {
	height: 50px;
	width: auto;
}
.po-logo--text {
	font-family: var(--po-font-display);
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1;
	color: var(--po-text);
	gap: 0.35ch;
}
.po-logo__mark--accent {
	color: var(--po-accent);
}

.po-nav {
	margin-left: auto;
}
.po-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
}
.po-nav__list a {
	font-family: var(--po-font-body);
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--po-text);
	padding: 0.4rem 0;
	position: relative;
}
.po-nav__list a:hover,
.po-nav__list .current-menu-item > a {
	color: var(--po-accent);
}
.po-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: var(--po-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s var(--po-ease);
}
.po-nav__list a:hover::after,
.po-nav__list .current-menu-item > a::after {
	transform: scaleX(1);
}

.po-header__cta {
	flex-shrink: 0;
}

/* Hamburger (nur Mobile sichtbar) */
.po-burger {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-left: auto;
}
.po-burger__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--po-text);
	transition: transform 0.25s var(--po-ease), opacity 0.2s var(--po-ease);
}
.po-burger[aria-expanded="true"] .po-burger__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.po-burger[aria-expanded="true"] .po-burger__bar:nth-child(2) {
	opacity: 0;
}
.po-burger[aria-expanded="true"] .po-burger__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------------------- m08 Mobile-Nav */
.po-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 200; /* über dem Header (100), damit das Overlay ihn voll abdeckt */
	background: var(--po-bg);
	padding: 0 var(--po-gutter) 2rem;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.25s var(--po-ease), transform 0.25s var(--po-ease), visibility 0s linear 0.25s;
}
.po-mobile-nav.is-open {
	visibility: visible;
	opacity: 1;
	transform: none;
	transition: opacity 0.25s var(--po-ease), transform 0.25s var(--po-ease), visibility 0s;
}
.po-mobile-nav__panel {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.po-mobile-nav__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--po-header-h);
	margin-bottom: 0.75rem;
}
.po-mobile-nav__close {
	flex: none;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	color: var(--po-text);
	cursor: pointer;
	transition: color 0.2s var(--po-ease), border-color 0.2s var(--po-ease);
}
.po-mobile-nav__close:hover,
.po-mobile-nav__close:focus-visible {
	color: var(--po-accent);
	border-color: var(--po-accent);
}
.po-mobile-nav__close svg {
	width: 22px;
	height: 22px;
}
.po-mobile-nav__list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--po-line);
	margin-bottom: 1.5rem;
}
.po-mobile-nav__list a {
	display: block;
	font-family: var(--po-font-head);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--po-text);
	padding: 1rem 0;
	border-bottom: 1px solid var(--po-line);
}
.po-mobile-nav__list a:hover {
	color: var(--po-accent);
}
.po-mobile-nav__cta {
	width: 100%;
}
.po-mobile-nav__social {
	margin-top: 1.75rem;
}
.po-mobile-nav__social-label {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--po-text-dim);
	margin-bottom: 0.75rem;
}
.po-mobile-nav__social-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.po-mobile-nav__social-btn {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	color: var(--po-text);
	transition: color 0.2s var(--po-ease), border-color 0.2s var(--po-ease);
}
.po-mobile-nav__social-btn:hover,
.po-mobile-nav__social-btn:focus-visible {
	color: var(--po-accent);
	border-color: var(--po-accent);
}
.po-mobile-nav__social-btn svg {
	width: 22px;
	height: 22px;
}

/* m09 Hero (V1-Stub) entfernt — der Hero wird vollständig in m15 definiert.
   Die alten max-width-Regeln (16ch/42ch) hatten die Überschrift künstlich
   verengt, sodass ihre rechte Kante nicht bündig zu Lead/Buttons saß. */

/* ------------------------------------------------------------ m10 Section-Stubs */
.po-stub__inner {
	text-align: center;
	max-width: 820px;
	margin-inline: auto;
}
.po-stub__note {
	color: var(--po-text-muted);
	font-size: 1.05rem;
	margin: 0 auto 1.5rem;
	max-width: 60ch;
}
.po-stub__badge {
	display: inline-block;
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--po-accent);
	border: 1px dashed rgba(93, 196, 228, 0.5);
	padding: 0.5em 1em;
	border-radius: var(--po-radius);
}
.po-stub__badge--hero {
	margin-top: 0.5rem;
	opacity: 0.85;
}

/* Reveal-Grundzustand nur mit aktivem JS (sonst bleibt Inhalt sichtbar). */
.po-js [data-reveal] {
	opacity: 0;
	transition: opacity 0.6s var(--po-ease);
	will-change: opacity;
}
.po-js [data-reveal].is-revealed {
	opacity: 1;
}
/* Gestaffeltes Aufsteigen der Grid-Items beim Reveal (--d je Item gesetzt). */
@keyframes po-rise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.po-js [data-reveal].is-revealed .po-vorteil,
.po-js [data-reveal].is-revealed .po-persona,
.po-js [data-reveal].is-revealed .po-step,
.po-js [data-reveal].is-revealed .po-review {
	animation: po-rise 0.55s var(--po-ease) both;
	animation-delay: var(--d, 0ms);
}

/* ----------------------------------------------------------------- m11 Footer */
.po-footer {
	background: var(--po-footer-bg);
	color: var(--po-text-muted);
	border-top: 1px solid var(--po-line);
}
.po-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.po-footer__heading {
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--po-text);
	margin: 0 0 1rem;
}
.po-footer__logo img {
	height: 44px;
}
.po-footer__tagline {
	margin: 1rem 0 0;
	max-width: 32ch;
	color: var(--po-text-dim);
}
.po-footer__lp-link {
	display: inline-block;
	margin-top: 1.1rem;
	color: var(--po-accent);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s var(--po-ease);
}
.po-footer__lp-link:hover {
	color: var(--po-accent-hover);
	text-decoration: underline;
}
.po-footer__list,
.po-footer__social-list,
.po-footer__legal-list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.po-footer a {
	color: var(--po-text-muted);
}
.po-footer a:hover {
	color: var(--po-accent);
}
.po-footer__hours {
	color: var(--po-text-dim);
}
.po-footer__legal-list--fallback span {
	color: var(--po-text-dim);
}
.po-footer__bar {
	border-top: 1px solid var(--po-line);
	padding-block: 1.25rem;
}
.po-footer__copy {
	margin: 0;
	font-size: 0.85rem;
	color: var(--po-text-dim);
	text-align: center;
}
.po-fwn-credit {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	background: linear-gradient(110deg, #9ccf92, #6ab775, #4fb373, #21874a, #6ab775, #9ccf92);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-position: 0 0;
	transition: background-position 0.5s ease;
}
.po-fwn-credit:hover {
	background-position: -110% 0;
}

/* --------------------------------------------------- m11b Floating-Buttons */
.po-to-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 150;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	background: var(--po-bg-2);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	color: var(--po-text);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s var(--po-ease), transform 0.25s var(--po-ease), background-color 0.2s var(--po-ease), border-color 0.2s var(--po-ease), color 0.2s var(--po-ease);
}
.po-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}
.po-to-top:hover,
.po-to-top:focus-visible {
	background: var(--po-accent);
	border-color: var(--po-accent);
	color: var(--po-on-accent);
}
.po-to-top svg {
	width: 22px;
	height: 22px;
}
.po-cta-sticky {
	position: fixed;
	left: 50%;
	bottom: 1.25rem;
	transform: translateX(-50%);
	z-index: 150;
	font-size: 0.85rem;
	padding: 0.75em 1.4em;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
	transition: opacity 0.25s var(--po-ease), transform 0.25s var(--po-ease), visibility 0.25s, background-color 0.2s var(--po-ease), border-color 0.2s var(--po-ease);
}
.po-cta-sticky.is-hidden {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(160%);
	pointer-events: none;
}
.po-cta-sticky:hover {
	transform: translateX(-50%) translateY(-3px);
}
@media (max-width: 560px) {
	.po-to-top {
		bottom: 4.75rem;
		width: 42px;
		height: 42px;
	}
	.po-cta-sticky {
		font-size: 0.78rem;
		padding: 0.7em 1.1em;
	}
}

/* ------------------------------------------------------------------- m12 Misc */
.po-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--po-accent);
	color: var(--po-on-accent);
	padding: 0.75rem 1.25rem;
	font-weight: 700;
}
.po-skip-link:focus {
	left: 0;
}

.po-search {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
	margin-top: 1.5rem;
}
.po-search__input {
	flex: 1;
	background: var(--po-bg-2);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	color: var(--po-text);
	padding: 0.75rem 1rem;
	font: inherit;
}

.po-page-head {
	margin-bottom: 2rem;
}
.po-post-list {
	display: grid;
	gap: 1.5rem;
}
.po-post-card {
	border: 1px solid var(--po-line);
	padding: 1.5rem;
}
.po-post-card__title {
	font-family: var(--po-font-head);
	margin: 0 0 0.5rem;
}
.po-404 {
	min-height: calc(var(--vph, 100svh) - var(--po-header-h));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}
.po-404__inner {
	max-width: 720px;
}
.po-404__code {
	font-family: var(--po-font-display);
	font-weight: 400;
	font-size: clamp(7rem, 26vw, 16rem);
	line-height: 0.82;
	letter-spacing: 0.01em;
	color: var(--po-text);
	margin: 2rem 0 0;
	text-shadow: 0 0 70px rgba(93, 196, 228, 0.28);
}
.po-404__code span {
	color: var(--po-accent);
}
.po-404__title {
	font-family: var(--po-font-display);
	font-weight: 400;
	font-size: clamp(1.8rem, 5vw, 2.8rem);
	line-height: 1.05;
	text-transform: uppercase;
	margin: 1rem 0 0.75rem;
}
.po-404__text {
	color: var(--po-text-muted);
	font-size: 1.1rem;
	max-width: 46ch;
	margin: 0 auto 2rem;
}
.po-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.po-404__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	justify-content: center;
	margin-top: 2.5rem;
}
.po-404__nav a {
	font-family: var(--po-font-head);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	color: var(--po-text-dim);
	transition: color 0.2s var(--po-ease);
}
.po-404__nav a:hover {
	color: var(--po-accent);
}

.pagination,
.nav-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.pagination .page-numbers {
	display: inline-flex;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--po-line);
	color: var(--po-text);
}
.pagination .page-numbers.current {
	background: var(--po-accent);
	color: var(--po-on-accent);
	border-color: var(--po-accent);
}

/* --------------------------------------------------------------- Breakpoints */
@media (max-width: 960px) {
	.po-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 800px) {
	.po-nav,
	.po-header__cta {
		display: none;
	}
	.po-burger {
		display: inline-flex;
	}
}

@media (max-width: 560px) {
	.po-footer__inner {
		grid-template-columns: 1fr;
	}
}

/* ============================================================ V2 SEKTIONEN === */

/* ------------------------------------------------------- m14 Section-Head/Cards */
.po-section-head {
	max-width: 760px;
	margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
	text-align: center;
}
.po-section-intro {
	color: var(--po-text-muted);
	font-size: 1.1rem;
	margin: 0;
}
.po-card {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid var(--po-line);
	padding: 1.85rem;
	transition: border-color 0.25s var(--po-ease), transform 0.25s var(--po-ease), background-color 0.25s var(--po-ease);
}
.po-card:hover {
	border-color: rgba(93, 196, 228, 0.55);
	transform: translateY(-4px);
	background: rgba(93, 196, 228, 0.05);
}

/* ------------------------------------------------------------------- m15 Hero */
.po-hero {
	position: relative;
	min-height: var(--vph, 100svh);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--po-bg);
	overflow: hidden;
}
.po-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.po-hero__bgimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	/* Motiv etwas nach rechts geschoben; der leichte Zoom verhindert eine Lücke links. */
	transform: translateX(6%) scale(1.12);
}
.po-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	/* Links transparent (Kilian sichtbar), rechts abgedunkelt für Textkontrast. */
	background: linear-gradient(to right, rgba(12, 11, 18, 0) 0%, rgba(12, 11, 18, 0) 34%, rgba(12, 11, 18, 0.5) 60%, rgba(12, 11, 18, 0.84) 84%);
}
.po-hero__inner {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-block: 6.5rem 3rem;
}
.po-hero__content {
	max-width: 46rem;
	margin-left: auto;
	text-align: right;
}
.po-hero__title {
	font-family: var(--po-font-display);
	font-weight: 400;
	font-size: clamp(2.5rem, 6.5vw, 5rem);
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}
.po-hero__accent {
	color: var(--po-accent);
}
.po-hero__lead {
	font-size: clamp(1.1rem, 2.3vw, 1.5rem);
	color: var(--po-text-muted);
	margin: 0 0 2rem;
}
.po-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 1rem;
}
.po-hero__trust {
	/* In-Flow (relativ, NICHT absolut) → kann die Buttons nicht mehr überdecken;
	   durch das flex:1 von .po-hero__inner sitzt es trotzdem unten im Hero. Bei
	   kurzem Viewport wächst der Hero, statt dass das Badge die Buttons überlappt.
	   z-index hält es über dem Overlay. */
	position: relative;
	z-index: 2;
	margin-top: 2.25rem;
	text-align: center;
	padding-inline: var(--po-gutter);
}
.po-hero__trust img {
	display: inline-block;
	width: 100%;
	max-width: 320px;
	height: auto;
}

/* --------------------------------------------------------------- m16 Vorteile */
.po-vorteile__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.po-vorteil__icon {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(93, 196, 228, 0.12);
	color: var(--po-accent);
	margin-bottom: 1.15rem;
}
.po-vorteil__icon svg {
	width: 28px;
	height: 28px;
}
.po-vorteil__title {
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 1.15rem;
	margin: 0 0 0.6rem;
}
.po-vorteil__text {
	color: var(--po-text-muted);
	margin: 0;
	font-size: 0.98rem;
}

/* -------------------------------------------------- m17 Gründer / Stat / Liste */
.po-gruender__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 3rem);
	/* Volle Inhaltsbreite (1200px via .po-container) — keine eigene Begrenzung. */
}
.po-gruender__img {
	width: 100%;
	border: 1px solid var(--po-line);
}
.po-gruender__role {
	color: var(--po-accent);
	font-weight: 600;
	margin: 0 0 1.5rem;
}
.po-gruender__lead {
	margin: 0 0 1.5rem;
	color: var(--po-text);
	font-weight: 500;
}
.po-analyse__intro {
	max-width: 62ch;
	margin: 1.25rem auto 0;
	color: var(--po-text-muted);
	line-height: 1.7;
}
.po-gruender__quote {
	margin: 0 0 1.5rem;
	padding-left: 1.25rem;
	border-left: 3px solid var(--po-accent);
	font-family: var(--po-font-head);
	font-weight: 600;
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	line-height: 1.4;
	color: var(--po-text);
}
.po-gruender__bio {
	color: var(--po-text-muted);
	margin: 0 0 1.5rem;
}
.po-stat {
	margin-top: 1.5rem;
	display: flex;
	align-items: baseline;
	gap: 0.7rem;
}
.po-stat__num {
	font-family: var(--po-font-display);
	font-size: clamp(2.5rem, 6vw, 3.75rem);
	color: var(--po-accent);
	line-height: 1;
}
.po-stat__label {
	color: var(--po-text-muted);
	font-weight: 500;
	max-width: 18ch;
}
.po-stat--overlay {
	position: absolute;
	left: 1rem;
	top: 1rem;
	z-index: 3;
	margin: 0;
	padding: 0.65rem 1.05rem;
	background: rgba(12, 11, 18, 0.82);
	border: 1px solid var(--po-line);
	pointer-events: none;
	transition: opacity 0.3s var(--po-ease);
}
.po-stat--overlay .po-stat__num {
	font-size: clamp(1.7rem, 4vw, 2.3rem);
}
.po-stat--overlay .po-stat__label {
	font-size: 0.82rem;
	max-width: 15ch;
}
.po-video--static {
	cursor: default;
}
.po-checklist {
	display: grid;
	gap: 0.85rem;
	margin: 1.75rem 0 0;
}
.po-checklist li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	color: var(--po-text-muted);
}
.po-checklist__icon {
	flex: none;
	width: 22px;
	height: 22px;
	color: var(--po-accent);
	margin-top: 2px;
}

/* ------------------------------------------------------------ m18 Video-Modul */
.po-video {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	cursor: pointer;
	background: #000;
	border: 1px solid var(--po-line);
}
.po-video__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--po-ease), opacity 0.3s var(--po-ease);
}
.po-video:hover .po-video__poster {
	transform: scale(1.04);
}
.po-video__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 74px;
	height: 74px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--po-accent);
	color: var(--po-on-accent);
	transition: transform 0.25s var(--po-ease), background-color 0.25s var(--po-ease);
}
.po-video__play svg {
	width: 30px;
	height: 30px;
	margin-left: 4px;
}
.po-video:hover .po-video__play {
	transform: scale(1.08);
	background: var(--po-accent-hover);
}
.po-video.is-playing .po-video__poster,
.po-video.is-playing .po-video__play,
.po-video.is-playing .po-stat--overlay {
	opacity: 0;
	pointer-events: none;
}
.po-video__el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
}

/* ------------------------------------------------------------ m19 Zielgruppen */
.po-zielgruppen__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}
.po-persona__icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: var(--po-radius);
	background: rgba(93, 196, 228, 0.1);
	color: var(--po-accent);
	margin-bottom: 0.9rem;
}
.po-persona__icon svg {
	width: 26px;
	height: 26px;
}
.po-persona__title {
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0.5rem 0 0.15rem;
}
.po-persona__sub {
	color: var(--po-accent);
	font-size: 0.9rem;
	margin: 0 0 0.75rem;
}
.po-persona__text {
	color: var(--po-text-muted);
	margin: 0;
	font-size: 0.96rem;
}

/* ------------------------------------------------------------------- m20 Weg */
.po-weg {
	position: relative;
	background-color: #0c0b12;
	background-image: var(--po-weg-bg);
	background-size: cover;
	background-position: center;
	text-align: center;
}
/* Parallax nur auf Desktop: background-attachment:fixed ist auf iOS / In-App-
   WebViews janky bzw. wird ignoriert (Mobile-Scroll-Playbook); die Live-Seite
   deaktiviert Parallax auf Mobile ebenso (data-img-parallax-mobile-disable). */
@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
	.po-weg {
		background-attachment: fixed;
	}
}
.po-weg__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 11, 18, 0.5), rgba(12, 11, 18, 0.85));
}
.po-weg__inner {
	position: relative;
	max-width: 820px;
	margin-inline: auto;
}
.po-weg__text {
	color: var(--po-text-muted);
	font-size: 1.12rem;
	margin: 0 auto 2rem;
}

/* --------------------------------------------------------------- m21 Analyse */
.po-steps {
	max-width: 820px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.po-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.5rem;
	padding-bottom: 2rem;
	position: relative;
}
.po-step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 27px;
	top: 60px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(var(--po-accent), rgba(93, 196, 228, 0.12));
}
.po-step__num {
	flex: none;
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--po-accent);
	color: var(--po-on-accent);
	font-family: var(--po-font-display);
	font-size: 1.4rem;
	position: relative;
	z-index: 1;
}
.po-step__title {
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0.5rem 0 0.5rem;
}
.po-step__text {
	color: var(--po-text-muted);
	margin: 0;
}
.po-analyse__cta {
	text-align: center;
	margin-top: 1.5rem;
}
.po-analyse__note {
	color: var(--po-text-dim);
	margin: 1.25rem 0 1.5rem;
	font-size: 0.9rem;
	text-align: center;
}

/* --------------------------------------------------------------- m22 Reviews */
.po-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.po-review {
	margin: 0;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid var(--po-line);
}
.po-review .po-video {
	border: 0;
	border-bottom: 1px solid var(--po-line);
}
.po-review__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
}
.po-review__quote {
	margin: 0;
	color: var(--po-text);
	font-size: 1rem;
	line-height: 1.55;
}
.po-review__meta {
	margin: auto 0 0;
	display: flex;
	flex-direction: column;
}
.po-review__name {
	font-family: var(--po-font-head);
	font-weight: 700;
}
.po-review__role {
	color: var(--po-accent);
	font-size: 0.85rem;
}

/* ------------------------------------------------------------------- m23 FAQ */
.po-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.po-faq__aside {
	position: sticky;
	top: calc(var(--po-header-h) + 1.5rem);
}
.po-faq__intro {
	color: var(--po-text-muted);
	margin: 0 0 1.5rem;
}
.po-faq__img {
	width: 100%;
	border: 1px solid var(--po-line);
}
.po-faq__group {
	margin-bottom: 2rem;
}
.po-faq__cat {
	font-family: var(--po-font-head);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
	color: var(--po-accent);
	margin: 0 0 0.5rem;
}
.po-acc__item {
	border-bottom: 1px solid var(--po-line);
}
.po-acc__h {
	margin: 0;
}
.po-acc__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: none;
	border: 0;
	color: var(--po-text);
	font-family: var(--po-font-body);
	font-weight: 600;
	font-size: 1.02rem;
	text-align: left;
	padding: 1.1rem 0;
	cursor: pointer;
}
.po-acc__q:hover {
	color: var(--po-accent);
}
.po-acc__icon {
	flex: none;
	position: relative;
	width: 18px;
	height: 18px;
}
.po-acc__icon::before,
.po-acc__icon::after {
	content: "";
	position: absolute;
	background: var(--po-accent);
	transition: transform 0.25s var(--po-ease);
}
.po-acc__icon::before {
	left: 0;
	top: 8px;
	width: 18px;
	height: 2px;
}
.po-acc__icon::after {
	left: 8px;
	top: 0;
	width: 2px;
	height: 18px;
}
.po-acc__item.is-open .po-acc__icon::after {
	transform: scaleY(0);
}
.po-acc__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s var(--po-ease);
}
.po-acc__a p {
	margin: 0;
	padding: 0 0 1.1rem;
	color: var(--po-text-muted);
}

/* --------------------------------------------------------- m24 Kontakt / Form */
.po-kontakt__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	/* Formular wächst auf die Höhe der Bild-Spalte mit; Inhalt bleibt oben (Blockfluss). */
	align-items: stretch;
}
.po-kontakt__form-col {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.po-kontakt__img {
	width: 100%;
	margin-bottom: 1.5rem;
	border: 1px solid var(--po-line);
}
.po-kontakt__list {
	display: grid;
	gap: 1rem;
}
.po-kontakt__list li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--po-text-muted);
}
.po-kontakt__list svg {
	flex: none;
	width: 22px;
	height: 22px;
	color: var(--po-accent);
}
.po-kontakt__list a {
	color: var(--po-text);
}
.po-kontakt__list a:hover {
	color: var(--po-accent);
}
/* ------------------------------------------- m24b Multistep-Kontaktformular */
.ms-form .ms-q {
	font-family: var(--po-font-head);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.15rem;
	letter-spacing: 0.02em;
	margin: 0 0 1.1rem;
	color: var(--po-text);
}
.ms-opt {
	font-weight: 400;
	color: var(--po-text-dim);
	text-transform: none;
	letter-spacing: 0;
}
.ms-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.ms-fields .field.full,
.ms-fields .ms-captcha,
.ms-fields .ms-consent {
	grid-column: 1 / -1;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.field > label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--po-text-muted);
}
.field input,
.field textarea {
	width: 100%;
	padding: 0.8rem 0.95rem;
	background: var(--po-bg);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	color: var(--po-text);
	font: inherit;
}
.field input::placeholder,
.field textarea::placeholder {
	color: var(--po-text-dim);
}
.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--po-accent);
	box-shadow: 0 0 0 3px rgba(93, 196, 228, 0.18);
}
.field textarea {
	resize: vertical;
	min-height: 120px;
}
.ms-consent label {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-weight: 400;
	font-size: 0.9rem;
	color: var(--po-text-muted);
	cursor: pointer;
}
.ms-consent input[type="checkbox"] {
	width: auto;
	min-width: 16px;
	height: 16px;
	margin-top: 0.2rem;
	padding: 0;
	background: none;
	border: 0;
	box-shadow: none;
	flex: none;
	accent-color: var(--po-accent);
}
.ms-consent label span {
	flex: 1;
	min-width: 0;
}
.ms-consent a {
	color: var(--po-accent);
	text-decoration: underline;
}
.ms-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.ms-progress {
	margin-bottom: 1.25rem;
}
.ms-progress-meta {
	font-size: 0.8rem;
	color: var(--po-text-dim);
	margin-bottom: 0.4rem;
}
.ms-bar {
	height: 4px;
	background: var(--po-line);
	overflow: hidden;
}
.ms-bar-fill {
	display: block;
	height: 100%;
	width: 33%;
	background: var(--po-accent);
	transition: width 0.3s var(--po-ease);
}
.ms-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.ms-chips-col {
	flex-direction: column;
}
.ms-chips-col .ms-chip {
	width: 100%;
	text-align: left;
}
.ms-chip {
	padding: 0.7rem 1.1rem;
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	background: transparent;
	color: var(--po-text-muted);
	font-family: var(--po-font-head);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: border-color 0.2s var(--po-ease), color 0.2s var(--po-ease), background-color 0.2s var(--po-ease);
}
.ms-chip:hover {
	border-color: var(--po-accent);
	color: var(--po-text);
}
.ms-chip.is-active {
	background: var(--po-accent);
	border-color: var(--po-accent);
	color: var(--po-on-accent);
}
.ms-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
	align-items: center;
}
.ms-next,
.ms-submit {
	margin-left: auto;
}
.po-btn[hidden],
button[hidden] {
	display: none !important;
}
.ms-error-line {
	margin-top: 1rem;
	color: #ff6b6b;
	font-size: 0.88rem;
}
.ms-result {
	text-align: center;
	padding: 1.5rem 0;
}
.ms-result h3 {
	font-family: var(--po-font-display);
	font-weight: 400;
	color: var(--po-accent);
	margin: 0 0 0.5rem;
}
.ms-result p {
	color: var(--po-text-muted);
}

/* ------------------------------------------------------- m25 V2 Responsive */
@media (max-width: 1024px) {
	.po-vorteile__grid,
	.po-zielgruppen__grid,
	.po-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 860px) {
	.po-gruender__grid,
	.po-faq__grid,
	.po-kontakt__grid {
		grid-template-columns: 1fr;
	}
	.po-faq__aside {
		position: static;
	}
	.po-hero__inner {
		justify-content: center;
		text-align: center;
	}
	.po-hero__content {
		margin-inline: auto;
		text-align: center;
	}
	.po-hero__actions {
		justify-content: center;
	}
	.po-hero__trust {
		margin-top: 2rem;
		padding: 0 var(--po-gutter) 2rem;
	}
	/* Das Hero-Motiv ist ein 2:1-Panorama, für Desktop komponiert: Kilian links,
	   rechts eine dunkle Auslauffläche für den Text. Im schmalen Hochformat zeigt
	   `cover` nur noch ~22 % der Bildbreite — mit dem Desktop-Ausschnitt (`left`
	   + Versatz) läuft die Schnittkante zwangsläufig durch Kilians Gesicht.
	   Deshalb mobil auf die Bildmitte (Stadion-Atmosphäre), wie auf der
	   Landingpage; der Desktop-Versatz entfällt. Kilian ist mobil bewusst nicht
	   im Bild — für ein Porträt reicht die Breite nicht, ohne dass die Headline
	   durchs Gesicht läuft. */
	.po-hero__bgimg {
		object-position: 50% 28%;
		transform: none;
	}
	.po-hero__overlay {
		background: linear-gradient(rgba(12, 11, 18, 0.45) 0%, rgba(12, 11, 18, 0.82) 70%);
	}
}
@media (max-width: 640px) {
	.po-vorteile__grid,
	.po-zielgruppen__grid,
	.po-reviews__grid {
		grid-template-columns: 1fr;
	}
	.ms-fields {
		grid-template-columns: 1fr;
	}
}

/* ---------------------------------------------------------- m13 Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.po-js [data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* ============================================================ m40 · RECHTLICHE
   SEITEN (Impressum/Datenschutz/AGB) — Template „Rechtliche Seite (eRecht24)".
   Hero + sticky Inhaltsverzeichnis + gut lesbare Textspalte. PO-Tokens, R=0. */
.po-legal-hero {
	padding: calc(var(--po-header-h) + clamp(3rem, 9vh, 6rem)) 0 clamp(1.6rem, 4vh, 2.8rem);
	border-bottom: 1px solid var(--po-line);
}
.po-legal-hero .po-eyebrow {
	margin-bottom: 0.75rem;
}
.po-legal-h1 {
	font-family: var(--po-font-display);
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	line-height: 1.04;
	color: var(--po-text);
}
.po-legal-section {
	padding: clamp(2.5rem, 6vh, 5rem) 0 clamp(4.5rem, 12vh, 8.5rem);
}

/* 2 Spalten: sticky Inhaltsverzeichnis + Lesespalte */
.po-legal-grid {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
	max-width: 1160px;
	margin-inline: auto;
}
.po-legal-toc {
	position: sticky;
	top: calc(var(--po-header-h) + 1.5rem);
	background: var(--po-bg-2);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	padding: 1.5rem 1.4rem;
}
.po-legal-toc-title {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--po-text-dim);
	margin-bottom: 0.9rem;
}
.po-legal-toc ol {
	list-style: none;
	counter-reset: toc;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0;
	margin: 0;
}
.po-legal-toc li {
	counter-increment: toc;
}
.po-legal-toc a {
	display: flex;
	gap: 0.7rem;
	align-items: baseline;
	padding: 0.5rem 0.6rem;
	font-size: 0.875rem;
	line-height: 1.35;
	color: var(--po-text-muted);
	transition: background 0.2s var(--po-ease), color 0.2s var(--po-ease);
}
.po-legal-toc a::before {
	content: counter(toc);
	color: var(--po-accent);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	flex: none;
}
.po-legal-toc a:hover {
	background: rgba(93, 196, 228, 0.12);
	color: var(--po-text);
}

/* Lesetypografie */
.po-legal-body {
	font-size: 1.03rem;
	line-height: 1.75;
	color: var(--po-text-muted);
	max-width: 74ch;
}
.po-legal-body h2 {
	position: relative;
	font-family: var(--po-font-head);
	font-weight: 700;
	text-transform: none;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1.14;
	color: var(--po-text);
	margin: 3.25rem 0 1.1rem;
	padding: 1.9rem 0 0 1.1rem;
	border-top: 1px solid var(--po-line);
	scroll-margin-top: calc(var(--po-header-h) + 1.5rem);
}
.po-legal-body h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2rem;
	bottom: 0.35rem;
	width: 3px;
	background: var(--po-accent);
}
.po-legal-body > h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}
.po-legal-body > h2:first-child::before {
	top: 0.15rem;
}
.po-legal-body h3 {
	font-family: var(--po-font-head);
	font-weight: 700;
	text-transform: none;
	font-size: clamp(1.15rem, 1.9vw, 1.375rem);
	color: var(--po-text);
	margin: 2rem 0 0.55rem;
	scroll-margin-top: calc(var(--po-header-h) + 1.5rem);
}
.po-legal-body h4 {
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 1rem;
	color: var(--po-text);
	margin: 1.4rem 0 0.5rem;
}
.po-legal-body p {
	margin: 0 0 0.9rem;
}
.po-legal-body ul,
.po-legal-body ol {
	margin: 0 0 1rem;
	padding-left: 1.4rem;
}
.po-legal-body ul {
	list-style: disc;
}
.po-legal-body ol {
	list-style: decimal;
}
.po-legal-body li {
	margin-bottom: 0.55rem;
}
.po-legal-body a {
	color: var(--po-accent);
	word-break: break-word;
	text-decoration: underline;
}
.po-legal-body a:hover {
	text-decoration: none;
}
.po-legal-body strong {
	color: var(--po-text);
	font-weight: 600;
}
.po-legal-body > p:first-of-type {
	font-size: 1.06rem;
	color: var(--po-text);
	font-weight: 500;
	line-height: 1.65;
}
.po-legal-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1.2rem;
	font-size: 0.95rem;
}
.po-legal-body th,
.po-legal-body td {
	text-align: left;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--po-line);
	vertical-align: top;
}
.po-legal-body th {
	color: var(--po-text);
	font-weight: 600;
}

@media (max-width: 900px) {
	.po-legal-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
	.po-legal-toc {
		position: static;
		margin-bottom: 2.25rem;
	}
}
@media (max-width: 600px) {
	.po-legal-body {
		font-size: 0.98rem;
	}
	.po-legal-body h2 {
		margin: 2.25rem 0 0.75rem;
		padding-top: 1.5rem;
	}
}

/* ============================================================ m41 · POTENZIAL-
   ANALYSE-POPUP (FireBox-Ersatz). Mehrstufiges, verzweigtes Quiz; nutzt die
   .ms-*-Formularstile, hier nur Hülle/Overlay/Dialog + Pfad-Blöcke. KEIN
   backdrop-filter (auf iOS teuer, Mobile-Playbook) → solides dunkles Overlay. */
.po-popup {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: grid;
	place-items: center;
	padding: 1rem;
}
.po-popup[hidden] {
	display: none;
}
.po-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 14, 0.84);
}
.po-popup__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 620px;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--po-bg-2);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.po-popup__close {
	position: absolute;
	top: 0.5rem;
	right: 0.6rem;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	font-size: 1.9rem;
	line-height: 1;
	color: var(--po-text-muted);
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.2s var(--po-ease);
}
.po-popup__close:hover {
	color: var(--po-accent);
}
body.po-popup-open {
	overflow: hidden;
}
.pa-head {
	text-align: center;
	margin-bottom: 1.5rem;
	padding-inline: 1.5rem;
}
.pa-head .po-eyebrow {
	justify-content: center;
}
.pa-head h3 {
	font-family: var(--po-font-display);
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(1.5rem, 4vw, 2.15rem);
	line-height: 1.08;
	color: var(--po-text);
	margin: 0.35rem 0 0;
}
.pa-sub {
	color: var(--po-text-muted);
	font-size: 0.95rem;
	margin: 0.5rem 0 0;
}
.po-popup .fa-chips-col {
	flex-direction: column;
}
.po-popup .fa-chips-col .ms-chip {
	width: 100%;
	text-align: left;
}
.po-popup .pa-path[hidden] {
	display: none;
}
.po-popup__dismiss {
	display: block;
	margin: 1.25rem auto 0;
	background: none;
	border: 0;
	color: var(--po-text-dim);
	text-decoration: underline;
	font: inherit;
	font-size: 0.9rem;
	cursor: pointer;
}
.po-popup__dismiss:hover {
	color: var(--po-accent);
}
@media (max-width: 600px) {
	/* Mobil KEIN Vollbild — zentrierte, eingerückte Karte wie KKF: die abgedunkelte
	   Seite bleibt ringsum sichtbar. svh statt vh wegen In-App-Browser-Toolbars. */
	.po-popup {
		padding: 1rem;
	}
	.po-popup__dialog {
		max-height: calc(100svh - 2rem);
		padding: 1.5rem 1.25rem;
	}
}

/* ====================================================== m42 · LANDINGPAGE
   Conversion-Seite (Template „Landingpage"). Reduzierter Header, ein Funnel.
   Reihenfolge = psychologischer Bogen. Eigene .po-lp-*-Klassen, PO-Tokens, R=0. */
.po-header--landing .po-header__inner {
	justify-content: space-between;
}

.po-lp-hero {
	position: relative;
	min-height: calc(var(--vph, 100svh) - var(--po-header-h));
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--po-bg);
}
.po-lp-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 28%;
	z-index: 0;
}
.po-lp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(10, 9, 16, 0.6) 0%, rgba(10, 9, 16, 0.82) 100%);
}
.po-lp-hero__inner {
	position: relative;
	z-index: 2;
	color: #fff;
	max-width: 920px;
	margin-inline: auto;
	text-align: center;
	padding-block: clamp(2.5rem, 7vh, 4.5rem);
}
.po-lp-hero__title {
	font-family: var(--po-font-display);
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	font-size: clamp(2.2rem, 6vw, 4.1rem);
	line-height: 1.04;
	margin: 0;
}
.po-lp-hero__sub {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 2.1vw, 1.3rem);
	line-height: 1.55;
	max-width: 62ch;
	margin: 1.4rem auto 0;
}
.po-lp-hero__cta {
	margin-top: 2.1rem;
}
.po-lp-hero-note {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
}

/* Trust-Badge (Hero + finaler CTA) */
.po-lp-trust {
	display: inline-block;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	padding: 0.42rem 0.95rem;
	border-radius: var(--po-radius);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.1rem;
}

/* Nutzen */
.po-lp-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 4vw, 2.5rem);
}
.po-lp-benefit {
	text-align: center;
}
.po-lp-benefit-icon {
	display: inline-grid;
	place-items: center;
	width: 64px;
	height: 64px;
	background: rgba(93, 196, 228, 0.12);
	color: var(--po-accent);
	margin-bottom: 1rem;
}
.po-lp-benefit-icon svg {
	width: 32px;
	height: 32px;
}
.po-lp-benefit-title {
	font-family: var(--po-font-head);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--po-text);
}
.po-lp-benefit p {
	color: var(--po-text-muted);
}
.po-lp-benefits-note {
	text-align: center;
	max-width: 760px;
	margin: clamp(2rem, 4vw, 3rem) auto 0;
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	font-weight: 600;
	color: var(--po-text);
}

/* Zielbild */
.po-lp-zielbild-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.po-lp-zielbild-head p {
	color: var(--po-text-muted);
	margin-top: 0.8rem;
}
.po-lp-zielbild-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.1rem, 2.6vw, 1.6rem);
}
.po-lp-goal {
	background: var(--po-bg-2);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.po-lp-goal-photo {
	aspect-ratio: 3 / 2;
	background: #000;
}
.po-lp-goal-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.po-lp-goal-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: clamp(1.4rem, 3vw, 1.9rem);
}
.po-lp-goal-icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	background: rgba(93, 196, 228, 0.12);
	color: var(--po-accent);
	margin-bottom: 0.3rem;
}
.po-lp-goal-icon svg {
	width: 24px;
	height: 24px;
}
.po-lp-goal-title {
	font-family: var(--po-font-head);
	font-size: 1.2rem;
	color: var(--po-text);
	margin: 0;
}
.po-lp-goal-path {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin: 0.4rem 0 0.85rem;
}
.po-lp-goal-station {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(93, 196, 228, 0.12);
	border: 1px solid rgba(93, 196, 228, 0.55);
	color: var(--po-text);
	font-family: var(--po-font-head);
	font-weight: 700;
	font-size: 0.98rem;
	line-height: 1.3;
	padding: 0.5rem 0.8rem;
}
.po-lp-goal-station--final {
	/* Ziel erreicht: gefüllter Akzent-Chip mit Glow + Check — soll sofort ins Auge stechen. */
	background: var(--po-accent);
	border-color: var(--po-accent);
	color: var(--po-bg);
	box-shadow: 0 0 24px rgba(93, 196, 228, 0.4);
}
.po-lp-goal-check {
	width: 1.05em;
	height: 1.05em;
	flex: none;
}
.po-lp-goal-arrow {
	color: var(--po-accent);
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1;
}
.po-lp-goal-quote {
	color: var(--po-text-muted);
	font-style: italic;
	margin: 0;
}
.po-lp-goal-who {
	margin-top: auto;
	padding-top: 0.6rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--po-accent);
}

/* Gründer */
.po-lp-founder-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}
.po-lp-founder-photo img {
	width: 100%;
	height: auto;
	border-radius: var(--po-radius);
	display: block;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.po-lp-founder-text p {
	color: var(--po-text-muted);
	margin-bottom: 1rem;
}
.po-lp-founder-creds {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 1.3rem;
}
.po-lp-founder-cred {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--po-bg-2);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	padding: 0.42rem 0.9rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--po-text-muted);
}
.po-lp-founder-cred svg {
	width: 15px;
	height: 15px;
	color: var(--po-accent);
	flex: none;
}
.po-lp-founder-cred--hl {
	background: rgba(93, 196, 228, 0.14);
	border-color: rgba(93, 196, 228, 0.4);
	color: var(--po-text);
}
.po-lp-founder-sign {
	font-family: var(--po-font-display);
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1.3rem;
	line-height: 1.1;
	color: var(--po-text);
	margin: 1.4rem 0 1.6rem;
}
.po-lp-founder-sign span {
	display: block;
	font-family: var(--po-font-body);
	text-transform: none;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--po-accent);
	margin-top: 0.3rem;
}

/* Schritte */
.po-lp-steps-sec {
	background: var(--po-bg-2);
}
.po-lp-steps-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.po-lp-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 4vw, 2.5rem);
	list-style: none;
	padding: 0;
	margin: 0;
}
.po-lp-step {
	background: var(--po-bg);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	padding: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
}
.po-lp-step-num {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--po-accent);
	color: var(--po-on-accent);
	font-family: var(--po-font-display);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.po-lp-step h3 {
	font-family: var(--po-font-head);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--po-text);
}
.po-lp-step p {
	color: var(--po-text-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}
.po-lp-steps-cta {
	text-align: center;
	margin-top: clamp(2rem, 4vw, 3rem);
}

/* Beweis */
.po-lp-proof-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.po-lp-proof-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 3vw, 2rem);
	list-style: none;
	padding: 0;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
	text-align: center;
}
.po-lp-proof-num {
	display: block;
	font-family: var(--po-font-display);
	font-size: clamp(2.2rem, 6vw, 3.4rem);
	line-height: 1;
	color: var(--po-accent);
}
.po-lp-proof-lbl {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--po-text-muted);
}
.po-lp-proof-reviews {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1rem, 2.6vw, 1.6rem);
	max-width: 880px;
	margin-inline: auto;
}
.po-lp-review {
	background: var(--po-bg-2);
	border: 1px solid var(--po-line);
	border-radius: var(--po-radius);
	padding: clamp(1.3rem, 3vw, 1.8rem);
	margin: 0;
}
.po-lp-review-stars {
	color: #fbbf24;
	letter-spacing: 0.12em;
	font-size: 0.95rem;
}
.po-lp-review-text {
	margin: 0.6rem 0 0.9rem;
	color: var(--po-text);
	font-style: italic;
	line-height: 1.55;
}
.po-lp-review-name {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--po-text-muted);
}
.po-lp-review-name span {
	color: var(--po-text-dim);
}

/* Finaler CTA */
.po-lp-cta-big {
	background: linear-gradient(135deg, #1c1b26 0%, #0c0b12 100%);
	border-top: 1px solid var(--po-line);
}
.po-lp-cta-big-inner {
	text-align: center;
	max-width: 780px;
	margin-inline: auto;
}
.po-lp-cta-avatar {
	margin-bottom: 1.1rem;
}
.po-lp-cta-avatar img {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top center;
	border: 3px solid var(--po-accent);
	display: inline-block;
}
.po-lp-cta-big-title {
	font-family: var(--po-font-display);
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(1.9rem, 5vw, 3rem);
	color: #fff;
	margin: 1rem 0;
}
.po-lp-cta-big p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.1rem;
	max-width: 60ch;
	margin: 0 auto;
}
.po-lp-cta-big-btn {
	margin-top: 2rem;
	box-shadow: 0 14px 40px rgba(93, 196, 228, 0.4);
}
.po-lp-cta-note {
	display: block;
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

@media (max-width: 860px) {
	.po-lp-zielbild-grid,
	.po-lp-proof-reviews {
		grid-template-columns: 1fr;
	}
	.po-lp-founder-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 760px) {
	.po-lp-benefits-grid,
	.po-lp-steps,
	.po-lp-proof-stats {
		grid-template-columns: 1fr;
	}
	.po-lp-proof-stats {
		gap: 1.4rem;
	}
}

/* ===================================================== m43 · ANALYSE-CALENDLY
   Calendly-Inline-Widget innerhalb der Karrierechancen-Analyse-Sektion (zwischen
   Schritt 2 und 3, wie auf profi-offensive.de). Script lazy via calendly-lazy.js. */
.po-analyse__calendly {
	max-width: 820px;
	margin: clamp(2rem, 4vw, 3rem) auto;
	border-radius: var(--po-radius);
	overflow: hidden;
}
.po-analyse__calendly .calendly-inline-widget {
	width: 100%;
}

/* Landingpage: Gründer-Video (von der Startseite) — zentriert, begrenzt. */
.po-lp-video .po-video {
	max-width: none; /* volle Inhaltsbreite (1200px via .po-container) */
	margin-inline: auto;
}

/* FAQ-Video (in der Aside, ersetzt das frühere statische Bild) — Rahmen wie zuvor. */
.po-faq__video {
	border: 1px solid var(--po-line);
}

/* =========================================== m44 · EINGANGS-ANIMATIONEN (Hero)
   Headline fliegt Wort für Wort rein (hero-intro.js), BG mit Ken-Burns,
   Eyebrow/Sub/CTA/Trust gestaffelt. Fallback ohne JS: ganze Headline per CSS.
   Landing-Hero analog. Reduced-Motion neutralisiert alles (globale m13-Regel). */
@keyframes poKenBurns {
	from { transform: scale(1); }
	to   { transform: scale(1.07); }
}
@keyframes poHeroRise {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: none; }
}
@keyframes poHeroWord {
	from { opacity: 0; transform: translateY(115%) rotate(4deg); }
	to   { opacity: 1; transform: none; }
}

/* Ken-Burns auf dem BG-Wrapper (Front) bzw. BG-img (Landing). */
.po-hero__bg,
.po-lp-hero__bg {
	animation: poKenBurns 22s ease-in-out infinite alternate;
}

/* Headline: ganze Zeile als Fallback (ohne JS-Split). */
.po-js .po-hero__title,
.po-js .po-lp-hero__title {
	animation: poHeroRise 0.85s var(--po-ease) both;
}
/* Mit JS in Wörter gesplittet → Einzelwörter animieren. */
.po-js .po-hero__title.is-split,
.po-js .po-lp-hero__title.is-split {
	animation: none;
}
.po-hero__word {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	line-height: inherit;
	padding-bottom: 0.08em;
}
.po-hero__word-in {
	display: inline-block;
	opacity: 0;
	transform: translateY(115%) rotate(4deg);
	animation: poHeroWord 0.8s var(--po-ease) both;
	animation-delay: var(--d, 0ms);
}

/* Startseiten-Hero: Eyebrow / Lead / Aktionen / Trust gestaffelt. */
.po-js .po-hero__content .po-eyebrow {
	animation: poHeroRise 0.7s var(--po-ease) both;
}
.po-js .po-hero__lead {
	animation: poHeroRise 0.75s var(--po-ease) both;
	animation-delay: 0.5s;
}
.po-js .po-hero__actions {
	animation: poHeroRise 0.75s var(--po-ease) both;
	animation-delay: 0.68s;
}
.po-js .po-hero__trust {
	animation: poHeroRise 0.8s var(--po-ease) both;
	animation-delay: 0.9s;
}

/* Landing-Hero: Trust / Sub / CTA / Note gestaffelt. */
.po-js .po-lp-trust {
	animation: poHeroRise 0.7s var(--po-ease) both;
	animation-delay: 0.2s;
}
.po-js .po-lp-hero__sub {
	animation: poHeroRise 0.75s var(--po-ease) both;
	animation-delay: 0.5s;
}
.po-js .po-lp-hero__cta {
	animation: poHeroRise 0.75s var(--po-ease) both;
	animation-delay: 0.68s;
}
.po-js .po-lp-hero-note {
	animation: poHeroRise 0.8s var(--po-ease) both;
	animation-delay: 0.88s;
}

/* Landingpage: Karten gestaffelt aufsteigen (wie die Front-Page-Karten). */
.po-js [data-reveal].is-revealed .po-lp-benefit,
.po-js [data-reveal].is-revealed .po-lp-goal,
.po-js [data-reveal].is-revealed .po-lp-step,
.po-js [data-reveal].is-revealed .po-lp-review {
	animation: po-rise 0.55s var(--po-ease) both;
}
.po-lp-benefit:nth-child(2),
.po-lp-goal:nth-child(2),
.po-lp-step:nth-child(2),
.po-lp-review:nth-child(2) {
	animation-delay: 80ms;
}
.po-lp-benefit:nth-child(3),
.po-lp-goal:nth-child(3),
.po-lp-step:nth-child(3) {
	animation-delay: 160ms;
}
.po-lp-goal:nth-child(4) {
	animation-delay: 240ms;
}
