/* ═══════════════════════════════════════════════════════════════
   concepment 2026 — Dark AI Landing
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #05060b;
  --bg2: #0a0d17;
  --card: rgba(255, 255, 255, 0.035);
  --card-hover: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef0f8;
  --muted: #9aa3b8;
  --violet: #684898;
  --cyan: #00b8f0;

  /* Logo-Palette (aus dem #-Zeichen gesampelt) */
  --c-cyan: #00b8f0; --c-blue: #2878b8; --c-purple: #684898; --c-magenta: #e82890;
  --c-green: #30b048; --c-lime: #a0c838; --c-orange: #f8a828; --c-yellow: #f8f030;
  --c-red: #e83028; --c-navy: #203878;
  /* Text-Tints von Blau und Lila: dieselben Logo-Töne, leicht aufgehellt,
     damit Schrift auf dunklem Grund die Kontrastnorm (4,5:1) erfüllt.
     Flächen, Rahmen und Glows nutzen weiterhin die Originalwerte. */
  --c-blue-t: #3684c2; --c-purple-t: #937bbb; --c-navy-t: #5580d2;

  /* Farb-Kombinationen: pro Schrift maximal 2–3 Logo-Farben, nie das ganze Spektrum.
     Jede Sektion bekommt eine andere Kombination — so sind alle Logo-Farben
     auf der Seite vertreten, ohne dass ein Text wie ein Regenbogen wirkt. */
  --g-cyan-blue:      linear-gradient(100deg, var(--c-cyan), var(--c-blue-t));
  --g-blue-purple:    linear-gradient(100deg, var(--c-blue-t), var(--c-purple-t));
  --g-purple-magenta: linear-gradient(100deg, var(--c-purple-t), var(--c-magenta));
  --g-magenta-orange: linear-gradient(100deg, var(--c-magenta), var(--c-orange));
  --g-orange-yellow:  linear-gradient(100deg, var(--c-orange), var(--c-yellow));
  --g-green-lime:     linear-gradient(100deg, var(--c-green), var(--c-lime));
  --g-lime-cyan:      linear-gradient(100deg, var(--c-lime), var(--c-cyan));
  --g-red-orange:     linear-gradient(100deg, var(--c-red), var(--c-orange));
  --g-cyan-purple:    linear-gradient(100deg, var(--c-cyan), var(--c-purple-t));
  --g-navy-cyan:      linear-gradient(100deg, var(--c-navy-t), var(--c-cyan));
  --g-red-yellow:     linear-gradient(100deg, var(--c-red), var(--c-yellow));
  --g-trio-cool:      linear-gradient(100deg, var(--c-blue-t), var(--c-purple-t), var(--c-magenta));
  --g-trio-tech:      linear-gradient(100deg, var(--c-cyan), var(--c-blue-t), var(--c-purple-t));
  --g-trio-fresh:     linear-gradient(100deg, var(--c-green), var(--c-lime), var(--c-cyan));

  --grad-brand: var(--g-cyan-blue);
  /* Buttons: Lila → Blau (weisser Text auf beiden lesbar); Cyan bleibt im Glow */
  --grad-cta: linear-gradient(120deg, #684898, #2878b8);
  --radius: 18px;
  --nav-h: 74px;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.container-narrow { width: min(860px, 92vw); }

.grad-text {
  background: var(--grad-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 7s ease-in-out infinite alternate;
}
@keyframes gradShift { from { background-position: 0% center; } to { background-position: 100% center; } }

::selection { background: rgba(104, 72, 152, 0.45); }

/* ── Farb-Kombinationen je Sektion ───────────────────────────
   Überschrift und Sektions-Label teilen sich die Kombination. */
#hero .grad-text                                   { background-image: var(--g-trio-cool); }
#probleme .grad-text,   #probleme .section-label   { background-image: var(--g-red-orange); }
#leistungen .grad-text, #leistungen .section-label { background-image: var(--g-cyan-blue); }
#erp .grad-text,        #erp .section-label        { background-image: var(--g-purple-magenta); }
#altsysteme .grad-text, #altsysteme .section-label { background-image: var(--g-navy-cyan); }
#startups .grad-text,   #startups .section-label   { background-image: var(--g-magenta-orange); }
#tempo .grad-text,      #tempo .section-label      { background-image: var(--g-red-yellow); }
#ablauf .grad-text,     #ablauf .section-label     { background-image: var(--g-green-lime); }
#kosten .grad-text,     #kosten .section-label     { background-image: var(--g-orange-yellow); }
#rechner .grad-text,    #rechner .section-label    { background-image: var(--g-lime-cyan); }
#team .grad-text,       #team .section-label       { background-image: var(--g-blue-purple); }
#gf .grad-text,         #gf .section-label         { background-image: var(--g-trio-tech); }
#faq .grad-text,        #faq .section-label        { background-image: var(--g-cyan-purple); }
#kontakt .grad-text                                { background-image: var(--g-trio-fresh); }

/* Statement: vier Schlüsselwörter, vier verschiedene Zweier-Kombinationen */
.statement-text em:nth-of-type(1) { background-image: var(--g-cyan-blue); }
.statement-text em:nth-of-type(2) { background-image: var(--g-purple-magenta); }
.statement-text em:nth-of-type(3) { background-image: var(--g-green-lime); }
.statement-text em:nth-of-type(4) { background-image: var(--g-orange-yellow); }

/* Marquee: jedes #-Zeichen in einer anderen, einfarbigen Logo-Farbe */
.marquee-track i:nth-child(14n+2)  { background: none; color: var(--c-cyan); }
.marquee-track i:nth-child(14n+4)  { background: none; color: var(--c-magenta); }
.marquee-track i:nth-child(14n+6)  { background: none; color: var(--c-lime); }
.marquee-track i:nth-child(14n+8)  { background: none; color: var(--c-orange); }
.marquee-track i:nth-child(14n+10) { background: none; color: var(--c-purple-t); }
.marquee-track i:nth-child(14n+12) { background: none; color: var(--c-yellow); }
.marquee-track i:nth-child(14n+14) { background: none; color: var(--c-navy-t); }

/* #-Separator im Markenstil (ersetzt Gedankenstriche) */
.hsep {
  font-family: var(--font-head); font-weight: 700; font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: 0 1px;
}
/* In Buttons: Textfarbe erben statt Gradient (sonst auf Gradient-Grund unsichtbar) */
.btn .hsep {
  background: none;
  -webkit-background-clip: border-box; background-clip: border-box;
  color: inherit;
}

/* Kontaktdaten als Bild (Anti-Scraping) */
.ci { width: auto; display: inline-block; vertical-align: middle; }
.ci-name { height: 27px; }
.ci-btn { height: 17px; }
.ci-row { height: 17px; margin-top: 4px; display: block; }
.ci-foot { height: 15px; opacity: 0.8; margin: 5px 0; display: block; }
.ci-nav { height: 15px; display: block; margin-top: 2px; }
a[data-clink] { cursor: pointer; }

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.55s ease, visibility 0.55s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo {
  height: clamp(96px, 16vw, 150px); width: auto;
  animation: logoBreathe 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 46px rgba(104, 72, 152, 0.35));
}
@keyframes logoBreathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 7, 13, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.nav-inner {
  width: min(1200px, 92vw); margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo img {
  height: 42px; width: auto; max-width: none; display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) {
  font-size: 0.95rem; font-weight: 500; color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-cta); border-radius: 2px; transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 6px 24px rgba(40, 120, 184, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(0, 184, 240, 0.5); }
.btn-glow { position: relative; }
.btn-glow::before {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: var(--grad-cta); filter: blur(16px); opacity: 0.55;
  animation: breathe 3.2s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.7; } }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
.btn-small { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 56px) 0 90px;
  overflow: hidden;
}
#particles { position: absolute; inset: 0; z-index: 1; opacity: 0.8; pointer-events: none; }
.aurora { position: absolute; inset: 0; z-index: 0; filter: blur(90px); }
.blob { position: absolute; border-radius: 50%; opacity: 0.5; mix-blend-mode: screen; }
.b1 { width: 46vw; height: 46vw; background: #684898; top: -12%; left: -8%; animation: drift1 16s ease-in-out infinite alternate; }
.b2 { width: 36vw; height: 36vw; background: #1a5c8f; bottom: -14%; right: -6%; animation: drift2 19s ease-in-out infinite alternate; }
.b3 { width: 24vw; height: 24vw; background: #8a1a5a; top: 32%; right: 26%; animation: drift3 14s ease-in-out infinite alternate; }
/* Startseiten-Hero: Aurora zurueckgenommen, damit der Sternenhimmel durchkommt.
   Rechts oben zusaetzlich abgedunkelt — dort lag der hellste Schleier. */
#hero .blob { opacity: 0.36; }
#hero .b3 { width: 20vw; height: 20vw; top: 40%; }
#hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 78% 6%, rgba(5, 6, 11, 0.72), transparent 58%);
}
@keyframes drift1 { to { transform: translate(9vw, 7vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-7vw, -6vh) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-5vw, 8vh) scale(1.25); } }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  font-size: 0.86rem; font-weight: 500; color: var(--muted);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #30b048;
  box-shadow: 0 0 0 0 rgba(48, 176, 72, 0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 70% { box-shadow: 0 0 0 9px rgba(48, 176, 72, 0); } 100% { box-shadow: 0 0 0 0 rgba(48, 176, 72, 0); } }

/* Eigene Block-Zeile mit fester Hoehe: Tippen kann das Layout nie verschieben */
.typed-wrap {
  display: flex; align-items: center;
  height: 1.18em; overflow: hidden;
  white-space: nowrap;
}
.caret {
  width: 3px; height: 0.95em; margin-left: 6px; border-radius: 2px;
  background: var(--cyan); align-self: center;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub { color: var(--muted); font-size: 1.12rem; max-width: 58ch; margin: 26px 0 34px; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; color: var(--muted); font-size: 0.95rem;
}
.hero-trust b { color: var(--text); }
.hero-trust svg { width: 18px; height: 18px; color: #30b048; flex: none; }

.hero-stats {
  display: flex; gap: 42px; margin-top: 40px; flex-wrap: wrap;
}
.stat b { font-family: var(--font-head); font-size: 1.7rem; display: block; letter-spacing: -0.02em; }
.stat > span { color: var(--muted); font-size: 0.86rem; }
.stat b span { font-size: inherit; color: inherit; }

.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  transform-style: preserve-3d;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.frame-glow {
  position: absolute; inset: 0;
  background: linear-gradient(210deg, rgba(104, 72, 152, 0.22), transparent 45%, rgba(0, 184, 240, 0.14));
  pointer-events: none;
}

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-radius: 16px;
  background: rgba(13, 16, 28, 0.82); border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card b { display: block; font-size: 0.86rem; font-weight: 600; }
.float-card small { color: var(--muted); font-size: 0.76rem; }
.fc1 { top: -26px; right: 4%; animation-delay: 0s; }
.fc2 { bottom: 20%; left: -46px; animation-delay: 1.6s; }
.fc3 { bottom: -24px; right: 10%; animation-delay: 3s; }
.fc4 { top: 16%; left: -52px; animation-delay: 2.2s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
.fc-icon {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.fc-icon.ok { background: rgba(48, 176, 72, 0.16); color: #30b048; }
.fc-icon.free { background: rgba(48, 176, 72, 0.16); color: #30b048; font-size: 0.78rem; }
.fc-icon.de { background: rgba(0, 184, 240, 0.16); color: #00b8f0; font-size: 0.72rem; }
.fc-icon.ai {
  background: conic-gradient(from 40deg, #00b8f0, #2878b8, #684898, #00b8f0);
  animation: spin 5s linear infinite;
  -webkit-mask: radial-gradient(circle at center, transparent 34%, #000 36%);
          mask: radial-gradient(circle at center, transparent 34%, #000 36%);
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.25); border-radius: 999px;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; border-radius: 4px;
  background: var(--cyan); transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 7px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden; padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.08em;
}
.marquee-track i {
  font-style: normal; font-weight: 700;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg2); border-block: 1px solid var(--line); }
.section-label {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); max-width: 64ch; margin-top: 18px; font-size: 1.08rem; }

/* ── Cards / Pains ─────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-grid { margin-top: 52px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(104, 72, 152, 0.18), rgba(0, 184, 240, 0.12));
  border: 1px solid rgba(104, 72, 152, 0.3);
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: #8fbfe8; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card.pain h3 { margin-bottom: 10px; }
.card.pain p { color: var(--muted); font-size: 0.97rem; }

/* ── Statement ─────────────────────────────────────────────── */
.statement { padding: 96px 0; background: var(--bg2); border-block: 1px solid var(--line); overflow: hidden; }
.statement-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.statement-text {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.35; letter-spacing: -0.015em;
  max-width: 30ch; text-wrap: balance;
}
.statement-visual { position: relative; }
.statement-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.statement-frame > img {
  width: 100%; aspect-ratio: 16/10.5; object-fit: cover;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.1) translateX(-2.5%); }
}
.speed-compare {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 24px 20px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 11, 0.92) 55%);
}
.sc-title { color: var(--muted); font-size: 0.78rem; margin-bottom: 8px; letter-spacing: 0.04em; }
.sc-row {
  display: grid; grid-template-columns: 158px 1fr 118px; align-items: center; gap: 12px;
  margin-bottom: 9px;
}
.sc-row-old { margin-top: 22px; }
.sc-label { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; }
.sc-track {
  height: 9px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.1); overflow: hidden;
}
.sc-track-old { overflow: visible; position: relative; }
.sc-track { position: relative; }
.sc-bar { position: relative; height: 100%; border-radius: inherit; width: 0; }
/* Plan-Zone der KI-Zeile: startet bei 1 Monat, waechst stufenweise bis 12 Wochen */
.sc-plan {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  border-radius: inherit;
  background: rgba(0, 184, 240, 0.16);
  border-right: 2px dashed rgba(0, 184, 240, 0.55);
  transition: width 0.5s ease;
}
.sc-note { color: var(--muted); font-size: 0.78rem; margin-top: 10px; }
.sc-old { background: rgba(255, 255, 255, 0.32); }
.sc-new {
  background: var(--grad-cta);
  box-shadow: 0 0 14px rgba(0, 184, 240, 0.55);
}
.sc-new.done { animation: newDone 1.8s ease-in-out infinite; }
@keyframes newDone {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 184, 240, 0.45); }
  50% { box-shadow: 0 0 26px rgba(0, 184, 240, 0.85); }
}
.sc-tick {
  position: absolute; left: var(--x); top: -4px; bottom: -4px; width: 2px;
  background: rgba(255, 255, 255, 0.18); border-radius: 2px;
  transition: background 0.3s;
}
.sc-tick i {
  position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  font-style: normal; font-family: var(--font-head); font-weight: 600; font-size: 0.66rem;
  color: var(--muted); opacity: 0.4; white-space: nowrap;
  transition: opacity 0.3s, color 0.3s;
}
.sc-tick.lit { background: rgba(255, 255, 255, 0.55); }
.sc-tick.lit i { opacity: 1; color: var(--text); text-shadow: 0 0 12px rgba(255, 255, 255, 0.35); }
.sc-value { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; white-space: nowrap; text-align: right; }
.sc-chip { position: absolute; top: -22px; right: 26px; animation-delay: 0.8s; display: flex; }
.statement-text em {
  font-style: normal;
  background: var(--grad-brand); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 6s ease-in-out infinite alternate;
}

/* ── Services ──────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px;
}
.card.service { display: flex; flex-direction: column; }
.card.service.featured {
  grid-column: span 2; grid-row: span 2;
  display: grid; grid-template-rows: auto 1fr; padding: 0; overflow: hidden;
}
.card.service.wide { grid-column: span 3; }
@media (min-width: 761px) and (max-width: 1080px) {
  .card.service.wide { grid-column: span 2; }
  .services-grid > .card.service:nth-last-child(2) { grid-column: span 2; }
}
@media (max-width: 760px)  { .card.service.wide { grid-column: span 1; } }
@media (min-width: 761px) {
  .card.service.wide ul { columns: 2; column-gap: 34px; }
  .card.service.wide p { max-width: 72ch; }
}
.service-img { overflow: hidden; }
.service-img img { width: 100%; height: auto; display: block; transition: transform 0.7s ease; }
.card.service.featured:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 30px; }
.card.service h3 { margin-bottom: 12px; font-size: 1.3rem; }
.card.service.featured h3 { font-size: 1.6rem; }
.card.service p { color: var(--muted); font-size: 0.97rem; }
.card.service ul { margin: 16px 0 0; padding: 0; list-style: none; }
.card.service li {
  position: relative; padding-left: 26px; color: var(--text);
  font-size: 0.93rem; margin-bottom: 8px;
}
.card.service li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid #30b048; border-bottom: 2px solid #30b048;
  transform: rotate(-45deg);
}
.price-tag {
  margin-top: auto; padding-top: 20px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--cyan);
}
.service-body .price-tag { margin-top: 20px; padding-top: 0; }
.price-tag small { color: var(--muted); font-weight: 500; }
.price-tag.free { color: #30b048; }

/* ── ERP Split + Orbit ─────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split-copy > p { color: var(--muted); margin-top: 18px; }
.check-list { list-style: none; margin: 26px 0 0; padding: 0; }
.check-list li {
  position: relative; padding: 10px 0 10px 34px; color: var(--muted);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.check-list li b { color: var(--text); }
.check-list li::before {
  content: ""; position: absolute; left: 2px; top: 18px;
  width: 16px; height: 9px;
  border-left: 2.5px solid #30b048; border-bottom: 2.5px solid #30b048;
  transform: rotate(-45deg);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); color: var(--muted);
  transition: 0.25s;
}
.chip:hover { color: var(--text); border-color: rgba(104, 72, 152, 0.5); }

.orbit-wrap { display: grid; place-items: center; }
.orbit {
  position: relative; width: min(440px, 86vw); aspect-ratio: 1;
}
.orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  animation: spin 40s linear infinite;
}
.orbit-ring.r2 { inset: 17%; animation-duration: 28s; animation-direction: reverse; }
.orbit-center {
  position: absolute; inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(104, 72, 152, 0.4), rgba(32, 56, 120, 0.95) 70%);
  border: 1px solid rgba(104, 72, 152, 0.5);
  display: grid; place-content: center; text-align: center;
  box-shadow: 0 0 70px rgba(104, 72, 152, 0.35), inset 0 0 30px rgba(104, 72, 152, 0.2);
  animation: centerPulse 4s ease-in-out infinite;
}
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 55px rgba(104, 72, 152, 0.3), inset 0 0 30px rgba(104, 72, 152, 0.18); }
  50% { box-shadow: 0 0 95px rgba(0, 184, 240, 0.4), inset 0 0 40px rgba(0, 184, 240, 0.22); }
}
.orbit-center b { font-family: var(--font-head); font-size: 1.25rem; }
.orbit-center small { color: var(--muted); font-size: 0.75rem; margin-top: 4px; }
.orbit-node {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(13, 16, 28, 0.9); border: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  animation: floaty 6s ease-in-out infinite;
  white-space: nowrap;
}
.orbit-node span {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  animation: pulseDot 2.2s infinite;
}
.n1 { top: 2%; left: 50%; translate: -50% 0; animation-delay: 0.4s; }
.n1 span { background: #e82890; box-shadow: 0 0 0 0 rgba(232, 40, 144, 0.55); }
.n2 { top: 48%; right: -4%; animation-delay: 1.2s; }
.n2 span { background: #f8a828; box-shadow: 0 0 0 0 rgba(248, 168, 40, 0.55); }
.n3 { bottom: 3%; left: 12%; animation-delay: 2s; }
.n3 span { background: #30b048; box-shadow: 0 0 0 0 rgba(48, 176, 72, 0.55); }
.n4 { top: 48%; left: -6%; animation-delay: 2.8s; }
.n4 span { background: #00b8f0; box-shadow: 0 0 0 0 rgba(0, 184, 240, 0.55); }

/* ── Timeline ──────────────────────────────────────────────── */
.timeline { margin-top: 60px; position: relative; max-width: 780px; }
.timeline::before {
  content: ""; position: absolute; left: 34px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--c-navy), var(--c-blue), var(--c-cyan));
  opacity: 0.45;
}
.tl-item {
  position: relative; padding: 0 0 44px 104px;
}
.tl-num {
  position: absolute; left: 0; top: -4px;
  width: 70px; height: 70px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  background: var(--bg2); border: 1px solid rgba(104, 72, 152, 0.45);
  color: var(--cyan);
  box-shadow: 0 0 34px rgba(104, 72, 152, 0.25);
  transition: 0.35s;
}
.tl-item:hover .tl-num {
  background: var(--grad-cta); color: #fff; border-color: transparent;
  box-shadow: 0 0 44px rgba(0, 184, 240, 0.45);
}
.tl-body h3 { margin-bottom: 8px; font-size: 1.28rem; }
.tl-body p { color: var(--muted); max-width: 60ch; }

