/* ==========================================================================
   Uniqor UG – Design-System
   Nachbildung des Bestandsdesigns: Inter, Violett #7c5cff, helle Flächen,
   Pill-Navbar, Karten mit weichen Schatten.
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --accent: #7c5cff;
  --accent-dark: #6847e8;
  --accent-deep: #5b3df0;
  --accent-soft: #f1edff;
  --accent-border: #ddd3ff;
  --ink: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --faint: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --red: #ef4444;
  --red-soft: #fef2f2;
  --red-border: #fecaca;
  --red-badge: #fee2e2;
  --green: #10b981;
  --green-soft: #ecfdf5;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-accent: 0 12px 28px rgba(124, 92, 255, 0.35);
  --font: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
}

/* --- Reset / Basis ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* --- Navbar ------------------------------------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center;
  padding: 16px 16px 0;
}
.navbar-inner {
  width: 100%; max-width: 1024px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-logo img { height: 32px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2px; }
.nav-links a {
  display: inline-block; padding: 8px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  white-space: nowrap; transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(0, 0, 0, 0.05); color: var(--ink); }
.nav-links a[aria-current="page"],
.nav-links a.active { color: var(--accent); }
.nav-cta { display: none; }
.burger {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px;
  border-radius: 10px;
}
.burger:hover { background: rgba(0, 0, 0, 0.05); }
.burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform 0.25s, opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 16px; right: 16px; z-index: 49;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 14px; border-radius: 10px;
  font-weight: 600; color: var(--ink); font-size: 15px;
}
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-menu .menu-cta {
  margin-top: 8px; text-align: center;
  background: var(--accent); color: #fff;
}
.mobile-menu .menu-cta:hover { background: var(--accent-dark); }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger, .mobile-menu { display: none !important; }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(124, 92, 255, 0.3); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-secondary:hover { color: var(--ink); border-color: var(--faint); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 10px; }
.btn-white { background: #fff; color: var(--accent-deep); }
.btn-white:hover { color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.45); color: #fff; }
.btn-ghost:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }

/* --- Typo-Bausteine ------------------------------------------------------ */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow-red { color: var(--red); }
h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.06; }
h2 { font-weight: 900; letter-spacing: -0.02em; }
.section-title { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; }
.lead { font-size: 18px; color: var(--muted); line-height: 1.7; }
.accent-word { color: var(--accent); }

/* --- Sektionen ----------------------------------------------------------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-alt + .section-alt { border-top: none; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head .lead { margin-top: 16px; font-size: 17px; }
.section-head-left { max-width: 680px; margin-bottom: 44px; }
.section-head-left .lead { margin-top: 16px; font-size: 17px; }

/* --- Hero (Startseite) ---------------------------------------------------- */
.hero { padding: 150px 0 56px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -220px; right: -160px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.14), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; gap: 48px; align-items: center; position: relative; }
.hero-text .lead { margin: 22px 0 30px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; min-height: 380px; display: none; }
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 128px; height: 128px; border-radius: 50%;
  background: #fff; border: 1px solid var(--accent-border);
  box-shadow: 0 18px 44px rgba(124, 92, 255, 0.22);
  display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: 13px; color: var(--ink);
  z-index: 2; padding: 12px;
}
.orbit-center span { display: block; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.orbit-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 330px; height: 330px; border-radius: 50%;
  border: 1.5px dashed var(--accent-border);
}
.orbit-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 16px; font-size: 13px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-sm); white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  z-index: 3;
}
.orbit-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-border); color: var(--accent-dark); }
.orbit-chip svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.chip-1 { top: 6%; left: 50%; transform: translateX(-50%); }
.chip-2 { top: 24%; right: 0; }
.chip-3 { bottom: 24%; right: 2%; }
.chip-4 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.chip-5 { bottom: 24%; left: 2%; }
.chip-6 { top: 24%; left: 0; }

.hero-chips-mobile { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
.hero-chips-mobile a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--ink);
}
.hero-chips-mobile a svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
  .hero-visual { display: block; }
  .hero-chips-mobile { display: none; }
}

