/** Shopify CDN: Minification failed

Line 12048:0 Expected "{" but found "."
Line 12061:0 Unexpected "{"

**/
:root {
	--black: #1A1A1A;
	--white: #FFFFFF;
	--bg: #fafaf9;
	--bg-warm: #FFF9EC;
	--bg-warm-dark: #EDE5D8;
	--flow: #2A63D6;
	--flow-dark: #1e4fa8;
	--flow-light: #EBF1FB;
	--aufbau: #C0362C;
	--energie: #E07020;
	--mahlzeit: #8A5A3C;
	--companion: #0D1B2E;
	--navy: #0f172a;
	--slate-700: #334155;
	--slate-600: #475569;
	--slate-500: #64748b;
	--slate-400: #94a3b8;
	--slate-300: #cbd5e1;
	--slate-200: #e2e8f0;
	--slate-100: #f1f5f9;
	--green: #16a34a;
	--green-light: #dcfce7;
}

html, body {
	overflow-x: hidden;
	max-width: 100%;
}

*,*::before,*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat',sans-serif;
	background: var(--white);
	color: var(--black);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
}

h1, h2, h3, .serif {
	font-family: 'DM Serif Display', serif;
}

.hoyvo-system h2 {
	font-family: 'DM Serif Display', serif;
	font-size: clamp(24px, 3.6vw, 40px);
	/* color: #1A1A1A; */
	margin-bottom: 24px;
	line-height: 1.2;
}

.spa-page {
	display: none!important;
}

.spa-page.spa-active {
	display: block!important;
}

.aw-vid-body {
	padding: 10px;
}
/* home */





.container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

@media(max-width:960px) {
	.container {
		padding: 0;
	}
}

/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.65);
	text-align: center;
	padding: 10px 16px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.sep {
	margin: 0 12px;
	opacity: .25;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 13px!important;
	transition: opacity .2s!important;
}

.nav-cta:hover {
	opacity: .88;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	transition: all .2s!important;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* ── BUTTONS ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
	letter-spacing: .01em;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-dark {
	background: var(--black);
	color: #fff;
}

.btn-dark:hover {
	opacity: .88;
}

.btn-ghost-white {
	background: transparent;
	color: rgba(255,255,255,.8);
	border: 1.5px solid rgba(255,255,255,.25);
}

.btn-ghost-white:hover {
	color: #fff;
	border-color: rgba(255,255,255,.6);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ══════════════════════════════
   SECTION 1 — HERO
══════════════════════════════ */
.hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 110px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(transparent,var(--white));
}

.hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

@media(max-width:768px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(38px,5.5vw,60px);
	line-height: 1.08;
	color: var(--black);
	margin-bottom: 18px;
	letter-spacing: -.01em;
}

.hero-sub {
	font-size: 18px;
	color: var(--slate-600);
	line-height: 1.65;
	margin-bottom: 12px;
	font-weight: 400;
}

.hero-core-claim {
	font-size: 22px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 32px;
	letter-spacing: -.01em;
}

.hero-core-claim em {
	font-style: normal;
	color: var(--flow);
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

@media(max-width:768px) {
	.hero-btns {
		justify-content: center;
	}
}

.hero-trust {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

@media(max-width:768px) {
	.hero-trust {
		justify-content: center;
	}
}

.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.hero-trust-item i {
	color: var(--green);
	font-size: 11px;
}

/* Hero product visual */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 20px;
	max-height: 480px;
}

.hero-product-card {
	background: var(--white);
	border-radius: 24px;
	padding: 40px 32px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	width: 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(42,99,214,.08);
}

.hero-product-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.hpc-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.hpc-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.hpc-name {
	font-size: 40px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	margin-top: 12px;
	line-height: 1;
}

.hpc-sub {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
	margin-bottom: 12px;
}

.hpc-stripe {
	width: 50%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
	margin-bottom: 18px;
}

.hpc-claim {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-align: center;
	line-height: 1.55;
	margin-bottom: 20px;
}

.hpc-price {
	font-size: 28px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 4px;
}

.hpc-price-sub {
	font-size: 12px;
	color: var(--green);
	font-weight: 700;
	margin-bottom: 16px;
}

.hero-lifestyle-img {
	width: 100%;
	height: 420px;
	border-radius: 20px;
	display: block;
	object-fit: cover;
	object-position: 20% center;
	box-shadow: 0 24px 64px rgba(0,0,0,.12);
}

@media(max-width:768px) {
	.hero-lifestyle-img {
		height: 260px;
		border-radius: 14px;
		margin-top: 32px;
		object-position: center center;
	}
}

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
	background: var(--black);
	padding: 18px 32px;
}

.trust-bar-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 36px;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.45);
}

.trust-item strong {
	color: rgba(255,255,255,.75);
}

/* ══════════════════════════════
   SECTION 2 — PROBLEM (emotional)
══════════════════════════════ */
.problem {
	padding: 50px 25px;
	background: var(--white);
}

.problem-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
}

.problem h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4vw,46px);
	color: var(--black);
	margin-bottom: 20px;
	line-height: 1.15;
}

.problem-text {
	font-size: 17px;
	color: var(--slate-600);
	line-height: 1.75;
	margin-bottom: 16px;
	font-weight: 400;
}

.problem-text strong {
	color: var(--black);
	font-weight: 700;
}

.problem-break {
	font-size: 20px;
	font-weight: 700;
	color: var(--flow);
	margin-top: 32px;
	letter-spacing: -.01em;
}

/* ══════════════════════════════
   SECTION 3 — LÖSUNG
══════════════════════════════ */
.solution {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.solution-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.solution-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.solution h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,42px);
	color: var(--black);
	margin-bottom: 20px;
	line-height: 1.15;
}

.solution p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.solution-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.solution-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: var(--black);
	font-weight: 600;
}

.solution-bullets li span {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px;
}

.solution-visual {
	background: var(--white);
	border-radius: 20px;
	padding: 36px;
	box-shadow: 0 8px 40px rgba(0,0,0,.07);
}

.sol-vis-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--slate-400);
	margin-bottom: 20px;
	text-align: center;
}

.sol-comparison {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 16px;
}

.sol-col {
	text-align: center;
}

.sol-col-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--slate-500);
	margin-top: 12px;
}

.sol-col-sub {
	font-size: 11px;
	color: var(--slate-400);
}

.sol-bad {
	width: 56px;
	height: 100px;
	border: 2px dashed var(--slate-200);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sol-bad span {
	writing-mode: vertical-rl;
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 600;
}

.sol-bad-x {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: #ef4444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.sol-good {
	width: 100px;
	height: 72px;
	background: var(--bg-warm);
	border: 2px solid var(--flow);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
}

.sol-good span {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
}

.sol-good-stripe {
	width: 50%;
	height: 4px;
	background: var(--flow);
	border-radius: 2px;
}

.sol-good-check {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

/* ══════════════════════════════
   SECTION 4 — ANWENDUNG (3 Schritte)
══════════════════════════════ */
.steps {
	padding: 50px 25px;
	background: var(--white);
}

.steps-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.steps h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,40px);
	color: var(--black);
	margin-bottom: 10px;
}

.steps-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 52px;
	font-weight: 400;
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr 40px 1fr 40px 1fr;
	gap: 0;
	align-items: start;
	max-width: 900px;
	margin: 0 auto;
}

@media(max-width:768px) {
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.step-card {
	text-align: center;
	padding: 36px 24px;
	background: var(--bg);
	border-radius: 20px;
}

.step-num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.step-icon {
	font-size: 32px;
	margin-bottom: 14px;
}

.step-card h4 {
	font-size: 17px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 8px;
}

.step-card p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--slate-300);
	font-size: 20px;
	padding-top: 52px;
}

@media(max-width:768px) {
	.step-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 5 — PRODUKT + ANGEBOT
══════════════════════════════ */
.product {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.product-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 64px;
	align-items: start;
}

@media(max-width:768px) {
	.product-inner {
		grid-template-columns: 1fr;
	}
}

.product-can-wrap {
	display: flex;
	justify-content: center;
}

.product-can {
	background: var(--white);
	border-radius: 24px;
	width: 220px;
	padding: 36px 24px 28px;
	box-shadow: 0 16px 56px rgba(0,0,0,.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.product-can::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
}

.can-name {
	font-size: 32px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .05em;
}

.can-variant {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
}

.can-stripe {
	width: 55%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
}

.product-info {
}

.product-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--flow-light);
	color: var(--flow);
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 99px;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.product-info h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3vw,34px);
	color: var(--black);
	margin-bottom: 8px;
	line-height: 1.15;
}

.product-tagline {
	font-size: 16px;
	color: var(--slate-600);
	margin-bottom: 24px;
	font-weight: 400;
}

.usp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.usp-list li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.5;
}

.usp-list li i {
	color: var(--green);
	font-size: 13px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* Angebot / Pricing */
.pricing-block {
	background: var(--white);
	border-radius: 18px;
	padding: 28px;
	border: 1px solid var(--slate-100);
	margin-bottom: 20px;
}

.pricing-block h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 18px;
}

.price-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.price-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid var(--slate-100);
	cursor: pointer;
	transition: all .2s;
	gap: 12px;
}

.price-option.featured {
	border-color: var(--flow);
	background: var(--flow-light);
}

.price-option-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-option-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
}

.price-option.featured .price-option-dot {
	background: var(--flow);
	border-color: var(--flow);
}

.price-option-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.price-option-desc {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 1px;
	font-weight: 400;
}

.price-option-right {
	text-align: right;
	flex-shrink: 0;
}

.price-amount {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
}

.price-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
}

.price-option-badge {
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	letter-spacing: .06em;
	white-space: nowrap;
}

.guarantee {
	font-size: 11px;
	color: var(--slate-400);
	text-align: center;
	margin-top: 12px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 6 — BEFORE / AFTER
══════════════════════════════ */
.before-after {
	padding: 50px 25px;
	background: var(--white);
}

.ba-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.ba-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.ba-inner .ba-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 48px;
	font-weight: 400;
}

.ba-grid {
	display: grid;
	grid-template-columns: 1fr 48px 1fr;
	gap: 0;
	align-items: center;
}

@media(max-width:600px) {
	.ba-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.ba-col {
	border-radius: 18px;
	padding: 32px 28px;
}

.ba-before {
	background: #fff5f5;
	border: 1.5px solid #f5cccc;
}

.ba-after {
	background: #f0faf4;
	border: 1.5px solid #b8e0c8;
}

.ba-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 18px;
}

.ba-before .ba-label {
	color: var(--aufbau);
}

.ba-after .ba-label {
	color: var(--green);
}

.ba-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.ba-col li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--black);
}

.ba-col li .bi {
	font-size: 16px;
	flex-shrink: 0;
}

.ba-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--slate-200);
}

@media(max-width:600px) {
	.ba-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 7 — HOYVO COMPANION (KEY)
══════════════════════════════ */
.companion {
	padding: 100px 32px;
	background: var(--companion);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.companion::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -5%;
	width: 50%;
	height: 160%;
	background: radial-gradient(ellipse,rgba(42,99,214,.12),transparent 65%);
	pointer-events: none;
}

.companion::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 40%;
	height: 120%;
	background: radial-gradient(ellipse,rgba(42,99,214,.07),transparent 65%);
	pointer-events: none;
}

.companion-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
	position: relative;
}

@media(max-width:768px) {
	.companion-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.companion-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(42,99,214,.9);
	background: rgba(42,99,214,.12);
	border: 1px solid rgba(42,99,214,.2);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.companion h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4vw,48px);
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.12;
}

.companion h2 em {
	font-style: normal;
	color: rgba(42,99,214,.9);
}

.companion-intro {
	font-size: 17px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	margin-bottom: 28px;
	font-weight: 400;
}

.companion-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.companion-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	font-weight: 500;
	line-height: 1.5;
}

.companion-features li i {
	color: rgba(42,99,214,.9);
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 14px;
}

.companion-disclaimer {
	font-size: 12px;
	color: rgba(255,255,255,.35);
	margin-top: 10px;
	font-weight: 400;
}

/* Companion App Mockup */
.companion-mockup {
	background: var(--white);
	border: 1px solid var(--slate-100);
	border-radius: 24px;
	padding: 32px 28px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.cm-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.cm-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--flow);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cm-icon-inner {
	font-size: 20px;
	color: #fff;
}

.cm-title {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.cm-sub {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
}

.cm-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.cm-feat {
	background: rgba(255,255,255,.06);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid rgba(255,255,255,.04);
}

.cm-feat-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(42,99,214,.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.cm-feat-text {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,.8);
}

.cm-feat-sub {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	font-weight: 400;
}

.cm-status {
	background: rgba(42,99,214,.15);
	border: 1px solid rgba(42,99,214,.25);
	border-radius: 10px;
	padding: 14px 18px;
	text-align: center;
}

.cm-status p {
	font-size: 12px;
	color: rgba(255,255,255,.5);
	margin-bottom: 4px;
	font-weight: 400;
}

.cm-status strong {
	font-size: 14px;
	color: rgba(255,255,255,.9);
	font-weight: 700;
}

/* Companion Warteliste Form */
.companion-form {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 24px;
	margin-top: 24px;
}

.companion-form p {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	margin-bottom: 14px;
	font-weight: 400;
}

.companion-form-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.companion-form input {
	flex: 1;
	min-width: 200px;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	outline: none;
	transition: border-color .2s;
}

.companion-form input::placeholder {
	color: rgba(255,255,255,.3);
}

.companion-form input:focus {
	border-color: rgba(42,99,214,.6);
}

.companion-form button {
	padding: 12px 20px;
	border-radius: 10px;
	border: none;
	background: var(--flow);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	white-space: nowrap;
	transition: opacity .2s;
}

.companion-form button:hover {
	opacity: .88;
}

.companion-form-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-align: center;
	margin-top: 10px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 8 — TESTIMONIALS
══════════════════════════════ */
.testimonials {
	padding: 50px 25px;
	background: var(--bg);
}

.testimonials-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.test-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 18px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.test-grid {
		grid-template-columns: 1fr;
	}
}

.test-card {
	background: var(--white);
	border-radius: 16px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
}

.stars {
	color: #f59e0b;
	font-size: 13px;
	margin-bottom: 10px;
}

.test-text {
	font-size: 15px;
	color: var(--black);
	line-height: 1.65;
	margin-bottom: 14px;
	font-weight: 400;
}

.test-text strong {
	font-weight: 700;
}

.test-author {
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-400);
}

/* ══════════════════════════════
   SECTION 9 — GRÜNDER
══════════════════════════════ */
.founder {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.founder-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 48px;
	align-items: start;
}

@media(max-width:768px) {
	.founder-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.founder-photo {
	width: 180px;
	height: 220px;
	background: linear-gradient(135deg,var(--slate-200),var(--slate-100));
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 2px dashed var(--slate-300);
	margin: 0 auto;
}

.founder-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin-top: 14px;
}

.founder-title {
	font-size: 13px;
	color: var(--slate-500);
	font-weight: 400;
}

.founder-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 14px;
}

.founder-quote {
	font-family: 'DM Serif Display',serif;
	font-size: 19px;
	color: var(--black);
	line-height: 1.6;
	margin-bottom: 20px;
	padding-left: 22px;
	border-left: 3px solid var(--flow);
}

.founder-facts {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.founder-fact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
}

.founder-fact i {
	color: var(--flow);
}

/* ══════════════════════════════
   SECTION 10 — QUALITÄT (KURZ)
══════════════════════════════ */
.quality {
	padding: 50px 25px;
	background: var(--white);
}

.quality-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.quality-card {
	background: var(--bg);
	border-radius: 20px;
	padding: 48px;
}

.quality-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px,3vw,34px);
	color: var(--black);
	margin: 10px 0 12px;
}

.quality-sub {
	font-size: 15px;
	color: var(--slate-500);
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 36px;
	font-weight: 400;
}

.seals {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.seals {
		grid-template-columns: 1fr 1fr;
	}
}

.seal {
	text-align: center;
}

.seal-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 12px;
	border: 1px solid var(--slate-200);
}

.seal h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.seal p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 11 — FAQ
══════════════════════════════ */
.faq {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.faq-inner {
	max-width: 720px;
	margin: 0 auto;
}

.faq-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,36px);
	color: var(--black);
	margin-bottom: 36px;
	text-align: center;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--white);
	border-radius: 14px;
	border: 1px solid var(--slate-100);
	overflow: hidden;
}

.faq-q {
	padding: 18px 22px;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	user-select: none;
}

.faq-q::after {
	content: '+';
	font-size: 20px;
	font-weight: 400;
	color: var(--flow);
	flex-shrink: 0;
}

.faq-item.open .faq-q::after {
	content: '−';
}

.faq-a {
	padding: 0 22px;
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.65;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s,padding .3s;
	font-weight: 400;
}

.faq-item.open .faq-a {
	padding: 0 22px 18px;
	max-height: 200px;
}

/* ══════════════════════════════
   SECTION 12 — SYSTEM (MOAT, ganz unten)
══════════════════════════════ */
.system {
	padding: 50px 25px;
	background: var(--white);
}

.system-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.system-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 12px;
}

.system-sub {
	font-size: 16px;
	color: var(--slate-500);
	max-width: 560px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.system-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.system-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.sys-card {
	border-radius: 16px;
	padding: 28px 20px;
	background: var(--bg);
	border: 1px solid var(--slate-100);
	position: relative;
	overflow: hidden;
	text-align: left;
	transition: box-shadow .2s;
}

.sys-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.sys-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.sys-name {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .04em;
	margin: 12px 0 4px;
}

.sys-fn {
	font-size: 10px;
	font-weight: 700;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 9px;
}

.sys-text {
	font-size: 12px;
	color: var(--slate-600);
	line-height: 1.55;
	font-weight: 400;
}

.sys-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
	margin-top: 12px;
}

.live {
	background: var(--green-light);
	color: var(--green);
}

.soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.final-cta {
	background: var(--black);
	padding: 50px 25px;
	text-align: center;
	color: #fff;
}

.final-cta h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4.5vw,48px);
	margin-bottom: 12px;
	letter-spacing: -.01em;
}

.final-cta p {
	font-size: 17px;
	color: rgba(255,255,255,.45);
	margin-bottom: 32px;
	font-weight: 400;
}

.btn-white {
	background: #fff;
	color: var(--black);
}

.btn-white:hover {
	opacity: .92;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 56px 32px 28px;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-brand {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.6;
	margin-bottom: 14px;
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.45);
	margin-bottom: 12px;
}

.footer a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	transition: color .2s;
	font-weight: 400;
}

.footer a:hover {
	color: #fff;
}

.footer-bottom {
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-bottom p {
	font-size: 11px;
}

.footer-trust {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-trust span {
	font-size: 11px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.footer-payments {
	display: flex;
	gap: 8px;
	font-size: 22px;
	color: rgba(255,255,255,.2);
}

.b2b-footer {
	font-size: 11px!important;
	color: rgba(255,255,255,.25)!important;
	border: 1px solid rgba(255,255,255,.08);
	padding: 5px 12px;
	border-radius: 5px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	margin-top: 12px;
	transition: all .2s!important;
}

.b2b-footer:hover {
	border-color: rgba(255,255,255,.25)!important;
	color: rgba(255,255,255,.6)!important;
}

/* Drop icon helper */
.flow-drop {
	display: inline-block;
	vertical-align: middle;
}

/* Interaktiver Vergleichs-Slider */
.slider-section {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.slider-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.slider-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.slider-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 40px;
	font-weight: 400;
}

.comparison-slider {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	user-select: none;
	height: 280px;
	cursor: ew-resize;
	box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.cs-before,.cs-after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cs-before {
	background: linear-gradient(135deg,#e8e0d8,#d5cdc4);
}

.cs-after {
	background: linear-gradient(135deg,var(--flow-light),rgba(42,99,214,.04));
}

.cs-before-content,.cs-after-content {
	text-align: center;
	padding: 28px;
}

.cs-before-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--slate-600);
	margin-bottom: 10px;
}

.cs-after-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--flow);
	margin-bottom: 10px;
}

.cs-glass {
	width: 80px;
	height: 120px;
	border-radius: 12px 12px 8px 8px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	position: relative;
}

.cs-glass-bad {
	background: rgba(180,160,130,.45);
	border: 2px solid rgba(180,160,130,.6);
}

.cs-glass-good {
	background: rgba(180,220,255,.25);
	border: 2px solid rgba(42,99,214,.25);
}

.cs-label {
	font-size: 13px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
}

.cs-label-bad {
	background: rgba(192,54,44,.1);
	color: var(--aufbau);
}

.cs-label-good {
	background: var(--flow-light);
	color: var(--flow);
}

.cs-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #fff;
	box-shadow: 0 0 12px rgba(0,0,0,.2);
	z-index: 10;
	cursor: ew-resize;
}

.cs-handle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	left: -22px;
	font-size: 16px;
	color: var(--slate-500);
}

.cs-note {
	font-size: 12px;
	color: var(--slate-400);
	margin-top: 18px;
	font-weight: 400;
}

/* Testimonials mit Avatar + Kategorie */
.test-grid-new {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.test-grid-new {
		grid-template-columns: 1fr;
	}
}

.test-card-new {
	background: var(--white);
	border-radius: 18px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
	position: relative;
}

.test-persona-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--slate-100);
}

.test-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	font-weight: 800;
	color: #fff;
}

.av-user {
	background: linear-gradient(135deg,var(--flow),#1a4fa0);
}

.av-family {
	background: linear-gradient(135deg,var(--green),#14633a);
}

.av-pro {
	background: linear-gradient(135deg,var(--aufbau),#8a1a14);
}

.test-persona-info {
}

.test-persona-name {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 2px;
}

.test-persona-role {
	font-size: 11px;
	font-weight: 600;
	color: var(--slate-400);
}

.test-persona-cat {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-left: auto;
	flex-shrink: 0;
}

.cat-user {
	background: var(--flow-light);
	color: var(--flow);
}

.cat-family {
	background: var(--green-light);
	color: var(--green);
}

.cat-pro {
	background: #fef2f2;
	color: var(--aufbau);
}

.test-stars-new {
	color: #f59e0b;
	font-size: 13px;
	margin-bottom: 12px;
}

.test-quote {
	font-size: 15px;
	color: var(--black);
	line-height: 1.65;
	font-weight: 400;
}

.test-quote strong {
	font-weight: 700;
}

/* Companion als Gratis-Beigabe */
.companion-free-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--green-light);
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 99px;
	letter-spacing: .04em;
	margin-bottom: 8px;
}

/* Trust-Siegel direkt am Kauf-Button */
.trust-seals {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 14px 0;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
	margin: 14px 0;
}

.ts-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-600);
}

.ts-seal i {
	font-size: 14px;
}

/* Goodies als physische Produkte visuell */
.goodies-visual {
	background: var(--flow-light);
	border-radius: 16px;
	padding: 22px 24px;
	border: 1px solid rgba(42,99,214,.1);
	margin-bottom: 18px;
}

.goodies-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--flow-dark);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.goodies-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.goodie {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 10px;
	padding: 10px 12px;
	border: 1px solid rgba(42,99,214,.08);
}

.goodie-icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--flow-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.goodie-text {
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.3;
}

.goodie-sub {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
}


/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile a {
	font-size: 15px;
	font-weight: 600;
	color: var(--slate-700);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 0px;
}

.nav-mobile a.active {
	color: var(--flow);
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}
/* shop */






/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:900px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}

/* ── BTN ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.btn-lg {
	font-size: 17px;
	padding: 17px 34px;
}

/* ══════════════════════════════
   SHOP HERO
══════════════════════════════ */
.shop-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 64px 32px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--bg-warm-dark);
}

.shop-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: linear-gradient(transparent,var(--bg-warm));
}

.shop-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 5px 14px;
	border-radius: 99px;
	margin-bottom: 18px;
	border: 1px solid rgba(42,99,214,.1);
}

.shop-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(32px,5vw,52px);
	color: var(--black);
	margin-bottom: 12px;
	line-height: 1.1;
}

.shop-hero h1 em {
	font-style: normal;
	color: var(--flow);
}

.shop-hero-sub {
	font-size: 17px;
	color: var(--slate-600);
	max-width: 540px;
	margin: 0 auto 28px;
	line-height: 1.65;
	font-weight: 400;
}

.shop-hero-trust {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.sht {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.sht i {
	color: var(--green);
	font-size: 11px;
}

/* ══════════════════════════════
   GUIDED FINDER (Step 1)
══════════════════════════════ */
.finder {
	background: var(--white);
	padding: 50px 25px;
}

.finder-inner {
	max-width: 900px;
	margin: 0 auto;
}

.finder-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 12px;
}

.finder h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px,3.5vw,36px);
	color: var(--black);
	margin-bottom: 8px;
}

.finder-sub {
	font-size: 15px;
	color: var(--slate-500);
	margin-bottom: 36px;
	font-weight: 400;
}

.finder-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

@media(max-width:768px) {
	.finder-cards {
		grid-template-columns: 1fr;
	}
}

.finder-card {
	border-radius: 16px;
	padding: 24px;
	border: 2px solid var(--slate-100);
	background: var(--white);
	cursor: pointer;
	transition: all .25s;
	position: relative;
}

.finder-card:hover {
	border-color: var(--flow);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(42,99,214,.08);
}

.finder-card.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.finder-card-icon {
	font-size: 28px;
	margin-bottom: 12px;
	display: block;
}

.finder-card-title {
	font-size: 15px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 6px;
}

.finder-card-desc {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.finder-card-check {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--slate-200);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: transparent;
	transition: all .2s;
}

.finder-card.selected .finder-card-check {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

.finder-nav {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

/* ══════════════════════════════
   PRODUKT-AUSWAHL (Step 2)
══════════════════════════════ */
.products {
	background: var(--bg-warm);
	padding: 50px 25px;
}

.products-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.sh {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px,3.5vw,36px);
	color: var(--black);
	margin-bottom: 8px;
	text-align: center;
}

@media(max-width:768px) {
	.sh {
		margin-bottom: 0px;
	}
}

.section-sub {
	font-size: 15px;
	color: var(--slate-500);
	font-weight: 400;
	margin-bottom: 36px;
	max-width: 560px;
}

/* Module cards */
.modules-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 16px;
}

@media(max-width:768px) {
	.modules-grid {
		grid-template-columns: 1fr;
	}
}

.module-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	border: 1.5px solid var(--slate-100);
	transition: box-shadow .2s;
}

.module-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.07);
}

.module-card.coming-soon {
	opacity: .6;
	pointer-events: none;
}

.mc-header {
	padding: 20px 24px 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid var(--slate-100);
}

.mc-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}

.mc-name {
	font-size: 16px;
	font-weight: 800;
	color: var(--black);
}

.mc-category {
	font-size: 11px;
	font-weight: 600;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .06em;
}

.mc-badge {
	margin-left: auto;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 99px;
	letter-spacing: .04em;
}