/* ── Kosten ────────────────────────────────────────────────── */
.free-banner {
  margin-top: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 34px; border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(48, 176, 72, 0.12), rgba(0, 184, 240, 0.07));
  border: 1px solid rgba(48, 176, 72, 0.35);
}
.free-banner b { font-family: var(--font-head); font-size: 1.15rem; display: block; }
.free-banner span { color: var(--muted); font-size: 0.95rem; }
.free-price {
  font-family: var(--font-head); font-weight: 700; font-size: 2.2rem !important;
  color: #30b048 !important;
}
.free-banner.guarantee {
  margin-top: 14px;
  background: linear-gradient(100deg, rgba(104, 72, 152, 0.12), rgba(0, 184, 240, 0.07));
  border-color: rgba(104, 72, 152, 0.4);
}
.free-banner.guarantee .free-price { color: var(--cyan) !important; }
.free-price.fp-word { font-size: 1.35rem !important; white-space: nowrap; }
.price-grid { margin-top: 26px; align-items: stretch; }
.card.price { display: flex; flex-direction: column; position: relative; padding: 36px 30px; }
.card.price.featured {
  border-color: rgba(104, 72, 152, 0.55);
  background: linear-gradient(180deg, rgba(104, 72, 152, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(104, 72, 152, 0.18);
}
.badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px; border-radius: 999px;
  background: var(--grad-cta); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  white-space: nowrap;
}
.card.price h3 { font-size: 1.15rem; color: var(--muted); font-weight: 600; }
.price-big {
  font-family: var(--font-head); font-weight: 700; font-size: 2.2rem;
  margin: 10px 0 14px; letter-spacing: -0.02em;
}
.card.price p { color: var(--muted); font-size: 0.95rem; }
.card.price ul { list-style: none; margin: 20px 0 26px; padding: 0; }
.card.price li {
  position: relative; padding: 7px 0 7px 28px; font-size: 0.93rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.card.price li::before {
  content: ""; position: absolute; left: 2px; top: 15px;
  width: 14px; height: 8px;
  border-left: 2px solid #30b048; border-bottom: 2px solid #30b048;
  transform: rotate(-45deg);
}
.card.price .btn { margin-top: auto; }
.price-extras {
  margin-top: 34px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.price-extras > div {
  padding: 20px 24px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.price-extras b { font-family: var(--font-head); }
.price-extras span { color: var(--muted); font-size: 0.9rem; }

/* ── Sparrechner ───────────────────────────────────────────── */
.calc {
  margin-top: 52px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(24px, 3.5vw, 44px);
}
.calc-inputs { display: grid; gap: 26px; align-content: start; }
.calc-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 16px;
}
.calc-label { font-weight: 500; font-size: 0.97rem; color: var(--text); }
.calc-val {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--cyan); white-space: nowrap;
}
.calc-row input[type="range"] {
  grid-column: 1 / -1;
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan)) 0 0 / var(--fill, 50%) 100% no-repeat,
              rgba(255, 255, 255, 0.1);
  outline: none; cursor: pointer;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 0;
  box-shadow: 0 0 0 5px rgba(104, 72, 152, 0.35), 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.2s;
}
.calc-row input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(0, 184, 240, 0.3), 0 4px 14px rgba(0, 0, 0, 0.5);
}
.calc-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 0;
  box-shadow: 0 0 0 5px rgba(104, 72, 152, 0.35), 0 4px 14px rgba(0, 0, 0, 0.5);
}
.calc-note { color: var(--muted); font-size: 0.8rem; }
.calc-results {
  display: grid; gap: 14px; align-content: start;
  background: rgba(5, 6, 11, 0.55);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 26px;
}
.calc-res { padding: 10px 4px; border-bottom: 1px dashed rgba(255, 255, 255, 0.08); }
.calc-res:last-of-type { border-bottom: 0; }
.calc-res small { display: block; color: var(--muted); font-size: 0.82rem; margin-bottom: 4px; }
.calc-res b {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.9rem; letter-spacing: -0.02em; line-height: 1.1;
}
.calc-res.highlight b { font-size: 2.5rem; }
.calc-res span { color: var(--muted); font-size: 0.82rem; }
.calc-results .btn { margin-top: 10px; }

