/* ==========================================================================
   Facility Management — Marketing-Webseite
   Eigenständiges Stylesheet, keine externen Abhängigkeiten.
   ========================================================================== */

/* ---------- Reset & Grundlagen ---------- */

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

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

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--navy-900); margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

:root {
	--navy-950: #0b1220;
	--navy-900: #0f172a;
	--navy-800: #1e293b;
	--ink: #334155;
	--slate-600: #475569;
	--slate-500: #64748b;
	--slate-400: #94a3b8;
	--slate-300: #cbd5e1;
	--slate-200: #e2e8f0;
	--slate-100: #f1f5f9;
	--slate-50: #f8fafc;
	--blue-700: #1d4ed8;
	--blue-600: #2563eb;
	--blue-500: #3b82f6;
	--blue-100: #dbeafe;
	--blue-50: #eff6ff;
	--sky-500: #0ea5e9;
	--sky-100: #e0f2fe;
	--green-600: #16a34a;
	--green-100: #dcfce7;
	--amber-600: #d97706;
	--amber-100: #fef3c7;
	--red-600: #dc2626;
	--red-100: #fee2e2;
	--violet-600: #7c3aed;
	--violet-100: #ede9fe;
	--teal-600: #0d9488;
	--teal-100: #ccfbf1;
	--rose-600: #e11d48;
	--rose-100: #ffe4e6;
	--grad: linear-gradient(120deg, #2563eb, #0ea5e9);
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
	--shadow-md: 0 6px 16px -4px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06);
	--shadow-lg: 0 24px 48px -16px rgba(15, 23, 42, 0.22);
	--container: 1180px;
	--header-h: 72px;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section { padding: 88px 0; }
.section.tint { background: var(--slate-50); }
.section.tight { padding: 56px 0; }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
.section-head p { color: var(--slate-600); font-size: 1.08rem; }

.eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue-600);
	margin-bottom: 12px;
}

.lead { font-size: 1.15rem; color: var(--slate-600); }

.text-grad {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.98rem;
	line-height: 1.2;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
	text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.7); }