.mc-badge-avail {
	background: var(--green-light);
	color: var(--green);
}

.mc-badge-soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

.mc-
.mc-desc {
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 16px;
}

.mc-usps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 20px;
}

.mc-usps li {
	font-size: 12px;
	color: var(--slate-700);
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.mc-usps li i {
	font-size: 10px;
	color: var(--green);
}

.mc-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* Coming soon overlay */
.cs-overlay {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-400);
}

/* ══════════════════════════════
   FLOW CLEAR — HAUPT-ANGEBOT (Step 3)
══════════════════════════════ */
.offer {
	background: var(--white);
	padding: 50px 25px;
}

.offer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 64px;
	align-items: start;
}

@media(max-width:900px) {
	.offer-inner {
		grid-template-columns: 1fr;
	}
}

/* LEFT: Product visual + USPs */
.offer-left {
}

.offer-can {
	background: var(--bg-warm);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	margin-bottom: 24px;
	border: 1px solid var(--bg-warm-dark);
}

.offer-can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.offer-can-name {
	font-size: 48px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	line-height: 1;
	margin: 8px 0 4px;
}

.offer-can-sub {
	font-size: 14px;
	font-weight: 600;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.offer-can-stripe {
	height: 3px;
	width: 50%;
	background: var(--flow);
	border-radius: 2px;
	margin: 0 auto 16px;
}

.offer-can-claim {
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.55;
	font-weight: 400;
}

.offer-usps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 24px;
}

.offer-usps li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--black);
	font-weight: 500;
	line-height: 1.45;
}

.offer-usps li i {
	color: var(--green);
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 13px;
}

.offer-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.offer-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	background: var(--flow-light);
	color: var(--flow);
	padding: 4px 11px;
	border-radius: 99px;
	border: 1px solid rgba(42,99,214,.1);
}

/* RIGHT: Offer selector */
.offer-right {
}

.offer-right h3 {
	font-family: 'DM Serif Display',serif;
	font-size: 26px;
	color: var(--black);
	margin-bottom: 6px;
}

.offer-right-sub {
	font-size: 14px;
	color: var(--slate-500);
	margin-bottom: 24px;
	font-weight: 400;
	line-height: 1.55;
}

/* Package cards */
.pkg-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}

.pkg-card {
	border: 2px solid var(--slate-100);
	border-radius: 16px;
	padding: 20px;
	cursor: pointer;
	transition: all .2s;
	position: relative;
	background: var(--white);
}

.pkg-card:hover {
	border-color: var(--slate-300);
}

.pkg-card.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.pkg-card.featured-pkg {
	border-color: var(--flow);
}

.pkg-badge {
	position: absolute;
	top: -10px;
	left: 20px;
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 12px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.pkg-badge.green {
	background: var(--green);
}

.pkg-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.pkg-radio {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
	transition: all .2s;
	margin-top: 2px;
}

.pkg-card.selected .pkg-radio {
	background: var(--flow);
	border-color: var(--flow);
}

.pkg-name {
	font-size: 16px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 2px;
}

.pkg-desc {
	font-size: 12px;
	color: var(--slate-500);
	font-weight: 400;
	line-height: 1.4;
}

.pkg-price-block {
	text-align: right;
}

.pkg-price {
	font-size: 22px;
	font-weight: 800;
	color: var(--black);
	line-height: 1;
}

.pkg-per {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 400;
	margin-top: 2px;
}

.pkg-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
	margin-top: 3px;
}

.pkg-includes {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(42,99,214,.1);
}

.pkg-card:not(.selected) .pkg-includes {
	border-top: 1px solid var(--slate-100);
}

.pkg-tag {
	font-size: 10px;
	font-weight: 700;
	color: var(--slate-500);
	background: var(--slate-100);
	padding: 3px 9px;
	border-radius: 99px;
}

.pkg-card.selected .pkg-tag {
	background: rgba(42,99,214,.12);
	color: var(--flow-dark);
}

/* Trust + CTA */
.offer-trust {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 18px;
}

.ot-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-600);
}

.ot-item i {
	font-size: 13px;
}

.offer-cta-btn {
	font-size: 17px;
	padding: 18px;
	border-radius: 12px;
	margin-bottom: 10px;
}

.offer-guarantee {
	font-size: 12px;
	color: var(--slate-400);
	text-align: center;
	font-weight: 400;
}

/* Payment logos */
.pay-logos {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
	font-size: 26px;
	color: var(--slate-300);
}

/* ══════════════════════════════
   GOODIES / IM LIEFERUMFANG
══════════════════════════════ */
.goodies {
	background: var(--bg-warm);
	padding: 50px 25px;
	border-top: 1px solid var(--bg-warm-dark);
}

.goodies-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.goodies-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.goodies-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.goodie-card {
	background: var(--white);
	border-radius: 16px;
	padding: 24px 20px;
	text-align: center;
	border: 1px solid var(--slate-100);
}

.goodie-emoji {
	font-size: 32px;
	display: block;
	margin-bottom: 12px;
}

.goodie-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.goodie-desc {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

.goodie-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	color: var(--green);
	background: var(--green-light);
	padding: 2px 8px;
	border-radius: 99px;
	margin-top: 8px;
}

/* ══════════════════════════════
   ABO SECTION
══════════════════════════════ */
.abo-section {
	background: var(--navy);
	padding: 50px 25px;
	color: #fff;
}

.abo-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.abo-inner {
		grid-template-columns: 1fr;
	}
}

.abo-eyebrow {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(42,99,214,.9);
	margin-bottom: 14px;
}

.abo-section h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,40px);
	color: #fff;
	margin-bottom: 14px;
	line-height: 1.15;
}

.abo-sub {
	font-size: 16px;
	color: rgba(255,255,255,.55);
	line-height: 1.65;
	margin-bottom: 28px;
	font-weight: 400;
}

.abo-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.abo-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	font-weight: 500;
}

.abo-features li i {
	color: rgba(42,99,214,.9);
	font-size: 12px;
}

.abo-price-block {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 20px;
	padding: 28px;
}

@media(max-width:960px) {
	.abo-price-block {
		padding: 20px;
	}
}

.abo-price-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.abo-price-main {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}

.abo-price-sub {
	font-size: 13px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
	margin-bottom: 16px;
}

.abo-save-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(22,163,74,.15);
	border: 1px solid rgba(22,163,74,.2);
	color: #4ade80;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.abo-includes {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.abo-inc-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}

.abo-inc-label {
	color: rgba(255,255,255,.5);
	font-weight: 400;
}

.abo-inc-val {
	color: rgba(255,255,255,.8);
	font-weight: 700;
}

.abo-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,.06);
	margin: 12px 0;
}

.abo-cta {
	width: 100%;
	justify-content: center;
	background: #fff!important;
	color: var(--black)!important;
	font-size: 15px;
	padding: 16px;
	border-radius: 10px;
}

.abo-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-align: center;
	margin-top: 10px;
	font-weight: 400;
}

/* ══════════════════════════════
   BUNDLE / SYSTEM SECTION
══════════════════════════════ */
.system-section {
	background: var(--white);
	padding: 50px 25px;
}

.system-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.system-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.system-grid {
		grid-template-columns: 1fr;
	}
}

.sys-card {
	border-radius: 20px;
	border: 2px solid var(--slate-100);
	overflow: hidden;
	transition: all .2s;
}

.sys-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.07);
	border-color: var(--slate-200);
}

.sys-card-header {
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sys-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	flex-shrink: 0;
}

.sys-name {
	font-size: 17px;
	font-weight: 800;
	color: var(--black);
	margin-left: 10px;
}

.sys-avail {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 99px;
}

.sys-avail.yes {
	background: var(--green-light);
	color: var(--green);
}

.sys-avail.soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

.sys-
.sys-desc {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 16px;
}

.sys-detail {
	font-size: 12px;
	color: var(--slate-600);
	font-weight: 600;
}

.sys-cta-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.shop-faq {
	background: var(--bg-warm);
	padding: 50px 25px;
}

.shop-faq-inner {
	max-width: 720px;
	margin: 0 auto;
}

.faq-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-bottom: 1px solid var(--bg-warm-dark);
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	gap: 16px;
}

.faq-q i {
	color: var(--slate-400);
	font-size: 12px;
	flex-shrink: 0;
	transition: transform .2s;
}

.faq-item.open .faq-q i {
	transform: rotate(180deg);
}

.faq-a {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.7;
	font-weight: 400;
	display: none;
	padding-bottom: 18px;
}

.faq-item.open .faq-a {
	display: block;
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.final-cta {
	background: var(--black);
	padding: 50px 25px;
	text-align: center;
}

.final-cta h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,4vw,44px);
	color: #fff;
	margin-bottom: 12px;
}

.final-cta p {
	font-size: 16px;
	color: rgba(255,255,255,.45);
	margin-bottom: 32px;
	font-weight: 400;
}

.final-cta-btns {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-white {
	background: #fff;
	color: var(--black);
}

.btn-white:hover {
	opacity: .92;
}
/* ── FOOTER ── */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 56px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 8px;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.2);
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 12px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-seals {
	max-width: 1120px;
	margin: 36px auto 0;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 14px auto 0;
	padding: 16px 0 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

/* Sticky buy bar */
.sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white);
	border-top: 1px solid var(--slate-100);
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 300;
	box-shadow: 0 -4px 20px rgba(0,0,0,.08);
	transform: translateY(100%);
	transition: transform .3s;
}

.sticky-bar.visible {
	transform: translateY(0);
}

.sticky-bar-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sticky-pkg-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.sticky-pkg-price {
	font-size: 18px;
	font-weight: 800;
	color: var(--flow);
}

.sticky-btn {
	font-size: 14px;
	padding: 11px 24px;
}

@media(max-width:600px) {
	.sticky-bar-left {
		display: none;
	}
}

/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.65);
	text-align: center;
	padding: 10px 16px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.sep {
	margin: 0 12px;
	opacity: .25;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 13px!important;
	transition: opacity .2s!important;
}

.nav-cta:hover {
	opacity: .88;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	transition: all .2s!important;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* ── BUTTONS ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
	letter-spacing: .01em;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-dark {
	background: var(--black);
	color: #fff;
}

.btn-dark:hover {
	opacity: .88;
}

.btn-ghost-white {
	background: transparent;
	color: rgba(255,255,255,.8);
	border: 1.5px solid rgba(255,255,255,.25);
}

.btn-ghost-white:hover {
	color: #fff;
	border-color: rgba(255,255,255,.6);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ══════════════════════════════
   SECTION 1 — HERO
══════════════════════════════ */
.hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 110px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(transparent,var(--white));
}

.hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

@media(max-width:768px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(38px,5.5vw,60px);
	line-height: 1.08;
	color: var(--black);
	margin-bottom: 18px;
	letter-spacing: -.01em;
}

.hero-sub {
	font-size: 18px;
	color: var(--slate-600);
	line-height: 1.65;
	margin-bottom: 12px;
	font-weight: 400;
}

.hero-core-claim {
	font-size: 22px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 32px;
	letter-spacing: -.01em;
}

.hero-core-claim em {
	font-style: normal;
	color: var(--flow);
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

@media(max-width:768px) {
	.hero-btns {
		justify-content: center;
	}
}

.hero-trust {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

@media(max-width:768px) {
	.hero-trust {
		justify-content: center;
	}
}

.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.hero-trust-item i {
	color: var(--green);
	font-size: 11px;
}

/* Hero product visual */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-product-card {
	background: var(--white);
	border-radius: 24px;
	padding: 40px 32px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	width: 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(42,99,214,.08);
}

.hero-product-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.hpc-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.hpc-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.hpc-name {
	font-size: 40px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	margin-top: 12px;
	line-height: 1;
}

.hpc-sub {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
	margin-bottom: 12px;
}

.hpc-stripe {
	width: 50%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
	margin-bottom: 18px;
}

.hpc-claim {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-align: center;
	line-height: 1.55;
	margin-bottom: 20px;
}

.hpc-price {
	font-size: 28px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 4px;
}

.hpc-price-sub {
	font-size: 12px;
	color: var(--green);
	font-weight: 700;
	margin-bottom: 16px;
}

/* ══════════════════════════════
   SECTION 3 — LÖSUNG
══════════════════════════════ */
.solution {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.solution-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.solution-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.solution h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,42px);
	color: var(--black);
	margin-bottom: 20px;
	line-height: 1.15;
}

.solution p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.solution-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.solution-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: var(--black);
	font-weight: 600;
}

.solution-bullets li span {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px;
}

.solution-visual {
	background: var(--white);
	border-radius: 20px;
	padding: 36px;
	box-shadow: 0 8px 40px rgba(0,0,0,.07);
}

.sol-vis-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--slate-400);
	margin-bottom: 20px;
	text-align: center;
}

.sol-comparison {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 16px;
}

.sol-col {
	text-align: center;
}

.sol-col-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--slate-500);
	margin-top: 12px;
}

.sol-col-sub {
	font-size: 11px;
	color: var(--slate-400);
}

.sol-bad {
	width: 56px;
	height: 100px;
	border: 2px dashed var(--slate-200);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sol-bad span {
	writing-mode: vertical-rl;
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 600;
}

.sol-bad-x {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: #ef4444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.sol-good {
	width: 100px;
	height: 72px;
	background: var(--bg-warm);
	border: 2px solid var(--flow);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
}

.sol-good span {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
}

.sol-good-stripe {
	width: 50%;
	height: 4px;
	background: var(--flow);
	border-radius: 2px;
}

.sol-good-check {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

/* ══════════════════════════════
   SECTION 4 — ANWENDUNG (3 Schritte)
══════════════════════════════ */
.steps {
	padding: 50px 25px;
	background: var(--white);
}

.steps-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.steps h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,40px);
	color: var(--black);
	margin-bottom: 10px;
}

.steps-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 52px;
	font-weight: 400;
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr 40px 1fr 40px 1fr;
	gap: 0;
	align-items: start;
	max-width: 900px;
	margin: 0 auto;
}

@media(max-width:768px) {
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.step-card {
	text-align: center;
	padding: 36px 24px;
	background: var(--bg);
	border-radius: 20px;
}

.step-num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.step-icon {
	font-size: 32px;
	margin-bottom: 14px;
}

.step-card h4 {
	font-size: 17px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 8px;
}

.step-card p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--slate-300);
	font-size: 20px;
	padding-top: 52px;
}

@media(max-width:768px) {
	.step-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 5 — PRODUKT + ANGEBOT
══════════════════════════════ */
.product {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.product-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 64px;
	align-items: start;
}

@media(max-width:768px) {
	.product-inner {
		grid-template-columns: 1fr;
	}
}

.product-can-wrap {
	display: flex;
	justify-content: center;
}

.product-can {
	background: var(--white);
	border-radius: 24px;
	width: 220px;
	padding: 36px 24px 28px;
	box-shadow: 0 16px 56px rgba(0,0,0,.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.product-can::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
}

.can-name {
	font-size: 32px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .05em;
}

.can-variant {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
}

.can-stripe {
	width: 55%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
}

.product-info {
}

.product-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--flow-light);
	color: var(--flow);
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 99px;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.product-info h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3vw,34px);
	color: var(--black);
	margin-bottom: 8px;
	line-height: 1.15;
}

.product-tagline {
	font-size: 16px;
	color: var(--slate-600);
	margin-bottom: 24px;
	font-weight: 400;
}

.usp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.usp-list li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.5;
}

.usp-list li i {
	color: var(--green);
	font-size: 13px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* Angebot / Pricing */
.pricing-block {
	background: var(--white);
	border-radius: 18px;
	padding: 28px;
	border: 1px solid var(--slate-100);
	margin-bottom: 20px;
}

.pricing-block h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 18px;
}

.price-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.price-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid var(--slate-100);
	cursor: pointer;
	transition: all .2s;
	gap: 12px;
}

.price-option.featured {
	border-color: var(--flow);
	background: var(--flow-light);
}

.price-option-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-option-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
}

.price-option.featured .price-option-dot {
	background: var(--flow);
	border-color: var(--flow);
}

.price-option-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.price-option-desc {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 1px;
	font-weight: 400;
}

.price-option-right {
	text-align: right;
	flex-shrink: 0;
}

.price-amount {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
}

.price-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
}

.price-option-badge {
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	letter-spacing: .06em;
	white-space: nowrap;
}

.guarantee {
	font-size: 11px;
	color: var(--slate-400);
	text-align: center;
	margin-top: 12px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 6 — BEFORE / AFTER
══════════════════════════════ */
.before-after {
	padding: 50px 25px;
	background: var(--white);
}

.ba-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.ba-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.ba-inner .ba-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 48px;
	font-weight: 400;
}

.ba-grid {
	display: grid;
	grid-template-columns: 1fr 48px 1fr;
	gap: 0;
	align-items: center;
}

@media(max-width:600px) {
	.ba-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.ba-col {
	border-radius: 18px;
	padding: 32px 28px;
}

.ba-before {
	background: #fff5f5;
	border: 1.5px solid #f5cccc;
}

.ba-after {
	background: #f0faf4;
	border: 1.5px solid #b8e0c8;
}

.ba-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 18px;
}

.ba-before .ba-label {
	color: var(--aufbau);
}

.ba-after .ba-label {
	color: var(--green);
}

.ba-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.ba-col li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--black);
}

.ba-col li .bi {
	font-size: 16px;
	flex-shrink: 0;
}

.ba-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--slate-200);
}

@media(max-width:600px) {
	.ba-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 7 — HOYVO COMPANION (KEY)
══════════════════════════════ */
.companion {
	padding: 100px 32px;
	background: var(--companion);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.companion::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -5%;
	width: 50%;
	height: 160%;
	background: radial-gradient(ellipse,rgba(42,99,214,.12),transparent 65%);
	pointer-events: none;
}

.companion::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 40%;
	height: 120%;
	background: radial-gradient(ellipse,rgba(42,99,214,.07),transparent 65%);
	pointer-events: none;
}

.companion-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
	position: relative;
}

@media(max-width:768px) {
	.companion-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.companion-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(42,99,214,.9);
	background: rgba(42,99,214,.12);
	border: 1px solid rgba(42,99,214,.2);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.companion h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4vw,48px);
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.12;
}

.companion h2 em {
	font-style: normal;
	color: rgba(42,99,214,.9);
}

.companion-intro {
	font-size: 17px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	margin-bottom: 28px;
	font-weight: 400;
}

.companion-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.companion-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	font-weight: 500;
	line-height: 1.5;
}

.companion-features li i {
	color: rgba(42,99,214,.9);
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 14px;
}

.companion-disclaimer {
	font-size: 12px;
	color: rgba(255,255,255,.35);
	margin-top: 10px;
	font-weight: 400;
}

/* Companion App Mockup */
.companion-mockup {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 24px;
	padding: 32px 28px;
	backdrop-filter: blur(10px);
}

.cm-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.cm-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--flow);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cm-icon-inner {
	font-size: 20px;
	color: #fff;
}

.cm-title {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.cm-sub {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
}

.cm-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.cm-feat {
	background: rgba(255,255,255,.06);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid rgba(255,255,255,.04);
}

.cm-feat-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(42,99,214,.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.cm-feat-text {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,.8);
}

.cm-feat-sub {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	font-weight: 400;
}

.cm-status {
	background: rgba(42,99,214,.15);
	border: 1px solid rgba(42,99,214,.25);
	border-radius: 10px;
	padding: 14px 18px;
	text-align: center;
}

.cm-status p {
	font-size: 12px;
	color: rgba(255,255,255,.5);
	margin-bottom: 4px;
	font-weight: 400;
}

.cm-status strong {
	font-size: 14px;
	color: rgba(255,255,255,.9);
	font-weight: 700;
}

/* Companion Warteliste Form */
.companion-form {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 24px;
	margin-top: 24px;
}

.companion-form p {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	margin-bottom: 14px;
	font-weight: 400;
}

.companion-form-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.companion-form input {
	flex: 1;
	min-width: 200px;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	outline: none;
	transition: border-color .2s;
}

.companion-form input::placeholder {
	color: rgba(255,255,255,.3);
}

.companion-form input:focus {
	border-color: rgba(42,99,214,.6);
}

.companion-form button {
	padding: 12px 20px;
	border-radius: 10px;
	border: none;
	background: var(--flow);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	white-space: nowrap;
	transition: opacity .2s;
}

.companion-form button:hover {
	opacity: .88;
}

.companion-form-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-align: center;
	margin-top: 10px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 9 — GRÜNDER
══════════════════════════════ */
.founder {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.founder-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 48px;
	align-items: start;
}

@media(max-width:768px) {
	.founder-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.founder-photo {
	width: 180px;
	height: 220px;
	background: linear-gradient(135deg,var(--slate-200),var(--slate-100));
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 2px dashed var(--slate-300);
	margin: 0 auto;
}

.founder-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin-top: 14px;
}

.founder-title {
	font-size: 13px;
	color: var(--slate-500);
	font-weight: 400;
}

.founder-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 14px;
}

.founder-quote {
	font-family: 'DM Serif Display',serif;
	font-size: 19px;
	color: var(--black);
	line-height: 1.6;
	margin-bottom: 20px;
	padding-left: 22px;
	border-left: 3px solid var(--flow);
}

.founder-facts {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.founder-fact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
}

.founder-fact i {
	color: var(--flow);
}

/* ══════════════════════════════
   SECTION 10 — QUALITÄT (KURZ)
══════════════════════════════ */
.quality {
	padding: 50px 25px;
	background: var(--white);
}

.quality-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.quality-card {
	background: var(--bg);
	border-radius: 20px;
	padding: 48px;
}

.quality-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px,3vw,34px);
	color: var(--black);
	margin: 10px 0 12px;
}

.quality-sub {
	font-size: 15px;
	color: var(--slate-500);
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 36px;
	font-weight: 400;
}

.seals {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.seals {
		grid-template-columns: 1fr 1fr;
	}
}

.seal {
	text-align: center;
}

.seal-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 12px;
	border: 1px solid var(--slate-200);
}

.seal h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.seal p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 11 — FAQ
══════════════════════════════ */
.faq {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.faq-inner {
	max-width: 720px;
	margin: 0 auto;
}

.faq-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,36px);
	color: var(--black);
	margin-bottom: 36px;
	text-align: center;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--white);
	border-radius: 14px;
	border: 1px solid var(--slate-100);
	overflow: hidden;
}

.faq-q {
	padding: 18px 22px;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	user-select: none;
}

.faq-q::after {
	content: '+';
	font-size: 20px;
	font-weight: 400;
	color: var(--flow);
	flex-shrink: 0;
}

.faq-item.open .faq-q::after {
	content: '−';
}

.faq-a {
	padding: 0 22px;
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.65;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s,padding .3s;
	font-weight: 400;
}

.faq-item.open .faq-a {
	padding: 0 22px 18px;
	max-height: 200px;
}

/* ══════════════════════════════
   SECTION 12 — SYSTEM (MOAT, ganz unten)
══════════════════════════════ */
.system {
	padding: 50px 25px;
	background: var(--white);
}

.system-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.system-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 12px;
}

.system-sub {
	font-size: 16px;
	color: var(--slate-500);
	max-width: 560px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.system-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.system-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.sys-card {
	border-radius: 16px;
	padding: 28px 20px;
	background: var(--bg);
	border: 1px solid var(--slate-100);
	position: relative;
	overflow: hidden;
	text-align: left;
	transition: box-shadow .2s;
}

.sys-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.sys-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.sys-name {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .04em;
	margin: 12px 0 4px;
}

.sys-fn {
	font-size: 10px;
	font-weight: 700;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 9px;
}

.sys-text {
	font-size: 12px;
	color: var(--slate-600);
	line-height: 1.55;
	font-weight: 400;
}

.sys-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
	margin-top: 12px;
}

.live {
	background: var(--green-light);
	color: var(--green);
}

.soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.final-cta {
	background: var(--black);
	padding: 50px 25px;
	text-align: center;
	color: #fff;
}

.final-cta h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4.5vw,48px);
	margin-bottom: 12px;
	letter-spacing: -.01em;
}

.final-cta p {
	font-size: 17px;
	color: rgba(255,255,255,.45);
	margin-bottom: 32px;
	font-weight: 400;
}

.btn-white {
	background: #fff;
	color: var(--black);
}

.btn-white:hover {
	opacity: .92;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 56px 32px 28px;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-brand {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.6;
	margin-bottom: 14px;
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.45);
	margin-bottom: 12px;
}

.footer a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	transition: color .2s;
	font-weight: 400;
}

.footer a:hover {
	color: #fff;
}

.footer-bottom {
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-bottom p {
	font-size: 11px;
}

.footer-trust {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-trust span {
	font-size: 11px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.footer-payments {
	display: flex;
	gap: 8px;
	font-size: 22px;
	color: rgba(255,255,255,.2);
}

.b2b-footer {
	font-size: 11px!important;
	color: rgba(255,255,255,.25)!important;
	border: 1px solid rgba(255,255,255,.08);
	padding: 5px 12px;
	border-radius: 5px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	margin-top: 12px;
	transition: all .2s!important;
}

.b2b-footer:hover {
	border-color: rgba(255,255,255,.25)!important;
	color: rgba(255,255,255,.6)!important;
}

/* Drop icon helper */
.flow-drop {
	display: inline-block;
	vertical-align: middle;
}

/* Interaktiver Vergleichs-Slider */
.slider-section {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.slider-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.slider-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.slider-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 40px;
	font-weight: 400;
}

.comparison-slider {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	user-select: none;
	height: 280px;
	cursor: ew-resize;
	box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.cs-before,.cs-after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cs-before {
	background: linear-gradient(135deg,#e8e0d8,#d5cdc4);
}

.cs-after {
	background: linear-gradient(135deg,var(--flow-light),rgba(42,99,214,.04));
}

.cs-before-content,.cs-after-content {
	text-align: center;
	padding: 28px;
}

.cs-before-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--slate-600);
	margin-bottom: 10px;
}

.cs-after-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--flow);
	margin-bottom: 10px;
}

.cs-glass {
	width: 80px;
	height: 120px;
	border-radius: 12px 12px 8px 8px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	position: relative;
}

.cs-glass-bad {
	background: rgba(180,160,130,.45);
	border: 2px solid rgba(180,160,130,.6);
}

.cs-glass-good {
	background: rgba(180,220,255,.25);
	border: 2px solid rgba(42,99,214,.25);
}

.cs-label {
	font-size: 13px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
}

.cs-label-bad {
	background: rgba(192,54,44,.1);
	color: var(--aufbau);
}

.cs-label-good {
	background: var(--flow-light);
	color: var(--flow);
}

.cs-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #fff;
	box-shadow: 0 0 12px rgba(0,0,0,.2);
	z-index: 10;
	cursor: ew-resize;
}

.cs-handle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	left: -22px;
	font-size: 16px;
	color: var(--slate-500);
}