/* ── Team ──────────────────────────────────────────────────── */
.team-collage {
  display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 1fr 1fr; gap: 16px;
  width: 100%; max-width: 620px; aspect-ratio: 1.28; justify-self: end;
}
.team-collage img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 16px; border: 1px solid var(--line);
  transition: transform 0.45s ease, box-shadow 0.45s;
}
.team-collage .tc-big { grid-row: span 2; }
.team-collage img:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.team-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 16px;
}
.team-strip img {
  width: 100%; aspect-ratio: 16/7; object-fit: cover;
  border-radius: 16px; border: 1px solid var(--line);
  transition: transform 0.45s ease, box-shadow 0.45s;
}
.team-strip img:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

/* ── Geschäftsführer ───────────────────────────────────────── */
.gf-split { grid-template-columns: 0.85fr 1.15fr; }
.gf-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  max-width: 460px;
}
.gf-frame img { width: 100%; object-fit: cover; object-position: center top; aspect-ratio: 1/1.3; }
.gf-fallback {
  display: grid; place-content: center; text-align: center; gap: 10px;
  aspect-ratio: 1/1.08; width: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(104, 72, 152, 0.25), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(0, 184, 240, 0.18), transparent 55%),
    var(--bg2);
}
.gf-fallback b { font-family: var(--font-head); font-size: 4rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gf-fallback span { color: var(--muted); font-size: 0.9rem; padding: 0 30px; }
.gf-sig { margin-top: 26px; padding-left: 18px; border-left: 3px solid; border-image: var(--grad-cta) 1; }
.gf-sig span { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
#gf .hero-actions { margin-top: 30px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { margin-top: 48px; display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 0 26px; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item[open] { border-color: rgba(104, 72, 152, 0.45); background: var(--card-hover); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--cyan); border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-plus::before { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-plus::after { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-item[open] .faq-plus::before { transform: rotate(90deg); }
.faq-item p { color: var(--muted); padding: 0 0 24px; max-width: 70ch; }

/* ── Kontakt / CTA ─────────────────────────────────────────── */
.cta-panel {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(104, 72, 152, 0.4);
  background: linear-gradient(140deg, rgba(104, 72, 152, 0.14), rgba(5, 6, 11, 0.6) 55%, rgba(0, 184, 240, 0.1));
  padding: clamp(30px, 5vw, 64px);
}
.cta-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 72, 152, 0.35), transparent 65%);
  top: -220px; right: -140px; filter: blur(40px);
  animation: breathe 5s ease-in-out infinite;
}
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.cta-grid h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
/* Sobald der Terminkalender erscheint, bekommt er die ganze Breite */
.cta-grid.zeigt-kalender, .lp-grid.zeigt-kalender { grid-template-columns: 1fr; }
.cta-grid > div > p { color: var(--muted); margin-top: 18px; max-width: 48ch; }
.contact-rows { margin-top: 34px; display: grid; gap: 14px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 20px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  transition: 0.25s;
}
a.contact-row:hover { background: rgba(255, 255, 255, 0.08); transform: translateX(5px); }
.cr-icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(104, 72, 152, 0.2), rgba(0, 184, 240, 0.12));
}
.cr-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--cyan); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-row small { display: block; color: var(--muted); font-size: 0.78rem; }
.contact-row b { font-family: var(--font-head); font-size: 0.98rem; }

