/* ==========================================================================
   TrendKAI Startseite — Variante „Claude“
   Ein Farbsystem, eine Schrift, klare Hierarchie:
   – Orange #f59c00 ausschließlich für CTAs und kleine Akzente
   – Teal als ruhiger Zweitakzent (Eyebrows, Häkchen, Diagramme)
   – Warme Papiertöne statt Lila-Verläufe
   – Ein dunkler Anker: Kontakt-Sektion als kräftiger Abschluss
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	--bg: #f7f5f0;
	--bg-raised: #ffffff;
	--ink: #1b1712;
	--ink-soft: #3f3a31;
	--ink-muted: #5c564a;
	--line: rgba(27, 23, 18, 0.1);
	--line-strong: rgba(27, 23, 18, 0.18);

	--primary: #f59c00;
	--primary-strong: #e08d00;
	--primary-ink: #221703;
	--primary-soft: rgba(245, 156, 0, 0.14);

	--accent: #4fb6b2;
	--accent-text: #26716d;
	--accent-soft: rgba(79, 182, 178, 0.14);

	--band-bg: #1b1712;
	--band-ink: #f6f3ec;
	--band-ink-muted: rgba(246, 243, 236, 0.75);
	--band-line: rgba(246, 243, 236, 0.14);

	--field-bg: #ffffff;
	--field-border: rgba(27, 23, 18, 0.16);

	--radius: 20px;
	--radius-sm: 12px;
	--shadow-card: 0 1px 2px rgba(27, 23, 18, 0.05), 0 16px 40px -18px rgba(27, 23, 18, 0.18);
	--shadow-float: 0 2px 6px rgba(27, 23, 18, 0.06), 0 28px 60px -24px rgba(27, 23, 18, 0.28);
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--container: 1180px;
}

[data-theme="dark"] {
	--bg: #0f0d0a;
	--bg-raised: #17140f;
	--ink: #f4f1e9;
	--ink-soft: rgba(244, 241, 233, 0.88);
	--ink-muted: rgba(244, 241, 233, 0.72);
	--line: rgba(244, 241, 233, 0.11);
	--line-strong: rgba(244, 241, 233, 0.2);

	--primary-soft: rgba(245, 156, 0, 0.16);
	--accent-text: #7ecfca;
	--accent-soft: rgba(79, 182, 178, 0.16);

	--band-bg: #14110c;
	--band-ink: #f4f1e9;
	--band-ink-muted: rgba(244, 241, 233, 0.72);
	--band-line: rgba(244, 241, 233, 0.12);

	--field-bg: #1d1a14;
	--field-border: rgba(244, 241, 233, 0.2);

	--shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 16px 40px -18px rgba(0, 0, 0, 0.6);
	--shadow-float: 0 2px 6px rgba(0, 0, 0, 0.45), 0 28px 60px -24px rgba(0, 0, 0, 0.7);
}

/* ---------- Basis ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	font-family: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--accent-text);
}

:focus-visible {
	outline: 3px solid var(--primary);
	outline-offset: 2px;
	border-radius: 4px;
}

::selection {
	background: var(--primary-soft);
}

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2rem);
}

[id] {
	scroll-margin-top: 96px;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 200;
	padding: 0.75rem 1.25rem;
	background: var(--ink);
	color: var(--bg);
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	font-weight: 700;
	text-decoration: none;
	transition: top 0.2s var(--ease);
}

.skip-link:focus {
	top: 0;
}

/* ---------- Typografie ---------- */
h1,
h2,
h3 {
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--ink);
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.5rem, 5.4vw, 4rem);
	line-height: 1.04;
	letter-spacing: -0.03em;
	text-wrap: pretty;
}

.nobr {
	white-space: nowrap;
}

h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.55rem);
}

h3 {
	font-size: 1.3rem;
	line-height: 1.25;
}

p {
	color: var(--ink-soft);
}

.eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-text);
	margin-bottom: 0.85rem;
}