.cs-note {
	font-size: 12px;
	color: var(--slate-400);
	margin-top: 18px;
	font-weight: 400;
}

/* Testimonials mit Avatar + Kategorie */
.test-grid-new {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.test-grid-new {
		grid-template-columns: 1fr;
	}
}

.test-card-new {
	background: var(--white);
	border-radius: 18px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
	position: relative;
}

.test-persona-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--slate-100);
}

.test-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	font-weight: 800;
	color: #fff;
}

.av-user {
	background: linear-gradient(135deg,var(--flow),#1a4fa0);
}

.av-family {
	background: linear-gradient(135deg,var(--green),#14633a);
}

.av-pro {
	background: linear-gradient(135deg,var(--aufbau),#8a1a14);
}

.test-persona-info {
}

.test-persona-name {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 2px;
}

.test-persona-role {
	font-size: 11px;
	font-weight: 600;
	color: var(--slate-400);
}

.test-persona-cat {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-left: auto;
	flex-shrink: 0;
}

.cat-user {
	background: var(--flow-light);
	color: var(--flow);
}

.cat-family {
	background: var(--green-light);
	color: var(--green);
}

.cat-pro {
	background: #fef2f2;
	color: var(--aufbau);
}

.test-stars-new {
	color: #f59e0b;
	font-size: 13px;
	margin-bottom: 12px;
}

.test-quote {
	font-size: 15px;
	color: var(--black);
	line-height: 1.65;
	font-weight: 400;
}

.test-quote strong {
	font-weight: 700;
}

/* Companion als Gratis-Beigabe */
.companion-free-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--green-light);
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 99px;
	letter-spacing: .04em;
	margin-bottom: 8px;
}

/* Trust-Siegel direkt am Kauf-Button */
.trust-seals {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 14px 0;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
	margin: 14px 0;
}

.ts-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-600);
}

.ts-seal i {
	font-size: 14px;
}

/* Goodies als physische Produkte visuell */
.goodies-visual {
	background: var(--flow-light);
	border-radius: 16px;
	padding: 22px 24px;
	border: 1px solid rgba(42,99,214,.1);
	margin-bottom: 18px;
}

.goodies-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--flow-dark);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.goodies-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.goodie {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 10px;
	padding: 10px 12px;
	border: 1px solid rgba(42,99,214,.08);
}

.goodie-icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--flow-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.goodie-text {
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.3;
}

.goodie-sub {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
}


/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}


/* FLOW CLEAR PAGE SPECIFIC */
.product-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 88px;
	position: relative;
	overflow: hidden;
}

.product-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.product-hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.product-hero-inner {
		grid-template-columns: 1fr;
	}
}

.ph-left {
}

.ph-can {
	background: var(--white);
	border-radius: 24px;
	width: 240px;
	padding: 40px 28px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

.ph-can::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--flow);
}

.ph-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 9px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.ph-can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
}

.ph-can-name {
	font-size: 44px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	line-height: 1;
}

.ph-can-sub {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
}

.ph-can-stripe {
	width: 50%;
	height: 5px;
	border-radius: 3px;
	background: var(--flow);
}

.ph-can-claim {
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-600);
	text-align: center;
	line-height: 1.5;
}

.ph-right {
}

.ph-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.ph-right h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,4vw,42px);
	color: var(--black);
	margin-bottom: 12px;
	line-height: 1.15;
}

.ph-tagline {
	font-size: 17px;
	color: var(--slate-600);
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 1.6;
}
/* USP Pills */
.usp-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.usp-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	background: var(--flow-light);
	color: var(--flow);
	padding: 5px 12px;
	border-radius: 99px;
	border: 1px solid rgba(42,99,214,.1);
}
/* Pricing block on product page */
.product-pricing {
	background: var(--white);
	border-radius: 18px;
	padding: 24px;
	border: 1px solid var(--slate-100);
	margin-bottom: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.pp-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 16px;
	border-radius: 12px;
	border: 2px solid var(--slate-100);
	cursor: pointer;
	transition: all .2s;
	gap: 12px;
	margin-bottom: 8px;
}

.pp-option:last-child {
	margin-bottom: 0;
}

.pp-option.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.pp-option-l {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pp-radio {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
	transition: all .2s;
}

.pp-option.selected .pp-radio {
	background: var(--flow);
	border-color: var(--flow);
}

.pp-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.pp-desc {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 400;
	margin-top: 1px;
}

.pp-badge {
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	letter-spacing: .05em;
	margin-left: 6px;
}

.pp-price {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
}

.pp-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
}
/* Trust at CTA */
.cta-trust {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 12px 0;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
	margin: 12px 0;
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-500);
}

.cta-trust span {
	display: flex;
	align-items: center;
	gap: 5px;
}
/* Tabs */
.product-tabs {
	padding: 50px 25px;
	background: var(--white);
}

.product-tabs-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.tab-bar {
	display: flex;
	border-bottom: 2px solid var(--slate-100);
	margin-bottom: 40px;
	gap: 0;
	overflow-x: auto;
}

.tab-btn {
	padding: 13px 24px;
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-500);
	border: none;
	background: none;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	white-space: nowrap;
	font-family: 'Montserrat',sans-serif;
	transition: all .2s;
}

.tab-btn.active {
	color: var(--flow);
	border-bottom-color: var(--flow);
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}
/* Details table */
.details-table {
	width: 100%;
	border-collapse: collapse;
}

.details-table tr {
	border-bottom: 1px solid var(--slate-100);
}

.details-table td {
	padding: 13px 0;
	font-size: 14px;
}

.details-table td:first-child {
	font-weight: 700;
	color: var(--black);
	width: 180px;
}

.details-table td:last-child {
	color: var(--slate-600);
	font-weight: 400;
}
/* IDDSI Table on product page */
.iddsi-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

.iddsi-table thead tr {
	background: var(--navy);
	color: #fff;
}

.iddsi-table th {
	padding: 12px 18px;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
	letter-spacing: .04em;
}

.iddsi-table td {
	padding: 13px 18px;
	font-size: 13px;
	color: var(--slate-700);
	font-weight: 500;
	border-bottom: 1px solid var(--slate-100);
}

.iddsi-table tr:nth-child(even) td {
	background: var(--bg);
}

.iddsi-table tr:last-child td {
	border-bottom: none;
}

.iddsi-badge-sm {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
/* Related articles */
.related {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.related-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 18px;
	margin-top: 28px;
}

@media(max-width:768px) {
	.related-grid {
		grid-template-columns: 1fr;
	}
}

.related-card {
	background: var(--white);
	border-radius: 14px;
	padding: 22px;
	border: 1px solid var(--slate-100);
	text-decoration: none;
	color: inherit;
	display: block;
	transition: box-shadow .2s,transform .2s;
}

.related-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,.07);
	transform: translateY(-2px);
}

.related-cat {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 8px;
}

.related-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.35;
	margin-bottom: 8px;
}

.related-card p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

.related-link {
	font-size: 12px;
	font-weight: 700;
	color: var(--flow);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 10px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	opacity: .9;
	transform: translateY(-1px);
}

/* NAV */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover,.nav-links a.active {
	color: var(--black);
}

.nav-links a.active {
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* PAGE HERO */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 88px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 18px;
	color: var(--slate-600);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
}

/* INTRO */
.intro {
	padding: 50px 25px;
	background: var(--white);
}

.intro-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.intro p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.75;
	margin-bottom: 16px;
	font-weight: 400;
}

/* SYSTEM EBENEN */
.ebenen {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.ebenen-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.ebenen-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	margin-top: 48px;
}

@media(max-width:768px) {
	.ebenen-grid {
		grid-template-columns: 1fr;
	}
}

.ebene-card {
	background: var(--white);
	border-radius: 20px;
	padding: 36px 28px;
	border: 1px solid var(--slate-100);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ebene-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.ebene-card.e1::before {
	background: var(--flow);
}

.ebene-card.e2::before {
	background: var(--aufbau);
}

.ebene-card.e3::before {
	background: var(--navy);
}

.ebene-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
}

.ebene-card.e1 .ebene-num {
	background: var(--flow);
}

.ebene-card.e2 .ebene-num {
	background: var(--aufbau);
}

.ebene-card.e3 .ebene-num {
	background: var(--navy);
}

.ebene-card h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 10px;
}

.ebene-card p {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.6;
	font-weight: 400;
}

.ebene-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 99px;
	margin-bottom: 14px;
	letter-spacing: .06em;
}

.e1 .ebene-tag {
	background: var(--flow-light);
	color: var(--flow);
}

.e2 .ebene-tag {
	background: #fef2f2;
	color: var(--aufbau);
}

.e3 .ebene-tag {
	background: var(--slate-100);
	color: var(--navy);
}

/* PRODUKTE */
.produkte {
	padding: 50px 25px;
	background: var(--white);
}

.produkte-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.sh-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 12px;
}

.sh p {
	font-size: 16px;
	color: var(--slate-500);
	font-weight: 400;
	max-width: 560px;
	margin: 0 auto;
}

.produkt-row {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 28px;
	padding: 32px;
	border-radius: 18px;
	margin-bottom: 16px;
	align-items: start;
	position: relative;
	overflow: hidden;
}

.produkt-row::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
}

@media(max-width:768px) {
	.produkt-row {
		display: flex;
		padding: 20px;
		flex-direction: column;
	}
}

.pr-flow {
	background: #f5f8ff;
	border: 1px solid #d6e3f8;
}

.pr-flow::before {
	background: var(--flow);
}

.pr-aufbau {
	background: #fff5f5;
	border: 1px solid #f5cccc;
	opacity: .7;
}

.pr-aufbau::before {
	background: var(--aufbau);
}

.pr-energie {
	background: #fff8f2;
	border: 1px solid #f8d9b8;
	opacity: .7;
}

.pr-energie::before {
	background: var(--energie);
}

.pr-mahlzeit {
	background: #faf6f2;
	border: 1px solid #e8d5c4;
	opacity: .7;
}

.pr-mahlzeit::before {
	background: var(--mahlzeit);
}

.pr-icon-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.pr-dot {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pr-icon-label {
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.pr-content h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 4px;
}

.pr-content .pr-fn {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 12px;
}

.pr-content p {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.65;
	margin-bottom: 14px;
	font-weight: 400;
}

.pr-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pr-fact {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-700);
}

.pr-fact i {
	font-size: 11px;
	color: var(--green);
}

.pr-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 6px;
	margin-top: 12px;
}

.badge-live {
	background: var(--green-light);
	color: var(--green);
}

.badge-soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

/* FARBE = FUNKTION */
.farbe {
	padding: 50px 25px;
	background: var(--navy);
	color: #fff;
}

.farbe-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.farbe-inner p {
	font-size: 16px;
	color: rgba(255,255,255,.5);
	max-width: 540px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.farbe-dots {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.farbe-dot {
	text-align: center;
}

.fd-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.fd-name {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .06em;
	color: #fff;
	margin-bottom: 4px;
}

.fd-fn {
	font-size: 11px;
	color: rgba(255,255,255,.4);
	font-weight: 500;
}

/* COMPANION TEASER */
.companion-teaser {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.ct-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.ct-inner {
		grid-template-columns: 1fr;
	}
}

.ct-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 14px;
}

.ct-inner p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 24px;
	font-weight: 400;
}

.ct-box {
	background: var(--navy);
	border-radius: 20px;
	padding: 36px;
	color: #fff;
}

.ct-box h3 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 6px;
}

.ct-box p {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	margin-bottom: 20px;
	font-weight: 400;
}

.ct-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.ct-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: rgba(255,255,255,.75);
	font-weight: 500;
}

.ct-features li i {
	color: rgba(42,99,214,.9);
	flex-shrink: 0;
	margin-top: 2px;
}

.ct-form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.ct-form input {
	flex: 1;
	min-width: 180px;
	padding: 11px 16px;
	border-radius: 9px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 13px;
	font-family: 'Montserrat',sans-serif;
	outline: none;
}

.ct-form input::placeholder {
	color: rgba(255,255,255,.3);
}

.ct-form button {
	padding: 11px 18px;
	border-radius: 9px;
	border: none;
	background: var(--flow);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	white-space: nowrap;
}

.ct-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	margin-top: 10px;
	font-weight: 400;
}

/* CTA */
.page-cta {
	background: var(--black);
	padding: 50px 25px;
	text-align: center;
	color: #fff;
}

.page-cta h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,4vw,40px);
	margin-bottom: 12px;
}

.page-cta p {
	font-size: 16px;
	color: rgba(255,255,255,.45);
	margin-bottom: 28px;
	font-weight: 400;
}

/* FOOTER (minimal) */
.footer-min {
	background: #0a0a0a;
	padding: 28px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-min p {
	font-size: 11px;
	color: rgba(255,255,255,.3);
}

.footer-min a {
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
}

.footer-min a:hover {
	color: #fff;
}

/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ ANWENDUNG SEKTIONEN ══ */
.aw-divider {
	padding: 56px 32px 0;
	background: var(--white);
}

.aw-divider-inner {
	max-width: 1120px;
	margin: 0 auto;
	border-top: 2px solid var(--bg-warm-dark);
	padding-top: 56px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.aw-divider-line {
	flex: 1;
	height: 1px;
	background: var(--bg-warm-dark);
}

.aw-divider-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 16px;
	border-radius: 99px;
	white-space: nowrap;
	border: 1px solid rgba(42,99,214,.1);
}

.aw-featured {
	padding: 50px 25px;
	background: var(--white);
}

.aw-fv-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: center;
}

@media(max-width:768px) {
	.aw-fv-inner {
		grid-template-columns: 1fr;
	}
}

.aw-video-placeholder {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: linear-gradient(135deg,#1a2a4a,#0d1b2e);
	aspect-ratio: 16/9;
	border-radius: 20px;
	cursor: pointer;
	position: relative;
}

.aw-video-placeholder-icon {
	width: 72px;
	height: 72px;
	background: rgba(42,99,214,.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	transition: transform .2s,background .2s;
}

.aw-video-placeholder:hover .aw-video-placeholder-icon {
	transform: scale(1.08);
	background: var(--flow);
}

.aw-video-placeholder-title {
	font-size: 15px;
	font-weight: 700;
	color: rgba(255,255,255,.85);
	text-align: center;
	padding: 0 20px;
}

.aw-video-placeholder-sub {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
}

.aw-video-placeholder-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: .06em;
}

.aw-video-placeholder-duration {
	position: absolute;
	bottom: 14px;
	right: 16px;
	background: rgba(0,0,0,.6);
	color: rgba(255,255,255,.8);
	font-size: 12px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
}

.aw-fv-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 12px;
}

.aw-fv-info p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.aw-fv-steps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.aw-fv-steps li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.4;
}

.aw-fv-step-num {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.aw-dosier {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.aw-dosier-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-dosier-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.aw-dosier-table thead tr {
	background: #0f172a;
	color: #fff;
}

.aw-dosier-table th {
	padding: 14px 20px;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
	letter-spacing: .04em;
}

.aw-dosier-table td {
	padding: 14px 20px;
	font-size: 14px;
	color: var(--slate-700);
	font-weight: 500;
	border-bottom: 1px solid var(--slate-100);
}

.aw-dosier-table tr:last-child td {
	border-bottom: none;
}

.aw-dosier-table tr:nth-child(even) td {
	background: var(--bg);
}

.aw-iddsi-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 800;
}

.aw-iddsi-circle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
}

.aw-dosier-note {
	margin-top: 16px;
	font-size: 12px;
	color: var(--slate-400);
	font-weight: 400;
	line-height: 1.6;
}

.aw-videos {
	padding: 50px 25px;
	background: var(--white);
}

.aw-videos-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-video-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-top: 12px;
}

@media(max-width:768px) {
	.aw-video-grid {
		grid-template-columns: 1fr;
	}
}

.aw-vid-card {
	background: var(--bg);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	transition: box-shadow .2s,transform .2s;
}

.aw-vid-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,.08);
	transform: translateY(-3px);
}

.aw-vid-thumb {
	position: relative;
	cursor: pointer;
}

.aw-vid-placeholder {
	background: linear-gradient(135deg,#1a2a4a,#0d1b2e);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	aspect-ratio: 16/9;
	width: 100%;
}

.aw-vid-play {
	width: 52px;
	height: 52px;
	background: rgba(42,99,214,.75);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	transition: all .2s;
}

.aw-vid-card:hover .aw-vid-play {
	background: var(--flow);
	transform: scale(1.06);
}

.aw-vid-title-overlay {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.7);
	text-align: center;
	padding: 0 14px;
}

.aw-vid-duration {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,.6);
	color: rgba(255,255,255,.8);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
}

.aw-vid-iddsi-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(42,99,214,.85);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 5px;
	letter-spacing: .04em;
}

.aw-vid-
.aw-vid-module-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	color: var(--flow);
	margin-bottom: 6px;
}

.aw-vid-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--flow);
}

.aw-vid-body h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
	line-height: 1.35;
}

.aw-vid-body p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

.aw-upload-hint {
	padding: 0 20px 72px;
	background: var(--white);
}

.aw-uh-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-uh-box {
	background: var(--bg);
	border-radius: 18px;
	padding: 36px;
	border: 2px dashed var(--slate-200);
	text-align: center;
}

.aw-uh-box h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 8px;
}

.aw-uh-box>p {
	font-size: 14px;
	color: var(--slate-500);
	margin-bottom: 18px;
	font-weight: 400;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.aw-uh-steps {
	display: flex;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.aw-uh-step {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
}

.aw-uh-step-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}
/* anwendung */






/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}

/* ── HERO ── */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
	border: 1px solid rgba(42,99,214,.1);
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 17px;
	color: var(--slate-600);
	max-width: 560px;
	margin: 0 auto 20px;
	line-height: 1.7;
	font-weight: 400;
}

.page-hero-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
	background: var(--white);
	padding: 7px 16px;
	border-radius: 99px;
	border: 1px solid var(--slate-200);
}

/* ── TAB NAV ── */
.tab-nav {
	background: var(--white);
	border-bottom: 2px solid var(--slate-100);
	position: sticky;
	top: 64px;
	z-index: 99;
}

.tab-nav-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 0;
}

.tab-btn {
	padding: 18px 28px;
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-500);
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .2s;
	white-space: nowrap;
}

.tab-btn:hover {
	color: var(--black);
}

.tab-btn.active {
	color: var(--flow);
	border-bottom-color: var(--flow);
}

.tab-btn i {
	font-size: 13px;
}

@media(max-width:600px) {
	.tab-btn {
		padding: 14px 16px;
		font-size: 13px;
	}
}

/* ── TAB PANELS ── */
.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

/* ── FILTER ── */
.filter-bar {
	padding: 32px 32px 0;
	background: var(--white);
}

.filter-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 8px 18px;
	border-radius: 99px;
	border: 2px solid var(--slate-200);
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-500);
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.filter-btn:hover,.filter-btn.active {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

/* ── RECIPES GRID ── */
.recipes {
	padding: 40px 32px 80px;
	background: var(--white);
}

.recipes-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.recipes-section-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 20px;
}

.recipes-section-label i {
	color: var(--flow);
}

.recipes-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media(max-width:900px) {
	.recipes-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media(max-width:600px) {
	.recipes-grid {
		grid-template-columns: 1fr;
	}
}

.recipe-card {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	transition: box-shadow .3s,transform .3s;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
}

.recipe-card:hover {
	box-shadow: 0 10px 36px rgba(0,0,0,.09);
	transform: translateY(-4px);
}

.recipe-thumb {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 72px;
}

.recipe-iddsi {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(4px);
	border-radius: 8px;
	padding: 4px 11px;
	font-size: 11px;
	font-weight: 700;
	color: var(--flow);
	border: 1px solid rgba(42,99,214,.15);
}

.recipe-flow-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 5px;
	letter-spacing: .04em;
	display: flex;
	align-items: center;
	gap: 4px;
}

.recipe-
.recipe-body h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
	line-height: 1.3;
}

.recipe-sub {
	font-size: 13px;
	color: var(--slate-500);
	font-style: italic;
	margin-bottom: 12px;
	font-weight: 400;
}

.recipe-meta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.recipe-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.recipe-meta span i {
	font-size: 11px;
	color: var(--slate-400);
}

.recipe-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.recipe-tag {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 6px;
	background: var(--flow-light);
	color: var(--flow);
}

/* ── VIDEO SECTION ── */
.featured-vid {
	background: var(--bg-warm);
	padding: 56px 32px 40px;
}

.fv-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.fv-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	background: var(--flow-light);
	padding: 5px 14px;
	border-radius: 99px;
	margin-bottom: 14px;
	border: 1px solid rgba(42,99,214,.1);
}

.fv-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(22px,3vw,32px);
	color: var(--black);
	margin-bottom: 8px;
}

.fv-sub {
	font-size: 15px;
	color: var(--slate-500);
	margin-bottom: 28px;
	font-weight: 400;
}

.vid-large-placeholder {
	width: 100%;
	aspect-ratio: 16/9;
	background: var(--black);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	transition: opacity .2s;
}

.vid-large-placeholder:hover {
	opacity: .92;
}

.vid-large-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 6px;
}

.vid-large-iddsi {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,.2);
}

.vid-large-play {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	border: 2px solid rgba(255,255,255,.25);
	margin-bottom: 16px;
}

.vid-large-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
}

.vid-large-sub {
	font-size: 13px;
	color: rgba(255,255,255,.5);
}

.vid-large-duration {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 5px;
}

.kueche {
	padding: 40px 32px 80px;
	background: var(--white);
}

.kueche-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.section-label i {
	color: var(--flow);
}

.vid-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}

@media(max-width:900px) {
	.vid-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media(max-width:600px) {
	.vid-grid {
		grid-template-columns: 1fr;
	}
}

.vid-card {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	background: var(--white);
	transition: box-shadow .2s;
}

.vid-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.vc-thumb {
	aspect-ratio: 16/9;
	background: var(--black);
	position: relative;
	overflow: hidden;
}

.vc-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .2s;
	position: relative;
}

.vc-placeholder:hover {
	opacity: .9;
}

.vc-iddsi {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,.2);
}

.vc-new {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 4px;
}

.vc-play {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	border: 1.5px solid rgba(255,255,255,.25);
	margin-bottom: 10px;
}

.vc-title-ov {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: 0 12px;
}

.vc-dur {
	position: absolute;
	bottom: 8px;
	right: 10px;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
}

.vc-
.vc-tag {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--flow);
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 7px;
}

.vc-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--flow);
	flex-shrink: 0;
}

.vc-body h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 5px;
	line-height: 1.3;
}

.vc-body p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
	margin-bottom: 8px;
}

.vc-meta {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

.vc-meta i {
	font-size: 10px;
}

.add-vid {
	border-radius: 18px;
	border: 2px dashed var(--slate-200);
	background: var(--bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
	text-align: center;
	gap: 10px;
	min-height: 200px;
}

.add-vid i {
	font-size: 28px;
	color: var(--slate-300);
}

.add-vid h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-400);
}

.add-vid p {
	font-size: 12px;
	color: var(--slate-300);
	line-height: 1.5;
}

/* How-to-Add */
.how-to-add {
	background: var(--bg-warm);
	padding: 56px 32px;
}

.hta-inner {
	max-width: 860px;
	margin: 0 auto;
}

.hta-box {
	background: var(--white);
	border-radius: 20px;
	padding: 36px;
	border: 1px solid var(--bg-warm-dark);
}

.hta-box h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 8px;
}

.hta-box>p {
	font-size: 14px;
	color: var(--slate-500);
	margin-bottom: 28px;
	font-weight: 400;
}

.hta-steps {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.hta-steps {
		grid-template-columns: repeat(2,1fr);
	}
}

.hta-step {
	text-align: center;
}

.hta-num {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--flow-light);
	color: var(--flow);
	font-size: 16px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.hta-step h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 6px;
}

.hta-step p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.hta-step code {
	font-size: 11px;
	background: var(--slate-100);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: monospace;
	color: var(--black);
}

/* ── NEWSLETTER ── */
.newsletter-bar {
	background: #1a3a2a;
	padding: 56px 32px;
}

.nl-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

@media(max-width:768px) {
	.nl-inner {
		grid-template-columns: 1fr;
	}
}

.nl-inner h3 {
	font-family: 'DM Serif Display',serif;
	font-size: 26px;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.nl-inner p {
	font-size: 15px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	font-weight: 400;
}

.nl-inner p strong {
	color: #fff;
}

.nl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nl-form input {
	padding: 13px 18px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	background: rgba(255,255,255,.95);
	color: var(--black);
	outline: none;
}

.nl-form button {
	padding: 14px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Montserrat',sans-serif;
	background: var(--flow);
	color: #fff;
	cursor: pointer;
	transition: opacity .2s;
}

.nl-form button:hover {
	opacity: .88;
}

.nl-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-align: center;
	font-weight: 400;
}


.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	background: #fff;
	color: var(--black);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	font-family: 'Montserrat',sans-serif;
}

/* ── FOOTER ── */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

/* NAV */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover,.nav-links a.active {
	color: var(--black);
}

.nav-links a.active {
	font-weight: 800;
	color: var(--flow);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* PAGE HERO */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 88px;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 17px;
	color: var(--slate-600);
	max-width: 560px;
	line-height: 1.7;
	font-weight: 400;
}

/* FILTER */
.filter-bar {
	padding: 32px 32px 0;
	background: var(--white);
}

.filter-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 8px 18px;
	border-radius: 99px;
	border: 2px solid var(--slate-200);
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-500);
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.filter-btn:hover,.filter-btn.active {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

/* FEATURED ARTICLE */
.featured {
	padding: 40px 32px 0;
	background: var(--white);
}

.feat-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.feat-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s;
}

.feat-card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

@media(max-width:768px) {
	.feat-card {
		grid-template-columns: 1fr;
	}
}

.feat-image {
	background: linear-gradient(135deg,var(--flow-light),rgba(42,99,214,.04));
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.feat-image-placeholder {
	text-align: center;
	color: var(--slate-400);
}

.feat-image-placeholder i {
	font-size: 48px;
	display: block;
	margin-bottom: 12px;
}

.feat-image-placeholder p {
	font-size: 13px;
	font-weight: 600;
}

.feat-image-placeholder span {
	font-size: 11px;
	font-weight: 400;
}

.feat-label {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: .06em;
}

.feat-
.feat-cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 12px;
}

.feat-body h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px, 3.6vw, 40px);
	color: var(--black);
	margin-bottom: 12px;
	line-height: 1.25;
}

.feat-body p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.feat-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 12px;
	color: var(--slate-400);
	font-weight: 500;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--flow);
	text-decoration: none;
}

/* BLOG GRID */
.blog {
	padding: 52px 32px 80px;
	background: var(--white);
}

.blog-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.blog-section-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--slate-100);
}

.blog-section-label i {
	color: var(--flow);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-bottom: 48px;
}