.contact-form { display: grid; gap: 16px; align-content: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: grid; gap: 7px;
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(5, 6, 11, 0.65); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.contact-form select option { background: #0d101c; color: var(--text); }
.contact-form input[type="date"] { color-scheme: dark; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(104, 72, 152, 0.2);
}
.form-note { color: var(--muted); font-size: 0.78rem; text-align: center; }

/* Honeypot: fuer Menschen unsichtbar, fuer Bots ein Feld wie jedes andere */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

/* Erfolgspanel nach dem Absenden */
.form-success {
  text-align: center; padding: 34px 10px;
  animation: fsIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fsIn { from { opacity: 0; transform: translateY(18px) scale(0.97); } }
.fs-icon {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(48, 176, 72, 0.15); border: 2px solid #30b048;
  color: #30b048; font-size: 1.8rem; font-weight: 700;
  box-shadow: 0 0 40px rgba(48, 176, 72, 0.35);
  margin-bottom: 18px;
}
.fs-icon-warn {
  background: rgba(248, 168, 40, 0.15); border-color: var(--c-orange);
  color: var(--c-orange); box-shadow: 0 0 40px rgba(248, 168, 40, 0.3);
}
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }
.fs-warnung a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.form-success p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; margin-bottom: 20px; }
.form-success p b { color: var(--text); }
.fs-step2 {
  margin-top: 8px; padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.fs-step2 .fs-cal + .form-note { margin-top: 14px; margin-bottom: 0; }
.fs-cal {
  width: 100%; height: 640px; border: 1px solid var(--line);
  border-radius: 14px; background: #fff;
  animation: fsIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--bg2); padding: 70px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 38ch; }
.footer h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 18px;
}
.footer-grid a { display: block; color: var(--muted); font-size: 0.95rem; padding: 5px 0; transition: color 0.25s; }
.footer-grid a:hover { color: var(--text); }
/* ── Partner & Netzwerke: kleine, farblose Logo-Leiste ─────── */
.partners {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px 28px; flex-wrap: wrap;
}
.partners-label {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(154, 163, 184, 0.55); white-space: nowrap;
}
.partner-logos {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 14px 28px; flex-wrap: wrap;
}
/* Normal weiss und zurueckhaltend, bei Hover die Markenfarben.
   Die Aufhellung beim Hover haelt die dunklen Logo-Anteile auf dem
   dunklen Footer lesbar (Institut Brandenburg sonst nur 1,8:1). */