.btn-primary:hover { background: var(--blue-700); color: #fff; }

.btn-ghost { background: #fff; color: var(--navy-800); border-color: var(--slate-300); }
.btn-ghost:hover { border-color: var(--slate-400); background: var(--slate-50); }

.btn-white { background: #fff; color: var(--blue-700); }
.btn-white:hover { background: var(--blue-50); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }

.btn-lg { padding: 15px 28px; font-size: 1.05rem; border-radius: 12px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }

/* ---------- Header & Navigation ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.88);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--slate-200);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-900); font-size: 1.12rem; }
.brand:hover { text-decoration: none; }
.brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--grad);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 14px -6px rgba(37, 99, 235, 0.6);
	flex: none;
}
.brand-name { font-weight: 400; letter-spacing: -0.01em; white-space: nowrap; }
.brand-name strong { font-weight: 800; color: var(--blue-700); }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 6px; list-style: none; }

.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 10px;
	color: var(--navy-800);
	font-weight: 600;
	font-size: 0.97rem;
	background: none;
	border: 0;
	cursor: pointer;
	font-family: inherit;
}
.nav-link:hover { background: var(--slate-100); text-decoration: none; }
.nav-link .chev { transition: transform 0.2s ease; }

.has-dropdown { position: relative; }

.dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	width: 560px;
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 14px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-dropdown.open .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown.open .chev { transform: rotate(180deg); }

@media (hover: hover) {
	.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
	.has-dropdown:hover .chev { transform: rotate(180deg); }
}

.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown-grid a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: 10px;
	color: var(--navy-800);
	font-weight: 500;
	font-size: 0.94rem;
}
.dropdown-grid a:hover { background: var(--blue-50); color: var(--blue-700); text-decoration: none; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot.blue { background: var(--blue-500); }
.dot.green { background: var(--green-600); }
.dot.amber { background: var(--amber-600); }
.dot.violet { background: var(--violet-600); }
.dot.teal { background: var(--teal-600); }
.dot.sky { background: var(--sky-500); }
.dot.red { background: var(--red-600); }
.dot.rose { background: var(--rose-600); }
.dot.slate { background: var(--slate-400); }

.dropdown-footer {
	display: block;
	margin-top: 10px;
	padding: 10px 12px;
	border-top: 1px solid var(--slate-100);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--blue-700);
	border-radius: 0 0 10px 10px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 10px 18px; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: 1px solid var(--slate-300);
	border-radius: 10px;
	cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--navy-900); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Startseite) ---------- */

.hero {
	position: relative;
	overflow: hidden;
	padding: 84px 0 72px;
	background:
		radial-gradient(1100px 500px at 85% -10%, rgba(14, 165, 233, 0.14), transparent 60%),
		radial-gradient(900px 480px at -10% 20%, rgba(37, 99, 235, 0.10), transparent 55%),
		linear-gradient(180deg, #fff 0%, var(--slate-50) 100%);
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }

.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); letter-spacing: -0.02em; margin-bottom: 20px; }
.hero .lead { font-size: 1.2rem; max-width: 560px; }

.hero-checks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; padding: 0; }
.hero-checks li { display: flex; align-items: center; gap: 8px; font-size: 0.94rem; font-weight: 600; color: var(--slate-600); }
.hero-checks svg { color: var(--green-600); flex: none; }

/* ---------- UI-Mockups (reine CSS/HTML-Screens) ---------- */

.ui-window {
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	font-size: 0.78rem;
	color: var(--slate-600);
}
.ui-topbar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.ui-topbar i { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-300); }
.ui-topbar i:nth-child(1) { background: #fca5a5; }
.ui-topbar i:nth-child(2) { background: #fcd34d; }
.ui-topbar i:nth-child(3) { background: #86efac; }
.ui-url {
	margin-left: 10px;
	flex: 1;
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: 6px;
	padding: 3px 10px;
	font-size: 0.7rem;
	color: var(--slate-400);
	white-space: nowrap;
	overflow: hidden;
}

.ui-body { display: grid; grid-template-columns: 132px 1fr; min-height: 320px; }
.ui-side { background: var(--navy-900); padding: 14px 10px; display: flex; flex-direction: column; gap: 4px; }
.ui-side b { color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 8px 10px; letter-spacing: 0.02em; }
.ui-side span { color: var(--slate-400); padding: 6px 8px; border-radius: 6px; font-size: 0.72rem; white-space: nowrap; }
.ui-side span.on { background: rgba(59, 130, 246, 0.25); color: #fff; }

.ui-main { padding: 16px; background: var(--slate-50); display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.ui-h { font-weight: 700; color: var(--navy-900); font-size: 0.9rem; }

.ui-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { background: #fff; border: 1px solid var(--slate-200); border-radius: 10px; padding: 10px 12px; }
.kpi b { display: block; font-size: 1.15rem; color: var(--navy-900); }
.kpi span { font-size: 0.68rem; color: var(--slate-500); }
.kpi .up { color: var(--green-600); font-weight: 700; }

.ui-panel { background: #fff; border: 1px solid var(--slate-200); border-radius: 10px; padding: 12px; }
.ui-panel .ui-h { font-size: 0.78rem; margin-bottom: 8px; }

.ui-chart { display: flex; align-items: flex-end; gap: 7px; height: 84px; padding-top: 4px; }
.ui-chart i { flex: 1; border-radius: 4px 4px 0 0; background: var(--blue-100); }
.ui-chart i.hi { background: var(--blue-500); }

.ui-rows { display: flex; flex-direction: column; gap: 6px; }
.ui-row {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: 10px;
	padding: 9px 12px;
	white-space: nowrap;
	overflow: hidden;
}
.ui-row .grow { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.ui-row b { color: var(--navy-900); font-weight: 600; }
.ui-row small { color: var(--slate-400); font-size: 0.68rem; }

.ui-ic {
	width: 26px; height: 26px; border-radius: 8px; flex: none;
	display: inline-flex; align-items: center; justify-content: center;
}
.ui-ic svg { width: 14px; height: 14px; }

.ui-badge {
	font-size: 0.66rem;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 999px;
	flex: none;
}
.ui-badge.green { background: var(--green-100); color: var(--green-600); }
.ui-badge.blue { background: var(--blue-100); color: var(--blue-700); }
.ui-badge.amber { background: var(--amber-100); color: var(--amber-600); }
.ui-badge.red { background: var(--red-100); color: var(--red-600); }
.ui-badge.violet { background: var(--violet-100); color: var(--violet-600); }
.ui-badge.slate { background: var(--slate-100); color: var(--slate-500); }

.ui-progress { height: 6px; border-radius: 999px; background: var(--slate-100); overflow: hidden; flex: 1; }
.ui-progress i { display: block; height: 100%; border-radius: 999px; background: var(--grad); }

/* Schwebende Karte über dem Hero-Mockup */
.hero-visual { position: relative; }
.float-card {
	position: absolute;
	right: -14px;
	bottom: -22px;
	width: 236px;
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	padding: 14px;
	font-size: 0.78rem;
}
.float-card .ui-h { margin-bottom: 8px; }

/* Smartphone-Rahmen */
.phone {
	width: 270px;
	margin: 0 auto;
	background: var(--navy-950);
	border-radius: 34px;
	padding: 12px;
	box-shadow: var(--shadow-lg);
}
.phone-screen { background: var(--slate-50); border-radius: 24px; overflow: hidden; font-size: 0.76rem; color: var(--slate-600); }
.phone-top { background: var(--navy-900); color: #fff; padding: 14px 14px 12px; }
.phone-top b { font-size: 0.85rem; display: block; }
.phone-top span { color: var(--slate-400); font-size: 0.68rem; }
.phone-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone .ui-row { padding: 8px 10px; }

/* ---------- Karten & Grids ---------- */

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: var(--radius);
	padding: 26px;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--slate-300); }
.card h3 { font-size: 1.08rem; margin: 0 0 6px; }
.card p { color: var(--slate-600); font-size: 0.95rem; margin: 0; }

.icon-tile {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	flex: none;
}
.icon-tile svg { width: 23px; height: 23px; }
.icon-tile.blue, .ui-ic.blue { background: var(--blue-100); color: var(--blue-700); }
.icon-tile.green, .ui-ic.green { background: var(--green-100); color: var(--green-600); }
.icon-tile.amber, .ui-ic.amber { background: var(--amber-100); color: var(--amber-600); }
.icon-tile.violet, .ui-ic.violet { background: var(--violet-100); color: var(--violet-600); }
.icon-tile.teal, .ui-ic.teal { background: var(--teal-100); color: var(--teal-600); }
.icon-tile.sky, .ui-ic.sky { background: var(--sky-100); color: var(--sky-500); }
.icon-tile.red, .ui-ic.red { background: var(--red-100); color: var(--red-600); }
.icon-tile.rose, .ui-ic.rose { background: var(--rose-100); color: var(--rose-600); }
.icon-tile.slate, .ui-ic.slate { background: var(--slate-100); color: var(--slate-600); }
.icon-tile.grad { background: var(--grad); color: #fff; }

/* Modul-Karte (verlinkt) */
a.module-card { display: block; color: inherit; height: 100%; }
a.module-card:hover { text-decoration: none; }
.module-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: 0.9rem; color: var(--blue-700); }
.module-card:hover .more { gap: 10px; }
.module-card .more svg { transition: transform 0.15s ease; }

/* Kleine Verweis-Karte („Im Zusammenspiel") */
a.link-card { display: flex; align-items: center; gap: 14px; color: inherit; padding: 18px 20px; }
a.link-card:hover { text-decoration: none; }
.link-card .icon-tile { margin: 0; width: 40px; height: 40px; }
.link-card .icon-tile svg { width: 20px; height: 20px; }
.link-card h3 { font-size: 0.99rem; margin: 0; }
.link-card p { font-size: 0.85rem; margin: 0; }
.link-card .arrow { margin-left: auto; color: var(--slate-400); flex: none; }
.link-card:hover .arrow { color: var(--blue-600); }

/* Zielgruppen-Karten */
.audience-card { display: flex; flex-direction: column; }
.audience-card ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.audience-card li { display: flex; gap: 9px; font-size: 0.93rem; color: var(--slate-600); }
.audience-card li svg { color: var(--green-600); flex: none; margin-top: 3px; }

/* Häkchen-Listen */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate-600); }
.check-list li svg { color: var(--green-600); flex: none; margin-top: 4px; }
.check-list li b { color: var(--navy-900); }

/* ---------- Split-Sektionen (Text + Visual) ---------- */

.band { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.band.reverse > .band-visual { order: -1; }
.band h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
.band .check-list { margin-top: 20px; }

/* ---------- Schritte ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 26px; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); }
.step-num {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--grad);
	color: #fff;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	font-size: 1.02rem;
}
.step h3 { font-size: 1.02rem; }
.step p { font-size: 0.92rem; color: var(--slate-600); margin: 0; }

/* ---------- Zahlen-/Fakten-Streifen ---------- */

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { display: block; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--navy-900); letter-spacing: -0.02em; }
.stat b .text-grad { font-weight: 800; }
.stat span { color: var(--slate-500); font-size: 0.94rem; }

/* ---------- Preise ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 32px 28px; position: relative; }
.price-card.featured { border: 2px solid var(--blue-600); box-shadow: var(--shadow-lg); }
.price-flag {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--grad);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
	white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; }
.price-sub { color: var(--slate-500); font-size: 0.92rem; min-height: 44px; }
.price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price b { font-size: 2.6rem; font-weight: 800; color: var(--navy-900); letter-spacing: -0.03em; }
.price span { color: var(--slate-500); font-size: 0.9rem; }
.price-note { font-size: 0.8rem; color: var(--slate-400); margin-bottom: 18px; }
.price-card .check-list { gap: 9px; font-size: 0.93rem; margin: 18px 0 26px; }
.price-card .check-list li svg { margin-top: 3px; }
.price-card .btn { margin-top: auto; width: 100%; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--slate-200); border-radius: var(--radius); background: #fff; }
table.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.94rem; }
.compare th, .compare td { padding: 13px 18px; text-align: center; border-bottom: 1px solid var(--slate-100); }
.compare th { background: var(--slate-50); color: var(--navy-900); font-size: 0.9rem; }
.compare td:first-child, .compare th:first-child { text-align: left; font-weight: 600; color: var(--navy-800); }
.compare tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--green-600); font-weight: 700; }
.compare .no { color: var(--slate-300); }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 0 22px; }
.faq details[open] { border-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.faq summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	font-weight: 600;
	color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+";
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--blue-600);
	line-height: 1;
	transition: transform 0.2s ease;
	flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--slate-600); padding-bottom: 18px; margin: 0; }

/* ---------- CTA-Banner ---------- */

.cta-banner {
	background:
		radial-gradient(800px 300px at 15% 0%, rgba(14, 165, 233, 0.35), transparent 60%),
		radial-gradient(700px 320px at 90% 100%, rgba(124, 58, 237, 0.25), transparent 60%),
		var(--navy-900);
	color: #fff;
	padding: 84px 0;
}
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.cta-inner p { color: var(--slate-300); font-size: 1.1rem; }
.cta-inner .btn-row { justify-content: center; }
.cta-inner .small { font-size: 0.85rem; color: var(--slate-400); margin-top: 18px; }

/* ---------- Seiten-Hero (Unterseiten) ---------- */

.page-hero {
	padding: 64px 0 72px;
	background:
		radial-gradient(900px 420px at 90% -20%, rgba(14, 165, 233, 0.12), transparent 60%),
		linear-gradient(180deg, #fff 0%, var(--slate-50) 100%);
}
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; margin-top: 18px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.02em; }
.page-hero .lead { max-width: 560px; }

.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; font-weight: 600; color: var(--slate-500); }
.back-link:hover { color: var(--blue-700); text-decoration: none; }

.page-hero.simple { padding-bottom: 40px; }
.page-hero.simple .section-head { margin-bottom: 0; }

/* ---------- Formulare ---------- */

.form-card { padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.92rem; color: var(--navy-900); }
.form-field input, .form-field textarea, .form-field select {
	font: inherit;
	padding: 11px 14px;
	border: 1px solid var(--slate-300);
	border-radius: 10px;
	background: #fff;
	color: var(--navy-900);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
	outline: 2px solid var(--blue-500);
	outline-offset: 1px;
	border-color: var(--blue-500);
}
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--slate-600); grid-column: 1 / -1; }
.form-consent input { margin-top: 3px; }
.form-hint { font-size: 0.82rem; color: var(--slate-400); }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-950); color: var(--slate-400); padding: 64px 0 0; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand-name strong { color: var(--sky-500); }
.footer-brand p { max-width: 300px; font-size: 0.9rem; }
.site-footer h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.site-footer a { color: var(--slate-400); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
	border-top: 1px solid rgba(148, 163, 184, 0.15);
	padding: 22px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
}

/* ---------- Sonstiges ---------- */

.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2em; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.6em; }
.placeholder-note {
	background: var(--amber-100);
	border: 1px solid #fbbf24;
	color: #92400e;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 0.9rem;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--navy-800);
}
.pill svg { color: var(--blue-600); }

.note-card { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius); padding: 22px 26px; }
.note-card p { margin: 0; color: var(--navy-800); font-size: 0.96rem; }

/* Einblend-Animationen — nur aktiv, wenn JS läuft (html.fm-js) */
.fm-js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fm-js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.btn, .card { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.stat-strip { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.band { gap: 40px; }
}

@media (max-width: 960px) {
	.nav-toggle { display: flex; }
	.header-actions .btn { display: none; }

	.main-nav {
		position: fixed;
		inset: var(--header-h) 0 auto 0;
		background: #fff;
		border-bottom: 1px solid var(--slate-200);
		box-shadow: var(--shadow-lg);
		padding: 16px 24px 24px;
		display: none;
		max-height: calc(100vh - var(--header-h));
		overflow-y: auto;
	}
	.main-nav.open { display: block; }
	.main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
	.nav-link { width: 100%; justify-content: space-between; padding: 13px 10px; font-size: 1.02rem; }

	.dropdown {
		position: static;
		transform: none;
		width: auto;
		opacity: 1;
		visibility: hidden;
		display: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--slate-100);
		border-radius: 0;
		padding: 4px 0 8px 10px;
		margin-left: 10px;
	}
	.has-dropdown.open .dropdown { display: block; visibility: visible; transform: none; }
	.dropdown-grid { grid-template-columns: 1fr; }
	.mobile-cta { display: block; margin-top: 14px; }

	.hero-grid, .page-hero-grid, .band { grid-template-columns: 1fr; }
	.band.reverse > .band-visual { order: 0; }
	.hero-visual { margin-top: 8px; }
	.float-card { right: 0; bottom: -18px; }
	.pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 961px) {
	.mobile-cta { display: none; }
}

@media (max-width: 640px) {
	.section { padding: 64px 0; }
	.hero { padding: 56px 0 64px; }
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.form-grid { grid-template-columns: 1fr; }
	.stat-strip { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr; gap: 28px; }
	.ui-body { grid-template-columns: 1fr; }
	.ui-side { flex-direction: row; overflow-x: auto; padding: 10px; align-items: center; }
	.ui-side b { padding: 0 8px; }
	.hero .btn-row .btn, .cta-inner .btn-row .btn { width: 100%; }
	.brand-name { font-size: 1rem; }
}