.section {
	padding-block: clamp(3.75rem, 9vw, 6.25rem);
}

.section-tint {
	background: linear-gradient(180deg, rgba(79, 182, 178, 0.055), rgba(79, 182, 178, 0) 34%), var(--bg-raised);
	border-block: 1px solid var(--line);
}

[data-theme="dark"] .section-tint {
	background: linear-gradient(180deg, rgba(79, 182, 178, 0.05), rgba(79, 182, 178, 0) 34%), #131009;
}

.section-header {
	max-width: 620px;
	margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-header.center {
	margin-inline: auto;
	text-align: center;
}

.section-header p {
	margin-top: 1rem;
	font-size: 1.06rem;
	color: var(--ink-muted);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 48px;
	padding: 0.8rem 1.7rem;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font: inherit;
	font-size: 0.98rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}

@media (max-width: 400px) {
	.brand-logo {
		width: 114px;
	}

	.btn-sm {
		padding-inline: 1.05rem;
	}
}

.btn-primary {
	background: var(--primary);
	color: var(--primary-ink);
	box-shadow: 0 10px 24px -10px rgba(245, 156, 0, 0.55);
}

.btn-primary:hover {
	background: var(--primary-strong);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -10px rgba(245, 156, 0, 0.6);
}

.btn-ghost {
	border-color: var(--line-strong);
	color: var(--ink);
	background: transparent;
}

.btn-ghost:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
}

.btn-lg {
	min-height: 54px;
	padding: 0.95rem 2.1rem;
	font-size: 1.04rem;
}

.btn-sm {
	min-height: 44px;
	padding: 0.6rem 1.3rem;
	font-size: 0.9rem;
}

.btn-block {
	width: 100%;
}

.btn-external {
	width: 15px;
	height: 15px;
	flex: none;
}

.text-link {
	display: inline-block;
	margin-top: 1.5rem;
	font-weight: 700;
	color: var(--accent-text);
	text-decoration: none;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 2px;
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.text-link::after {
	content: " →";
}

.text-link:hover {
	color: var(--ink);
	border-color: var(--primary);
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: transparent;
	transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
	background: rgba(247, 245, 240, 0.86);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--line);
}

[data-theme="dark"] .site-header.scrolled {
	background: rgba(15, 13, 10, 0.82);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 78px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: none;
}

.brand-logo {
	width: 138px;
	height: auto;
}

.nav {
	display: none;
}

.header-end {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.btn-header {
	min-height: 44px;
	padding: 0.55rem 1.35rem;
	font-size: 0.92rem;
	display: none;
}

.theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--line-strong);
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.theme-toggle:hover {
	border-color: var(--primary);
	transform: rotate(12deg);
}

.theme-toggle svg {
	width: 19px;
	height: 19px;
}

.icon-moon {
	display: none;
}

[data-theme="dark"] .icon-moon {
	display: block;
}

[data-theme="dark"] .icon-sun {
	display: none;
}

.mobile-menu-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border: 1.5px solid var(--line-strong);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.hamburger-line {
	width: 17px;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-Navigation (Overlay-Panel) */
.nav.active {
	display: flex;
	position: absolute;
	top: calc(100% + 8px);
	left: clamp(1rem, 4vw, 2rem);
	right: clamp(1rem, 4vw, 2rem);
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-float);
}

.nav-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--ink-soft);
	text-decoration: none;
	transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.nav-link:hover {
	color: var(--ink);
	background: var(--primary-soft);
}

.btn-nav-mobile {
	margin-top: 0.5rem;
}

@media (min-width: 981px) {
	.nav {
		display: flex;
		align-items: center;
		gap: 0.15rem;
	}

	.btn-nav-mobile,
	.mobile-menu-btn {
		display: none;
	}

	.btn-header {
		display: inline-flex;
	}
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3.75rem, 8vw, 6rem);
}