.partner-logos img {
  height: 22px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.partner-logos img:hover {
  filter: brightness(1.7);
  opacity: 1;
}
.partner-name {
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  color: rgba(238, 240, 248, 0.4);
  transition: color 0.3s ease;
}
.partner-name:hover { color: var(--text); }

.footer-legal { margin-top: 26px; }
.footer-legal p {
  color: rgba(154, 163, 184, 0.55); font-size: 0.78rem; max-width: 90ch;
}
.footer-bottom {
  margin-top: 18px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--muted); font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.42s; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Cookie-Consent ────────────────────────────────────────── */
.cm-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  max-width: 560px; margin: 0 auto;
  background: rgba(13, 16, 28, 0.97);
  border: 1px solid rgba(104, 72, 152, 0.4); border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(104, 72, 152, 0.12);
  backdrop-filter: blur(14px);
  transform: translateY(calc(100% + 32px)); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}
.cm-consent.open { transform: none; opacity: 1; }
.cm-consent h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 8px; }
.cm-consent p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; margin-bottom: 16px; }
.cm-consent p a { color: var(--cyan); text-decoration: underline; }
.cm-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cm-actions .btn { padding: 11px 20px; font-size: 0.9rem; }

/* ── Rechtsseiten (Impressum / Datenschutz) ────────────────── */
.legal { padding: 60px 0 90px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 34px; overflow-wrap: break-word; hyphens: auto; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal h3 { font-size: 1.05rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); font-size: 0.97rem; line-height: 1.7; }
.legal ul { margin: 8px 0 8px 20px; }
.legal .ci { margin: 6px 0; }
.legal a { color: var(--cyan); }
.legal .legal-box {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 24px; margin: 14px 0;
}
.legal .legal-note { font-size: 0.85rem; color: rgba(154, 163, 184, 0.7); }

