:root{
  /* Brand – basiert auf #63277F */
  --brand-800:#3F194F;
  --brand-700:#4F1F66;
  --brand-600:#63277F; /* primary */
  --brand-500:#7A3A95; /* hover */
  --brand-200:#E6D4EE;
  --brand-100:#F6F0F8;

  /* Neutrals */
  --bg:#FFFFFF;
  --bg-soft:#F7F8FC;
  --surface:#FFFFFF;
  --ink:#0F172A;
  --muted:#475569;
  --line: rgba(15,23,42,.10);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;

  --shadow: 0 18px 50px rgba(15,23,42,.10);
  --shadow-soft: 0 10px 30px rgba(15,23,42,.08);

  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 15% 0%, rgba(115,49,166,.10), transparent 60%),
    radial-gradient(900px 520px at 85% 0%, rgba(94,43,134,.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 60%, var(--bg) 100%);
  line-height: 1.45;
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }

/* =========================
   TOPBAR / NAV
========================= */
header{
  position: sticky; top:0; z-index:50;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height: 74px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--ink);
}
.brand img{ height:48px; width:auto; display:block; object-fit:contain; }

nav ul{
  list-style:none; display:flex; gap:18px;
  margin:0; padding:0; align-items:center;
}
nav a{
  color: rgba(15,23,42,.82);
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
nav a:hover{
  background: rgba(94,43,134,.07);
  color: var(--brand-800);
}

.nav-cta{ display:flex; align-items:center; gap:10px; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.80);
  color: rgba(15,23,42,.86);
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
  user-select:none;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(94,43,134,.22);
}
.btn.primary{
  color: white;
  border: 1px solid rgba(94,43,134,.35);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  box-shadow: 0 18px 45px rgba(94,43,134,.18);
}
.btn.primary:hover{ border-color: rgba(94,43,134,.50); }
.btn svg{ width:16px; height:16px; opacity:.9; }

/* Small pill */
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(94,43,134,.18);
  background: rgba(244,238,250,.80);
  border-radius:999px;
  font-size: 13px;
  color: rgba(60,21,86,.95);
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 0 0 4px rgba(115,49,166,.12);
}

/* =========================
   HERO
========================= */
.hero{ padding: 76px 0 34px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}
h1{
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  margin: 16px 0 14px;
  letter-spacing: -0.7px;
  color: var(--ink);
}
.lead{
  font-size: 17px;
  color: rgba(71,85,105,.95);
  max-width: 60ch;
  margin: 0 0 22px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 10px; }

.trust{
  margin-top: 22px;
  display:flex; gap:18px; flex-wrap:wrap;
  color: rgba(15,23,42,.72);
  font-size: 13px;
}
.trust span{
  display:inline-flex; gap:8px; align-items:center;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
}
.trust svg{ width:16px; height:16px; opacity:.9; }

/* Side panel */
.panel{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(94,43,134,.16);
  background:
    radial-gradient(600px 280px at 20% 10%, rgba(115,49,166,.12), transparent 60%),
    radial-gradient(450px 220px at 90% 15%, rgba(94,43,134,.10), transparent 60%),
    rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
}
.panel-inner{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.78);
  padding: 18px;
}
.panel h3{
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(60,21,86,.95);
  letter-spacing: .2px;
}
.panel ul{
  margin: 12px 0 0; padding: 0; list-style:none;
  display:grid; gap:10px;
  color: rgba(15,23,42,.78);
  font-size: 14px;
}
.panel li{ display:flex; gap:10px; align-items:flex-start; }
.panel li svg{ width:18px; height:18px; margin-top: 1px; color: var(--brand-600); }

.kpi{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.kpi .box{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(244,238,250,.65);
  padding: 14px;
}
.kpi .num{ font-weight:900; font-size: 22px; letter-spacing: -0.4px; color: var(--ink); }
.kpi .lbl{ font-size: 12px; color: rgba(71,85,105,.90); margin-top: 4px; }

/* =========================
   SECTIONS / HEADINGS
========================= */
section{ padding: 62px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
  margin-bottom: 22px;
}
h2{
  margin:0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.4px;
  line-height: 1.1;
  color: var(--ink);
}
.sub{
  margin: 0;
  color: rgba(71,85,105,.95);
  max-width: 75ch;
  font-size: 15px;
}

/* =========================
   CARDS / GRIDS
========================= */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card h3{ margin: 10px 0 6px; font-size: 16px; color: var(--ink); }
.card p{ margin:0; color: rgba(71,85,105,.95); font-size: 14px; }

.icon{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(115,49,166,.16), rgba(94,43,134,.10));
  border: 1px solid rgba(94,43,134,.16);
}
.icon svg{ width:18px; height:18px; color: var(--brand-700); }

/* =========================
   STEPS
========================= */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}
.badge{
  display:inline-flex; align-items:center; justify-content:center;
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(244,238,250,.95);
  border: 1px solid rgba(94,43,134,.18);
  color: var(--brand-700);
  font-weight: 800;
  font-size: 13px;
}
.step h4{ margin: 10px 0 6px; font-size: 15px; color: var(--ink); }
.step p{ margin:0; color: rgba(71,85,105,.95); font-size: 13px; }