/* Verlauf bleibt (Meeting), aber in Markenfarben: warmes Papier + Teal/Orange-Hauch */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 52% 62% at 84% 8%, var(--accent-soft), transparent 70%),
		radial-gradient(ellipse 46% 56% at 4% 96%, var(--primary-soft), transparent 72%),
		linear-gradient(180deg, var(--bg-raised), var(--bg));
}

[data-theme="dark"] .hero::before {
	background:
		radial-gradient(ellipse 52% 62% at 84% 8%, rgba(79, 182, 178, 0.11), transparent 70%),
		radial-gradient(ellipse 46% 56% at 4% 96%, rgba(245, 156, 0, 0.09), transparent 72%),
		linear-gradient(180deg, #131009, var(--bg));
}

.hero-grid {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: center;
}

@media (min-width: 981px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	}
}

.hero-copy h1 {
	margin-bottom: 1.4rem;
}

/* Orange Marker-Akzent: das eine mutige Detail im Hero */
.mark {
	font-style: normal;
	background-image: linear-gradient(180deg, transparent 58%, rgba(245, 156, 0, 0.42) 58%, rgba(245, 156, 0, 0.42) 92%, transparent 92%);
}

.hero-lead {
	max-width: 56ch;
	font-size: clamp(1.05rem, 1.4vw, 1.17rem);
	color: var(--ink-soft);
}

.hero-lead strong {
	color: var(--ink);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.1rem;
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.6rem;
	margin-top: 2.1rem;
	list-style: none;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink-muted);
}

.hero-proof li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-proof li::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	flex: none;
}

/* Hero-Visual: Kartenstapel „Anfrage → Kai → Freigabe“ */
.hero-visual {
	display: flex;
	justify-content: center;
}

.flow-stack {
	position: relative;
	width: min(100%, 460px);
	padding-bottom: 1.25rem;
}

.flow-card {
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.15rem 1.3rem;
	box-shadow: var(--shadow-float);
}

.flow-card-in {
	transform: rotate(-1.4deg);
}

.flow-card-out {
	transform: rotate(0.9deg);
	border-color: rgba(79, 182, 178, 0.45);
}

.flow-card-head {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--ink-muted);
	text-transform: uppercase;
	margin-bottom: 0.6rem;
}

.flow-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--primary);
	flex: none;
}

.flow-time {
	margin-left: auto;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
}

.flow-subject {
	font-weight: 700;
	color: var(--ink);
	font-size: 1.02rem;
	line-height: 1.35;
}

.flow-meta {
	margin-top: 0.3rem;
	font-size: 0.88rem;
	color: var(--ink-muted);
}

.flow-connector {
	display: flex;
	justify-content: center;
	padding: 0.55rem 0;
	position: relative;
	z-index: 1;
}

.flow-kai-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: var(--ink);
	color: var(--bg);
	font-size: 0.86rem;
	font-weight: 700;
	box-shadow: var(--shadow-card);
}

.flow-kai-chip svg {
	width: 15px;
	height: 15px;
}

.flow-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-text);
	flex: none;
}

.flow-check svg {
	width: 12px;
	height: 12px;
}

.flow-draft {
	font-size: 0.95rem;
	color: var(--ink-soft);
	line-height: 1.55;
}

.flow-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.85rem;
}

.flow-tag {
	padding: 0.28rem 0.75rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-text);
	font-size: 0.82rem;
	font-weight: 700;
}

[data-theme="dark"] .flow-tag {
	color: #9edad6;
}

.flow-badge {
	position: absolute;
	right: 0.25rem;
	bottom: -0.5rem;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	background: var(--accent); /* Teal statt Orange: Label, kein CTA */
	color: #10312f;
	font-size: 0.8rem;
	font-weight: 700;
	transform: rotate(1.5deg);
	box-shadow: var(--shadow-card);
}

/* ---------- Trust ---------- */
.trust {
	background: var(--bg-raised);
	border-block: 1px solid var(--line);
	padding-block: clamp(2.25rem, 4.5vw, 3.25rem);
}