.stats-bar { padding: 34px 0 8px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.stat { text-align: center; padding: 18px 10px; border-radius: var(--radius); background: var(--bg-alt); border: 1px solid var(--border); }
.stat strong { display: block; font-size: 28px; font-weight: 900; letter-spacing: -0.02em; color: var(--accent-deep); }
.stat span { font-size: 13px; color: var(--muted); font-weight: 600; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- Karten & Grids ------------------------------------------------------- */
.grid-2 { display: grid; gap: 22px; }
.grid-3 { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 18px; font-weight: 800; margin: 16px 0 10px; letter-spacing: -0.01em; }
.card p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 700; }
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.2s; }
.card:hover .card-link svg { transform: translateX(3px); }
a.card { display: block; color: inherit; }
a.card:hover { color: inherit; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent); display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(124, 92, 255, 0.3);
}
.icon-badge svg { width: 22px; height: 22px; color: #fff; }
.icon-badge-soft { background: var(--accent-soft); box-shadow: none; }
.icon-badge-soft svg { color: var(--accent-deep); }

/* --- Problem / Lösung (rot vs. violett) ----------------------------------- */
.problem-grid { display: grid; gap: 22px; }
@media (min-width: 860px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
.problem-card { border-radius: var(--radius); padding: 30px; }
.problem-card.before { background: var(--red-soft); border: 1px solid var(--red-border); }
.problem-card.after { background: var(--accent-soft); border: 1px solid var(--accent-border); }
.problem-card h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.problem-card.before h3 { color: var(--red); }
.problem-card.after h3 { color: var(--accent-deep); }
.problem-card li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 15px; color: var(--ink); font-weight: 500; }
.problem-card li .mini-ico {
  width: 22px; height: 22px; border-radius: 50%; flex: none; margin-top: 1px;
  display: grid; place-items: center;
}
.problem-card.before .mini-ico { background: var(--red-badge); }
.problem-card.before .mini-ico svg { width: 12px; height: 12px; color: var(--red); }
.problem-card.after .mini-ico { background: #e4dcff; }
.problem-card.after .mini-ico svg { width: 12px; height: 12px; color: var(--accent-deep); }

/* --- Schritte ------------------------------------------------------------- */
.steps-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.step-num { font-size: 13px; font-weight: 900; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { font-size: 17px; font-weight: 800; margin: 10px 0 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step .step-note { display: block; margin-top: 12px; font-size: 13px; color: var(--accent-deep); font-weight: 600; }

/* --- Akkordeon (FAQ) ------------------------------------------------------ */
.accordion { border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; text-align: left; font-size: 16px; font-weight: 700; color: var(--ink);
}
.acc-btn:hover { color: var(--accent-dark); }
.acc-btn .acc-ico {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); display: grid; place-items: center;
  transition: transform 0.25s;
}
.acc-btn .acc-ico svg { width: 13px; height: 13px; color: var(--accent-deep); }
.acc-item.open .acc-ico { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 40px 22px 4px; }
.acc-item.open .acc-body { display: block; }
.acc-body p, .acc-body li { font-size: 15px; color: var(--body); line-height: 1.75; }
.acc-body p + p { margin-top: 10px; }

/* --- Unterseiten: Hero & Breadcrumb --------------------------------------- */
.page-hero { padding: 136px 0 52px; background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(241, 237, 255, 0) 90%); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 13px; color: var(--faint); margin-bottom: 26px; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--faint); }
.breadcrumb [aria-current] { color: var(--accent-deep); font-weight: 700; }
.page-hero h1 { max-width: 820px; font-size: clamp(30px, 4.4vw, 46px); }
.page-hero .lead { margin-top: 20px; max-width: 780px; font-size: 17px; color: var(--body); }
.page-hero .hero-actions { margin-top: 28px; }

/* --- Fließtext (prose) ----------------------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 46px 0 16px; line-height: 1.25; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 800; margin: 30px 0 10px; }
.prose p { font-size: 16px; color: var(--body); line-height: 1.8; margin-bottom: 14px; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { margin: 14px 0 18px; display: grid; gap: 9px; }
.prose ul li, .prose ol li {
  position: relative; padding-left: 30px;
  font-size: 15.5px; color: var(--body); line-height: 1.7;
}
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 7px;
  width: 14px; height: 14px; 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='%235b3df0' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.prose ol { counter-reset: item; }
.prose ol li { counter-increment: item; }
.prose ol li::before {
  content: counter(item); position: absolute; left: 0; top: 2px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: 12px; font-weight: 800; display: grid; place-items: center;
}
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0 26px; font-size: 15px; }
.prose th { background: var(--bg-alt); text-align: left; font-weight: 800; color: var(--ink); }
.prose th, .prose td { border: 1px solid var(--border); padding: 12px 14px; vertical-align: top; }
.prose td { color: var(--body); line-height: 1.6; }
.prose .table-wrap { overflow-x: auto; }
.info-box {
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-radius: var(--radius); padding: 22px 26px; margin: 26px 0;
}
.info-box p { margin: 0; font-size: 15px; color: var(--ink); }
.info-box p + p { margin-top: 8px; }
.info-box strong { color: var(--accent-deep); }

/* --- Verwandte Seiten ------------------------------------------------------ */
.related-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: block; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card .rel-label { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.related-card h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin: 8px 0 6px; }
.related-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* --- CTA-Panel -------------------------------------------------------------- */
.cta-panel {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 24px; padding: 52px 34px; text-align: center; color: #fff;
  box-shadow: var(--shadow-accent);
}
.cta-panel h2 { font-size: clamp(24px, 3vw, 34px); color: #fff; max-width: 640px; margin: 0 auto; }
.cta-panel p { margin: 16px auto 28px; max-width: 560px; color: rgba(255, 255, 255, 0.85); font-size: 16px; line-height: 1.7; }
.cta-panel .hero-actions { justify-content: center; }
.cta-contactline { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; font-size: 15px; font-weight: 600; }
.cta-contactline a { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.cta-contactline a:hover { color: #fff; text-decoration: underline; }
.cta-contactline svg { width: 16px; height: 16px; opacity: 0.85; }

/* --- Kontakt ----------------------------------------------------------------- */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.contact-points { display: grid; gap: 14px; margin-top: 26px; }
.contact-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--body); font-weight: 500; }
.contact-points .mini-ico {
  width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft);
  display: grid; place-items: center; flex: none; margin-top: 1px;
}
.contact-points .mini-ico svg { width: 13px; height: 13px; color: var(--accent-deep); }
.contact-direct { margin-top: 30px; display: grid; gap: 12px; }
.contact-direct a {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; color: var(--ink); font-weight: 700; font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-direct a:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-direct a span { display: block; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.contact-direct svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field label .opt { color: var(--faint); font-weight: 500; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-alt);
  font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--faint); margin-top: 14px; line-height: 1.6; }
.form-status { display: none; margin-top: 16px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; }
.form-status.ok { display: block; background: var(--green-soft); color: #047857; border: 1px solid #a7f3d0; }
.form-status.err { display: block; background: var(--red-soft); color: #b91c1c; border: 1px solid var(--red-border); }
.btn-block { width: 100%; }

/* --- Footer -------------------------------------------------------------------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); margin-top: 88px; }
.footer-main { padding: 60px 0 40px; display: grid; gap: 38px; }
@media (min-width: 860px) { .footer-main { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 28px; } }
.footer-brand img { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-nap { margin-top: 18px; display: grid; gap: 7px; font-size: 14px; color: var(--body); }
.footer-nap a { color: var(--body); font-weight: 600; }
.footer-nap a:hover { color: var(--accent); }
.footer h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--muted); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-size: 13px; color: var(--faint);
}
.footer-bottom a { color: var(--muted); }

/* --- Einblendungen ---------------------------------------------------------------- */
.fade { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade.visible { opacity: 1; transform: none; }
.fade-d1 { transition-delay: 0.08s; }
.fade-d2 { transition-delay: 0.16s; }
.fade-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; transition: none; }
  .card, .btn, .related-card { transition: none; }
}
.no-js .fade { opacity: 1; transform: none; }

/* --- 404 --------------------------------------------------------------------------- */
.error-hero { min-height: 70vh; display: grid; place-items: center; padding: 150px 0 60px; text-align: center; }
.error-hero .code { font-size: 84px; font-weight: 900; color: var(--accent); line-height: 1; }

/* --- Utilities ----------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.center { text-align: center; }