/* =========================
   CTA (Kontakt)
========================= */
.cta{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(94,43,134,.16);
  background:
    radial-gradient(700px 260px at 10% 10%, rgba(115,49,166,.14), transparent 60%),
    radial-gradient(650px 260px at 90% 0%, rgba(94,43,134,.10), transparent 60%),
    rgba(255,255,255,.85);
  padding: 22px;
  box-shadow: var(--shadow);
}
.cta-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: start;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.80);
  padding: 18px;
}
.cta h3{ margin: 0 0 8px; font-size: 20px; color: var(--ink); }
.cta p{ margin:0; color: rgba(71,85,105,.95); }

form{ display:grid; gap:10px; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  outline:none;
  font-size: 14px;
}
input:focus, textarea:focus{
  border-color: rgba(94,43,134,.35);
  box-shadow: 0 0 0 4px rgba(115,49,166,.12);
}
input::placeholder, textarea::placeholder{ color: rgba(71,85,105,.65); }
textarea{ min-height: 110px; resize: vertical; }
.fineprint{ font-size: 12px; color: rgba(71,85,105,.85); }

/* =========================
   FOOTER
========================= */
.siteFooter{
  border-top:1px solid var(--line);
  background:#fff;
}
.footerRow2{
  padding:22px 0 26px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footerLeft{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  min-width: 260px;
}
.footerBrand{ min-width:auto; }
.footerBrand img{ height:45px; width:auto; opacity:.95; object-fit:contain; }
.footerClaim{
  font-size:13px;
  font-weight:700;
  color: rgba(15,18,34,.65);
  margin-top:2px;
  margin-bottom:-6px;
}
.footerContactLine{
  margin-top:2px;
  font-size:14px;
  gap:8px;
}
.footerContactLink{
  font-weight:750;
  color: rgba(91,42,134,.92);
}
.footerContactLink:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footerSep{ color: rgba(15,18,34,.25); }
.footerCopy{
  margin-top:10px;
  font-size:12px;
  font-weight:650;
  color: rgba(15,18,34,.45);
}

/* Rechts */
.footerRightNav{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:flex-start;
  gap:14px;
}
.footerRightTop{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.footerRightTop a:not(.social){
  padding:10px 10px;
  border-radius:12px;
  color: var(--muted);
  font-weight: 750;
  transition: background .18s ease, color .18s ease;
}
.footerRightTop a:not(.social):hover{
  background: rgba(91,42,134,.08);
  color: var(--ink);
}
.footerRightTop .social{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(15,18,34,.10);
  background: rgba(91,42,134,.06);
  color: rgba(91,42,134,.95);
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease;
  padding:0;
}
.footerRightTop .social svg{
  width:18px; height:18px;
  fill: currentColor;
  display:block;
}
.footerRightTop .social:hover{
  background: rgba(91,42,134,.10);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15,18,34,.10);
}
.footerProducts{ text-align:right; }
.footerProductsTitle{
  font-size:13px;
  font-weight:800;
  color: rgba(15,18,34,.55);
  margin-bottom:6px;
}

/* =========================
   SECTION-SPEZIFISCH
========================= */

/* Vorteile CTA row */
#vorteile .cta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}
#vorteile .cta-question{
  margin:0;
  font-weight:600;
  color:#0f172a;
}

/* Mini-proof Box */
#vorteile .mini-proof{
  font: inherit;
  color: inherit;
  line-height: inherit;
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.25rem 1rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  position: relative;
}
#vorteile .mini-proof::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: rgba(94,43,134,.18);
}

/* Warum SF: featured card */
#warum .card.is-featured{
  border-color: rgba(94,43,134,.18);
  box-shadow: var(--shadow);
}

/* Vertrauen: (alte Grid-Logos, falls du sie noch mal nutzt) */
#vertrauen .logo-row{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 6px;
}
#vertrauen .logo-note{
  min-height: 14px;
  font-size: 11px;
  line-height: 1.2;
  color: rgba(71,85,105,.70);
  font-weight: 650;
  text-align:center;
}

#vertrauen .quote{
  margin-top: 14px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  position: relative;
}
#vertrauen .quote::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: rgba(94,43,134,.22);
}
#vertrauen .quote-text{
  margin: 0;
  padding-left: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(15,23,42,.90);
  font-weight: 650;
}
#vertrauen .quote-meta{
  margin: 10px 0 0;
  padding-left: 14px;
  font-size: 13px;
  color: rgba(71,85,105,.80);
  font-weight: 650;
}

/* =========================
   MOBILE / RESPONSIVE
========================= */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cta-inner{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }

  #vertrauen .logo-row{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px){
  #vertrauen .logo-row{ grid-template-columns: repeat(2, 1fr); }
}

/* A11y helper */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* ===== Robust Header + Mobile Menü ===== */

/* Logo: standard */
.brand img{
  height: 48px;
  width: auto;
  max-width: 220px; /* Desktop: verhindert “zu breit” */
  display: block;
  object-fit: contain;
}