[data-theme="dark"] .trust {
	background: #131009;
}

.trust-grid {
	display: grid;
	gap: 1.75rem 2rem;
	list-style: none;
}

@media (min-width: 640px) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 981px) {
	.trust-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.trust-item {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.85rem;
	row-gap: 0.2rem;
	align-items: center;
}

.trust-icon {
	grid-row: 1 / span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--accent-soft);
	color: var(--accent-text);
}

.trust-icon svg {
	width: 22px;
	height: 22px;
}

.trust-item strong {
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--ink);
}

.trust-item > span:last-child {
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--ink-muted);
}

/* ---------- Leistungen (3 Säulen) ---------- */
.pillar-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 981px) {
	.pillar-grid {
		grid-template-columns: repeat(3, 1fr);
		align-items: stretch;
	}
}

.pillar-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 2rem 1.9rem;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pillar-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-float);
}

/* Mauszeiger-Glow (dezent) */
[data-hover-effect]::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0;
	background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--primary-soft), transparent 65%);
	transition: opacity 0.3s var(--ease);
}

[data-hover-effect]:hover::after {
	opacity: 1;
}

.pillar-badge {
	align-self: flex-start;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-text);
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 1.15rem;
}

.pillar-card h3 {
	margin-bottom: 0.7rem;
}

.pillar-card > p {
	font-size: 0.96rem;
	color: var(--ink-muted);
	margin-bottom: 1.35rem;
}

/* Das eine asymmetrische Detail der Sektion: die mittlere Karte ist dunkel */
.pillar-featured {
	background: var(--band-bg);
	border-color: transparent;
}

.pillar-featured h3 {
	color: var(--band-ink);
}

.pillar-featured > p {
	color: var(--band-ink-muted);
}

.badge-featured {
	background: var(--primary);
	color: var(--primary-ink);
}

[data-theme="dark"] .pillar-featured {
	background: #1d1810;
	border-color: rgba(245, 156, 0, 0.38);
}

.check-list {
	list-style: none;
	display: grid;
	gap: 0.65rem;
	margin-top: auto;
}

.check-list li {
	position: relative;
	padding-left: 1.75rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ink-soft);
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.18rem;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: var(--accent-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2326716d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	background-size: 10px;
	background-position: center;
	background-repeat: no-repeat;
}

.pillar-featured .check-list li {
	color: var(--band-ink-muted);
}

.pillar-featured .check-list li::before {
	background-color: rgba(245, 156, 0, 0.2);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5b433' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

[data-theme="dark"] .check-list li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237ecfca' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Produkte ---------- */
.product-row {
	display: grid;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}

.product-row + .product-row {
	border-top: 1px solid var(--line);
}

@media (min-width: 981px) {
	.product-row {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}

	.product-row-flip .product-copy {
		order: 2;
	}

	.product-row-flip .product-visual {
		order: 1;
	}
}

.product-badge {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	background: var(--primary-soft);
	color: var(--ink);
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 1.1rem;
}

.product-copy h3 {
	font-size: clamp(1.5rem, 2.4vw, 1.9rem);
	margin-bottom: 0.85rem;
}

.product-copy p {
	font-size: 1.02rem;
	color: var(--ink-soft);
	max-width: 50ch;
	margin-bottom: 1.6rem;
}

/* Produkt-Mockups: aufgeräumte weiße Panels, Kundensprache statt Mono-Labels */
.mock-panel {
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-float);
	padding: 1.35rem;
	display: grid;
	gap: 0.9rem;
}

.mock-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink-muted);
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--line);
}

.mock-live {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.84rem;
	color: var(--accent-text);
	white-space: nowrap;
}

.mock-head {
	flex-wrap: wrap;
	row-gap: 0.35rem;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	animation: pulse 2.2s infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
	50% { box-shadow: 0 0 0 6px var(--accent-soft); }
}

