/* =========================================================================
   Fleetaro Theme – main.css
   Heller Premium-SaaS-Look. Eigenes CSS, kein Framework.

   Inhalt:
   1.  Design-Tokens (Variablen) – Farben & Texte hier zentral ändern
   2.  Reset & Basis
   3.  Layout-Helfer (container, section)
   4.  Buttons
   5.  Header & Navigation
   6.  Hero + Dashboard-Mockup
   7.  Problem-Section
   8.  Lösung / Vorteile
   9.  Funktionen-Grid
   10. Ablauf (Steps)
   11. Vergleichstabelle
   12. Zielgruppen
   13. Vertrauen
   14. CTA
   15. FAQ
   16. Kontakt / Formular
   17. Footer
   18. Blog-Fallback
   19. Animationen (reveal)
   20. Responsive
   ========================================================================= */

/* 1. ---------------------------------------------------------------- TOKENS */
:root {
	/* Farben – zentral anpassbar */
	--bg:            #ffffff;   /* Grundton, reines Weiß */
	--bg-2:          #f7f9fc;   /* sehr helle Sektionen / leichte Abhebung */
	--surface:       #ffffff;   /* Karten */
	--surface-2:     #f7f9fc;   /* Karten-Hover / dezente Fläche */
	--border:        #e5e7eb;   /* feine Linien & Rahmen */
	--border-strong: #d6dce5;   /* etwas kräftigere Rahmen */

	--text:          #101828;   /* primärer Text (hoher Kontrast) */
	--muted:         #667085;   /* Sekundärtext */
	--muted-2:       #98a2b3;   /* feiner Text */

	/* Akzent: hochwertiges Blau mit Petrol/Türkis als Zweitfarbe */
	--accent:        #2563eb;
	--accent-2:      #0ea5a4;
	--accent-soft:   rgba(37, 99, 235, 0.10);
	--accent-grad:   linear-gradient(135deg, #2563eb 0%, #0ea5a4 100%);

	/* Status (dezent) */
	--ok:    #12b76a;
	--warn:  #f79009;
	--info:  #2563eb;

	/* Form */
	--radius:    14px;
	--radius-lg: 22px;
	--radius-sm: 10px;
	--shadow:    0 1px 2px rgba(16, 24, 40, 0.05), 0 12px 28px -14px rgba(16, 24, 40, 0.16);
	--shadow-lg: 0 1px 3px rgba(16, 24, 40, 0.06), 0 32px 60px -28px rgba(16, 24, 40, 0.24);
	--ring:      0 0 0 3px rgba(37, 99, 235, 0.30);

	--maxw:        1200px;
	--maxw-narrow: 820px;
	--gutter:      24px;

	--font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 2. ----------------------------------------------------------------- RESET */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }

p { margin: 0; }

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

button { font-family: inherit; cursor: pointer; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

::selection { background: rgba(37, 99, 235, 0.16); color: var(--text); }

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

.skip-link {
	position: fixed; top: -60px; left: 16px; z-index: 999;
	background: var(--accent); color: #fff;
	padding: 10px 16px; border-radius: 8px;
	transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* 3. ---------------------------------------------------------------- LAYOUT */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--problem  { background: var(--bg-2); }
.section--features { background: var(--bg-2); }
.section--compare  { background: var(--bg-2); }
.section--faq      { background: var(--bg-2); }

.eyebrow {
	display: inline-block;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 14px;
}

.section-head {
	max-width: 720px;
	margin: 0 auto clamp(40px, 6vw, 64px);
	text-align: center;
}
.section-head--left { text-align: left; margin-inline: 0; }

.section-title {
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
	letter-spacing: -0.025em;
	color: var(--text);
}
.section-lead {
	margin-top: 16px;
	color: var(--muted);
	font-size: 1.075rem;
}
.section-foot {
	margin-top: 28px;
	text-align: center;
	color: var(--muted-2);
	font-size: .95rem;
}

/* 4. --------------------------------------------------------------- BUTTONS */
.btn {
	--btn-bg: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 13px 22px;
	font-weight: 600;
	font-size: .98rem;
	line-height: 1;
	letter-spacing: -0.01em;
	transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
	white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn--sm { padding: 10px 16px; font-size: .9rem; border-radius: 10px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
	background: var(--accent-grad);
	color: #fff;
	box-shadow: 0 10px 24px -10px rgba(37, 99, 235, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(37, 99, 235, 0.6); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
	background: #fff;
	border-color: var(--border-strong);
	color: var(--text);
}
.btn--ghost:hover { background: var(--bg-2); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* 5. ----------------------------------------------------------------- HEADER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck {
	background: rgba(255, 255, 255, 0.92);
	border-bottom-color: var(--border);
	box-shadow: 0 8px 24px -18px rgba(16, 24, 40, 0.45);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 74px;
}

.site-branding { flex: 0 0 auto; }
.custom-logo { max-height: 40px; width: auto; }

.site-logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.28rem; letter-spacing: -0.03em; }
.site-logo__mark {
	width: 30px; height: 30px; border-radius: 9px;
	background: var(--accent-grad);
	position: relative;
	box-shadow: 0 6px 16px -6px rgba(37, 99, 235, 0.55);
	flex: 0 0 auto;
}
.site-logo__mark::after {
	content: ""; position: absolute; inset: 8px 8px auto 8px; height: 4px;
	border-radius: 4px; background: rgba(255,255,255,.9);
	box-shadow: 0 8px 0 rgba(255,255,255,.6);
}
.site-logo__text { color: var(--text); }

.site-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
	display: inline-block;
	padding: 9px 14px;
	border-radius: 9px;
	color: var(--muted);
	font-size: .96rem;
	font-weight: 500;
}
.nav-menu a:hover { color: var(--text); background: var(--bg-2); }
.nav-menu .current-menu-item > a { color: var(--text); }

.site-header__actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--border-strong);
	border-radius: 11px;
	background: #fff;
	flex-direction: column;
	align-items: center; justify-content: center;
	gap: 5px;
}
.nav-toggle__bar { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
	border-top: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(14px);
	padding-block: 18px 26px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__menu { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.mobile-nav__menu a { display: block; padding: 13px 12px; border-radius: 10px; color: var(--text); font-weight: 500; font-size: 1.05rem; }
.mobile-nav__menu a:hover { background: var(--bg-2); }

/* 6. ------------------------------------------------------------------ HERO */
.hero { position: relative; padding-block: clamp(72px, 11vw, 140px); overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.hero__glow--a { width: 520px; height: 520px; top: -160px; left: -120px; background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%); }
.hero__glow--b { width: 600px; height: 600px; top: -90px; right: -180px; background: radial-gradient(circle, rgba(14,165,164,.16), transparent 70%); }
.hero__grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(16,24,40,.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16,24,40,.035) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

.hero__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}
.hero__title {
	font-size: clamp(2.2rem, 5vw, 3.65rem);
	letter-spacing: -0.035em;
	color: var(--text);
}
.hero__subtitle {
	margin-top: 22px;
	font-size: 1.15rem;
	color: var(--muted);
	max-width: 560px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.hero__points li { position: relative; padding-left: 26px; color: var(--muted); font-size: .95rem; }
.hero__points li::before {
	content: ""; position: absolute; left: 0; top: 6px;
	width: 17px; height: 17px; border-radius: 50%;
	background: var(--accent-soft);
	box-shadow: inset 0 0 0 1px rgba(37,99,235,.35);
}
.hero__points li::after {
	content: ""; position: absolute; left: 5px; top: 10px;
	width: 6px; height: 3px; border-left: 2px solid var(--accent);
	border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}

/* Dashboard-Mockup (hell, wie eine echte Web-App) */
.hero__visual { position: relative; perspective: 1600px; }
.mockup {
	border-radius: var(--radius-lg);
	background: #ffffff;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	transform: rotateY(-9deg) rotateX(3deg);
	transform-origin: center;
	transition: transform .5s ease;
}
.hero__visual:hover .mockup { transform: rotateY(-4deg) rotateX(1deg); }
.mockup__bar {
	display: flex; align-items: center; gap: 7px;
	padding: 12px 16px;
	background: var(--bg-2);
	border-bottom: 1px solid var(--border);
}
.mockup__dot { width: 11px; height: 11px; border-radius: 50%; background: #d0d5dd; }
.mockup__dot:nth-child(1) { background: #ff5f57; }
.mockup__dot:nth-child(2) { background: #febc2e; }
.mockup__dot:nth-child(3) { background: #28c840; }
.mockup__url { margin-left: 12px; font-size: .76rem; color: var(--muted-2); }

.mockup__app { display: grid; grid-template-columns: 62px 1fr; min-height: 360px; }
.mockup__side { padding: 18px 12px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid var(--border); background: var(--bg-2); }
.mockup__logo { width: 28px; height: 28px; border-radius: 8px; background: var(--accent-grad); }
.mockup__nav { width: 100%; height: 9px; border-radius: 5px; background: rgba(16,24,40,.07); }
.mockup__nav--active { background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(37,99,235,.4); }

.mockup__main { padding: 22px; background: #fff; }
.mockup__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mockup__h1 { display: block; font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; color: var(--text); }
.mockup__h2 { display: block; font-size: .78rem; color: var(--muted-2); margin-top: 3px; }
.mockup__pill { font-size: .72rem; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: var(--accent-grad); color: #fff; }

.mockup__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.mockup__stat { background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.mockup__stat-label { display: block; font-size: .66rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; }
.mockup__stat-value { display: block; font-size: 1.18rem; font-weight: 700; margin-top: 6px; letter-spacing: -.02em; color: var(--text); }
.mockup__stat-value--accent { color: var(--accent); }

.mockup__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mockup__panel { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.mockup__panel-title { display: block; font-size: .74rem; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.mockup__chart { display: flex; align-items: flex-end; gap: 8px; height: 96px; }
.mockup__chart span { flex: 1; height: var(--h); border-radius: 5px 5px 3px 3px; background: linear-gradient(180deg, #2563eb, rgba(14,165,164,.55)); }
.mockup__rows { display: flex; flex-direction: column; gap: 9px; }
.mockup__rows li { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .76rem; color: var(--muted); }
.mockup__row-main { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup__tag { font-size: .64rem; font-weight: 600; padding: 4px 8px; border-radius: 6px; flex: 0 0 auto; }
.mockup__tag--out  { background: rgba(37,99,235,.12); color: #1d4ed8; }
.mockup__tag--in   { background: rgba(18,183,106,.14); color: #067647; }
.mockup__tag--sign { background: rgba(14,165,164,.14); color: #0e7c7b; }

.hero__floating {
	position: absolute; z-index: 2;
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 12px 16px;
	box-shadow: var(--shadow);
	animation: floaty 5s ease-in-out infinite;
}
.hero__floating::before {
	content: ""; width: 9px; height: 9px; border-radius: 50%;
	display: inline-block; margin-right: 9px; background: var(--ok);
	box-shadow: 0 0 0 4px rgba(18,183,106,.16);
}
.hero__floating-label { font-size: .82rem; font-weight: 600; color: var(--text); }
.hero__floating--a { top: 8%; left: -28px; }
.hero__floating--b { bottom: 10%; right: -18px; animation-delay: 1.4s; }
.hero__floating--b::before { background: var(--info); box-shadow: 0 0 0 4px rgba(37,99,235,.16); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* 7. ---------------------------------------------------------------- PROBLEM */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.problem-card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.problem-card__icon {
	width: 38px; height: 38px; border-radius: 10px;
	display: grid; place-items: center; margin-bottom: 16px;
	background: rgba(249, 112, 102, 0.12);
	position: relative;
}
.problem-card__icon::before,
.problem-card__icon::after {
	content: ""; position: absolute; width: 16px; height: 2px; border-radius: 2px;
	background: #f97066;
}
.problem-card__icon::before { transform: rotate(45deg); }
.problem-card__icon::after  { transform: rotate(-45deg); }
.problem-card__title { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.problem-card__text { color: var(--muted); font-size: .94rem; }

/* 8. -------------------------------------------------------------- SOLUTION */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card {
	background: linear-gradient(165deg, #ffffff, #f7f9fc);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	position: relative;
	overflow: hidden;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.benefit-card::after {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
	background: var(--accent-grad); opacity: 0; transition: opacity .25s ease;
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.benefit-card:hover::after { opacity: 1; }
.benefit-card__check {
	width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
	background: var(--accent-soft); margin-bottom: 18px; position: relative;
}
.benefit-card__check::after {
	content: ""; width: 13px; height: 7px; border-left: 2.5px solid var(--accent);
	border-bottom: 2.5px solid var(--accent); transform: rotate(-45deg) translateY(-2px);
}
.benefit-card__title { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.benefit-card__text { color: var(--muted); font-size: .95rem; }

/* 9. -------------------------------------------------------------- FEATURES */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 18px; }
.feature-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.45); box-shadow: var(--shadow); }
.feature-card__icon {
	width: 48px; height: 48px; border-radius: 13px;
	display: grid; place-items: center; margin-bottom: 18px;
	background: var(--accent-soft);
	color: var(--accent);
	box-shadow: inset 0 0 0 1px rgba(37,99,235,.16);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title { font-size: 1.12rem; margin-bottom: 9px; color: var(--text); }
.feature-card__text { color: var(--muted); font-size: .94rem; }

/* 10. ------------------------------------------------------------------ STEPS */
.step-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step-item { position: relative; padding-top: 12px; }
.step-item::before {
	content: ""; position: absolute; top: 30px; left: 56px; right: -20px; height: 2px;
	background: linear-gradient(90deg, var(--border-strong), transparent);
}
.step-item:last-child::before { display: none; }
.step-item__num {
	display: inline-grid; place-items: center;
	width: 52px; height: 52px; border-radius: 15px;
	background: #fff; border: 1px solid var(--border);
	font-weight: 700; font-size: 1.15rem; color: var(--accent);
	margin-bottom: 18px;
	box-shadow: var(--shadow);
}
.step-item__title { font-size: 1.12rem; margin-bottom: 8px; color: var(--text); }
.step-item__text { color: var(--muted); font-size: .94rem; }

/* 11. --------------------------------------------------------------- COMPARE */
.compare-wrap {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th,
.compare-table td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table thead th { font-size: .98rem; color: var(--muted); font-weight: 600; }
.compare-table thead th.compare-table__highlight { color: var(--text); }
.compare-table tbody th[scope="row"] { text-align: left; font-weight: 600; color: var(--text); font-size: .96rem; }
.compare-table .compare-table__feature { text-align: left; }
.compare-table__highlight { position: relative; background: rgba(37,99,235,.05); }
.compare-table thead th.compare-table__highlight {
	background: var(--accent-grad); color: #fff; font-weight: 700;
	border-top-left-radius: 12px; border-top-right-radius: 12px;
}
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }

.mark { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; }
.mark svg { width: 17px; height: 17px; }
.mark--yes  { background: rgba(18,183,106,.14); color: var(--ok); }
.mark--part { background: rgba(247,144,9,.16); color: var(--warn); }
.mark--no   { background: rgba(16,24,40,.05); color: var(--muted-2); }

/* 12. -------------------------------------------------------------- AUDIENCE */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.audience-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	position: relative;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.audience-card::before {
	content: ""; position: absolute; left: 24px; top: 24px;
	width: 34px; height: 4px; border-radius: 4px; background: var(--accent-grad);
}
.audience-card { padding-top: 44px; }
.audience-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.audience-card__title { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.audience-card__text { color: var(--muted); font-size: .94rem; }

/* 13. ----------------------------------------------------------------- TRUST */
.trust-panel {
	background: linear-gradient(165deg, #ffffff, #f4f7fb);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(32px, 5vw, 56px);
	box-shadow: var(--shadow);
}
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 36px; margin-top: 36px; }
.trust-list li { position: relative; padding-left: 22px; }
.trust-list li::before {
	content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px;
	border-radius: 50%; background: var(--accent-grad);
	box-shadow: 0 0 0 4px var(--accent-soft);
}
.trust-list h3 { font-size: 1.06rem; margin-bottom: 7px; color: var(--text); }
.trust-list p { color: var(--muted); font-size: .93rem; }

/* 14. ------------------------------------------------------------------- CTA */
.cta-panel {
	position: relative;
	text-align: center;
	border-radius: var(--radius-lg);
	padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 64px);
	background: linear-gradient(135deg, #1d4ed8 0%, #0ea5a4 100%);
	overflow: hidden;
	box-shadow: 0 30px 60px -28px rgba(29, 78, 216, 0.5);
}
.cta-panel__glow {
	position: absolute; inset: auto 0 -50% 0; height: 120%;
	background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255,255,255,.25), transparent 70%);
	pointer-events: none;
}
.cta-panel__title { position: relative; font-size: clamp(1.7rem, 4vw, 2.7rem); color: #fff; }
.cta-panel__text { position: relative; margin: 18px auto 32px; color: rgba(255,255,255,.88); max-width: 560px; font-size: 1.08rem; }
.cta-panel .btn { position: relative; }
.cta-panel .btn--primary {
	background: #fff;
	color: #1d4ed8;
	box-shadow: 0 12px 28px -12px rgba(16, 24, 40, 0.45);
}
.cta-panel .btn--primary:hover { background: #f7f9fc; color: #1d4ed8; box-shadow: 0 16px 34px -12px rgba(16, 24, 40, 0.5); }

/* 15. ------------------------------------------------------------------- FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item.is-open { border-color: rgba(37,99,235,.4); box-shadow: var(--shadow); }
.faq-item__q {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: transparent; border: 0; color: var(--text);
	padding: 20px 22px; text-align: left; font-size: 1.04rem; font-weight: 600;
}
.faq-item__icon { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq-item__icon::before,
.faq-item__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.faq-item__icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-item__icon::after  { left: 9px; top: 2px; width: 2px; height: 16px; }
.faq-item.is-open .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a { padding: 0 22px 22px; color: var(--muted); }
.faq-item__a[hidden] { display: none; }
.faq-item__a p { max-width: 60ch; }

/* 16. --------------------------------------------------------------- CONTACT */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-points { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.contact-points li { position: relative; padding-left: 28px; color: var(--muted); }
.contact-points li::before {
	content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px; border-radius: 50%;
	background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(37,99,235,.35);
}
.contact-points li::after {
	content: ""; position: absolute; left: 5px; top: 9px; width: 6px; height: 3px;
	border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}

.contact-form-wrap {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 38px);
	box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field__label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	background: #fff;
	border: 1px solid var(--border-strong);
	border-radius: 11px;
	padding: 13px 15px;
	color: var(--text);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-2); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none; border-color: var(--accent); background: #fff;
	box-shadow: 0 0 0 3px rgba(37,99,235,.16);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form-field option { background: #fff; color: var(--text); }

.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-hint { font-size: .82rem; color: var(--muted-2); margin-top: 4px; }

.form-notice { padding: 14px 16px; border-radius: 11px; margin-bottom: 20px; font-size: .95rem; font-weight: 500; }
.form-notice--success { background: rgba(18,183,106,.10); border: 1px solid rgba(18,183,106,.4); color: #067647; }
.form-notice--error   { background: rgba(240,68,56,.08); border: 1px solid rgba(240,68,56,.35); color: #b42318; }

/* 17. ---------------------------------------------------------------- FOOTER */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: 64px 32px; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.site-footer__claim { margin-top: 18px; color: var(--muted); max-width: 360px; font-size: .95rem; }
.site-footer__title { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 16px; }
.site-footer__list { display: flex; flex-direction: column; gap: 11px; }
.site-footer__list a { color: var(--muted); font-size: .95rem; }
.site-footer__list a:hover { color: var(--text); }
.site-footer__list--plain { margin-bottom: 18px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; }
.site-footer__copy { color: var(--muted-2); font-size: .88rem; }
.site-footer__legal-menu { display: flex; gap: 22px; }
.site-footer__legal-menu a { color: var(--muted-2); font-size: .88rem; }
.site-footer__legal-menu a:hover { color: var(--text); }

/* 18. ----------------------------------------------------------- BLOG FALLBACK */
.content-area { padding-block: 64px; }
.page-head { margin-bottom: 36px; }
.page-head__title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--text); }
.page-head__desc { color: var(--muted); margin-top: 12px; }
.post-list { display: grid; gap: 28px; }
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.post-card__media img { width: 100%; object-fit: cover; }
.post-card__body { padding: 28px; }
.post-card__title { font-size: 1.5rem; margin-bottom: 10px; color: var(--text); }
.post-card__title a:hover { color: var(--accent); }
.post-card__meta { color: var(--muted-2); font-size: .88rem; margin-bottom: 14px; }
.post-card__content { color: var(--muted); }
.post-card__content a { color: var(--accent); }
.post-card__more { display: inline-block; margin-top: 16px; font-weight: 600; color: var(--accent); }
.pagination { margin-top: 40px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 10px 15px; border-radius: 10px; border: 1px solid var(--border); color: var(--muted); }
.pagination .current { background: var(--accent-grad); color: #fff; border-color: transparent; }

/* 19. ------------------------------------------------------------ ANIMATIONS */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
/* gestaffeltes Erscheinen innerhalb von Grids */
.problem-grid .reveal,
.benefit-grid .reveal,
.feature-grid .reveal,
.audience-grid .reveal,
.step-list .reveal { transition-delay: calc(var(--i, 0) * 60ms); }

@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.hero__floating, .mockup { animation: none; transform: none; }
}

/* 20. ------------------------------------------------------------- RESPONSIVE */
@media (max-width: 1080px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { max-width: 620px; }
	.mockup { transform: none; }
	.hero__visual:hover .mockup { transform: none; }
	.hero__floating--a { left: 4px; }
	.hero__floating--b { right: 4px; }
	.problem-grid { grid-template-columns: repeat(2, 1fr); }
	.benefit-grid { grid-template-columns: repeat(2, 1fr); }
	.step-list { grid-template-columns: repeat(2, 1fr); }
	.step-item::before { display: none; }
	.trust-list { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.site-nav, .header-cta { display: none; }
	.nav-toggle { display: flex; }
	.contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
	body { font-size: 16px; }
	.problem-grid,
	.benefit-grid { grid-template-columns: 1fr; }
	.step-list { grid-template-columns: 1fr; }
	.trust-list { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.hero__floating { display: none; }
	.compare-table th, .compare-table td { padding: 14px 12px; font-size: .9rem; }
	.compare-table thead th { font-size: .82rem; }
}

/* Tabellen-Scroll auf sehr schmalen Screens */
@media (max-width: 520px) {
	.compare-wrap { overflow-x: auto; }
	.compare-table { min-width: 460px; }
}