@media(max-width:768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* Blog Card */
.blog-card {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	transition: box-shadow .2s,transform .2s;
	text-decoration: none;
	color: inherit;
	display: block;
	background: var(--white);
}

.blog-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.07);
	transform: translateY(-3px);
}

.bc-image {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 52px;
}

.bc-cat {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: 3px 9px;
	border-radius: 5px;
}

.bc-
.bc-meta {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 500;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.bc-body h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.3;
	margin-bottom: 8px;
}

.bc-body p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
	margin-bottom: 14px;
}

.bc-link {
	font-size: 12px;
	font-weight: 700;
	color: var(--flow);
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ADD NEW ARTICLE hint */
.add-article {
	background: var(--bg);
	border-radius: 16px;
	border: 2px dashed var(--slate-200);
	padding: 32px;
	text-align: center;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.add-article i {
	font-size: 36px;
	color: var(--slate-300);
}

.add-article h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-400);
}

.add-article p {
	font-size: 12px;
	color: var(--slate-300);
	font-weight: 400;
	max-width: 180px;
}

/* NEWSLETTER */
.newsletter {
	background: #1a3a2a;
	padding: 64px 32px;
}

.nl-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

@media(max-width:768px) {
	.nl-inner {
		grid-template-columns: 1fr;
	}
}

.nl-inner h3 {
	font-family: 'DM Serif Display',serif;
	font-size: 26px;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.nl-inner p {
	font-size: 15px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	font-weight: 400;
}

.nl-inner p strong {
	color: #fff;
}

.nl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nl-form input {
	padding: 13px 18px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	background: rgba(255,255,255,.95);
	color: var(--black);
	outline: none;
}

.nl-form button {
	padding: 14px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Montserrat',sans-serif;
	background: var(--flow);
	color: #fff;
	cursor: pointer;
	transition: opacity .2s;
}

.nl-form button:hover {
	opacity: .88;
}

.nl-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-align: center;
	font-weight: 400;
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	background: #fff;
	color: var(--black);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	font-family: 'Montserrat',sans-serif;
}

.footer-min {
	background: #0a0a0a;
	padding: 28px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-min p {
	font-size: 11px;
	color: rgba(255,255,255,.3);
}

.footer-min a {
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	transition: color .2s;
}

.footer-min a:hover {
	color: #fff;
}

/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}
/* b2b */






/* ── ANNOUNCE ── */
.announce {
	background: var(--navy);
	color: rgba(255,255,255,.55);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}

/* ── NAV ── */
.nav {
	background: var(--white);
	border-bottom: 2px solid var(--slate-200);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-badge {
	background: var(--navy);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-left: 8px;
	vertical-align: middle;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 22px;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-home {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 6px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:860px) {
	.nav-links {
		display: none;
	}
}

/* ── BUTTONS ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-navy {
	background: var(--navy);
	color: #fff;
}

.btn-navy:hover {
	opacity: .9;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ── LAYOUT ── */
.section {
	padding: 50px 25px;
}

/* ══════════════════════════════
   HERO — B2B
══════════════════════════════ */
.hero {
	background: linear-gradient(168deg,#f0f4f8 0%,#e8eef5 100%);
	padding: 50px 25px 100px;
	position: relative;
	overflow: hidden;
	border-bottom: 2px solid var(--slate-200);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:860px) {
	.hero-inner {
		grid-template-columns: 1fr;
	}
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 5px 13px;
	border-radius: 99px;
	margin-bottom: 18px;
}

.hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(32px,4.5vw,52px);
	line-height: 1.1;
	color: var(--black);
	margin-bottom: 16px;
}

.hero h1 em {
	font-style: normal;
	color: var(--flow);
}

.hero-sub {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 28px;
	font-weight: 400;
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.hero-trust {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.htrust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.htrust-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green);
	flex-shrink: 0;
}

/* Hero Right — product card */
.hero-card {
	background: var(--white);
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 8px 40px rgba(0,0,0,.08);
	border: 1px solid var(--slate-100);
}

.hero-card h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 16px;
	letter-spacing: .03em;
}

.hcp {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--slate-100);
}

.hcp:last-child {
	border-bottom: none;
}

.hcp-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.hcp-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--black);
}

.hcp-desc {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 400;
}

.hcp-size {
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-400);
	margin-left: auto;
}

.hero-badge {
	background: var(--green-light);
	border: 1.5px solid #86efac;
	border-radius: 12px;
	padding: 14px 18px;
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-badge-icon {
	width: 36px;
	height: 36px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	flex-shrink: 0;
}

.hero-badge h5 {
	font-size: 13px;
	font-weight: 700;
	color: #166534;
}

.hero-badge p {
	font-size: 11px;
	color: #166534;
	font-weight: 400;
}

@media(max-width:960px) {
	.hero-card {
		padding: 24px;
	}
}

/* ══════════════════════════════
   PROBLEM / LÖSUNG / ERGEBNIS
══════════════════════════════ */
.psr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

@media(max-width:768px) {
	.psr-grid {
		grid-template-columns: 1fr;
	}
}

.psr-col {
	border-radius: 14px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
}

.psr-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 12px;
	padding: 3px 10px;
	border-radius: 99px;
	display: inline-block;
}

.psr-p {
	background: #fff5f5;
}

.psr-p .psr-label {
	background: #fecaca;
	color: #991b1b;
}

.psr-s {
	background: var(--flow-light);
}

.psr-s .psr-label {
	background: rgba(42,99,214,.15);
	color: var(--flow-dark);
}

.psr-r {
	background: var(--green-light);
}

.psr-r .psr-label {
	background: #bbf7d0;
	color: #166534;
}

.psr-col h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 14px;
	line-height: 1.3;
}

.psr-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.psr-col li {
	font-size: 13px;
	color: var(--slate-700);
	line-height: 1.5;
	font-weight: 400;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

/* ══════════════════════════════
   IDDSI VISUAL
══════════════════════════════ */
.iddsi-section {
	background: var(--navy);
	padding: 50px 25px;
	color: #fff;
}

.iddsi-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.iddsi-section .section-label {
	color: rgba(42,99,214,.9);
}

.iddsi-section .sh {
	color: #fff;
	margin-bottom: 8px;
}

.iddsi-section .section-sub {
	color: rgba(255,255,255,.5);
}

.iddsi-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 14px;
}

@media(max-width:768px) {
	.iddsi-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.iddsi-card {
	background: rgba(255,255,255,.06);
	border-radius: 12px;
	padding: 20px 16px;
	border: 1px solid rgba(255,255,255,.08);
}

.iddsi-num {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.iddsi-name {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.iddsi-ml {
	font-size: 11px;
	color: rgba(255,255,255,.45);
	margin-bottom: 8px;
	font-weight: 400;
}

.iddsi-bar-wrap {
	height: 4px;
	background: rgba(255,255,255,.1);
	border-radius: 2px;
}

.iddsi-bar {
	height: 100%;
	background: var(--flow);
	border-radius: 2px;
}

.iddsi-note {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	margin-top: 20px;
	font-weight: 400;
	font-style: italic;
}

/* ══════════════════════════════
   WIRTSCHAFTLICHKEIT
══════════════════════════════ */
.eco-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.eco-grid {
		grid-template-columns: 1fr;
	}
}

.eco-card {
	background: var(--white);
	border-radius: 14px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
}

.eco-num {
	font-family: 'DM Serif Display',serif;
	font-size: 38px;
	color: var(--flow);
	margin-bottom: 4px;
	line-height: 1;
}

.eco-unit {
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 12px;
}

.eco-card h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 6px;
}

.eco-card p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

/* ══════════════════════════════
   QUALITÄT
══════════════════════════════ */
.qual-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.qual-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.qual-card {
	background: var(--b2b-bg);
	border-radius: 14px;
	padding: 24px 18px;
	border: 1px solid var(--slate-100);
	text-align: center;
}

.qual-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--slate-200);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	font-size: 20px;
}

.qual-card h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.qual-card p {
	font-size: 11px;
	color: var(--slate-400);
	line-height: 1.5;
	font-weight: 400;
}

@media(max-width:960px) {
	.qual-card {
		padding: 10px;
	}
}

/* ══════════════════════════════
   REGISTRATION WALL
══════════════════════════════ */
.wall-section {
	padding: 0;
	background: var(--b2b-bg);
	position: relative;
}

/* Teaser above wall (blurred preview) */
.wall-teaser {
	padding: 0;
	position: relative;
}

.wall-teaser-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.wall-blur-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(transparent,var(--b2b-bg));
	pointer-events: none;
}

.wall-preview {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	filter: blur(6px);
	opacity: .45;
	pointer-events: none;
	user-select: none;
	padding: 0 0 20px;
}

.wall-prev-card {
	background: var(--white);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid var(--slate-100);
	height: 120px;
}

.wall-prev-bar {
	height: 8px;
	background: var(--slate-100);
	border-radius: 4px;
	margin-bottom: 10px;
}

.wall-prev-bar.short {
	width: 60%;
}

.wall-prev-bar.med {
	width: 80%;
}

.wall-prev-line {
	height: 6px;
	background: var(--slate-100);
	border-radius: 3px;
	margin-bottom: 7px;
}

/* The Wall itself */
.registration-wall {
	padding: 0px;
}

.wall-inner {
	max-width: 820px;
	margin: 0 auto;
}

.wall-card {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	border: 1px solid var(--slate-100);
	overflow: hidden;
}

.wall-header {
	background: var(--navy);
	padding: 36px 40px;
	text-align: center;
}

.wall-header-icon {
	width: 56px;
	height: 56px;
	background: rgba(42,99,214,.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 22px;
	color: rgba(42,99,214,.9);
}

.wall-header h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(22px,3vw,30px);
	color: #fff;
	margin-bottom: 10px;
}

.wall-header p {
	font-size: 14px;
	color: rgba(255,255,255,.55);
	font-weight: 400;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 auto;
}

/* form-hint is still useful */
.form-hint {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 3px;
	font-weight: 400;
}

.wall-form {
	padding: 36px 40px;
}

@media(max-width:600px) {
	.wall-form {
		padding: 24px 20px;
	}
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.form-row.single {
	grid-template-columns: 1fr;
}

@media(max-width:600px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.form-group label {
	font-size: 12px;
	font-weight: 700;
	color: var(--slate-700);
	letter-spacing: .03em;
}

.form-group label .req {
	color: var(--flow);
}

.form-group input, .form-group textarea {
	padding: 11px 14px;
	border-radius: 9px;
	border: 1.5px solid var(--slate-200);
	background: var(--white);
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	color: var(--black);
	outline: none;
	transition: border-color .2s;
	-webkit-appearance: none;
}

.form-group input:focus, .form-group textarea:focus {
	border-color: var(--flow);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.success-panel {
	display: block;
	text-align: center;
	padding: 40px 20px;
}

.success-icon {
	width: 64px;
	height: 64px;
	background: var(--green-light);
	color: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
}

.success-panel h2 {
	color: var(--black);
	margin-bottom: 12px;
	font-family: 'DM Serif Display', serif;
}

.success-panel p {
	color: var(--slate-600);
	margin-bottom: 24px;
}


/* Checkbox groups */
.check-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 16px;
}

@media(max-width:500px) {
	.check-group {
		grid-template-columns: 1fr;
	}
}

.check-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 9px;
	border: 1.5px solid var(--slate-200);
	cursor: pointer;
	transition: all .2s;
}

.check-item:hover {
	border-color: var(--flow);
	background: var(--flow-light);
}

.check-item.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.check-item input {
	display: none;
}

.check-icon {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 2px solid var(--slate-300);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all .2s;
	font-size: 10px;
	color: transparent;
}

.check-item.selected .check-icon {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

.check-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--black);
}

.check-sub {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
}

/* DATENSCHUTZ checkbox */
.privacy-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--slate-100);
}

.privacy-row input[type=checkbox] {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	accent-color: var(--flow);
	flex-shrink: 0;
	cursor: pointer;
}

.privacy-row label {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
	cursor: pointer;
}

.privacy-row a {
	color: var(--flow);
	text-decoration: none;
	font-weight: 600;
}

/* Navigation buttons */
.form-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--slate-100);
}

.btn-back {
	background: transparent;
	color: var(--slate-500);
	border: none;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 0;
	transition: color .2s;
}

.btn-back:hover {
	color: var(--black);
}

.form-progress {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 500;
}

/* ══════════════════════════════
   ANGEBOTS-KALKULATOR (hinter Wall)
══════════════════════════════ */
.kalkulator {
	display: none;
	padding: 36px 40px;
	border-top: 2px solid var(--flow-light);
}

@media(max-width:600px) {
	.kalkulator {
		padding: 24px 20px;
	}
}

.kalk-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.kalk-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.kalk-header h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 2px;
}

.kalk-header p {
	font-size: 12px;
	color: var(--slate-500);
	font-weight: 400;
}

.kalk-result {
	background: var(--b2b-bg);
	border-radius: 16px;
	padding: 28px;
	border: 1px solid var(--slate-100);
	margin-bottom: 24px;
}

.kalk-result-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.kalk-rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.kalk-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.kalk-row-label {
	font-weight: 600;
	color: var(--slate-700);
}

.kalk-row-val {
	font-weight: 700;
	color: var(--black);
}

.kalk-row-val.highlight {
	color: var(--flow);
	font-size: 16px;
}

.kalk-divider {
	border: none;
	border-top: 1px solid var(--slate-200);
	margin: 12px 0;
}

.kalk-packages {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 14px;
	margin-bottom: 24px;
}

@media(max-width:600px) {
	.kalk-packages {
		grid-template-columns: 1fr;
	}
}

.kalk-pkg {
	background: var(--white);
	border: 2px solid var(--slate-100);
	border-radius: 14px;
	padding: 18px 16px;
	cursor: pointer;
	transition: all .2s;
	text-align: center;
}

.kalk-pkg:hover,.kalk-pkg.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.kalk-pkg-name {
	font-size: 12px;
	font-weight: 800;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 4px;
}

.kalk-pkg-qty {
	font-size: 22px;
	font-weight: 800;
	color: var(--flow);
	margin-bottom: 2px;
	line-height: 1;
}

.kalk-pkg-unit {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
	margin-bottom: 8px;
}

.kalk-pkg-period {
	font-size: 11px;
	color: var(--slate-500);
	font-weight: 600;
}

.kalk-pkg-badge {
	display: inline-block;
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	margin-top: 6px;
	letter-spacing: .05em;
}

.kalk-note {
	background: rgba(22,163,74,.08);
	border: 1px solid #bbf7d0;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 12px;
	color: #166534;
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 20px;
}

.kalk-note strong {
	font-weight: 700;
}

.kalk-cta-section {
	text-align: center;
}

.kalk-cta-section p {
	font-size: 12px;
	color: var(--slate-400);
	margin-top: 10px;
	font-weight: 400;
}

/* SUCCESS STATE */
.success-panel {
	display: block;
	padding: 40px;
	text-align: center;
}

.success-icon {
	width: 64px;
	height: 64px;
	background: var(--green-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
	color: var(--green);
}

.success-panel h2 {
	font-family: 'DM Serif Display',serif;
	font-size: 28px;
	color: var(--black);
	margin-bottom: 12px;
}

.success-panel p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	font-weight: 400;
	max-width: 420px;
	margin: 0 auto 24px;
}

.success-info {
	background: var(--b2b-bg);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid var(--slate-100);
	text-align: left;
	margin-bottom: 20px;
}

.success-info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	padding: 7px 0;
	border-bottom: 1px solid var(--slate-100);
}

.success-info-row:last-child {
	border-bottom: none;
}

.si-label {
	color: var(--slate-500);
	font-weight: 400;
}

.si-val {
	font-weight: 700;
	color: var(--black);
}

/* ══════════════════════════════
   PARTNER LOGOS
══════════════════════════════ */
.partner-bar {
	background: var(--white);
	padding: 40px 32px;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
}

.partner-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.partner-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-300);
	margin-bottom: 20px;
}

.partner-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
	opacity: .4;
}

.partner-logo {
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-400);
	letter-spacing: .05em;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 56px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 0;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 8px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.2);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 12px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-seals {
	max-width: 1120px;
	margin: 36px auto 0;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 14px auto 0;
	padding: 16px 0 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}


/* Globale Nav immer sichtbar */
#globalAnnounce, #globalNav, #globalMobileNav {
	display: block;
	z-index: 99999999;
}

#globalNav {
	display: flex;
}
/* ══ MOBILE FIXES ══ */@media(max-width:768px)
.companion-form-row {
	flex-direction:column!important;
}

.companion-form-row input {
	width: 100%!important;
	min-width: unset!important;
	box-sizing: border-box!important;
}

.companion-form-row button {
	width: 100%!important;
}
{
section#companion {
	padding: 48px 20px!important;
	overflow: hidden!important;
}

section#companion > div {
	display: block!important;
}

section#companion > div > div:first-child {
	display: none!important;
}

section#companion > div > div:last-child {
	width: 100%!important;
	box-sizing: border-box!important;
}

section#companion div[style*="companion-form-row"] {
	flex-direction: column!important;
}

section#companion input {
	min-width: unset!important;
	width: 100%!important;
}

.companion-form-row {
	flex-direction: column!important;
}

.companion-form-row input {
	width: 100%!important;
	min-width: unset!important;
	box-sizing: border-box!important;
}

.companion-form-row button {
	width: 100%!important;
}
}

@media(max-width:768px) {
	.hero {
		padding: 48px 20px 60px!important;
		min-height: auto!important;
	}

	.hero > div[style*="position:absolute"] {
		position: relative!important;
		width: 100%!important;
		height: 220px!important;
		top: auto!important;
		right: auto!important;
	}

	.hero-inner {
		grid-template-columns: 1fr!important;
		gap: 24px!important;
		text-align: center;
	}

	.hero-btns {
		justify-content: center;
	}

	.hero-btns .btn {
		width: 100%;
		justify-content: center;
	}

	div[style*="height:80px;background:var(--white)"],
  div[style*="height:100px;background:var(--white)"] {
		display: none!important;
	}

	div[style*="flex-wrap:nowrap"] {
		flex-wrap: wrap!important;
	}

	.comparison-slider {
		height: 200px!important;
	}

	.ba-grid {
		grid-template-columns: 1fr!important;
		gap: 16px!important;
	}

	.cs-before-content,.cs-after-content {
		padding: 16px!important;
	}

	.cs-before-content h4,.cs-after-content h4 {
		font-size: 14px!important;
	}
}
/* ══ MOBILE FIXES ══ */
@media(max-width:768px) {
	.hero {
		padding: 0!important;
		min-height: auto!important;
		display: block!important;
	}

	.hero > div[style*="position:absolute"] {
		position: relative!important;
		width: 100%!important;
		height: 240px!important;
		top: auto!important;
		right: auto!important;
		border: none!important;
	}

	.hero > div[style*="position:absolute"] > div[style*="position:absolute"] {
		display: none!important;
	}

	.hero-inner {
		grid-template-columns: 1fr!important;
		gap: 0!important;
		text-align: center;
		padding: 32px 20px 48px!important;
	}

	.hero-btns {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	.hero-btns .btn {
		width: 100%;
		justify-content: center;
	}

	div[style*="height:80px;background:var(--white)"],
  div[style*="height:100px;background:var(--white)"] {
		display: none!important;
	}

	div[style*="min-height:500px"] {
		min-height: auto!important;
	}

	div[style*="min-height:500px"] > div[style*="position:absolute"] {
		position: relative!important;
		width: 100%!important;
		height: 220px!important;
		top: auto!important;
		right: auto!important;
	}

	div[style*="min-height:500px"] > div[style*="position:relative"] {
		padding: 32px 20px!important;
	}

	div[style*="min-height:500px"] > div[style*="position:relative"] > div {
		max-width: 100%!important;
		min-width: unset!important;
	}

	.comparison-slider {
		height: 200px!important;
	}

	.cs-before-content,.cs-after-content {
		padding: 16px!important;
	}

	.cs-before-content h4,.cs-after-content h4 {
		font-size: 14px!important;
	}
}

@media(max-width:768px) {
	.system-grid-mobile {
		grid-template-columns: 1fr 1fr!important;
		gap: 24px!important;
	}
}

@media(max-width:600px) {
	.page-inhaltsstoffe-grid {
		grid-template-columns: 1fr!important;
	}
}

/* shop */


/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:900px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}

/* ── BTN ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.btn-lg {
	font-size: 17px;
	padding: 17px 34px;
}

/* ══════════════════════════════
   SHOP HERO
══════════════════════════════ */
.shop-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 64px 32px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--bg-warm-dark);
}

.shop-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: linear-gradient(transparent,var(--bg-warm));
}

.shop-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 5px 14px;
	border-radius: 99px;
	margin-bottom: 18px;
	border: 1px solid rgba(42,99,214,.1);
}

.shop-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(32px,5vw,52px);
	color: var(--black);
	margin-bottom: 12px;
	line-height: 1.1;
}

.shop-hero h1 em {
	font-style: normal;
	color: var(--flow);
}

.shop-hero-sub {
	font-size: 17px;
	color: var(--slate-600);
	max-width: 540px;
	margin: 0 auto 28px;
	line-height: 1.65;
	font-weight: 400;
}

.shop-hero-trust {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.sht {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.sht i {
	color: var(--green);
	font-size: 11px;
}

/* ══════════════════════════════
   GUIDED FINDER (Step 1)
══════════════════════════════ */
.finder {
	background: var(--white);
	padding: 50px 25px;
}

.finder-inner {
	max-width: 900px;
	margin: 0 auto;
}

.finder-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 12px;
}

.finder h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px,3.5vw,36px);
	color: var(--black);
	margin-bottom: 8px;
}

.finder-sub {
	font-size: 15px;
	color: var(--slate-500);
	margin-bottom: 36px;
	font-weight: 400;
}

.finder-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

@media(max-width:768px) {
	.finder-cards {
		grid-template-columns: 1fr;
	}
}

.finder-card {
	border-radius: 16px;
	padding: 24px;
	border: 2px solid var(--slate-100);
	background: var(--white);
	cursor: pointer;
	transition: all .25s;
	position: relative;
}

.finder-card:hover {
	border-color: var(--flow);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(42,99,214,.08);
}

.finder-card.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.finder-card-icon {
	font-size: 28px;
	margin-bottom: 12px;
	display: block;
}

.finder-card-title {
	font-size: 15px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 6px;
}

.finder-card-desc {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.finder-card-check {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--slate-200);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: transparent;
	transition: all .2s;
}

.finder-card.selected .finder-card-check {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

.finder-nav {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

/* ══════════════════════════════
   PRODUKT-AUSWAHL (Step 2)
══════════════════════════════ */
.products {
	background: var(--bg-warm);
	padding: 50px 25px;
}

.products-inner {
	max-width: 1120px;
	margin: 0 auto;
}

/* Module cards */
.modules-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 16px;
}

@media(max-width:768px) {
	.modules-grid {
		grid-template-columns: 1fr;
	}
}

.module-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	border: 1.5px solid var(--slate-100);
	transition: box-shadow .2s;
}

.module-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.07);
}

.module-card.coming-soon {
	opacity: .6;
	pointer-events: none;
}

.mc-header {
	padding: 20px 24px 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid var(--slate-100);
}

.mc-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}

.mc-name {
	font-size: 16px;
	font-weight: 800;
	color: var(--black);
}

.mc-category {
	font-size: 11px;
	font-weight: 600;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .06em;
}

.mc-badge {
	margin-left: auto;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 99px;
	letter-spacing: .04em;
}

.mc-badge-avail {
	background: var(--green-light);
	color: var(--green);
}

.mc-badge-soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

.mc-body {
	padding: 24px;
}

.mc-desc {
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 16px;
}

.mc-usps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 20px;
}

.mc-usps li {
	font-size: 12px;
	color: var(--slate-700);
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.mc-usps li i {
	font-size: 10px;
	color: var(--green);
}

.mc-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* Coming soon overlay */
.cs-overlay {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-400);
}

/* ══════════════════════════════
   FLOW CLEAR — HAUPT-ANGEBOT (Step 3)
══════════════════════════════ */
.offer {
	background: var(--white);
	padding: 50px 25px;
}

.offer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 64px;
	align-items: start;
}

@media(max-width:900px) {
	.offer-inner {
		grid-template-columns: 1fr;
	}
}

/* LEFT: Product visual + USPs */
.offer-left {
}

.offer-can {
	background: var(--bg-warm);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	margin-bottom: 24px;
	border: 1px solid var(--bg-warm-dark);
}

.offer-can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.offer-can-name {
	font-size: 48px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	line-height: 1;
	margin: 8px 0 4px;
}

.offer-can-sub {
	font-size: 14px;
	font-weight: 600;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.offer-can-stripe {
	height: 3px;
	width: 50%;
	background: var(--flow);
	border-radius: 2px;
	margin: 0 auto 16px;
}

.offer-can-claim {
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.55;
	font-weight: 400;
}

.offer-usps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 24px;
}

.offer-usps li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--black);
	font-weight: 500;
	line-height: 1.45;
}

.offer-usps li i {
	color: var(--green);
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 13px;
}

.offer-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.offer-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	background: var(--flow-light);
	color: var(--flow);
	padding: 4px 11px;
	border-radius: 99px;
	border: 1px solid rgba(42,99,214,.1);
}

/* RIGHT: Offer selector */
.offer-right {
}

.offer-right h3 {
	font-family: 'DM Serif Display',serif;
	font-size: 26px;
	color: var(--black);
	margin-bottom: 6px;
}

.offer-right-sub {
	font-size: 14px;
	color: var(--slate-500);
	margin-bottom: 24px;
	font-weight: 400;
	line-height: 1.55;
}

/* Package cards */
.pkg-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}

.pkg-card {
	border: 2px solid var(--slate-100);
	border-radius: 16px;
	padding: 20px;
	cursor: pointer;
	transition: all .2s;
	position: relative;
	background: var(--white);
}

.pkg-card:hover {
	border-color: var(--slate-300);
}

.pkg-card.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.pkg-card.featured-pkg {
	border-color: var(--flow);
}

.pkg-badge {
	position: absolute;
	top: -10px;
	left: 20px;
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 12px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.pkg-badge.green {
	background: var(--green);
}

.pkg-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.pkg-radio {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
	transition: all .2s;
	margin-top: 2px;
}

.pkg-card.selected .pkg-radio {
	background: var(--flow);
	border-color: var(--flow);
}

.pkg-name {
	font-size: 16px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 2px;
}

.pkg-desc {
	font-size: 12px;
	color: var(--slate-500);
	font-weight: 400;
	line-height: 1.4;
}

.pkg-price-block {
	text-align: right;
}

.pkg-price {
	font-size: 22px;
	font-weight: 800;
	color: var(--black);
	line-height: 1;
}

.pkg-per {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 400;
	margin-top: 2px;
}

.pkg-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
	margin-top: 3px;
}