@media (prefers-reduced-motion: reduce) {
	.pulse-dot {
		animation: none;
	}
}

.mock-mail {
	padding: 0.95rem 1.05rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--bg);
}

.mock-mail-subject {
	font-weight: 700;
	color: var(--ink);
	font-size: 0.98rem;
}

.mock-mail-meta {
	font-size: 0.82rem;
	color: var(--ink-muted);
	margin: 0.2rem 0 0.55rem;
}

.mock-mail-body {
	font-size: 0.9rem;
	color: var(--ink-soft);
	line-height: 1.5;
}

.mock-check {
	display: grid;
	gap: 0.5rem;
}

.mock-check-label {
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--accent-text);
}

.mock-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.mock-tag {
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--ink-soft);
	font-size: 0.84rem;
}

.mock-tag strong {
	color: var(--ink);
	font-weight: 700;
}

.mock-draft {
	padding: 1rem 1.05rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(79, 182, 178, 0.4);
	background: linear-gradient(180deg, rgba(79, 182, 178, 0.07), rgba(79, 182, 178, 0.02));
}

.mock-draft-head {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--accent-text);
	margin-bottom: 0.5rem;
}

.mock-draft > p {
	font-size: 0.92rem;
	color: var(--ink-soft);
	line-height: 1.55;
}

.mock-draft-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.9rem;
}

.mock-approve {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 1.05rem;
	border-radius: 999px;
	background: var(--primary);
	color: var(--primary-ink);
	font-size: 0.86rem;
	font-weight: 700;
}

.mock-approve svg {
	width: 13px;
	height: 13px;
}

.mock-edit {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.05rem;
	border-radius: 999px;
	border: 1.5px solid var(--line-strong);
	color: var(--ink-soft);
	font-size: 0.86rem;
	font-weight: 700;
}

.mock-rate {
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	background: var(--primary-soft);
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

/* Newsletter-Start: Einrichtungs-Schritte statt Erfolgskennzahlen
   (nichts versprechen, was wir nicht kennen – spricht auch Betriebe ohne Newsletter an) */
.setup-steps {
	display: grid;
	gap: 0.6rem;
}

.setup-step {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 0.8rem;
	align-items: start;
	padding: 0.8rem 0.95rem;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.setup-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-text);
	margin-top: 1px;
	flex: none;
}

.setup-check svg {
	width: 12px;
	height: 12px;
}

.setup-step strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.35;
}

.setup-step small {
	display: block;
	margin-top: 2px;
	font-size: 0.82rem;
	color: var(--ink-muted);
}

.mock-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--line);
}

.mock-stat {
	font-size: 0.86rem;
	color: var(--ink-muted);
}

.mock-stat strong {
	color: var(--ink);
}

/* ---------- Arbeitsweise ---------- */
.steps-layout {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: start;
}

@media (min-width: 981px) {
	.steps-layout {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	}

	.steps-copy {
		position: sticky;
		top: 110px;
	}
}

.steps-copy h2 {
	margin-bottom: 1rem;
}

.steps-copy p {
	color: var(--ink-muted);
	font-size: 1.04rem;
	max-width: 46ch;
}

.steps-list {
	list-style: none;
	display: grid;
	gap: 1.1rem;
}

.step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.4rem;
	padding: 1.6rem 1.7rem;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.step-num {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	color: #c07800; /* dunkleres Orange: ≥3:1 auf weißer Karte */
	letter-spacing: -0.02em;
	padding-top: 0.2rem;
}

[data-theme="dark"] .step-num {
	color: var(--primary);
}

.step-body h3 {
	font-size: 1.15rem;
	margin-bottom: 0.4rem;
}

.step-body p {
	font-size: 0.98rem;
	color: var(--ink-soft);
}

.step-body small {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.86rem;
	color: var(--ink-muted);
}

/* ---------- Für wen ---------- */
.sector-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 740px) {
	.sector-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.sector-card {
	position: relative;
	overflow: hidden;
	padding: 1.8rem 1.7rem;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-top: 3px solid var(--accent);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.sector-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-float);
}

.sector-card h3 {
	font-size: 1.12rem;
	margin-bottom: 0.55rem;
}

.sector-card p {
	font-size: 0.94rem;
	color: var(--ink-muted);
}

.sector-note {
	margin-top: 2.25rem;
	text-align: center;
	font-size: 0.96rem;
	color: var(--ink-muted);
}

.sector-note a {
	font-weight: 700;
}

/* ---------- Netzwerk ---------- */
.network .section-header {
	margin-bottom: 2.25rem;
}

.network-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 920px;
	margin-inline: auto;
}

@media (min-width: 740px) {
	.network-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.network-card {
	display: grid;
	gap: 0.45rem;
	padding: 1.7rem 1.8rem;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	text-decoration: none;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.network-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
	box-shadow: var(--shadow-float);
}

.network-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ink-muted);
}

.network-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--ink);
}

.network-card p {
	font-size: 0.94rem;
	color: var(--ink-muted);
}

.network-link {
	margin-top: 0.4rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--accent-text);
}

.network-link::after {
	content: " ↗";
}

/* ---------- Kontakt (dunkler Anker) ---------- */
.contact-band {
	background: var(--band-bg);
	color: var(--band-ink);
}

[data-theme="dark"] .contact-band {
	border-block: 1px solid var(--band-line);
}

.contact-layout {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: start;
}

@media (min-width: 981px) {
	.contact-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.eyebrow-on-dark {
	color: #8ed7d2;
}

.contact-copy h2 {
	color: var(--band-ink);
	margin-bottom: 1.1rem;
}

.contact-copy > p {
	color: var(--band-ink-muted);
	font-size: 1.04rem;
	max-width: 52ch;
}

.contact-channels {
	display: grid;
	gap: 0.9rem;
	margin-top: 2rem;
}

@media (min-width: 560px) {
	.contact-channels {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 540px;
	}
}

.contact-channel {
	display: grid;
	gap: 0.15rem;
	padding: 1rem 1.2rem;
	border: 1px solid var(--band-line);
	border-radius: var(--radius-sm);
	text-decoration: none;
	background: rgba(246, 243, 236, 0.04);
	transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.contact-channel:hover {
	border-color: var(--primary);
	background: rgba(245, 156, 0, 0.08);
}

.contact-channel-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--band-ink-muted);
}

.contact-channel-value {
	font-weight: 700;
	color: var(--band-ink);
	font-size: 1rem;
	overflow-wrap: anywhere;
}

.contact-note {
	margin-top: 1.6rem;
	font-size: 0.88rem;
	line-height: 1.7;
	color: var(--band-ink-muted);
}

/* Formular-Karte */
.contact-form-wrap {
	position: relative;
}

.contact-form {
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-float);
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-form h3 {
	margin-bottom: 1.4rem;
}

.form-grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 560px) {
	.form-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.form-group {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.form-grid .form-group {
	margin-bottom: 0;
}

.form-grid + .form-group {
	margin-top: 1rem;
}

.form-group label {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--ink);
}

.label-optional {
	font-weight: 500;
	color: var(--ink-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.95rem;
	font: inherit;
	font-size: 0.96rem;
	color: var(--ink);
	background: var(--field-bg);
	border: 1.5px solid var(--field-border);
	border-radius: var(--radius-sm);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group textarea {
	resize: vertical;
	min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--ink-muted);
	opacity: 0.75;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-soft);
}

.contact-form .btn-block {
	margin-top: 0.5rem;
}

.form-privacy {
	margin-top: 0.9rem;
	font-size: 0.82rem;
	text-align: center;
	color: var(--ink-muted);
}

.form-privacy a {
	color: var(--accent-text);
}

/* Honeypot: aus dem Blickfeld, aber für Bots ausfüllbar (kein display:none) */
.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-error {
	margin-bottom: 1rem;
	padding: 0.7rem 0.95rem;
	border-radius: var(--radius-sm);
	background: rgba(214, 69, 45, 0.1);
	border: 1px solid rgba(214, 69, 45, 0.35);
	color: #b23a24;
	font-size: 0.88rem;
	line-height: 1.5;
}

[data-theme="dark"] .form-error {
	background: rgba(255, 122, 92, 0.12);
	border-color: rgba(255, 122, 92, 0.4);
	color: #ff9c82;
}

/* Erfolgs-Overlay */
.form-success-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: var(--bg-raised);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-float);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.form-success-overlay.active {
	opacity: 1;
	visibility: visible;
}

.success-content {
	text-align: center;
	max-width: 34ch;
	display: grid;
	justify-items: center;
	gap: 0.8rem;
}

.success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-text);
}

.success-icon svg {
	width: 26px;
	height: 26px;
}

.success-content p {
	font-size: 0.95rem;
	color: var(--ink-muted);
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--band-bg);
	color: var(--band-ink-muted);
	border-top: 1px solid var(--band-line);
	padding-top: clamp(2.75rem, 6vw, 4rem);
}

.footer-grid {
	display: grid;
	gap: 2.25rem;
	padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 640px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 981px) {
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
		gap: 3rem;
	}
}

.footer-logo {
	width: 132px;
}

.footer-brand p {
	margin-top: 1.1rem;
	max-width: 36ch;
	font-size: 0.94rem;
	line-height: 1.65;
	color: var(--band-ink-muted);
}

.footer-col h3 {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--band-ink-muted);
	margin-bottom: 0.9rem;
}

.footer-links {
	list-style: none;
	display: grid;
	gap: 0.1rem;
}

.footer-links a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--band-ink);
	font-size: 0.94rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-contact li {
	font-size: 0.94rem;
	line-height: 1.65;
	color: var(--band-ink-muted);
	padding-block: 0.3rem;
}

.footer-contact a {
	min-height: 40px;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 2rem;
	border-top: 1px solid var(--band-line);
	padding-block: 1.4rem;
}

.footer-bottom p {
	font-size: 0.85rem;
	color: var(--band-ink-muted);
}

.footer-partners a {
	color: var(--band-ink);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid var(--band-line);
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-partners a:hover {
	color: var(--primary);
	border-color: var(--primary);
}

/* ---------- Rechtstext-Seiten (Anlage 2 u. ä.) ---------- */
.legal-main {
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.legal-content {
	max-width: 780px;
}

.legal-content h1 {
	font-size: clamp(2rem, 4vw, 2.7rem);
	margin-bottom: 0.6rem;
}

.legal-stand {
	font-size: 0.9rem;
	color: var(--ink-muted);
	margin-bottom: 2.5rem;
}

.legal-content h2 {
	font-size: 1.35rem;
	margin: 2.4rem 0 0.9rem;
}

.legal-content h3 {
	font-size: 1.05rem;
	margin: 1.6rem 0 0.5rem;
}

.legal-content p {
	font-size: 0.97rem;
	line-height: 1.75;
	color: var(--ink-soft);
	margin-bottom: 1rem;
}

.legal-content ul {
	padding-left: 1.3rem;
	margin-bottom: 1rem;
}

.legal-content li {
	font-size: 0.97rem;
	line-height: 1.75;
	color: var(--ink-soft);
	margin-bottom: 0.75rem;
}

.legal-content strong {
	color: var(--ink);
}

.legal-content a {
	color: var(--accent-text);
	overflow-wrap: anywhere;
}

/* ---------- Reveal-Animation ---------- */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.reveal.active {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		transition: opacity 0.2s linear;
		transform: none;
	}

	.btn,
	.pillar-card,
	.sector-card,
	.network-card,
	.theme-toggle {
		transition: none;
	}
}