/* ── Landingpage (erstgespraech.html) ──────────────────────── */
.lp-nav { position: sticky; }
.lp-phone {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  transition: 0.25s;
}
.lp-phone:hover { background: rgba(255, 255, 255, 0.1); }
.lp-phone svg { width: 20px; height: 20px; color: var(--cyan); }
.lp-phone small { display: block; color: var(--muted); font-size: 0.7rem; line-height: 1.2; }

.lp-hero { min-height: auto; padding: 56px 0 90px; }
.lp-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.lp-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.lp-checks { list-style: none; margin: 6px 0 0; padding: 0; }
.lp-checks li {
  position: relative; padding: 9px 0 9px 34px; color: var(--muted);
}
.lp-checks li b { color: var(--text); }
.lp-checks li::before {
  content: ""; position: absolute; left: 2px; top: 17px;
  width: 16px; height: 9px;
  border-left: 2.5px solid #30b048; border-bottom: 2.5px solid #30b048;
  transform: rotate(-45deg);
}
.lp-form-wrap {
  background: rgba(13, 16, 28, 0.75); border: 1px solid rgba(104, 72, 152, 0.4);
  border-radius: 24px; padding: clamp(24px, 3vw, 38px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(104, 72, 152, 0.12);
  position: sticky; top: calc(var(--nav-h) + 20px);
}
.lp-form h2 { font-size: 1.5rem; }
.lp-form-sub { color: var(--muted); font-size: 0.92rem; margin: 6px 0 10px; }
.lp-ceo-frame { max-width: 560px; }
.lp-ceo-frame img { aspect-ratio: auto; object-fit: contain; width: 100%; height: auto; }
.lp-final { text-align: center; }
.lp-final p { color: var(--muted); margin: 14px 0 28px; }
.lp-final .hero-actions { justify-content: center; }
.lp-footer { padding-top: 30px; }
.lp-footer .footer-legal { margin-top: 0; }
.lp-footer .partners { margin-top: 0; }
.lp-footer .partners + .footer-legal { margin-top: 22px; }

@media (max-width: 1080px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-form-wrap { position: static; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .statement-grid { grid-template-columns: 1fr; gap: 56px; }
  .statement-visual { max-width: 640px; }
  .hero-visual { max-width: 640px; margin: 0 auto; }
  .fc2 { left: -10px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .card.service.featured { grid-column: span 2; grid-row: auto; }
  .split, .gf-split { grid-template-columns: 1fr; gap: 60px; }
  .gf-frame { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .btn { white-space: normal; text-align: center; }
  .hero-badge { font-size: 0.78rem; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.6rem); }
  .section { padding: 78px 0; }
  .grid-3, .services-grid, .price-extras { grid-template-columns: 1fr; }
  .team-strip { grid-template-columns: 1fr; }
  .team-strip img { aspect-ratio: 16/8; }
  .sc-row { grid-template-columns: 96px 1fr 92px; gap: 8px; }
  .sc-label { font-size: 0.7rem; }
  .sc-value { font-size: 0.7rem; }
  .sc-tick i { font-size: 0.58rem; }
  .calc { grid-template-columns: 1fr; }
  .card.service.featured { grid-column: auto; grid-template-rows: 220px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .free-banner { flex-direction: column; text-align: center; }
  /* Auf schmalen Bildschirmen bekommt der Terminkalender die Raender zurueck */
  .cta-panel.zeigt-kalender, .lp-form-wrap.zeigt-kalender { padding-left: 10px; padding-right: 10px; }
  .zeigt-kalender .form-success { padding-left: 0; padding-right: 0; }
  .zeigt-kalender .fs-cal { height: 700px; }
  .hero-stats { gap: 26px; }
  .float-card { display: none; }
  .fc3 { display: flex; bottom: -22px; right: 6px; }
  .timeline::before { left: 26px; }
  .tl-item { padding-left: 78px; }
  .tl-num { width: 54px; height: 54px; font-size: 1rem; }

}

/* Navigation: die volle Leiste braucht mit zehn Links rund 1200px.
   Darunter wird sie zum Klappmenue, sonst wuerde sie rechts abgeschnitten. */
@media (max-width: 1180px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(6, 7, 13, 0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 18px 26px 26px;
    transform: translateY(-130%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { padding: 13px 4px; font-size: 1.05rem; }
  .nav-cta { margin-top: 12px; }
  .nav-burger { display: flex; }
}

/* Zwischen 1181px und 1320px sitzt die Leiste eng: kleinere Abstaende,
   damit sie nicht am Umschalter klebt. */
@media (min-width: 1181px) and (max-width: 1320px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.btn) { font-size: 0.9rem; }
}

/* ── Altsysteme: drei Wege ─────────────────────────────────── */
.ls-hint { color: var(--muted); font-size: 0.95rem; max-width: 74ch; margin-top: 16px; }
.ls-hint a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.ls-hint a:hover { color: var(--text); }
.ls-proof, .card.pain p.ls-proof { color: var(--muted); font-size: 0.88rem; margin-top: 10px; font-style: italic; }
.ls-dignity { max-width: 74ch; margin-top: 26px; font-size: 1.05rem; }
.ls-ways { margin-top: 44px; }
.ls-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.ls-tab {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--card); color: var(--muted); cursor: pointer; transition: 0.25s;
}
.ls-tab:hover { color: var(--text); background: var(--card-hover); }
.ls-tab[aria-selected="true"] { background: var(--grad-cta); border-color: transparent; color: #fff; }
.ls-panel {
  margin-top: 22px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
}
.ls-panel[hidden] { display: none; }
.ls-panel h3 { margin-bottom: 8px; }
.ls-ways.is-tabbed .ls-panel h3 { display: none; }
.ls-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 6px 24px;
  padding: 14px 0; border-bottom: 1px dashed var(--line);
}
.ls-row:last-child { border-bottom: 0; }
.ls-row b { font-family: var(--font-head); font-size: 0.92rem; }
.ls-row span { color: var(--muted); }
.ls-row.warn span { color: var(--text); }

/* ── Tempo: Selbsttest zum Ankreuzen ───────────────────────── */
.wb-grid { margin-top: 52px; }
.wb-item {
  display: grid; grid-template-columns: 26px 1fr; column-gap: 14px; row-gap: 10px;
  align-content: start; padding: 24px; cursor: pointer; position: relative;
}
.wb-item input { position: absolute; width: 0; height: 0; opacity: 0; }
.wb-box {
  width: 26px; height: 26px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4); background: var(--bg2);
  position: relative; transition: 0.25s;
}
.wb-box::after {
  content: ""; position: absolute; left: 9px; top: 4px; width: 6px; height: 12px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.4); opacity: 0; transition: 0.2s;
}
.wb-item.on { border-color: var(--c-orange); background: var(--card-hover); }
.wb-item.on .wb-box { background: var(--c-orange); border-color: var(--c-orange); }
.wb-item.on .wb-box::after { opacity: 1; transform: rotate(45deg) scale(1); }
.wb-item input:focus-visible + .wb-box { outline: 2px solid var(--c-cyan); outline-offset: 3px; }
.wb-text { font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1.35; }
.wb-proof { grid-column: 2; color: var(--muted); font-size: 0.9rem; }
.wb-result { margin-top: 40px; }
.wb-result #wbCount { font-variant-numeric: tabular-nums; }
.wb-fine { color: var(--muted); font-size: 0.95rem; max-width: 74ch; margin-top: 18px; }

@media (max-width: 760px) {
  .ls-row { grid-template-columns: 1fr; }
  .ls-tab { flex: 1 1 auto; }
}

/* ═══════════════════════════════════════════════════════════════
   HELLES THEME
   Umschaltbar oben in der Navigation, Dunkel bleibt Standard.
   Logo-Farben werden auf weissem Grund durch dunklere Toene
   derselben Hues ersetzt, damit Schrift lesbar bleibt.
   ═══════════════════════════════════════════════════════════════ */
[data-theme="light"] {
  --bg: #ffffff;
  --bg2: #f5f7fb;
  --card: rgba(20, 24, 42, 0.028);
  --card-hover: rgba(20, 24, 42, 0.055);
  --line: rgba(20, 24, 42, 0.13);
  --text: #14182a;
  --muted: #5a6274;
  --violet: #684898;
  --cyan: #0077a0;
  /* Logo-Palette fuer hellen Grund abgedunkelt.
     Cyan und Gelb sind gegenueber der ersten Fassung weiter abgesenkt:
     als kleine Schrift (section-label) lagen sie unter 4,5:1. */
  --c-cyan: #0077a0;
  --c-blue-t: #2878b8;
  --c-purple-t: #684898;
  --c-green: #23803a;
  --c-lime: #5a7a19;
  --c-orange: #a05c00;
  --c-magenta: #c01a72;
  --c-yellow: #8f6b00;
  --c-red: #d0241c;
  --c-navy-t: #203878;
}

/* ── Neue Bausteine im hellen Theme ────────────────────────── */
[data-theme="light"] .ls-tab:not([aria-selected="true"]) { background: rgba(20, 24, 42, 0.04); }
[data-theme="light"] .ls-panel { background: rgba(20, 24, 42, 0.028); }
[data-theme="light"] .wb-box { background: #ffffff; border-color: rgba(20, 24, 42, 0.5); }
[data-theme="light"] .wb-item.on { background: rgba(207, 122, 0, 0.07); }

/* ── Umschalter ────────────────────────────────────────────── */
.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-links { margin-left: auto; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.05);
  color: var(--muted); display: grid; place-items: center; cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}
.theme-toggle:hover { color: var(--text); background: var(--card-hover); transform: rotate(-15deg); }
.theme-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle { background: rgba(20, 24, 42, 0.04); }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }

/* ── Logo-Wechsel: dunkle Wortmarke auf hellem Grund ───────── */
img.logo-on-light { display: none; }
[data-theme="light"] img.logo-on-dark { display: none; }
[data-theme="light"] img.logo-on-light { display: block; }
[data-theme="light"] .nav-logo img { filter: none; }

/* ── Flaechen und Overlays ─────────────────────────────────── */
[data-theme="light"] .nav.scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 32px rgba(20, 24, 42, 0.08);
}
[data-theme="light"] .btn-ghost { background: rgba(20, 24, 42, 0.04); }
[data-theme="light"] .btn-ghost:hover { background: rgba(20, 24, 42, 0.08); }
[data-theme="light"] .hero-badge { background: rgba(20, 24, 42, 0.04); }
[data-theme="light"] .scroll-hint { border-color: rgba(20, 24, 42, 0.22); }
[data-theme="light"] .marquee-track span { color: rgba(20, 24, 42, 0.55); }
[data-theme="light"] .card:hover {
  border-color: rgba(20, 24, 42, 0.2);
  box-shadow: 0 24px 48px rgba(20, 24, 42, 0.1);
}
[data-theme="light"] .wb-item.on,
[data-theme="light"] .wb-item.on:hover { border-color: var(--c-orange); }
[data-theme="light"] .chip { background: rgba(20, 24, 42, 0.04); }
[data-theme="light"] .orbit-ring { border-color: rgba(20, 24, 42, 0.16); }
[data-theme="light"] .check-list li,
[data-theme="light"] .card.price li,
[data-theme="light"] .calc-res { border-bottom-color: rgba(20, 24, 42, 0.1); }
[data-theme="light"] .footer-bottom,
[data-theme="light"] .partners { border-top-color: rgba(20, 24, 42, 0.12); }
[data-theme="light"] .fs-step2 { border-top-color: rgba(20, 24, 42, 0.12); }
[data-theme="light"] .card.price.featured {
  background: linear-gradient(180deg, rgba(104, 72, 152, 0.08), rgba(255, 255, 255, 0));
}
[data-theme="light"] .float-card {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(20, 24, 42, 0.16);
}
[data-theme="light"] .orbit-node {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(20, 24, 42, 0.12);
}
[data-theme="light"] .orbit-center {
  background: radial-gradient(circle at 35% 30%, rgba(104, 72, 152, 0.2), rgba(255, 255, 255, 0.97) 70%);
  box-shadow: 0 0 70px rgba(104, 72, 152, 0.18), inset 0 0 30px rgba(104, 72, 152, 0.08);
}
[data-theme="light"] .team-hero figcaption {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95) 55%);
}
[data-theme="light"] .speed-compare {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95) 50%);
}
[data-theme="light"] .cta-panel {
  background: linear-gradient(140deg, rgba(104, 72, 152, 0.1), rgba(255, 255, 255, 0.5) 55%, rgba(0, 137, 184, 0.09));
}
[data-theme="light"] .contact-row { background: rgba(20, 24, 42, 0.035); }
[data-theme="light"] a.contact-row:hover { background: rgba(20, 24, 42, 0.07); }
[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea,
[data-theme="light"] .contact-form select { background: rgba(255, 255, 255, 0.9); }
[data-theme="light"] .contact-form select option { background: #fff; color: var(--text); }
[data-theme="light"] .contact-form input[type="date"] { color-scheme: light; }
[data-theme="light"] .calc-results { background: rgba(20, 24, 42, 0.03); }
[data-theme="light"] .calc-row input[type="range"] {
  background: linear-gradient(90deg, var(--violet), var(--cyan)) 0 0 / var(--fill, 50%) 100% no-repeat,
              rgba(20, 24, 42, 0.12);
}
[data-theme="light"] .sc-track { background: rgba(20, 24, 42, 0.1); }
[data-theme="light"] .sc-old { background: rgba(20, 24, 42, 0.28); }
[data-theme="light"] .sc-tick { background: rgba(20, 24, 42, 0.18); }
[data-theme="light"] .sc-tick.lit { background: rgba(20, 24, 42, 0.5); }
[data-theme="light"] .sc-tick.lit i { text-shadow: none; }
[data-theme="light"] .cm-consent {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(20, 24, 42, 0.18), 0 0 50px rgba(104, 72, 152, 0.08);
}
[data-theme="light"] .lp-phone { background: rgba(20, 24, 42, 0.04); }
[data-theme="light"] .lp-phone:hover { background: rgba(20, 24, 42, 0.08); }
[data-theme="light"] .lp-form-wrap {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 80px rgba(20, 24, 42, 0.14), 0 0 60px rgba(104, 72, 152, 0.07);
}
[data-theme="light"] .gf-fallback {
  background:
    radial-gradient(circle at 30% 20%, rgba(104, 72, 152, 0.16), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(0, 137, 184, 0.12), transparent 55%),
    var(--bg2);
}

/* ── Hero: Aurora und Sterne zurueckgenommen ───────────────── */
[data-theme="light"] .blob { mix-blend-mode: multiply; opacity: 0.1; }
[data-theme="light"] #hero .blob { opacity: 0.09; }
[data-theme="light"] #particles { opacity: 0.5; }
[data-theme="light"] #hero::before {
  background: radial-gradient(120% 90% at 78% 6%, rgba(255, 255, 255, 0.75), transparent 58%);
}

/* ── Gruentoene auf Weiss abgedunkelt ──────────────────────── */
[data-theme="light"] .pulse-dot { background: #23803a; box-shadow: 0 0 0 0 rgba(35, 128, 58, 0.6); }
[data-theme="light"] .hero-trust svg { color: #23803a; }
[data-theme="light"] .free-price { color: #23803a !important; }
[data-theme="light"] .free-banner.guarantee .free-price { color: var(--cyan) !important; }
[data-theme="light"] .price-tag.free { color: #23803a; }
[data-theme="light"] .check-list li::before,
[data-theme="light"] .card.service li::before,
[data-theme="light"] .card.price li::before,
[data-theme="light"] .lp-checks li::before { border-color: #23803a; }
[data-theme="light"] .fc-icon.ok,
[data-theme="light"] .fc-icon.free { background: rgba(35, 128, 58, 0.14); color: #23803a; }
[data-theme="light"] .fs-icon {
  background: rgba(35, 128, 58, 0.12); border-color: #23803a; color: #23803a;
  box-shadow: 0 0 40px rgba(35, 128, 58, 0.22);
}
[data-theme="light"] .n1 span { background: #d0241c; }
[data-theme="light"] .n2 span { background: #cf7a00; }
[data-theme="light"] .n3 span { background: #23803a; }

/* ── Kontaktdaten-Grafiken (weisse Schrift) invertieren ────── */
[data-theme="light"] .ci { filter: invert(1); }

/* ── Partner-Logos: schwarz statt weiss, Hover in Originalfarben ── */
[data-theme="light"] .partner-logos img { filter: brightness(0); opacity: 0.45; }
[data-theme="light"] .partner-logos img:hover { filter: none; opacity: 1; }
[data-theme="light"] .partner-name { color: rgba(20, 24, 42, 0.45); }
[data-theme="light"] .partner-name:hover { color: var(--text); }

/* ── Rechtsseiten ──────────────────────────────────────────── */
[data-theme="light"] .legal-note { color: rgba(90, 98, 116, 0.85); }
[data-theme="light"] .footer-legal p { color: rgba(90, 98, 116, 0.8); }

@media (max-width: 760px) {
}

@media (max-width: 1180px) {
  [data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--line);
  }
}