.pkg-includes {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(42,99,214,.1);
}

.pkg-card:not(.selected) .pkg-includes {
	border-top: 1px solid var(--slate-100);
}

.pkg-tag {
	font-size: 10px;
	font-weight: 700;
	color: var(--slate-500);
	background: var(--slate-100);
	padding: 3px 9px;
	border-radius: 99px;
}

.pkg-card.selected .pkg-tag {
	background: rgba(42,99,214,.12);
	color: var(--flow-dark);
}

/* Trust + CTA */
.offer-trust {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 18px;
}

.ot-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-600);
}

.ot-item i {
	font-size: 13px;
}

.offer-cta-btn {
	font-size: 17px;
	padding: 18px;
	border-radius: 12px;
	margin-bottom: 10px;
}

.offer-guarantee {
	font-size: 12px;
	color: var(--slate-400);
	text-align: center;
	font-weight: 400;
}

/* Payment logos */
.pay-logos {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
	font-size: 26px;
	color: var(--slate-300);
}

/* ══════════════════════════════
   GOODIES / IM LIEFERUMFANG
══════════════════════════════ */
.goodies {
	background: var(--bg-warm);
	padding: 50px 25px;
	border-top: 1px solid var(--bg-warm-dark);
}

.goodies-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.goodies-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.goodies-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.goodie-card {
	background: var(--white);
	border-radius: 16px;
	padding: 24px 20px;
	text-align: center;
	border: 1px solid var(--slate-100);
}

.goodie-emoji {
	font-size: 32px;
	display: block;
	margin-bottom: 12px;
}

.goodie-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.goodie-desc {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

.goodie-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	color: var(--green);
	background: var(--green-light);
	padding: 2px 8px;
	border-radius: 99px;
	margin-top: 8px;
}

/* ══════════════════════════════
   ABO SECTION
══════════════════════════════ */
.abo-section {
	background: var(--navy);
	padding: 50px 25px;
	color: #fff;
}

.abo-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.abo-inner {
		grid-template-columns: 1fr;
		gap: 0px;
	}
}

.abo-eyebrow {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(42,99,214,.9);
	margin-bottom: 14px;
}

.abo-section h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,40px);
	color: #fff;
	margin-bottom: 14px;
	line-height: 1.15;
}

.abo-sub {
	font-size: 16px;
	color: rgba(255,255,255,.55);
	line-height: 1.65;
	margin-bottom: 28px;
	font-weight: 400;
}

.abo-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.abo-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	font-weight: 500;
}

.abo-features li i {
	color: rgba(42,99,214,.9);
	font-size: 12px;
}

.abo-price-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.abo-price-main {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}

.abo-price-sub {
	font-size: 13px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
	margin-bottom: 16px;
}

.abo-save-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(22,163,74,.15);
	border: 1px solid rgba(22,163,74,.2);
	color: #4ade80;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.abo-includes {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.abo-inc-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}

.abo-inc-label {
	color: rgba(255,255,255,.5);
	font-weight: 400;
}

.abo-inc-val {
	color: rgba(255,255,255,.8);
	font-weight: 700;
}

.abo-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,.06);
	margin: 12px 0;
}

.abo-cta {
	width: 100%;
	justify-content: center;
	background: #fff!important;
	color: var(--black)!important;
	font-size: 15px;
	padding: 16px;
	border-radius: 10px;
}

.abo-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-align: center;
	margin-top: 10px;
	font-weight: 400;
}

/* ══════════════════════════════
   BUNDLE / SYSTEM SECTION
══════════════════════════════ */
.system-section {
	background: var(--white);
	padding: 50px 25px;
}

.system-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.system-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.system-grid {
		grid-template-columns: 1fr;
	}
}

.sys-card {
	border-radius: 20px;
	border: 2px solid var(--slate-100);
	overflow: hidden;
	transition: all .2s;
}

.sys-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.07);
	border-color: var(--slate-200);
}

.sys-card-header {
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sys-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	flex-shrink: 0;
}

.sys-name {
	font-size: 17px;
	font-weight: 800;
	color: var(--black);
	margin-left: 10px;
}

.sys-avail {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 99px;
}

.sys-avail.yes {
	background: var(--green-light);
	color: var(--green);
}

.sys-avail.soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

.sys-body {
	padding: 24px;
	border-top: 1px solid var(--slate-100);
}

.sys-desc {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 16px;
}

.sys-detail {
	font-size: 12px;
	color: var(--slate-600);
	font-weight: 600;
}

.sys-cta-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.shop-faq {
	background: var(--bg-warm);
	padding: 50px 25px;
}

.shop-faq-inner {
	max-width: 720px;
	margin: 0 auto;
}

.faq-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-bottom: 1px solid var(--bg-warm-dark);
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	gap: 16px;
}

.faq-q i {
	color: var(--slate-400);
	font-size: 12px;
	flex-shrink: 0;
	transition: transform .2s;
}

.faq-item.open .faq-q i {
	transform: rotate(180deg);
}

.faq-a {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.7;
	font-weight: 400;
	display: none;
	padding-bottom: 18px;
}

.faq-item.open .faq-a {
	display: block;
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.final-cta {
	background: var(--black);
	padding: 50px 25px;
	text-align: center;
}

.final-cta h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,4vw,44px);
	color: #fff;
	margin-bottom: 12px;
}

.final-cta p {
	font-size: 16px;
	color: rgba(255,255,255,.45);
	margin-bottom: 32px;
	font-weight: 400;
}

.final-cta-btns {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-white {
	background: #fff;
	color: var(--black);
}

.btn-white:hover {
	opacity: .92;
}

/* ── FOOTER ── */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 8px;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.2);
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 12px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-seals {
	max-width: 1120px;
	margin: 36px auto 0;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 14px auto 0;
	padding: 16px 0 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

/* Sticky buy bar */
.sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white);
	border-top: 1px solid var(--slate-100);
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 300;
	box-shadow: 0 -4px 20px rgba(0,0,0,.08);
	transform: translateY(100%);
	transition: transform .3s;
}

.sticky-bar.visible {
	transform: translateY(0);
}

.sticky-bar-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sticky-pkg-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.sticky-pkg-price {
	font-size: 18px;
	font-weight: 800;
	color: var(--flow);
}

.sticky-btn {
	font-size: 14px;
	padding: 11px 24px;
}

@media(max-width:600px) {
	.sticky-bar-left {
		display: none;
	}
}
/* flowclear */



/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.65);
	text-align: center;
	padding: 10px 16px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.sep {
	margin: 0 12px;
	opacity: .25;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 13px!important;
	transition: opacity .2s!important;
}

.nav-cta:hover {
	opacity: .88;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	transition: all .2s!important;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* ── BUTTONS ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
	letter-spacing: .01em;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-dark {
	background: var(--black);
	color: #fff;
}

.btn-dark:hover {
	opacity: .88;
}

.btn-ghost-white {
	background: transparent;
	color: rgba(255,255,255,.8);
	border: 1.5px solid rgba(255,255,255,.25);
}

.btn-ghost-white:hover {
	color: #fff;
	border-color: rgba(255,255,255,.6);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ══════════════════════════════
   SECTION 1 — HERO
══════════════════════════════ */
.hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 110px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(transparent,var(--white));
}

.hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

@media(max-width:768px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(38px,5.5vw,60px);
	line-height: 1.08;
	color: var(--black);
	margin-bottom: 18px;
	letter-spacing: -.01em;
}

.hero-sub {
	font-size: 18px;
	color: var(--slate-600);
	line-height: 1.65;
	margin-bottom: 12px;
	font-weight: 400;
}

.hero-core-claim {
	font-size: 22px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 32px;
	letter-spacing: -.01em;
}

.hero-core-claim em {
	font-style: normal;
	color: var(--flow);
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

@media(max-width:768px) {
	.hero-btns {
		justify-content: center;
	}
}

.hero-trust {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

@media(max-width:768px) {
	.hero-trust {
		justify-content: center;
	}
}

.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.hero-trust-item i {
	color: var(--green);
	font-size: 11px;
}

/* Hero product visual */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-product-card {
	background: var(--white);
	border-radius: 24px;
	padding: 40px 32px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	width: 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(42,99,214,.08);
}

.hero-product-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.hpc-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.hpc-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.hpc-name {
	font-size: 40px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	margin-top: 12px;
	line-height: 1;
}

.hpc-sub {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
	margin-bottom: 12px;
}

.hpc-stripe {
	width: 50%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
	margin-bottom: 18px;
}

.hpc-claim {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-align: center;
	line-height: 1.55;
	margin-bottom: 20px;
}

.hpc-price {
	font-size: 28px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 4px;
}

.hpc-price-sub {
	font-size: 12px;
	color: var(--green);
	font-weight: 700;
	margin-bottom: 16px;
}

/* ══════════════════════════════
   SECTION 3 — LÖSUNG
══════════════════════════════ */
.solution {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.solution-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.solution-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.solution h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,42px);
	color: var(--black);
	margin-bottom: 20px;
	line-height: 1.15;
}

.solution p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.solution-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.solution-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: var(--black);
	font-weight: 600;
}

.solution-bullets li span {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px;
}

.solution-visual {
	background: var(--white);
	border-radius: 20px;
	padding: 36px;
	box-shadow: 0 8px 40px rgba(0,0,0,.07);
}

.sol-vis-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--slate-400);
	margin-bottom: 20px;
	text-align: center;
}

.sol-comparison {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 16px;
}

.sol-col {
	text-align: center;
}

.sol-col-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--slate-500);
	margin-top: 12px;
}

.sol-col-sub {
	font-size: 11px;
	color: var(--slate-400);
}

.sol-bad {
	width: 56px;
	height: 100px;
	border: 2px dashed var(--slate-200);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sol-bad span {
	writing-mode: vertical-rl;
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 600;
}

.sol-bad-x {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: #ef4444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.sol-good {
	width: 100px;
	height: 72px;
	background: var(--bg-warm);
	border: 2px solid var(--flow);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
}

.sol-good span {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
}

.sol-good-stripe {
	width: 50%;
	height: 4px;
	background: var(--flow);
	border-radius: 2px;
}

.sol-good-check {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

/* ══════════════════════════════
   SECTION 4 — ANWENDUNG (3 Schritte)
══════════════════════════════ */
.steps {
	padding: 50px 25px;
	background: var(--white);
}

.steps-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.steps h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,40px);
	color: var(--black);
	margin-bottom: 10px;
}

.steps-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 52px;
	font-weight: 400;
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr 40px 1fr 40px 1fr;
	gap: 0;
	align-items: start;
	max-width: 900px;
	margin: 0 auto;
}

@media(max-width:768px) {
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.step-card {
	text-align: center;
	padding: 36px 24px;
	background: var(--bg);
	border-radius: 20px;
}

.step-num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.step-icon {
	font-size: 32px;
	margin-bottom: 14px;
}

.step-card h4 {
	font-size: 17px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 8px;
}

.step-card p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--slate-300);
	font-size: 20px;
	padding-top: 52px;
}

@media(max-width:768px) {
	.step-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 5 — PRODUKT + ANGEBOT
══════════════════════════════ */
.product {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.product-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 64px;
	align-items: start;
}

@media(max-width:768px) {
	.product-inner {
		grid-template-columns: 1fr;
	}
}

.product-can-wrap {
	display: flex;
	justify-content: center;
}

.product-can {
	background: var(--white);
	border-radius: 24px;
	width: 220px;
	padding: 36px 24px 28px;
	box-shadow: 0 16px 56px rgba(0,0,0,.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.product-can::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
}

.can-name {
	font-size: 32px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .05em;
}

.can-variant {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
}

.can-stripe {
	width: 55%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
}

.product-info {
}

.product-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--flow-light);
	color: var(--flow);
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 99px;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.product-info h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3vw,34px);
	color: var(--black);
	margin-bottom: 8px;
	line-height: 1.15;
}

.product-tagline {
	font-size: 16px;
	color: var(--slate-600);
	margin-bottom: 24px;
	font-weight: 400;
}

.usp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.usp-list li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.5;
}

.usp-list li i {
	color: var(--green);
	font-size: 13px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* Angebot / Pricing */
.pricing-block {
	background: var(--white);
	border-radius: 18px;
	padding: 28px;
	border: 1px solid var(--slate-100);
	margin-bottom: 20px;
}

.pricing-block h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 18px;
}

.price-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.price-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid var(--slate-100);
	cursor: pointer;
	transition: all .2s;
	gap: 12px;
}

.price-option.featured {
	border-color: var(--flow);
	background: var(--flow-light);
}

.price-option-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-option-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
}

.price-option.featured .price-option-dot {
	background: var(--flow);
	border-color: var(--flow);
}

.price-option-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.price-option-desc {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 1px;
	font-weight: 400;
}

.price-option-right {
	text-align: right;
	flex-shrink: 0;
}

.price-amount {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
}

.price-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
}

.price-option-badge {
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	letter-spacing: .06em;
	white-space: nowrap;
}

.guarantee {
	font-size: 11px;
	color: var(--slate-400);
	text-align: center;
	margin-top: 12px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 6 — BEFORE / AFTER
══════════════════════════════ */
.before-after {
	padding: 50px 25px;
	background: var(--white);
}

.ba-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.ba-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.ba-inner .ba-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 48px;
	font-weight: 400;
}

.ba-grid {
	display: grid;
	grid-template-columns: 1fr 48px 1fr;
	gap: 0;
	align-items: center;
}

@media(max-width:600px) {
	.ba-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.ba-col {
	border-radius: 18px;
	padding: 32px 28px;
}

.ba-before {
	background: #fff5f5;
	border: 1.5px solid #f5cccc;
}

.ba-after {
	background: #f0faf4;
	border: 1.5px solid #b8e0c8;
}

.ba-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 18px;
}

.ba-before .ba-label {
	color: var(--aufbau);
}

.ba-after .ba-label {
	color: var(--green);
}

.ba-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.ba-col li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--black);
}

.ba-col li .bi {
	font-size: 16px;
	flex-shrink: 0;
}

.ba-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--slate-200);
}

@media(max-width:600px) {
	.ba-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 7 — HOYVO COMPANION (KEY)
══════════════════════════════ */
.companion {
	padding: 100px 32px;
	background: var(--companion);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.companion::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -5%;
	width: 50%;
	height: 160%;
	background: radial-gradient(ellipse,rgba(42,99,214,.12),transparent 65%);
	pointer-events: none;
}

.companion::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 40%;
	height: 120%;
	background: radial-gradient(ellipse,rgba(42,99,214,.07),transparent 65%);
	pointer-events: none;
}

.companion-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
	position: relative;
}

@media(max-width:768px) {
	.companion-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.companion-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(42,99,214,.9);
	background: rgba(42,99,214,.12);
	border: 1px solid rgba(42,99,214,.2);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.companion h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4vw,48px);
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.12;
}

.companion h2 em {
	font-style: normal;
	color: rgba(42,99,214,.9);
}

.companion-intro {
	font-size: 17px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	margin-bottom: 28px;
	font-weight: 400;
}

.companion-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.companion-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	font-weight: 500;
	line-height: 1.5;
}

.companion-features li i {
	color: rgba(42,99,214,.9);
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 14px;
}

.companion-disclaimer {
	font-size: 12px;
	color: rgba(255,255,255,.35);
	margin-top: 10px;
	font-weight: 400;
}

/* Companion App Mockup */
.companion-mockup {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 24px;
	padding: 32px 28px;
	backdrop-filter: blur(10px);
}

.cm-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.cm-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--flow);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cm-icon-inner {
	font-size: 20px;
	color: #fff;
}

.cm-title {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.cm-sub {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
}

.cm-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.cm-feat {
	background: rgba(255,255,255,.06);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid rgba(255,255,255,.04);
}

.cm-feat-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(42,99,214,.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.cm-feat-text {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,.8);
}

.cm-feat-sub {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	font-weight: 400;
}

.cm-status {
	background: rgba(42,99,214,.15);
	border: 1px solid rgba(42,99,214,.25);
	border-radius: 10px;
	padding: 14px 18px;
	text-align: center;
}

.cm-status p {
	font-size: 12px;
	color: rgba(255,255,255,.5);
	margin-bottom: 4px;
	font-weight: 400;
}

.cm-status strong {
	font-size: 14px;
	color: rgba(255,255,255,.9);
	font-weight: 700;
}

/* Companion Warteliste Form */
.companion-form {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 24px;
	margin-top: 24px;
}

.companion-form p {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	margin-bottom: 14px;
	font-weight: 400;
}

.companion-form-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.companion-form input {
	flex: 1;
	min-width: 200px;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	outline: none;
	transition: border-color .2s;
}

.companion-form input::placeholder {
	color: rgba(255,255,255,.3);
}

.companion-form input:focus {
	border-color: rgba(42,99,214,.6);
}

.companion-form button {
	padding: 12px 20px;
	border-radius: 10px;
	border: none;
	background: var(--flow);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	white-space: nowrap;
	transition: opacity .2s;
}

.companion-form button:hover {
	opacity: .88;
}

.companion-form-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-align: center;
	margin-top: 10px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 9 — GRÜNDER
══════════════════════════════ */
.founder {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.founder-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 48px;
	align-items: start;
}

@media(max-width:768px) {
	.founder-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.founder-photo {
	width: 180px;
	height: 220px;
	background: linear-gradient(135deg,var(--slate-200),var(--slate-100));
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 2px dashed var(--slate-300);
	margin: 0 auto;
}

.founder-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin-top: 14px;
}

.founder-title {
	font-size: 13px;
	color: var(--slate-500);
	font-weight: 400;
}

.founder-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 14px;
}

.founder-quote {
	font-family: 'DM Serif Display',serif;
	font-size: 19px;
	color: var(--black);
	line-height: 1.6;
	margin-bottom: 20px;
	padding-left: 22px;
	border-left: 3px solid var(--flow);
}

.founder-facts {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.founder-fact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
}

.founder-fact i {
	color: var(--flow);
}

/* ══════════════════════════════
   SECTION 10 — QUALITÄT (KURZ)
══════════════════════════════ */
.quality {
	padding: 50px 25px;
	background: var(--white);
}

.quality-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.quality-card {
	background: var(--bg);
	border-radius: 20px;
	padding: 48px;
}

.quality-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px,3vw,34px);
	color: var(--black);
	margin: 10px 0 12px;
}

.quality-sub {
	font-size: 15px;
	color: var(--slate-500);
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 36px;
	font-weight: 400;
}

.seals {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.seals {
		grid-template-columns: 1fr 1fr;
	}
}

.seal {
	text-align: center;
}

.seal-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 12px;
	border: 1px solid var(--slate-200);
}

.seal h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.seal p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 11 — FAQ
══════════════════════════════ */
.faq {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.faq-inner {
	max-width: 720px;
	margin: 0 auto;
}

.faq-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,36px);
	color: var(--black);
	margin-bottom: 36px;
	text-align: center;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--white);
	border-radius: 14px;
	border: 1px solid var(--slate-100);
	overflow: hidden;
}

.faq-q {
	padding: 18px 22px;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	user-select: none;
}

.faq-q::after {
	content: '+';
	font-size: 20px;
	font-weight: 400;
	color: var(--flow);
	flex-shrink: 0;
}

.faq-item.open .faq-q::after {
	content: '−';
}

.faq-a {
	padding: 0 22px;
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.65;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s,padding .3s;
	font-weight: 400;
}

.faq-item.open .faq-a {
	padding: 0 22px 18px;
	max-height: 200px;
}

/* ══════════════════════════════
   SECTION 12 — SYSTEM (MOAT, ganz unten)
══════════════════════════════ */
.system {
	padding: 50px 25px;
	background: var(--white);
}

.system-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.system-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 12px;
}

.system-sub {
	font-size: 16px;
	color: var(--slate-500);
	max-width: 560px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.system-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.system-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.sys-card {
	border-radius: 16px;
	padding: 28px 20px;
	background: var(--bg);
	border: 1px solid var(--slate-100);
	position: relative;
	overflow: hidden;
	text-align: left;
	transition: box-shadow .2s;
}

.sys-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.sys-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.sys-name {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .04em;
	margin: 12px 0 4px;
}

.sys-fn {
	font-size: 10px;
	font-weight: 700;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 9px;
}

.sys-text {
	font-size: 12px;
	color: var(--slate-600);
	line-height: 1.55;
	font-weight: 400;
}

.sys-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
	margin-top: 12px;
}

.live {
	background: var(--green-light);
	color: var(--green);
}

.soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.final-cta {
	background: var(--black);
	padding: 50px 25px;
	text-align: center;
	color: #fff;
}

.final-cta h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4.5vw,48px);
	margin-bottom: 12px;
	letter-spacing: -.01em;
}

.final-cta p {
	font-size: 17px;
	color: rgba(255,255,255,.45);
	margin-bottom: 32px;
	font-weight: 400;
}

.btn-white {
	background: #fff;
	color: var(--black);
}

.btn-white:hover {
	opacity: .92;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 56px 32px 28px;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-brand {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.6;
	margin-bottom: 14px;
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.45);
	margin-bottom: 12px;
}

.footer a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	transition: color .2s;
	font-weight: 400;
}

.footer a:hover {
	color: #fff;
}

.footer-bottom {
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-bottom p {
	font-size: 11px;
}

.footer-trust {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-trust span {
	font-size: 11px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.footer-payments {
	display: flex;
	gap: 8px;
	font-size: 22px;
	color: rgba(255,255,255,.2);
}

.b2b-footer {
	font-size: 11px!important;
	color: rgba(255,255,255,.25)!important;
	border: 1px solid rgba(255,255,255,.08);
	padding: 5px 12px;
	border-radius: 5px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	margin-top: 12px;
	transition: all .2s!important;
}

.b2b-footer:hover {
	border-color: rgba(255,255,255,.25)!important;
	color: rgba(255,255,255,.6)!important;
}

/* Drop icon helper */
.flow-drop {
	display: inline-block;
	vertical-align: middle;
}

/* Interaktiver Vergleichs-Slider */
.slider-section {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.slider-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.slider-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.slider-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 40px;
	font-weight: 400;
}

.comparison-slider {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	user-select: none;
	height: 280px;
	cursor: ew-resize;
	box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.cs-before,.cs-after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cs-before {
	background: linear-gradient(135deg,#e8e0d8,#d5cdc4);
}

.cs-after {
	background: linear-gradient(135deg,var(--flow-light),rgba(42,99,214,.04));
}

.cs-before-content,.cs-after-content {
	text-align: center;
	padding: 28px;
}

.cs-before-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--slate-600);
	margin-bottom: 10px;
}

.cs-after-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--flow);
	margin-bottom: 10px;
}

.cs-glass {
	width: 80px;
	height: 120px;
	border-radius: 12px 12px 8px 8px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	position: relative;
}

.cs-glass-bad {
	background: rgba(180,160,130,.45);
	border: 2px solid rgba(180,160,130,.6);
}

.cs-glass-good {
	background: rgba(180,220,255,.25);
	border: 2px solid rgba(42,99,214,.25);
}

.cs-label {
	font-size: 13px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
}

.cs-label-bad {
	background: rgba(192,54,44,.1);
	color: var(--aufbau);
}

.cs-label-good {
	background: var(--flow-light);
	color: var(--flow);
}

.cs-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #fff;
	box-shadow: 0 0 12px rgba(0,0,0,.2);
	z-index: 10;
	cursor: ew-resize;
}

.cs-handle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	left: -22px;
	font-size: 16px;
	color: var(--slate-500);
}

.cs-note {
	font-size: 12px;
	color: var(--slate-400);
	margin-top: 18px;
	font-weight: 400;
}

/* Testimonials mit Avatar + Kategorie */
.test-grid-new {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.test-grid-new {
		grid-template-columns: 1fr;
	}
}

.test-card-new {
	background: var(--white);
	border-radius: 18px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
	position: relative;
}

.test-persona-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--slate-100);
}

.test-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	font-weight: 800;
	color: #fff;
}

.av-user {
	background: linear-gradient(135deg,var(--flow),#1a4fa0);
}

.av-family {
	background: linear-gradient(135deg,var(--green),#14633a);
}

.av-pro {
	background: linear-gradient(135deg,var(--aufbau),#8a1a14);
}

.test-persona-info {
}

.test-persona-name {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 2px;
}

.test-persona-role {
	font-size: 11px;
	font-weight: 600;
	color: var(--slate-400);
}

.test-persona-cat {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-left: auto;
	flex-shrink: 0;
}

.cat-user {
	background: var(--flow-light);
	color: var(--flow);
}

.cat-family {
	background: var(--green-light);
	color: var(--green);
}

.cat-pro {
	background: #fef2f2;
	color: var(--aufbau);
}

.test-stars-new {
	color: #f59e0b;
	font-size: 13px;
	margin-bottom: 12px;
}

.test-quote {
	font-size: 15px;
	color: var(--black);
	line-height: 1.65;
	font-weight: 400;
}

.test-quote strong {
	font-weight: 700;
}

/* Companion als Gratis-Beigabe */
.companion-free-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--green-light);
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 99px;
	letter-spacing: .04em;
	margin-bottom: 8px;
}

/* Trust-Siegel direkt am Kauf-Button */
.trust-seals {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 14px 0;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
	margin: 14px 0;
}

.ts-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-600);
}

.ts-seal i {
	font-size: 14px;
}

/* Goodies als physische Produkte visuell */
.goodies-visual {
	background: var(--flow-light);
	border-radius: 16px;
	padding: 22px 24px;
	border: 1px solid rgba(42,99,214,.1);
	margin-bottom: 18px;
}

.goodies-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--flow-dark);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.goodies-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.goodie {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 10px;
	padding: 10px 12px;
	border: 1px solid rgba(42,99,214,.08);
}

.goodie-icon {
	width: 36px;
	height: 36px;
	border-radius: 99px;
	background: var(--flow-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.goodie-text {
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.3;
}

.goodie-sub {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
}


/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}


/* FLOW CLEAR PAGE SPECIFIC */
.product-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 88px;
	position: relative;
	overflow: hidden;
}

.product-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.product-hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.product-hero-inner {
		grid-template-columns: 1fr;
	}
}

.ph-left {
}

.ph-can {
	background: var(--white);
	border-radius: 24px;
	width: 240px;
	padding: 40px 28px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

.ph-can::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--flow);
}

.ph-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 9px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.ph-can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
}

.ph-can-name {
	font-size: 44px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	line-height: 1;
}

.ph-can-sub {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
}

.ph-can-stripe {
	width: 50%;
	height: 5px;
	border-radius: 3px;
	background: var(--flow);
}

.ph-can-claim {
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-600);
	text-align: center;
	line-height: 1.5;
}

.ph-right {
}

.ph-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.ph-right h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,4vw,42px);
	color: var(--black);
	margin-bottom: 12px;
	line-height: 1.15;
}

.ph-tagline {
	font-size: 17px;
	color: var(--slate-600);
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 1.6;
}
/* USP Pills */
.usp-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.usp-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	background: var(--flow-light);
	color: var(--flow);
	padding: 5px 12px;
	border-radius: 99px;
	border: 1px solid rgba(42,99,214,.1);
}
/* Pricing block on product page */
.product-pricing {
	background: var(--white);
	border-radius: 18px;
	padding: 24px;
	border: 1px solid var(--slate-100);
	margin-bottom: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.pp-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 16px;
	border-radius: 12px;
	border: 2px solid var(--slate-100);
	cursor: pointer;
	transition: all .2s;
	gap: 12px;
	margin-bottom: 8px;
}

.pp-option:last-child {
	margin-bottom: 0;
}

.pp-option.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.pp-option-l {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pp-radio {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
	transition: all .2s;
}

.pp-option.selected .pp-radio {
	background: var(--flow);
	border-color: var(--flow);
}

.pp-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.pp-desc {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 400;
	margin-top: 1px;
}

.pp-badge {
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	letter-spacing: .05em;
	margin-left: 6px;
}

.pp-price {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
}

.pp-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
}
/* Trust at CTA */
.cta-trust {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 12px 0;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
	margin: 12px 0;
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-500);
}

.cta-trust span {
	display: flex;
	align-items: center;
	gap: 5px;
}
/* Tabs */
.product-tabs {
	padding: 50px 25px;
	background: var(--white);
}

.product-tabs-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.tab-bar {
	display: flex;
	border-bottom: 2px solid var(--slate-100);
	margin-bottom: 40px;
	gap: 0;
	overflow-x: auto;
}

.tab-btn {
	padding: 13px 24px;
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-500);
	border: none;
	background: none;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	white-space: nowrap;
	font-family: 'Montserrat',sans-serif;
	transition: all .2s;
}

.tab-btn.active {
	color: var(--flow);
	border-bottom-color: var(--flow);
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}
/* Details table */
.details-table {
	width: 100%;
	border-collapse: collapse;
}

.details-table tr {
	border-bottom: 1px solid var(--slate-100);
}

.details-table td {
	padding: 13px 0;
	font-size: 14px;
}

.details-table td:first-child {
	font-weight: 700;
	color: var(--black);
	width: 180px;
}

.details-table td:last-child {
	color: var(--slate-600);
	font-weight: 400;
}
/* IDDSI Table on product page */
.iddsi-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

.iddsi-table thead tr {
	background: var(--navy);
	color: #fff;
}

.iddsi-table th {
	padding: 12px 18px;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
	letter-spacing: .04em;
}

.iddsi-table td {
	padding: 13px 18px;
	font-size: 13px;
	color: var(--slate-700);
	font-weight: 500;
	border-bottom: 1px solid var(--slate-100);
}

.iddsi-table tr:nth-child(even) td {
	background: var(--bg);
}

.iddsi-table tr:last-child td {
	border-bottom: none;
}

.iddsi-badge-sm {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
/* Related articles */
.related {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.related-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 18px;
	margin-top: 28px;
}

@media(max-width:768px) {
	.related-grid {
		grid-template-columns: 1fr;
	}
}

.related-card {
	background: var(--white);
	border-radius: 14px;
	padding: 22px;
	border: 1px solid var(--slate-100);
	text-decoration: none;
	color: inherit;
	display: block;
	transition: box-shadow .2s,transform .2s;
}

.related-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,.07);
	transform: translateY(-2px);
}

.related-cat {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 8px;
}

.related-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.35;
	margin-bottom: 8px;
}

.related-card p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

.related-link {
	font-size: 12px;
	font-weight: 700;
	color: var(--flow);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 10px;
}

/* system */





.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	opacity: .9;
	transform: translateY(-1px);
}

/* NAV */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover,.nav-links a.active {
	color: var(--black);
}

.nav-links a.active {
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* PAGE HERO */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 88px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 18px;
	color: var(--slate-600);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
}

/* INTRO */
.intro {
	padding: 50px 25px;
	background: var(--white);
}

.intro-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.intro p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.75;
	margin-bottom: 16px;
	font-weight: 400;
}

/* SYSTEM EBENEN */
.ebenen {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.ebenen-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.ebenen-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	margin-top: 48px;
}

@media(max-width:768px) {
	.ebenen-grid {
		grid-template-columns: 1fr;
	}
}

.ebene-card {
	background: var(--white);
	border-radius: 20px;
	padding: 36px 28px;
	border: 1px solid var(--slate-100);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ebene-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.ebene-card.e1::before {
	background: var(--flow);
}

.ebene-card.e2::before {
	background: var(--aufbau);
}

.ebene-card.e3::before {
	background: var(--navy);
}

.ebene-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
}

.ebene-card.e1 .ebene-num {
	background: var(--flow);
}

.ebene-card.e2 .ebene-num {
	background: var(--aufbau);
}

.ebene-card.e3 .ebene-num {
	background: var(--navy);
}

.ebene-card h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 10px;
}

.ebene-card p {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.6;
	font-weight: 400;
}


/* anwendung */







/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}

/* ── HERO ── */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
	border: 1px solid rgba(42,99,214,.1);
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 17px;
	color: var(--slate-600);
	max-width: 560px;
	margin: 0 auto 20px;
	line-height: 1.7;
	font-weight: 400;
}

.page-hero-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
	background: var(--white);
	padding: 7px 16px;
	border-radius: 99px;
	border: 1px solid var(--slate-200);
}

/* ── TAB NAV ── */
.tab-nav {
	background: var(--white);
	border-bottom: 2px solid var(--slate-100);
	position: sticky;
	top: 64px;
	z-index: 99;
}

.tab-nav-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 0;
}

.tab-btn {
	padding: 18px 28px;
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-500);
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .2s;
	white-space: nowrap;
}

.tab-btn:hover {
	color: var(--black);
}

.tab-btn.active {
	color: var(--flow);
	border-bottom-color: var(--flow);
}

.tab-btn i {
	font-size: 13px;
}

@media(max-width:600px) {
	.tab-btn {
		padding: 14px 16px;
		font-size: 13px;
	}
}

/* ── TAB PANELS ── */
.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

/* ── FILTER ── */
.filter-bar {
	padding: 32px 32px 0;
	background: var(--white);
}

.filter-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 8px 18px;
	border-radius: 99px;
	border: 2px solid var(--slate-200);
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-500);
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.filter-btn:hover,.filter-btn.active {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

/* ── RECIPES GRID ── */
.recipes {
	padding: 40px 32px 80px;
	background: var(--white);
}

.recipes-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.recipes-section-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 20px;
}

.recipes-section-label i {
	color: var(--flow);
}

.recipes-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media(max-width:900px) {
	.recipes-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media(max-width:600px) {
	.recipes-grid {
		grid-template-columns: 1fr;
	}
}

.recipe-card {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	transition: box-shadow .3s,transform .3s;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
}

.recipe-card:hover {
	box-shadow: 0 10px 36px rgba(0,0,0,.09);
	transform: translateY(-4px);
}

.recipe-thumb {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 72px;
}

.recipe-iddsi {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(4px);
	border-radius: 8px;
	padding: 4px 11px;
	font-size: 11px;
	font-weight: 700;
	color: var(--flow);
	border: 1px solid rgba(42,99,214,.15);
}

.recipe-flow-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 5px;
	letter-spacing: .04em;
	display: flex;
	align-items: center;
	gap: 4px;
}

.recipe-body {
	padding: 20px;
}

.recipe-body h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
	line-height: 1.3;
}

.recipe-sub {
	font-size: 13px;
	color: var(--slate-500);
	font-style: italic;
	margin-bottom: 12px;
	font-weight: 400;
}

.recipe-meta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.recipe-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.recipe-meta span i {
	font-size: 11px;
	color: var(--slate-400);
}

.recipe-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.recipe-tag {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 6px;
	background: var(--flow-light);
	color: var(--flow);
}

/* ── VIDEO SECTION ── */
.featured-vid {
	background: var(--bg-warm);
	padding: 56px 32px 40px;
}

.fv-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.fv-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	background: var(--flow-light);
	padding: 5px 14px;
	border-radius: 99px;
	margin-bottom: 14px;
	border: 1px solid rgba(42,99,214,.1);
}

.fv-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(22px,3vw,32px);
	color: var(--black);
	margin-bottom: 8px;
}

.fv-sub {
	font-size: 15px;
	color: var(--slate-500);
	margin-bottom: 28px;
	font-weight: 400;
}

.vid-large-placeholder {
	width: 100%;
	aspect-ratio: 16/9;
	background: var(--black);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	transition: opacity .2s;
}

.vid-large-placeholder:hover {
	opacity: .92;
}

.vid-large-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 6px;
}

.vid-large-iddsi {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,.2);
}

.vid-large-play {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	border: 2px solid rgba(255,255,255,.25);
	margin-bottom: 16px;
}

.vid-large-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
}

.vid-large-sub {
	font-size: 13px;
	color: rgba(255,255,255,.5);
}

.vid-large-duration {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 5px;
}

.kueche {
	padding: 40px 32px 80px;
	background: var(--white);
}

.kueche-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.section-label i {
	color: var(--flow);
}

.vid-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}

@media(max-width:900px) {
	.vid-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media(max-width:600px) {
	.vid-grid {
		grid-template-columns: 1fr;
	}
}

.vid-card {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	background: var(--white);
	transition: box-shadow .2s;
}

.vid-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.vc-thumb {
	aspect-ratio: 16/9;
	background: var(--black);
	position: relative;
	overflow: hidden;
}

.vc-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .2s;
	position: relative;
}

.vc-placeholder:hover {
	opacity: .9;
}

.vc-iddsi {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,.2);
}

.vc-new {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 4px;
}

.vc-play {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	border: 1.5px solid rgba(255,255,255,.25);
	margin-bottom: 10px;
}

.vc-title-ov {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: 0 12px;
}

.vc-dur {
	position: absolute;
	bottom: 8px;
	right: 10px;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
}

.vc-body {
	padding: 16px;
}

.vc-tag {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--flow);
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 7px;
}

.vc-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--flow);
	flex-shrink: 0;
}

.vc-body h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 5px;
	line-height: 1.3;
}

.vc-body p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
	margin-bottom: 8px;
}

.vc-meta {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

.vc-meta i {
	font-size: 10px;
}

.add-vid {
	border-radius: 18px;
	border: 2px dashed var(--slate-200);
	background: var(--bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
	text-align: center;
	gap: 10px;
	min-height: 200px;
}

.add-vid i {
	font-size: 28px;
	color: var(--slate-300);
}

.add-vid h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-400);
}

.add-vid p {
	font-size: 12px;
	color: var(--slate-300);
	line-height: 1.5;
}

/* How-to-Add */
.how-to-add {
	background: var(--bg-warm);
	padding: 56px 32px;
}

.hta-inner {
	max-width: 860px;
	margin: 0 auto;
}

.hta-box {
	background: var(--white);
	border-radius: 20px;
	padding: 36px;
	border: 1px solid var(--bg-warm-dark);
}

.hta-box h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 8px;
}

.hta-box>p {
	font-size: 14px;
	color: var(--slate-500);
	margin-bottom: 28px;
	font-weight: 400;
}

.hta-steps {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.hta-steps {
		grid-template-columns: repeat(2,1fr);
	}
}

.hta-step {
	text-align: center;
}

.hta-num {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--flow-light);
	color: var(--flow);
	font-size: 16px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.hta-step h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 6px;
}

.hta-step p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.hta-step code {
	font-size: 11px;
	background: var(--slate-100);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: monospace;
	color: var(--black);
}

/* ── NEWSLETTER ── */
.newsletter-bar {
	background: #1a3a2a;
	padding: 56px 32px;
}

.nl-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

@media(max-width:768px) {
	.nl-inner {
		grid-template-columns: 1fr;
	}
}

.nl-inner h3 {
	font-family: 'DM Serif Display',serif;
	font-size: 26px;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.nl-inner p {
	font-size: 15px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	font-weight: 400;
}

.nl-inner p strong {
	color: #fff;
}

.nl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nl-form input {
	padding: 13px 18px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	background: rgba(255,255,255,.95);
	color: var(--black);
	outline: none;
}

.nl-form button {
	padding: 14px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Montserrat',sans-serif;
	background: var(--flow);
	color: #fff;
	cursor: pointer;
	transition: opacity .2s;
}

.nl-form button:hover {
	opacity: .88;
}

.nl-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-align: center;
	font-weight: 400;
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	background: #fff;
	color: var(--black);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	font-family: 'Montserrat',sans-serif;
}

/* ── FOOTER ── */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}
/* ratgeber */




/* NAV */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover,.nav-links a.active {
	color: var(--black);
}

.nav-links a.active {
	font-weight: 800;
	color: var(--flow);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* PAGE HERO */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 88px;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 17px;
	color: var(--slate-600);
	max-width: 560px;
	line-height: 1.7;
	font-weight: 400;
}

/* FILTER */
.filter-bar {
	padding: 32px 32px 0;
	background: var(--white);
}

.filter-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 8px 18px;
	border-radius: 99px;
	border: 2px solid var(--slate-200);
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-500);
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.filter-btn:hover,.filter-btn.active {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

/* FEATURED ARTICLE */
.featured {
	padding: 40px 32px 0;
	background: var(--white);
}

.feat-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.feat-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s;
}

.feat-card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

@media(max-width:768px) {
	.feat-card {
		grid-template-columns: 1fr;
	}
}

.feat-image {
	background: linear-gradient(135deg,var(--flow-light),rgba(42,99,214,.04));
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.feat-image-placeholder {
	text-align: center;
	color: var(--slate-400);
}

.feat-image-placeholder i {
	font-size: 48px;
	display: block;
	margin-bottom: 12px;
}

.feat-image-placeholder p {
	font-size: 13px;
	font-weight: 600;
}

.feat-image-placeholder span {
	font-size: 11px;
	font-weight: 400;
}

.feat-label {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: .06em;
}

.feat-body {
	padding: 40px;
	background: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media(max-width:768px) {
	.feat-body {
		padding: 20px;
	}
}

.feat-cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 12px;
}

.feat-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 12px;
	color: var(--slate-400);
	font-weight: 500;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--flow);
	text-decoration: none;
}

/* BLOG GRID */
.blog {
	padding: 52px 32px 80px;
	background: var(--white);
}

.blog-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.blog-section-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--slate-100);
}

.blog-section-label i {
	color: var(--flow);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-bottom: 48px;
}

@media(max-width:768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* Blog Card */
.blog-card {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	transition: box-shadow .2s,transform .2s;
	text-decoration: none;
	color: inherit;
	display: block;
	background: var(--white);
}

.blog-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.07);
	transform: translateY(-3px);
}

.bc-image {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 52px;
}

.bc-cat {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: 3px 9px;
	border-radius: 5px;
}

.bc-body {
	padding: 20px;
}

.bc-meta {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 500;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.bc-body p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
	margin-bottom: 14px;
}

.bc-link {
	font-size: 12px;
	font-weight: 700;
	color: var(--flow);
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ADD NEW ARTICLE hint */
.add-article {
	background: var(--bg);
	border-radius: 16px;
	border: 2px dashed var(--slate-200);
	padding: 32px;
	text-align: center;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.add-article i {
	font-size: 36px;
	color: var(--slate-300);
}

.add-article h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--slate-400);
}

.add-article p {
	font-size: 12px;
	color: var(--slate-300);
	font-weight: 400;
	max-width: 180px;
}

/* NEWSLETTER */
.newsletter {
	background: #1a3a2a;
	padding: 64px 32px;
}

.nl-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

@media(max-width:768px) {
	.nl-inner {
		grid-template-columns: 1fr;
	}
}

.nl-inner h3 {
	font-family: 'DM Serif Display',serif;
	font-size: 26px;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.nl-inner p {
	font-size: 15px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	font-weight: 400;
}

.nl-inner p strong {
	color: #fff;
}

.nl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nl-form input {
	padding: 13px 18px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	background: rgba(255,255,255,.95);
	color: var(--black);
	outline: none;
}

.nl-form button {
	padding: 14px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Montserrat',sans-serif;
	background: var(--flow);
	color: #fff;
	cursor: pointer;
	transition: opacity .2s;
}

.nl-form button:hover {
	opacity: .88;
}

.nl-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-align: center;
	font-weight: 400;
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	background: #fff;
	color: var(--black);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	font-family: 'Montserrat',sans-serif;
}

.footer-min {
	background: #0a0a0a;
	padding: 28px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-min p {
	font-size: 11px;
	color: rgba(255,255,255,.3);
}

.footer-min a {
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	transition: color .2s;
}

.footer-min a:hover {
	color: #fff;
}

/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 1000;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	margin-right: -8px;
	z-index: 1001;
}

.nav-mobile {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg-warm);
	z-index: 1010;
	padding: 0;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-mobile-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 24px;
	height: 64px;
	border-bottom: 0px;
}

.nav-mobile-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-mobile-close {
	background: none;
	border: none;
	font-size: 28px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	margin-right: -8px;
}

.nav-mobile-body {
	padding: 14px 24px 40px;
	display: flex;
	flex-direction: column;
}

.nav-mobile-body a {
	font-size: 15px;
	font-weight: 600;
	color: var(--slate-700);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid var(--bg-warm-dark);
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease;
	transition-delay: calc(var(--i) * 0.05s);
}

.nav-mobile.open .nav-mobile-body a {
	opacity: 1;
	transform: translateY(0);
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: rgba(0,0,0,0.5); */
	z-index: 998;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.nav-overlay.open {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}
/* b2b */






/* ── ANNOUNCE ── */
.announce {
	background: var(--navy);
	color: rgba(255,255,255,.55);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}

/* ── NAV ── */
.nav {
	background: var(--white);
	border-bottom: 2px solid var(--slate-200);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-badge {
	background: var(--navy);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-left: 8px;
	vertical-align: middle;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 22px;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-home {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 6px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:860px) {
	.nav-links {
		display: none;
	}
}

/* ── BUTTONS ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-navy {
	background: var(--navy);
	color: #fff;
}

.btn-navy:hover {
	opacity: .9;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ── LAYOUT ── */
.section {
	padding: 50px 25px;
}

/* ══════════════════════════════
   HERO — B2B
══════════════════════════════ */
.hero {
	background: linear-gradient(168deg,#f0f4f8 0%,#e8eef5 100%);
	padding: 50px 25px 100px;
	position: relative;
	overflow: hidden;
	border-bottom: 2px solid var(--slate-200);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:860px) {
	.hero-inner {
		grid-template-columns: 1fr;
	}
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 5px 13px;
	border-radius: 99px;
	margin-bottom: 18px;
}

.hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(32px,4.5vw,52px);
	line-height: 1.1;
	color: var(--black);
	margin-bottom: 16px;
}

.hero h1 em {
	font-style: normal;
	color: var(--flow);
}

.hero-sub {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 28px;
	font-weight: 400;
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.hero-trust {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.htrust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.htrust-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green);
	flex-shrink: 0;
}

.hcp {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--slate-100);
}

.hcp:last-child {
	border-bottom: none;
}

.hcp-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.hcp-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--black);
}

@media(max-width:960px) {
  .hcp-name , .hcp-desc{
    text-align: left !important;
  }
}

.hero-badge {
	background: var(--green-light);
	border: 1.5px solid #86efac;
	border-radius: 12px;
	padding: 14px 18px;
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-badge-icon {
	width: 36px;
	height: 36px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	flex-shrink: 0;
}

.hero-badge h5 {
	font-size: 13px;
	font-weight: 700;
	color: #166534;
}

.hero-badge p {
	font-size: 11px;
	color: #166534;
	font-weight: 400;
}

/* ══════════════════════════════
   PROBLEM / LÖSUNG / ERGEBNIS
══════════════════════════════ */
.psr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

@media(max-width:768px) {
	.psr-grid {
		grid-template-columns: 1fr;
	}
}

.psr-col {
	border-radius: 14px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
}

.psr-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 12px;
	padding: 3px 10px;
	border-radius: 99px;
	display: inline-block;
}

.psr-p {
	background: #fff5f5;
}

.psr-p .psr-label {
	background: #fecaca;
	color: #991b1b;
}

.psr-s {
	background: var(--flow-light);
}

.psr-s .psr-label {
	background: rgba(42,99,214,.15);
	color: var(--flow-dark);
}

.psr-r {
	background: var(--green-light);
}

.psr-r .psr-label {
	background: #bbf7d0;
	color: #166534;
}

.psr-col h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 14px;
	line-height: 1.3;
}

.psr-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.psr-col li {
	font-size: 13px;
	color: var(--slate-700);
	line-height: 1.5;
	font-weight: 400;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

/* ══════════════════════════════
   IDDSI VISUAL
══════════════════════════════ */
.iddsi-section {
	background: var(--navy);
	padding: 50px 25px;
	color: #fff;
}

.iddsi-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.iddsi-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 14px;
}

@media(max-width:768px) {
	.iddsi-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.iddsi-card {
	background: rgba(255,255,255,.06);
	border-radius: 12px;
	padding: 20px 16px;
	border: 1px solid rgba(255,255,255,.08);
}

.iddsi-num {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.iddsi-name {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.iddsi-ml {
	font-size: 11px;
	color: rgba(255,255,255,.45);
	margin-bottom: 8px;
	font-weight: 400;
}

.iddsi-bar-wrap {
	height: 4px;
	background: rgba(255,255,255,.1);
	border-radius: 2px;
}

.iddsi-bar {
	height: 100%;
	background: var(--flow);
	border-radius: 2px;
}

.iddsi-note {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	margin-top: 20px;
	font-weight: 400;
	font-style: italic;
}

/* ══════════════════════════════
   WIRTSCHAFTLICHKEIT
══════════════════════════════ */
.eco-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.eco-grid {
		grid-template-columns: 1fr;
	}
}

.eco-card {
	background: var(--white);
	border-radius: 14px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
}

.eco-num {
	font-family: 'DM Serif Display',serif;
	font-size: 38px;
	color: var(--flow);
	margin-bottom: 4px;
	line-height: 1;
}

.eco-unit {
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 12px;
}

.eco-card h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 6px;
}

.eco-card p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

/* ══════════════════════════════
   QUALITÄT
══════════════════════════════ */
.qual-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.qual-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.qual-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--slate-200);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	font-size: 20px;
}

/* ══════════════════════════════
   REGISTRATION WALL
══════════════════════════════ */
.wall-section {
	padding: 0;
	background: var(--b2b-bg);
	position: relative;
}

.wall-blur-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(transparent,var(--b2b-bg));
	pointer-events: none;
}

.wall-preview {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	filter: blur(6px);
	opacity: .45;
	pointer-events: none;
	user-select: none;
	padding: 0 0 20px;
}

.wall-prev-card {
	background: var(--white);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid var(--slate-100);
	height: 120px;
}

.wall-prev-bar {
	height: 8px;
	background: var(--slate-100);
	border-radius: 4px;
	margin-bottom: 10px;
}

.wall-prev-bar.short {
	width: 60%;
}

.wall-prev-bar.med {
	width: 80%;
}

.wall-prev-line {
	height: 6px;
	background: var(--slate-100);
	border-radius: 3px;
	margin-bottom: 7px;
}

.wall-inner {
	max-width: 820px;
	margin: 0 auto;
}

.wall-card {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	border: 1px solid var(--slate-100);
	overflow: hidden;
}

.wall-header {
	background: var(--navy);
	padding: 36px 40px;
	text-align: center;
}

.wall-header-icon {
	width: 56px;
	height: 56px;
	background: rgba(42,99,214,.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 22px;
	color: rgba(42,99,214,.9);
}

.wall-header h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(22px,3vw,30px);
	color: #fff;
	margin-bottom: 10px;
}

.wall-header p {
	font-size: 14px;
	color: rgba(255,255,255,.55);
	font-weight: 400;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 auto;
}

/* STEPS indicator */
.wall-steps {
	display: flex;
	justify-content: center;
	gap: 0;
	padding: 24px 40px;
	border-bottom: 1px solid var(--slate-100);
	background: var(--white);
}

.wstep {
	display: flex;
	align-items: center;
	gap: 0;
}

.wstep-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--slate-100);
	color: var(--slate-400);
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all .3s;
	border: 2px solid var(--slate-200);
}

.wstep-dot.active {
	background: var(--flow);
	color: #fff;
	border-color: var(--flow);
}

.wstep-dot.done {
	background: var(--green);
	color: #fff;
	border-color: var(--green);
}

.wstep-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--slate-400);
	margin: 0 8px;
	white-space: nowrap;
	transition: color .3s;
}

.wstep-label.active {
	color: var(--black);
}

.wstep-line {
	width: 40px;
	height: 2px;
	background: var(--slate-200);
	flex-shrink: 0;
	transition: background .3s;
}

.wstep-line.done {
	background: var(--green);
}

/* FORM PANELS */
.wall-form {
	padding: 36px 40px;
}

@media(max-width:600px) {
	.wall-form {
		padding: 24px 20px;
	}
}

.form-panel {
	display: none;
}

.form-panel.active {
	display: block;
}

.form-panel-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.form-panel-sub {
	font-size: 13px;
	color: var(--slate-500);
	margin-bottom: 24px;
	font-weight: 400;
	line-height: 1.5;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.form-row.single {
	grid-template-columns: 1fr;
}

@media(max-width:600px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.form-group label {
	font-size: 12px;
	font-weight: 700;
	color: var(--slate-700);
	letter-spacing: .03em;
}

.form-group label .req {
	color: var(--flow);
}

.form-group input,.form-group select,.form-group textarea {
	padding: 11px 14px;
	border-radius: 99px;
	border: 1.5px solid var(--slate-200);
	background: var(--white);
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	color: var(--black);
	outline: none;
	transition: border-color .2s;
	-webkit-appearance: none;
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
	border-color: var(--flow);
}

.form-group input.error,.form-group select.error {
	border-color: var(--aufbau);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
	border-radius: 20px;
}

.form-group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.form-error {
	font-size: 11px;
	color: var(--aufbau);
	margin-top: 3px;
	display: none;
}

.form-error.visible {
	display: block;
}

.form-hint {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 3px;
	font-weight: 400;
}

/* Slider inputs */
.slider-group {
	margin-bottom: 16px;
}

.slider-group label {
	font-size: 12px;
	font-weight: 700;
	color: var(--slate-700);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.slider-val {
	font-size: 14px;
	font-weight: 800;
	color: var(--flow);
	background: var(--flow-light);
	padding: 2px 10px;
	border-radius: 6px;
	min-width: 60px;
	text-align: center;
}

.slider-group input[type=range] {
	width: 100%;
	height: 4px;
	-webkit-appearance: none;
	appearance: none;
	background: var(--slate-200);
	border-radius: 2px;
	outline: none;
	cursor: pointer;
}

.slider-group input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--flow);
	cursor: pointer;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(42,99,214,.3);
}

.slider-note {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 6px;
	font-weight: 400;
}

/* Checkbox groups */
.check-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 16px;
}

@media(max-width:500px) {
	.check-group {
		grid-template-columns: 1fr;
	}
}

.check-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 9px;
	border: 1.5px solid var(--slate-200);
	cursor: pointer;
	transition: all .2s;
}

.check-item:hover {
	border-color: var(--flow);
	background: var(--flow-light);
}

.check-item.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.check-item input {
	display: none;
}

.check-icon {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 2px solid var(--slate-300);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all .2s;
	font-size: 10px;
	color: transparent;
}

.check-item.selected .check-icon {
	background: var(--flow);
	border-color: var(--flow);
	color: #fff;
}

.check-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--black);
}

.check-sub {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
}

/* DATENSCHUTZ checkbox */
.privacy-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--slate-100);
}

.privacy-row input[type=checkbox] {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	accent-color: var(--flow);
	flex-shrink: 0;
	cursor: pointer;
}

.privacy-row label {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
	cursor: pointer;
}

.privacy-row a {
	color: var(--flow);
	text-decoration: none;
	font-weight: 600;
}

/* Navigation buttons */
.form-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--slate-100);
}

.btn-back {
	background: transparent;
	color: var(--slate-500);
	border: none;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 0;
	transition: color .2s;
}

.btn-back:hover {
	color: var(--black);
}

.form-progress {
	font-size: 11px;
	color: var(--slate-400);
	font-weight: 500;
}

/* ══════════════════════════════
   ANGEBOTS-KALKULATOR (hinter Wall)
══════════════════════════════ */
.kalkulator {
	display: none;
	padding: 36px 40px;
	border-top: 2px solid var(--flow-light);
}

@media(max-width:600px) {
	.kalkulator {
		padding: 24px 20px;
	}
}

.kalk-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.kalk-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.kalk-header h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 2px;
}

.kalk-header p {
	font-size: 12px;
	color: var(--slate-500);
	font-weight: 400;
}

.kalk-result {
	background: var(--b2b-bg);
	border-radius: 16px;
	padding: 28px;
	border: 1px solid var(--slate-100);
	margin-bottom: 24px;
}

.kalk-result-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.kalk-rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.kalk-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.kalk-row-label {
	font-weight: 600;
	color: var(--slate-700);
}

.kalk-row-val {
	font-weight: 700;
	color: var(--black);
}

.kalk-row-val.highlight {
	color: var(--flow);
	font-size: 16px;
}

.kalk-divider {
	border: none;
	border-top: 1px solid var(--slate-200);
	margin: 12px 0;
}

.kalk-packages {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 14px;
	margin-bottom: 24px;
}

@media(max-width:600px) {
	.kalk-packages {
		grid-template-columns: 1fr;
	}
}

.kalk-pkg {
	background: var(--white);
	border: 2px solid var(--slate-100);
	border-radius: 14px;
	padding: 18px 16px;
	cursor: pointer;
	transition: all .2s;
	text-align: center;
}

.kalk-pkg:hover,.kalk-pkg.selected {
	border-color: var(--flow);
	background: var(--flow-light);
}

.kalk-pkg-name {
	font-size: 12px;
	font-weight: 800;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 4px;
}

.kalk-pkg-qty {
	font-size: 22px;
	font-weight: 800;
	color: var(--flow);
	margin-bottom: 2px;
	line-height: 1;
}

.kalk-pkg-unit {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
	margin-bottom: 8px;
}

.kalk-pkg-period {
	font-size: 11px;
	color: var(--slate-500);
	font-weight: 600;
}

.kalk-pkg-badge {
	display: inline-block;
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	margin-top: 6px;
	letter-spacing: .05em;
}

.kalk-note {
	background: rgba(22,163,74,.08);
	border: 1px solid #bbf7d0;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 12px;
	color: #166534;
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 20px;
}

.kalk-note strong {
	font-weight: 700;
}

.kalk-cta-section {
	text-align: center;
}

.kalk-cta-section p {
	font-size: 12px;
	color: var(--slate-400);
	margin-top: 10px;
	font-weight: 400;
}

/* SUCCESS STATE */
.success-panel {
	display: block;
	padding: 40px;
	text-align: center;
}

.success-icon {
	width: 64px;
	height: 64px;
	background: var(--green-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
	color: var(--green);
}

.success-panel h2 {
	font-family: 'DM Serif Display',serif;
	font-size: 28px;
	color: var(--black);
	margin-bottom: 12px;
}

.success-panel p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	font-weight: 400;
	max-width: 420px;
	margin: 0 auto 24px;
}

.success-info {
	background: var(--b2b-bg);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid var(--slate-100);
	text-align: left;
	margin-bottom: 20px;
}

.success-info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	padding: 7px 0;
	border-bottom: 1px solid var(--slate-100);
}

.success-info-row:last-child {
	border-bottom: none;
}

.si-label {
	color: var(--slate-500);
	font-weight: 400;
}

.si-val {
	font-weight: 700;
	color: var(--black);
}

/* ══════════════════════════════
   PARTNER LOGOS
══════════════════════════════ */
.partner-bar {
	background: var(--white);
	padding: 40px 32px;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
}

.partner-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.partner-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-300);
	margin-bottom: 20px;
}

.partner-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
	opacity: .4;
}

.partner-logo {
	font-size: 13px;
	font-weight: 700;
	color: var(--slate-400);
	letter-spacing: .05em;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 56px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 0;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 8px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.2);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 12px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-seals {
	max-width: 1120px;
	margin: 36px auto 0;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 14px auto 0;
	padding: 16px 0 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}


/* Globale Nav immer sichtbar */
#globalAnnounce, #globalNav {
	display: block;
}

#globalNav {
	display: flex;
}

/* Cookie-Banner Fix */
#shopify-pc__banner,
.shopify-privacy-banner,
cookie-consent {
	position: fixed !important;
	bottom: 0 !important;
	top: auto !important;
	left: 0 !important;
	right: 0 !important;
	max-height: 40vh !important;
	overflow-y: auto !important;
	z-index: 9999 !important;
}

@media (max-width: 768px) {
	.hv-cta-final , .hv-comp , .hv-offer , .hv-problem , .hv-hero , .hv-steps , .hv-goodies , section {
		padding: 24px !important;
	}

	.hv-btn-primary {
		font-size: 12px !important;
		padding: 8px 10px !important;
	}
}

C:\Users\Ahsan Khatri

/* system */



.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	opacity: .9;
	transform: translateY(-1px);
}

/* NAV */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover,.nav-links a.active {
	color: var(--black);
}

.nav-links a.active {
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* PAGE HERO */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 18px;
	color: var(--slate-600);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
}

/* INTRO */
.intro {
	padding: 50px 25px;
	background: var(--white);
}

.intro-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.intro p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.75;
	margin-bottom: 16px;
	font-weight: 400;
}

/* SYSTEM EBENEN */
.ebenen {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.ebenen-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.ebenen-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	margin-top: 48px;
}

@media(max-width:768px) {
	.ebenen-grid {
		grid-template-columns: 1fr;
	}
}

.ebene-card {
	background: var(--white);
	border-radius: 20px;
	padding: 36px 28px;
	border: 1px solid var(--slate-100);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ebene-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.ebene-card.e1::before {
	background: var(--flow);
}

.ebene-card.e2::before {
	background: var(--aufbau);
}

.ebene-card.e3::before {
	background: var(--navy);
}

.ebene-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
}

.ebene-card.e1 .ebene-num {
	background: var(--flow);
}

.ebene-card.e2 .ebene-num {
	background: var(--aufbau);
}

.ebene-card.e3 .ebene-num {
	background: var(--navy);
}

.ebene-card h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 10px;
}

.ebene-card p {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.6;
	font-weight: 400;
}

.ebene-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 99px;
	margin-bottom: 14px;
	letter-spacing: .06em;
}

.e1 .ebene-tag {
	background: var(--flow-light);
	color: var(--flow);
}

.e2 .ebene-tag {
	background: #fef2f2;
	color: var(--aufbau);
}

.e3 .ebene-tag {
	background: var(--slate-100);
	color: var(--navy);
}

/* PRODUKTE */
.produkte {
	padding: 50px 25px;
	background: var(--white);
}

.produkte-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.sh-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 12px;
}

.sh p {
	font-size: 16px;
	color: var(--slate-500);
	font-weight: 400;
	max-width: 560px;
	margin: 0 auto;
}

.pr-flow {
	background: #f5f8ff;
	border: 1px solid #d6e3f8;
}

.pr-flow::before {
	background: var(--flow);
}

.pr-aufbau {
	background: #fff5f5;
	border: 1px solid #f5cccc;
	opacity: .7;
}

.pr-aufbau::before {
	background: var(--aufbau);
}

.pr-energie {
	background: #fff8f2;
	border: 1px solid #f8d9b8;
	opacity: .7;
}

.pr-energie::before {
	background: var(--energie);
}

.pr-mahlzeit {
	background: #faf6f2;
	border: 1px solid #e8d5c4;
	opacity: .7;
}

.pr-mahlzeit::before {
	background: var(--mahlzeit);
}

.pr-icon-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.pr-dot {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pr-icon-label {
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.pr-content h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 4px;
}

.pr-content .pr-fn {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 12px;
}

.pr-content p {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.65;
	margin-bottom: 14px;
	font-weight: 400;
}

.pr-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pr-fact {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-700);
}

.pr-fact i {
	font-size: 11px;
	color: var(--green);
}

.pr-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 6px;
	margin-top: 12px;
}

.badge-live {
	background: var(--green-light);
	color: var(--green);
}

.badge-soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

/* FARBE = FUNKTION */
.farbe {
	padding: 50px 25px;
	background: var(--navy);
	color: #fff;
}

.farbe-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.farbe-inner p {
	font-size: 16px;
	color: rgba(255,255,255,.5);
	max-width: 540px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.farbe-dots {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.farbe-dot {
	text-align: center;
}

.fd-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.fd-name {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .06em;
	color: #fff;
	margin-bottom: 4px;
}

.fd-fn {
	font-size: 11px;
	color: rgba(255,255,255,.4);
	font-weight: 500;
}

/* COMPANION TEASER */
.companion-teaser {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.ct-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.ct-inner {
		grid-template-columns: 1fr;
	}
}

.ct-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 14px;
}

.ct-inner p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 24px;
	font-weight: 400;
}

.ct-box {
	background: var(--navy);
	border-radius: 20px;
	padding: 36px;
	color: #fff;
}

.ct-box h3 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 6px;
}

.ct-box p {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	margin-bottom: 20px;
	font-weight: 400;
}

.ct-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.ct-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: rgba(255,255,255,.75);
	font-weight: 500;
}

.ct-features li i {
	color: rgba(42,99,214,.9);
	flex-shrink: 0;
	margin-top: 2px;
}

.ct-form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.ct-form input {
	flex: 1;
	min-width: 180px;
	padding: 11px 16px;
	border-radius: 9px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 13px;
	font-family: 'Montserrat',sans-serif;
	outline: none;
}

.ct-form input::placeholder {
	color: rgba(255,255,255,.3);
}

.ct-form button {
	padding: 11px 18px;
	border-radius: 9px;
	border: none;
	background: var(--flow);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	white-space: nowrap;
}

.ct-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	margin-top: 10px;
	font-weight: 400;
}

/* FOOTER (minimal) */
.footer-min {
	background: #0a0a0a;
	padding: 28px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-min p {
	font-size: 11px;
	color: rgba(255,255,255,.3);
}

.footer-min a {
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
}

.footer-min a:hover {
	color: #fff;
}

/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ ANWENDUNG SEKTIONEN ══ */
.aw-divider {
	padding: 56px 32px 0;
	background: var(--white);
}

.aw-divider-inner {
	max-width: 1120px;
	margin: 0 auto;
	border-top: 2px solid var(--bg-warm-dark);
	padding-top: 56px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.aw-divider-line {
	flex: 1;
	height: 1px;
	background: var(--bg-warm-dark);
}

.aw-divider-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 16px;
	border-radius: 99px;
	white-space: nowrap;
	border: 1px solid rgba(42,99,214,.1);
}

.aw-featured {
	padding: 50px 25px;
	background: var(--white);
}

.aw-fv-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: center;
}

@media(max-width:768px) {
	.aw-fv-inner {
		grid-template-columns: 1fr;
	}
}

.aw-video-placeholder {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: linear-gradient(135deg,#1a2a4a,#0d1b2e);
	aspect-ratio: 16/9;
	border-radius: 20px;
	cursor: pointer;
	position: relative;
}

.aw-video-placeholder-icon {
	width: 72px;
	height: 72px;
	background: rgba(42,99,214,.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	transition: transform .2s,background .2s;
}

.aw-video-placeholder:hover .aw-video-placeholder-icon {
	transform: scale(1.08);
	background: var(--flow);
}

.aw-video-placeholder-title {
	font-size: 15px;
	font-weight: 700;
	color: rgba(255,255,255,.85);
	text-align: center;
	padding: 0 20px;
}

.aw-video-placeholder-sub {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
}

.aw-video-placeholder-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: .06em;
}

.aw-video-placeholder-duration {
	position: absolute;
	bottom: 14px;
	right: 16px;
	background: rgba(0,0,0,.6);
	color: rgba(255,255,255,.8);
	font-size: 12px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
}

.aw-fv-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 12px;
}

.aw-fv-info p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.aw-fv-steps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.aw-fv-steps li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.4;
}

.aw-fv-step-num {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.aw-dosier {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.aw-dosier-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-dosier-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.aw-dosier-table thead tr {
	background: #0f172a;
	color: #fff;
}

.aw-dosier-table th {
	padding: 14px 20px;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
	letter-spacing: .04em;
}

.aw-dosier-table td {
	padding: 14px 20px;
	font-size: 14px;
	color: var(--slate-700);
	font-weight: 500;
	border-bottom: 1px solid var(--slate-100);
}

.aw-dosier-table tr:last-child td {
	border-bottom: none;
}

.aw-dosier-table tr:nth-child(even) td {
	background: var(--bg);
}

.aw-iddsi-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 800;
}

.aw-iddsi-circle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
}

.aw-dosier-note {
	margin-top: 16px;
	font-size: 12px;
	color: var(--slate-400);
	font-weight: 400;
	line-height: 1.6;
}

.aw-videos {
	padding: 50px 25px;
	background: var(--white);
}

.aw-videos-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-video-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-top: 12px;
}

@media(max-width:768px) {
	.aw-video-grid {
		grid-template-columns: 1fr;
	}
}

.aw-vid-card {
	background: var(--bg);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	transition: box-shadow .2s,transform .2s;
}

.aw-vid-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,.08);
	transform: translateY(-3px);
}

.aw-vid-thumb {
	position: relative;
	cursor: pointer;
}

.aw-vid-placeholder {
	background: linear-gradient(135deg,#1a2a4a,#0d1b2e);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	aspect-ratio: 16/9;
	width: 100%;
}

.aw-vid-play {
	width: 52px;
	height: 52px;
	background: rgba(42,99,214,.75);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	transition: all .2s;
}

.aw-vid-card:hover .aw-vid-play {
	background: var(--flow);
	transform: scale(1.06);
}

.aw-vid-title-overlay {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.7);
	text-align: center;
	padding: 0 14px;
}

.aw-vid-duration {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,.6);
	color: rgba(255,255,255,.8);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
}

.aw-vid-iddsi-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(42,99,214,.85);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 5px;
	letter-spacing: .04em;
}

.aw-vid-
.aw-vid-module-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	color: var(--flow);
	margin-bottom: 6px;
}

.aw-vid-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--flow);
}

.aw-vid-body h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
	line-height: 1.35;
}

.aw-vid-body p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

.aw-upload-hint {
	padding: 0 20px 72px;
	background: var(--white);
}

.aw-uh-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-uh-box {
	background: var(--bg);
	border-radius: 18px;
	padding: 36px;
	border: 2px dashed var(--slate-200);
	text-align: center;
}

.aw-uh-box h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 8px;
}

.aw-uh-box>p {
	font-size: 14px;
	color: var(--slate-500);
	margin-bottom: 18px;
	font-weight: 400;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.aw-uh-steps {
	display: flex;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.aw-uh-step {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
}

.aw-uh-step-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}
/* anwendung */



/* home */


/* ── ANNOUNCE ── */
.announce {
	background: var(--black);
	color: rgba(255,255,255,.65);
	text-align: center;
	padding: 10px 16px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.sep {
	margin: 0 12px;
	opacity: .25;
}

/* ── NAV ── */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 13px!important;
	transition: opacity .2s!important;
}

.nav-cta:hover {
	opacity: .88;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	transition: all .2s!important;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* ── BUTTONS ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
	letter-spacing: .01em;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	background: var(--flow-dark);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--black);
	border: 2px solid var(--slate-300);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-dark {
	background: var(--black);
	color: #fff;
}

.btn-dark:hover {
	opacity: .88;
}

.btn-ghost-white {
	background: transparent;
	color: rgba(255,255,255,.8);
	border: 1.5px solid rgba(255,255,255,.25);
}

.btn-ghost-white:hover {
	color: #fff;
	border-color: rgba(255,255,255,.6);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ══════════════════════════════
   SECTION 1 — HERO
══════════════════════════════ */
.hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 110px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(transparent,var(--white));
}

.hero-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

@media(max-width:768px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(38px,5.5vw,60px);
	line-height: 1.08;
	color: var(--black);
	margin-bottom: 18px;
	letter-spacing: -.01em;
}

.hero-sub {
	font-size: 18px;
	color: var(--slate-600);
	line-height: 1.65;
	margin-bottom: 12px;
	font-weight: 400;
}

.hero-core-claim {
	font-size: 22px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 32px;
	letter-spacing: -.01em;
}

.hero-core-claim em {
	font-style: normal;
	color: var(--flow);
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

@media(max-width:768px) {
	.hero-btns {
		justify-content: center;
	}
}

.hero-trust {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

@media(max-width:768px) {
	.hero-trust {
		justify-content: center;
	}
}

.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--slate-500);
}

.hero-trust-item i {
	color: var(--green);
	font-size: 11px;
}

/* Hero product visual */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-product-card {
	background: var(--white);
	border-radius: 24px;
	padding: 40px 32px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.1);
	width: 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(42,99,214,.08);
}

.hero-product-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.hpc-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 99px;
	letter-spacing: .06em;
}

.hpc-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
	margin-bottom: 16px;
}

.hpc-name {
	font-size: 40px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .04em;
	margin-top: 12px;
	line-height: 1;
}

.hpc-sub {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
	margin-bottom: 12px;
}

.hpc-stripe {
	width: 50%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
	margin-bottom: 18px;
}

.hpc-claim {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-align: center;
	line-height: 1.55;
	margin-bottom: 20px;
}

.hpc-price {
	font-size: 28px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 4px;
}

.hpc-price-sub {
	font-size: 12px;
	color: var(--green);
	font-weight: 700;
	margin-bottom: 16px;
}

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
	background: var(--black);
	padding: 18px 32px;
}

.trust-bar-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 36px;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.45);
}

.trust-item strong {
	color: rgba(255,255,255,.75);
}

@media(max-width:960px) {
	.trust-bar-inner {
		gap: 20px;
	}
}

/* ══════════════════════════════
   SECTION 3 — LÖSUNG
══════════════════════════════ */
.solution {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.solution-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.solution-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.solution h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,42px);
	color: var(--black);
	margin-bottom: 20px;
	line-height: 1.15;
}

.solution p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.solution-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.solution-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: var(--black);
	font-weight: 600;
}

.solution-bullets li span {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px;
}

.solution-visual {
	background: var(--white);
	border-radius: 20px;
	padding: 36px;
	box-shadow: 0 8px 40px rgba(0,0,0,.07);
}

.sol-vis-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--slate-400);
	margin-bottom: 20px;
	text-align: center;
}

.sol-comparison {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 16px;
}

.sol-col {
	text-align: center;
}

.sol-col-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--slate-500);
	margin-top: 12px;
}

.sol-col-sub {
	font-size: 11px;
	color: var(--slate-400);
}

.sol-bad {
	width: 56px;
	height: 100px;
	border: 2px dashed var(--slate-200);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sol-bad span {
	writing-mode: vertical-rl;
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 600;
}

.sol-bad-x {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: #ef4444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.sol-good {
	width: 100px;
	height: 72px;
	background: var(--bg-warm);
	border: 2px solid var(--flow);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
}

.sol-good span {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
}

.sol-good-stripe {
	width: 50%;
	height: 4px;
	background: var(--flow);
	border-radius: 2px;
}

.sol-good-check {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

/* ══════════════════════════════
   SECTION 4 — ANWENDUNG (3 Schritte)
══════════════════════════════ */
.steps {
	padding: 50px 25px;
	background: var(--white);
}

.steps-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.steps h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3.5vw,40px);
	color: var(--black);
	margin-bottom: 10px;
}

.steps-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 52px;
	font-weight: 400;
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr 40px 1fr 40px 1fr;
	gap: 0;
	align-items: start;
	max-width: 900px;
	margin: 0 auto;
}

@media(max-width:768px) {
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.step-card {
	text-align: center;
	padding: 36px 24px;
	background: var(--bg);
	border-radius: 20px;
}

.step-num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.step-icon {
	font-size: 32px;
	margin-bottom: 14px;
}

.step-card h4 {
	font-size: 17px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 8px;
}

.step-card p {
	font-size: 13px;
	color: var(--slate-500);
	line-height: 1.55;
	font-weight: 400;
}

.step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--slate-300);
	font-size: 20px;
	padding-top: 52px;
}

@media(max-width:768px) {
	.step-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 5 — PRODUKT + ANGEBOT
══════════════════════════════ */
.product {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.product-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 64px;
	align-items: start;
}

@media(max-width:768px) {
	.product-inner {
		grid-template-columns: 1fr;
	}
}

.product-can-wrap {
	display: flex;
	justify-content: center;
}

.product-can {
	background: var(--white);
	border-radius: 24px;
	width: 220px;
	padding: 36px 24px 28px;
	box-shadow: 0 16px 56px rgba(0,0,0,.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.product-can::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--flow);
}

.can-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--slate-400);
}

.can-name {
	font-size: 32px;
	font-weight: 800;
	color: var(--flow);
	letter-spacing: .05em;
}

.can-variant {
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-400);
}

.can-stripe {
	width: 55%;
	height: 4px;
	border-radius: 2px;
	background: var(--flow);
}

.product-info {
}

.product-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--flow-light);
	color: var(--flow);
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 99px;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.product-info h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3vw,34px);
	color: var(--black);
	margin-bottom: 8px;
	line-height: 1.15;
}

.product-tagline {
	font-size: 16px;
	color: var(--slate-600);
	margin-bottom: 24px;
	font-weight: 400;
}

.usp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.usp-list li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.5;
}

.usp-list li i {
	color: var(--green);
	font-size: 13px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* Angebot / Pricing */
.pricing-block {
	background: var(--white);
	border-radius: 18px;
	padding: 28px;
	border: 1px solid var(--slate-100);
	margin-bottom: 20px;
}

.pricing-block h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 18px;
}

.price-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.price-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: 12px;
	border: 2px solid var(--slate-100);
	cursor: pointer;
	transition: all .2s;
	gap: 12px;
}

.price-option.featured {
	border-color: var(--flow);
	background: var(--flow-light);
}

.price-option-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-option-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--slate-300);
	flex-shrink: 0;
}

.price-option.featured .price-option-dot {
	background: var(--flow);
	border-color: var(--flow);
}

.price-option-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.price-option-desc {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 1px;
	font-weight: 400;
}

.price-option-right {
	text-align: right;
	flex-shrink: 0;
}

.price-amount {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
}

.price-save {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
}

.price-option-badge {
	background: var(--flow);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	letter-spacing: .06em;
	white-space: nowrap;
}

.guarantee {
	font-size: 11px;
	color: var(--slate-400);
	text-align: center;
	margin-top: 12px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 6 — BEFORE / AFTER
══════════════════════════════ */
.before-after {
	padding: 50px 25px;
	background: var(--white);
}

.ba-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.ba-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.ba-inner .ba-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 48px;
	font-weight: 400;
}

.ba-grid {
	display: grid;
	grid-template-columns: 1fr 48px 1fr;
	gap: 0;
	align-items: center;
}

@media(max-width:600px) {
	.ba-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.ba-col {
	border-radius: 18px;
	padding: 32px 28px;
}

.ba-before {
	background: #fff5f5;
	border: 1.5px solid #f5cccc;
}

.ba-after {
	background: #f0faf4;
	border: 1.5px solid #b8e0c8;
}

.ba-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 18px;
}

.ba-before .ba-label {
	color: var(--aufbau);
}

.ba-after .ba-label {
	color: var(--green);
}

.ba-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.ba-col li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--black);
}

.ba-col li .bi {
	font-size: 16px;
	flex-shrink: 0;
}

.ba-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--slate-200);
}

@media(max-width:600px) {
	.ba-arrow {
		display: none;
	}
}

/* ══════════════════════════════
   SECTION 7 — HOYVO COMPANION (KEY)
══════════════════════════════ */
.companion {
	padding: 100px 32px;
	background: var(--companion);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.companion::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -5%;
	width: 50%;
	height: 160%;
	background: radial-gradient(ellipse,rgba(42,99,214,.12),transparent 65%);
	pointer-events: none;
}

.companion::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 40%;
	height: 120%;
	background: radial-gradient(ellipse,rgba(42,99,214,.07),transparent 65%);
	pointer-events: none;
}

.companion-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
	position: relative;
}

@media(max-width:768px) {
	.companion-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.companion-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(42,99,214,.9);
	background: rgba(42,99,214,.12);
	border: 1px solid rgba(42,99,214,.2);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.companion h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4vw,48px);
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.12;
}

.companion h2 em {
	font-style: normal;
	color: rgba(42,99,214,.9);
}

.companion-intro {
	font-size: 17px;
	color: rgba(255,255,255,.6);
	line-height: 1.7;
	margin-bottom: 28px;
	font-weight: 400;
}

.companion-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.companion-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,.8);
	font-weight: 500;
	line-height: 1.5;
}

.companion-features li i {
	color: rgba(42,99,214,.9);
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 14px;
}

.companion-disclaimer {
	font-size: 12px;
	color: rgba(255,255,255,.35);
	margin-top: 10px;
	font-weight: 400;
}

/* Companion App Mockup */
.companion-mockup {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 24px;
	padding: 32px 28px;
	backdrop-filter: blur(10px);
}

.cm-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.cm-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--flow);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cm-icon-inner {
	font-size: 20px;
	color: #fff;
}

.cm-title {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.cm-sub {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
}

.cm-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.cm-feat {
	background: rgba(255,255,255,.06);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid rgba(255,255,255,.04);
}

.cm-feat-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(42,99,214,.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.cm-feat-text {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,.8);
}

.cm-feat-sub {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	font-weight: 400;
}

.cm-status {
	background: rgba(42,99,214,.15);
	border: 1px solid rgba(42,99,214,.25);
	border-radius: 10px;
	padding: 14px 18px;
	text-align: center;
}

.cm-status p {
	font-size: 12px;
	color: rgba(255,255,255,.5);
	margin-bottom: 4px;
	font-weight: 400;
}

.cm-status strong {
	font-size: 14px;
	color: rgba(255,255,255,.9);
	font-weight: 700;
}

/* Companion Warteliste Form */
.companion-form {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 24px;
	margin-top: 24px;
}

.companion-form p {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	margin-bottom: 14px;
	font-weight: 400;
}

.companion-form-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.companion-form input {
	flex: 1;
	min-width: 200px;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat',sans-serif;
	outline: none;
	transition: border-color .2s;
}

.companion-form input::placeholder {
	color: rgba(255,255,255,.3);
}

.companion-form input:focus {
	border-color: rgba(42,99,214,.6);
}

.companion-form button {
	padding: 12px 20px;
	border-radius: 10px;
	border: none;
	background: var(--flow);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	white-space: nowrap;
	transition: opacity .2s;
}

.companion-form button:hover {
	opacity: .88;
}

.companion-form-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-align: center;
	margin-top: 10px;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 9 — GRÜNDER
══════════════════════════════ */
.founder {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.founder-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 48px;
	align-items: start;
}

@media(max-width:768px) {
	.founder-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.founder-photo {
	width: 180px;
	height: 220px;
	background: linear-gradient(135deg,var(--slate-200),var(--slate-100));
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 2px dashed var(--slate-300);
	margin: 0 auto;
}

.founder-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin-top: 14px;
}

.founder-title {
	font-size: 13px;
	color: var(--slate-500);
	font-weight: 400;
}

.founder-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--flow);
	margin-bottom: 14px;
}

.founder-quote {
	font-family: 'DM Serif Display',serif;
	font-size: 19px;
	color: var(--black);
	line-height: 1.6;
	margin-bottom: 20px;
	padding-left: 22px;
	border-left: 3px solid var(--flow);
}

.founder-facts {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.founder-fact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
}

.founder-fact i {
	color: var(--flow);
}

/* ══════════════════════════════
   SECTION 10 — QUALITÄT (KURZ)
══════════════════════════════ */
.quality {
	padding: 50px 25px;
	background: var(--white);
}

.quality-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.quality-card {
	background: var(--bg);
	border-radius: 20px;
	padding: 48px;
}

.quality-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(24px,3vw,34px);
	color: var(--black);
	margin: 10px 0 12px;
}

.quality-sub {
	font-size: 15px;
	color: var(--slate-500);
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 36px;
	font-weight: 400;
}

.seals {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.seals {
		grid-template-columns: 1fr 1fr;
	}
}

.seal {
	text-align: center;
}

.seal-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 12px;
	border: 1px solid var(--slate-200);
}

.seal h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
}

.seal p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

/* ══════════════════════════════
   SECTION 11 — FAQ
══════════════════════════════ */
.faq {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.faq-inner {
	max-width: 720px;
	margin: 0 auto;
}

.faq-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,36px);
	color: var(--black);
	margin-bottom: 36px;
	text-align: center;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--white);
	border-radius: 14px;
	border: 1px solid var(--slate-100);
	overflow: hidden;
}

.faq-q {
	padding: 18px 22px;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	user-select: none;
}

.faq-q::after {
	content: '+';
	font-size: 20px;
	font-weight: 400;
	color: var(--flow);
	flex-shrink: 0;
}

.faq-item.open .faq-q::after {
	content: '−';
}

.faq-a {
	padding: 0 22px;
	font-size: 13px;
	color: var(--slate-600);
	line-height: 1.65;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s,padding .3s;
	font-weight: 400;
}

.faq-item.open .faq-a {
	padding: 0 22px 18px;
	max-height: 200px;
}

/* ══════════════════════════════
   SECTION 12 — SYSTEM (MOAT, ganz unten)
══════════════════════════════ */
.system {
	padding: 50px 25px;
	background: var(--white);
}

.system-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.system-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 12px;
}

.system-sub {
	font-size: 16px;
	color: var(--slate-500);
	max-width: 560px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.system-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}

@media(max-width:768px) {
	.system-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.sys-card {
	border-radius: 16px;
	padding: 28px 20px;
	background: var(--bg);
	border: 1px solid var(--slate-100);
	position: relative;
	overflow: hidden;
	text-align: left;
	transition: box-shadow .2s;
}

.sys-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.sys-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.sys-name {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .04em;
	margin: 12px 0 4px;
}

.sys-fn {
	font-size: 10px;
	font-weight: 700;
	color: var(--slate-400);
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 9px;
}

.sys-text {
	font-size: 12px;
	color: var(--slate-600);
	line-height: 1.55;
	font-weight: 400;
}

.sys-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
	margin-top: 12px;
}

.live {
	background: var(--green-light);
	color: var(--green);
}

.soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.final-cta {
	background: var(--black);
	padding: 50px 25px;
	text-align: center;
	color: #fff;
}

.final-cta h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(30px,4.5vw,48px);
	margin-bottom: 12px;
	letter-spacing: -.01em;
}

.final-cta p {
	font-size: 17px;
	color: rgba(255,255,255,.45);
	margin-bottom: 32px;
	font-weight: 400;
}

.btn-white {
	background: #fff;
	color: var(--black);
}

.btn-white:hover {
	opacity: .92;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 56px 32px 28px;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.footer-brand {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.6;
	margin-bottom: 14px;
	font-weight: 400;
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.45);
	margin-bottom: 12px;
}

.footer a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 3px 0;
	transition: color .2s;
	font-weight: 400;
}

.footer a:hover {
	color: #fff;
}

.footer-bottom {
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-bottom p {
	font-size: 11px;
}

.footer-trust {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-trust span {
	font-size: 11px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.footer-payments {
	display: flex;
	gap: 8px;
	font-size: 22px;
	color: rgba(255,255,255,.2);
}

.b2b-footer {
	font-size: 11px!important;
	color: rgba(255,255,255,.25)!important;
	border: 1px solid rgba(255,255,255,.08);
	padding: 5px 12px;
	border-radius: 5px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
	margin-top: 12px;
	transition: all .2s!important;
}

.b2b-footer:hover {
	border-color: rgba(255,255,255,.25)!important;
	color: rgba(255,255,255,.6)!important;
}

/* Drop icon helper */
.flow-drop {
	display: inline-block;
	vertical-align: middle;
}

/* Interaktiver Vergleichs-Slider */
.slider-section {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.slider-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.slider-inner h2 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(26px,3.5vw,38px);
	color: var(--black);
	margin-bottom: 10px;
}

.slider-sub {
	font-size: 16px;
	color: var(--slate-500);
	margin-bottom: 40px;
	font-weight: 400;
}

.comparison-slider {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	user-select: none;
	height: 280px;
	cursor: ew-resize;
	box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.cs-before,.cs-after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cs-before {
	background: linear-gradient(135deg,#e8e0d8,#d5cdc4);
}

.cs-after {
	background: linear-gradient(135deg,var(--flow-light),rgba(42,99,214,.04));
}

.cs-before-content,.cs-after-content {
	text-align: center;
	padding: 28px;
}

.cs-before-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--slate-600);
	margin-bottom: 10px;
}

.cs-after-content h4 {
	font-size: 18px;
	font-weight: 800;
	color: var(--flow);
	margin-bottom: 10px;
}

.cs-glass {
	width: 80px;
	height: 120px;
	border-radius: 12px 12px 8px 8px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	position: relative;
}

.cs-glass-bad {
	background: rgba(180,160,130,.45);
	border: 2px solid rgba(180,160,130,.6);
}

.cs-glass-good {
	background: rgba(180,220,255,.25);
	border: 2px solid rgba(42,99,214,.25);
}

.cs-label {
	font-size: 13px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
}

.cs-label-bad {
	background: rgba(192,54,44,.1);
	color: var(--aufbau);
}

.cs-label-good {
	background: var(--flow-light);
	color: var(--flow);
}

.cs-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #fff;
	box-shadow: 0 0 12px rgba(0,0,0,.2);
	z-index: 10;
	cursor: ew-resize;
}

.cs-handle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	left: -22px;
	font-size: 16px;
	color: var(--slate-500);
}

.cs-note {
	font-size: 12px;
	color: var(--slate-400);
	margin-top: 18px;
	font-weight: 400;
}

/* Testimonials mit Avatar + Kategorie */
.test-grid-new {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 36px;
}

@media(max-width:768px) {
	.test-grid-new {
		grid-template-columns: 1fr;
	}
}

.test-card-new {
	background: var(--white);
	border-radius: 18px;
	padding: 28px 24px;
	border: 1px solid var(--slate-100);
	position: relative;
}

.test-persona-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--slate-100);
}

.test-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	font-weight: 800;
	color: #fff;
}

.av-user {
	background: linear-gradient(135deg,var(--flow),#1a4fa0);
}

.av-family {
	background: linear-gradient(135deg,var(--green),#14633a);
}

.av-pro {
	background: linear-gradient(135deg,var(--aufbau),#8a1a14);
}

.test-persona-info {
}

.test-persona-name {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 2px;
}

.test-persona-role {
	font-size: 11px;
	font-weight: 600;
	color: var(--slate-400);
}

.test-persona-cat {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-left: auto;
	flex-shrink: 0;
}

.cat-user {
	background: var(--flow-light);
	color: var(--flow);
}

.cat-family {
	background: var(--green-light);
	color: var(--green);
}

.cat-pro {
	background: #fef2f2;
	color: var(--aufbau);
}

.test-stars-new {
	color: #f59e0b;
	font-size: 13px;
	margin-bottom: 12px;
}

.test-quote {
	font-size: 15px;
	color: var(--black);
	line-height: 1.65;
	font-weight: 400;
}

.test-quote strong {
	font-weight: 700;
}

/* Companion als Gratis-Beigabe */
.companion-free-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--green-light);
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 99px;
	letter-spacing: .04em;
	margin-bottom: 8px;
}

/* Trust-Siegel direkt am Kauf-Button */
.trust-seals {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 14px 0;
	border-top: 1px solid var(--slate-100);
	border-bottom: 1px solid var(--slate-100);
	margin: 14px 0;
}

.ts-seal {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	color: var(--slate-600);
}

.ts-seal i {
	font-size: 14px;
}

/* Goodies als physische Produkte visuell */
.goodies-visual {
	background: var(--flow-light);
	border-radius: 16px;
	padding: 22px 24px;
	border: 1px solid rgba(42,99,214,.1);
	margin-bottom: 18px;
}

.goodies-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--flow-dark);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.goodies-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.goodie {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 10px;
	padding: 10px 12px;
	border: 1px solid rgba(42,99,214,.08);
}

.goodie-icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--flow-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.goodie-text {
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.3;
}

.goodie-sub {
	font-size: 10px;
	color: var(--slate-400);
	font-weight: 400;
}


/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}


/* system */


.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'Montserrat',sans-serif;
}

.btn-primary {
	background: var(--flow);
	color: #fff;
}

.btn-primary:hover {
	opacity: .9;
	transform: translateY(-1px);
}

/* NAV */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 66px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-brand {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
	justify-self: start;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
}

.nav-links a:hover,.nav-links a.active {
	color: var(--black);
}

.nav-links a.active {
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700!important;
}

.nav-b2b {
	font-size: 12px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 7px 13px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}
}

/* PAGE HERO */
.page-hero {
	background: linear-gradient(168deg,var(--bg-warm) 0%,var(--bg-warm-dark) 100%);
	padding: 50px 25px 88px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(transparent,var(--white));
}

.page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 14px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.page-hero h1 {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(40px,6vw,68px);
	line-height: 1.1;
	color: #1A1A1A;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.page-hero p {
	font-size: 18px;
	color: var(--slate-600);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
}

/* INTRO */
.intro {
	padding: 50px 25px;
	background: var(--white);
}

.intro-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.intro p {
	font-size: 16px;
	color: var(--slate-600);
	line-height: 1.75;
	margin-bottom: 16px;
	font-weight: 400;
}

/* SYSTEM EBENEN */
.ebenen {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.ebenen-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.ebenen-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	margin-top: 48px;
}

@media(max-width:768px) {
	.ebenen-grid {
		grid-template-columns: 1fr;
	}
}

.ebene-card {
	background: var(--white);
	border-radius: 20px;
	padding: 36px 28px;
	border: 1px solid var(--slate-100);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ebene-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.ebene-card.e1::before {
	background: var(--flow);
}

.ebene-card.e2::before {
	background: var(--aufbau);
}

.ebene-card.e3::before {
	background: var(--navy);
}

.ebene-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
}

.ebene-card.e1 .ebene-num {
	background: var(--flow);
}

.ebene-card.e2 .ebene-num {
	background: var(--aufbau);
}

.ebene-card.e3 .ebene-num {
	background: var(--navy);
}

.ebene-card h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 10px;
}

.ebene-card p {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.6;
	font-weight: 400;
}

.ebene-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 99px;
	margin-bottom: 14px;
	letter-spacing: .06em;
}

.e1 .ebene-tag {
	background: var(--flow-light);
	color: var(--flow);
}

.e2 .ebene-tag {
	background: #fef2f2;
	color: var(--aufbau);
}

.e3 .ebene-tag {
	background: var(--slate-100);
	color: var(--navy);
}

/* PRODUKTE */
.produkte {
	padding: 50px 25px;
	background: var(--white);
}

.produkte-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.sh-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 12px;
}

.sh p {
	font-size: 16px;
	color: var(--slate-500);
	font-weight: 400;
	max-width: 560px;
	margin: 0 auto;
}

.pr-flow {
	background: #f5f8ff;
	border: 1px solid #d6e3f8;
}

.pr-flow::before {
	background: var(--flow);
}

.pr-aufbau {
	background: #fff5f5;
	border: 1px solid #f5cccc;
	opacity: .7;
}

.pr-aufbau::before {
	background: var(--aufbau);
}

.pr-energie {
	background: #fff8f2;
	border: 1px solid #f8d9b8;
	opacity: .7;
}

.pr-energie::before {
	background: var(--energie);
}

.pr-mahlzeit {
	background: #faf6f2;
	border: 1px solid #e8d5c4;
	opacity: .7;
}

.pr-mahlzeit::before {
	background: var(--mahlzeit);
}

.pr-icon-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.pr-dot {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pr-icon-label {
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.pr-content h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 4px;
}

.pr-content .pr-fn {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 12px;
}

.pr-content p {
	font-size: 14px;
	color: var(--slate-600);
	line-height: 1.65;
	margin-bottom: 14px;
	font-weight: 400;
}

.pr-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pr-fact {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-700);
}

.pr-fact i {
	font-size: 11px;
	color: var(--green);
}

.pr-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 6px;
	margin-top: 12px;
}

.badge-live {
	background: var(--green-light);
	color: var(--green);
}

.badge-soon {
	background: var(--slate-100);
	color: var(--slate-400);
}

/* FARBE = FUNKTION */
.farbe {
	padding: 50px 25px;
	background: var(--navy);
	color: #fff;
}

.farbe-inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.farbe-inner p {
	font-size: 16px;
	color: rgba(255,255,255,.5);
	max-width: 540px;
	margin: 0 auto 48px;
	font-weight: 400;
}

.farbe-dots {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.farbe-dot {
	text-align: center;
}

.fd-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.fd-name {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .06em;
	color: #fff;
	margin-bottom: 4px;
}

.fd-fn {
	font-size: 11px;
	color: rgba(255,255,255,.4);
	font-weight: 500;
}

/* COMPANION TEASER */
.companion-teaser {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.ct-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media(max-width:768px) {
	.ct-inner {
		grid-template-columns: 1fr;
	}
}

.ct-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 14px;
}

.ct-inner p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 24px;
	font-weight: 400;
}

.ct-box {
	background: var(--navy);
	border-radius: 20px;
	padding: 36px;
	color: #fff;
}

.ct-box h3 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 6px;
}

.ct-box p {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	margin-bottom: 20px;
	font-weight: 400;
}

.ct-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.ct-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: rgba(255,255,255,.75);
	font-weight: 500;
}

.ct-features li i {
	color: rgba(42,99,214,.9);
	flex-shrink: 0;
	margin-top: 2px;
}

.ct-form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.ct-form input {
	flex: 1;
	min-width: 180px;
	padding: 11px 16px;
	border-radius: 9px;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 13px;
	font-family: 'Montserrat',sans-serif;
	outline: none;
}

.ct-form input::placeholder {
	color: rgba(255,255,255,.3);
}

.ct-form button {
	padding: 11px 18px;
	border-radius: 9px;
	border: none;
	background: var(--flow);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Montserrat',sans-serif;
	white-space: nowrap;
}

.ct-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	margin-top: 10px;
	font-weight: 400;
}

/* FOOTER (minimal) */
.footer-min {
	background: #0a0a0a;
	padding: 28px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-min p {
	font-size: 11px;
	color: rgba(255,255,255,.3);
}

.footer-min a {
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
}

.footer-min a:hover {
	color: #fff;
}

/* ══ NAV & MOBILE NAV ══ */
.nav {
	background: var(--bg-warm);
	border-bottom: 1px solid var(--bg-warm-dark);
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Montserrat',sans-serif;
}

.nav-brand {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--black);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: center;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--black);
}

.nav-links a.active {
	color: var(--flow);
	font-weight: 800;
}

.nav-cta {
	background: var(--flow)!important;
	color: #fff!important;
	padding: 9px 16px;
	border-radius: 8px;
	font-weight: 700!important;
	font-size: 12px!important;
}

.nav-cta:hover {
	opacity: .88!important;
	color: #fff!important;
}

.nav-b2b {
	font-size: 11px!important;
	color: var(--slate-400)!important;
	border: 1px solid var(--slate-200);
	padding: 6px 11px;
	border-radius: 7px;
	display: inline-flex!important;
	align-items: center;
	gap: 5px;
}

.nav-mobile-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	color: var(--black);
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	justify-self: end;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--bg-warm);
	border-bottom: 2px solid var(--bg-warm-dark);
	z-index: 199;
	padding: 14px 24px 20px;
	gap: 0;
}

.nav-mobile-cta {
	background: var(--flow)!important;
	color: #fff!important;
	border-radius: 10px!important;
	padding: 13px 20px!important;
	text-align: center;
	margin-top: 10px;
	border-bottom: none!important;
}

.nav-mobile-b2b {
	color: var(--slate-400)!important;
	font-size: 13px!important;
	border-bottom: none!important;
}

.nav-mobile.open {
	display: flex;
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-mobile-btn {
		display: block;
	}
}
/* ══ ANWENDUNG SEKTIONEN ══ */
.aw-divider {
	padding: 56px 32px 0;
	background: var(--white);
}

.aw-divider-inner {
	max-width: 1120px;
	margin: 0 auto;
	border-top: 2px solid var(--bg-warm-dark);
	padding-top: 56px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.aw-divider-line {
	flex: 1;
	height: 1px;
	background: var(--bg-warm-dark);
}

.aw-divider-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	background: var(--flow-light);
	padding: 6px 16px;
	border-radius: 99px;
	white-space: nowrap;
	border: 1px solid rgba(42,99,214,.1);
}

.aw-featured {
	padding: 50px 25px;
	background: var(--white);
}

.aw-fv-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: center;
}

@media(max-width:768px) {
	.aw-fv-inner {
		grid-template-columns: 1fr;
	}
}

.aw-video-placeholder {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: linear-gradient(135deg,#1a2a4a,#0d1b2e);
	aspect-ratio: 16/9;
	border-radius: 20px;
	cursor: pointer;
	position: relative;
}

.aw-video-placeholder-icon {
	width: 72px;
	height: 72px;
	background: rgba(42,99,214,.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	transition: transform .2s,background .2s;
}

.aw-video-placeholder:hover .aw-video-placeholder-icon {
	transform: scale(1.08);
	background: var(--flow);
}

.aw-video-placeholder-title {
	font-size: 15px;
	font-weight: 700;
	color: rgba(255,255,255,.85);
	text-align: center;
	padding: 0 20px;
}

.aw-video-placeholder-sub {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	font-weight: 400;
}

.aw-video-placeholder-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--flow);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: .06em;
}

.aw-video-placeholder-duration {
	position: absolute;
	bottom: 14px;
	right: 16px;
	background: rgba(0,0,0,.6);
	color: rgba(255,255,255,.8);
	font-size: 12px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
}

.aw-fv-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--flow);
	margin-bottom: 12px;
}

.aw-fv-info p {
	font-size: 15px;
	color: var(--slate-600);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 400;
}

.aw-fv-steps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.aw-fv-steps li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.4;
}

.aw-fv-step-num {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.aw-dosier {
	padding: 50px 25px;
	background: var(--bg-warm);
}

.aw-dosier-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-dosier-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.aw-dosier-table thead tr {
	background: #0f172a;
	color: #fff;
}

.aw-dosier-table th {
	padding: 14px 20px;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
	letter-spacing: .04em;
}

.aw-dosier-table td {
	padding: 14px 20px;
	font-size: 14px;
	color: var(--slate-700);
	font-weight: 500;
	border-bottom: 1px solid var(--slate-100);
}

.aw-dosier-table tr:last-child td {
	border-bottom: none;
}

.aw-dosier-table tr:nth-child(even) td {
	background: var(--bg);
}

.aw-iddsi-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 800;
}

.aw-iddsi-circle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
}

.aw-dosier-note {
	margin-top: 16px;
	font-size: 12px;
	color: var(--slate-400);
	font-weight: 400;
	line-height: 1.6;
}

.aw-videos {
	padding: 50px 25px;
	background: var(--white);
}

.aw-videos-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-video-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-top: 12px;
}

@media(max-width:768px) {
	.aw-video-grid {
		grid-template-columns: 1fr;
	}
}

.aw-vid-card {
	background: var(--bg);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	transition: box-shadow .2s,transform .2s;
}

.aw-vid-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,.08);
	transform: translateY(-3px);
}

.aw-vid-thumb {
	position: relative;
	cursor: pointer;
}

.aw-vid-placeholder {
	background: linear-gradient(135deg,#1a2a4a,#0d1b2e);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	aspect-ratio: 16/9;
	width: 100%;
}

.aw-vid-play {
	width: 52px;
	height: 52px;
	background: rgba(42,99,214,.75);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	transition: all .2s;
}

.aw-vid-card:hover .aw-vid-play {
	background: var(--flow);
	transform: scale(1.06);
}

.aw-vid-title-overlay {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.7);
	text-align: center;
	padding: 0 14px;
}

.aw-vid-duration {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,.6);
	color: rgba(255,255,255,.8);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
}

.aw-vid-iddsi-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(42,99,214,.85);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 5px;
	letter-spacing: .04em;
}

.aw-vid-
.aw-vid-module-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	color: var(--flow);
	margin-bottom: 6px;
}

.aw-vid-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--flow);
}

.aw-vid-body h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 4px;
	line-height: 1.35;
}

.aw-vid-body p {
	font-size: 12px;
	color: var(--slate-500);
	line-height: 1.5;
	font-weight: 400;
}

.aw-upload-hint {
	padding: 0 20px 72px;
	background: var(--white);
}

.aw-uh-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.aw-uh-box {
	background: var(--bg);
	border-radius: 18px;
	padding: 36px;
	border: 2px dashed var(--slate-200);
	text-align: center;
}

.aw-uh-box h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 8px;
}

.aw-uh-box>p {
	font-size: 14px;
	color: var(--slate-500);
	margin-bottom: 18px;
	font-weight: 400;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.aw-uh-steps {
	display: flex;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.aw-uh-step {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--slate-600);
}

.aw-uh-step-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--flow);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ══ FOOTER ══ */
.footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.35);
	padding: 64px 32px 0;
}

.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

@media(max-width:900px) {
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width:600px) {
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 10px;
	font-family: 'Montserrat',sans-serif;
}

.footer-desc {
	font-size: 12px;
	line-height: 1.65;
	margin-bottom: 10px;
	font-weight: 400;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255,255,255,.22);
	margin-bottom: 14px;
	font-weight: 400;
}

.footer-b2b-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.1);
	padding: 5px 12px;
	border-radius: 6px;
	transition: all .2s;
}

.footer-b2b-link:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.footer h5 {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.4);
	margin-bottom: 14px;
}

.footer-inner a {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	padding: 4px 0;
	font-weight: 400;
	transition: color .2s;
}

.footer-inner a:hover {
	color: #fff;
}

.footer-soon {
	display: flex;
	align-items: center;
	gap: 6px!important;
}

.footer-soon-tag {
	font-size: 9px;
	font-weight: 700;
	background: rgba(255,255,255,.06);
	padding: 1px 6px;
	border-radius: 4px;
	color: rgba(255,255,255,.2);
}

.footer-seals {
	max-width: 1120px;
	margin: 40px auto 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-seal {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.3);
}

.footer-seal i {
	color: rgba(255,255,255,.18);
}

.footer-bottom {
	max-width: 1120px;
	margin: 16px auto 0;
	padding: 18px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
	font-size: 11px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	font-size: 22px;
	color: rgba(255,255,255,.18);
}

.announce {
	background: var(--black);
	color: rgba(255,255,255,.6);
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}

.announce strong {
	color: #fff;
}

.announce-sep {
	margin: 0 10px;
	opacity: .2;
}
/* anwendung */
/* Responsive Dosiertabelle */
@media (max-width: 768px) {
  .aw-dosier-table, 
  .aw-dosier-table thead, 
  .aw-dosier-table tbody, 
  .aw-dosier-table th, 
  .aw-dosier-table td, 
  .aw-dosier-table tr {
    display: block;
    width: 100%;
	background-color: transparent;
	box-shadow: none !important;
  }
  
  .aw-dosier-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .aw-dosier-table tr {
    margin-bottom: 24px;
    border: 1px solid var(--bg-warm-dark);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    background: var(--white);
    padding: 8px 0;
    overflow: hidden;
  }
  
  .aw-dosier-table td {
    border: none;
    border-bottom: 1px solid var(--slate-100);
    position: relative;
    padding: 16px 20px 16px 50% !important;
    text-align: right !important;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .aw-dosier-table td:last-child {
    border-bottom: none;
  }
  
  .aw-dosier-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 20px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
  }

  .aw-iddsi-badge {
    justify-content: flex-end;
    width: 100%;
  }
  
  .aw-dosier-table tr:nth-child(even) td {
    background: transparent;
  }
}


.newsletter-form-standard{
	display: flex;
    justify-content: center;
    gap: 10px;
	flex-direction: column;
}
/* 
@media(max-width:960px){
	.newsletter-form-standard{
		flex-direction: column;
	}
} */

.shopify-challenge__container {
    margin: 25px auto !important;
}