/* Icon button (Hamburger) */
.iconBtn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.80);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.iconBtn svg{ width: 20px; height: 20px; }

/* Desktop/Mobile visibility */
.mobileOnly{ display: none; }
.desktopOnly{ display: inline-flex; }

/* Mobile menu drawer */
.mobileMenu{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}
.mobileMenuInner{
  padding: 14px 20px 18px;
  display: grid;
  gap: 10px;
}

.mobileLink{
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(15,23,42,.86);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  font-weight: 750;
}
.mobileLink:hover{
  border-color: rgba(94,43,134,.22);
}

.mobileMenuCta{
  margin-top: 8px;
}

/* ===== Breakpoint: Mobile ===== */
@media (max-width: 920px){
  /* Desktop-Nav aus */
  .mainNav{ display: none; }

  /* Desktop-CTA aus, Hamburger an */
  .desktopOnly{ display: none; }
  .mobileOnly{ display: inline-flex; }

  /* Logo am Handy */
  .brand img{
    height: 40px;
    max-width: 170px;
  }

  /* Header etwas niedriger */
  .nav{ height: 64px; }
}

/* Extra kleine Geräte */
@media (max-width: 420px){
  .brand img{
    height: 38px;
    max-width: 150px;
  }
}

/* =========================================================
   LOGO-MARQUEE (NEU / FIX): 1 Reihe + Endlosschleife
   Animation läuft NUR auf .marquee__strip
========================================================= */
.logo-marquee { padding: 24px 0; }

.marquee{
  --gap: 22px;
  --pillH: 110px;
  --shift: 0px;
}

/* Nur Viewport clippt */
.marquee__viewport{
  overflow: hidden;
  position: relative;

  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

/* Strip ist das animierte Element */
.marquee__strip{
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: marquee linear infinite;
}

/* Ein Set Logos */
.marquee__track{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  flex: 0 0 auto;
}

/* Pills */
.logo-pill{
  height: auto;                 /* keine fixe Höhe nötig */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 0;                   /* keine Fläche */
  border-radius: 0;             /* kein Kreis */
  background: transparent;      /* transparent */
  box-shadow: none;             /* kein Schatten */
  border: none;                 /* kein Rand */

  flex: 0 0 auto;
}

.logo-pill img{
  max-height: var(--pillH);     /* steuert Größe weiterhin über --pillH */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


.logo-note{
  position: static;
  transform: none;
  font-size: 12px;
  line-height: 1.1;
  opacity: .75;
  white-space: nowrap;
  text-align: center;
}



/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .marquee__strip { animation: none !important; transform: none !important; }
}

/* Keyframes: JS setzt --shift */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--shift))); }
}











/* ===== MARQUEE: Mobile Fix / überschreibt alles ===== */

/* Wichtig: Animation MUSS auf dem Strip liegen */
.marquee__strip{
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running !important;
}

/* Falls irgendwo eine Pause-Regel existiert */
.marquee:hover .marquee__strip{
  animation-play-state: running !important;
}

/* Ganz wichtig: Wenn "Reduce Motion" aktiv ist, würde es sonst stehen.
   -> Wenn du willst, dass es IMMER läuft, kommentiere deine prefers-reduced-motion Regel aus
   oder überschreibe sie so: */
@media (prefers-reduced-motion: reduce){
  .marquee__strip{
    animation-play-state: running !important;
    /* animation darf nicht "none" sein */
  }
}

/* iOS/Safari: mask-image kann Animation manchmal "einfrieren".
   -> Auf Mobile deaktivieren (optional, aber oft der Gamechanger) */
@media (max-width: 920px){
  .marquee__viewport{
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}





/* =========================
   ÜBER UNS (Section)
========================= */
/* ===== Über uns (faktenbasiert, ohne Floskeln) ===== */
#ueber-uns .about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

#ueber-uns .about-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

#ueber-uns .about-card h3{
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--ink);
}

#ueber-uns .about-card p{
  margin: 0 0 12px;
  color: rgba(71,85,105,.95);
  font-size: 14px;
}

#ueber-uns .about-facts{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}

#ueber-uns .fact{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(244,238,250,.45);
  border-radius: 14px;
  padding: 12px;
}

#ueber-uns .fact-label{
  font-size: 12px;
  color: rgba(71,85,105,.85);
  font-weight: 700;
  margin-bottom: 4px;
}

#ueber-uns .fact-value{
  font-size: 14px;
  color: rgba(15,23,42,.90);
  font-weight: 700;
}

#ueber-uns .about-steps{
  margin: 0;
  padding-left: 18px;
  color: rgba(71,85,105,.95);
  font-size: 14px;
  display:grid;
  gap: 8px;
}

#ueber-uns .about-mini{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  font-size: 13px;
  color: rgba(71,85,105,.95);
}

#ueber-uns .about-mini ul{
  margin: 8px 0 0;
  padding-left: 18px;
  display:grid;
  gap: 6px;
}

#ueber-uns .about-cta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  padding-top: 14px;
  border-top:
