/* Resets/Grundlagen */

/* ──────────────────────────────────────────────────────────────── */
/*  Lokale Schriften                                               */
/*  Liespfad: static/fonts/…                                       */
/* ──────────────────────────────────────────────────────────────── */

/* DM Sans: normale Schnitte (400 & 700) für Fließtext */
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM_Sans/static/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM_Sans/static/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Plus Jakarta Sans: variable Font für Headlines */
@font-face {
  font-family: 'Plus Jakarta Sans VF';
  src: url('../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Hauptakzent hast du schon */
  --accent: #b062ff;                 /* Lavender */
  --accent-rgb: 176, 98, 255;

  /* Varianten – so sparst du harte Hex-Werte überall sonst */
  --accent-light: rgba(var(--accent-rgb), .10);  /* zarte Flächen */
  --accent-dark:  #7a34ff;                      /* Hover/Active  */
  --bg-tint:      #f7f5ff;                      /* zarter Abschnitt-Bg */
}


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

body {
  font-family: 'DM Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans VF', sans-serif;
  font-weight: 600;
}

/* Header & Navigation */
/* Header nimmt keinen eigenen Layout-Platz mehr */
header {                     /* override */
  position: fixed;           /* statt sticky  */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  transition: backdrop-filter .3s, background-color .3s;
}


header.scrolled {                                /* neu        */
  backdrop-filter: blur(8px);                    /* Glas-Effekt*/
  background-color: rgba(255,255,255,.18);       /* heller Film*/
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: rgba(var(--accent-rgb), .35);
  border-bottom: 1px solid rgba(255,255,255,.30);
   backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

/* NAVIGATION LAYOUT */


.logo           { margin-right: 40px; }          /* auto → 40px */
/* Logo-Bild in der Header-Leiste */
.logo img{
  height: 30px;          /* passt in deine 64-px Navbar-Höhe */
  width: auto;           /* erhält Proportionen */
  display: block;        /* kein extra Inline-Space */
}
/* Beide Bilder in denselben Rahmen zwängen */
.logo img{height:30px;width:auto;display:block}

/* Schwarz zunächst ausblenden */
.logo-black{display:none}

/* Sobald Header .scrolled besitzt → Weiß aus, Schwarz an */
header.scrolled .logo-white{display:none}
header.scrolled .logo-black{display:block}


/* ── Menü mittig sowohl horizontal als auch vertikal ──────────── */
.nav {                                  /* behält logo links */
  height: 64px;                         /* feste Nav-Höhe   */
  display: flex;
  align-items: center;
  position: relative;
   padding-inline: 24px;         
  
}
.nav-search {
  margin-left: auto;             /* schiebt ihn ans rechte Ende   */
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  transition: color .2s;
}

.nav-search svg {
  width: 24px;
  height: 24px;
}

.nav-search:hover { color: var(--accent); }

.nav ul {                               /* zentriert im Glas */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);     /* ↔ & ↕ zentriert  */
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  
}

/* ── Plus Jakarta Sans für die Menü-Einträge & Strich weg ───────── */
nav ul li a {
  font-family: 'Plus Jakarta Sans VF', sans-serif; /* neue Schrift  */
  text-decoration: none !important;                /* Unterline aus */
  border-bottom: none !important;                  /* evtl. Strich  */
   font-size: 1.1rem;
   font-weight: 400;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(rgb(0, 0, 0));            /* Farbe beibehalten           */
  text-decoration: none;           /* auch beim Hover kein Strich */
  border-bottom: none;
}




.pricing {
  padding: 80px 20px;
  text-align: center;
}
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 62px auto 0;
}

/* Hero Section */
/* Hero Section */
/* ── Neue, vollflächige Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;                        /* ganze Viewport-Höhe  */
  display: grid;
  place-content: center;                    /* Inhalt perfekt mittig*/
  text-align: center;
  overflow: hidden;
}

.hero-bg img,
.hero-bg {                                  /* Bild deckt alles    */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Farbverlauf darüber – Style gern anpassen */
.hero::before {
  background: linear-gradient(
      160deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.30) 60%,
      rgba(var(--accent-rgb), .35) 100%);
}


/* Inhalt bekommt höheren Z-Index */
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

/* Typo groß & responsiv */
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw + 1rem, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 .accent { color: var(--accent); }

.hero p {
  font-size: clamp(1.05rem, 1.2vw + .8rem, 1.4rem);
  margin-bottom: 2.2rem;
}

/* Primärer Button */
/* Primär (gefüllt) */
.cta-button,
.cta-button.cta-primary {              /* beides gleich */
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), .3);
  transition: transform .2s, box-shadow .2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--accent-rgb), .35);
}

/* Sekundär (Ghost) */
.cta-button.cta-inverse {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cta-button.cta-inverse:hover {
  background: var(--accent);
  color: #fff;
}


/* ── Scroll-Indicator ─────────────────────────────────────────── */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.scroll-down span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 14px;
  position: relative;
}

.scroll-down span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 6px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  0%   { opacity: 0; transform: translate(-50%, 0);   }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px);}
}


/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: transparent;
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  border: 1px solid black;
  border-radius: 30px;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease;
}



/* Content Sections */
.content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}



/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.card {
  flex: 1 1 calc(33.333% - 20px);
  background: rgba(255, 255, 255, .15);     /* transparenter Film   */
    backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  
  padding: 20px 20px;
  
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: center;
  border-radius: 30px;
    text-decoration: none;   /* Unterstreichung weg */
  color: inherit;          /* erbt normale Textfarbe */
}


.card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


.card:hover{
  transform: translateY(-6px);            /* hast du schon – lassen wir drin */
  border-color: var(--accent);            /* farbige Outline */
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), .25);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem; /* größer */
  font-weight: 600;
}

.card p {
  font-size: 1.0rem; /* ebenfalls größer */
  font-weight: 300;
}

/* Icon mit rundem Hintergrund */
.card .icon {
  --icon-bg: var(--icon-bg-default); /* kann pro Element überschrieben werden */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  
  background-color: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.card .icon img,
.card .icon svg {
  width: 30;
  height: 30;
}
/* ─── Partner-Section: dunkel, weiße Logos ─────────────────────── */
.partner {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}



/* Button-Variante auf dunklem Grund */
.cta-button.cta-inverse {
  background: #fff;
  color: #111;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
}

/* Logo-Leiste */
/* ── Partner-Logos: 5 pro Zeile, kompakt & zentriert ─────────── */
.partner-logos{
  /* Container-Feeling */
  max-width:1140px;          /* ähnlich Bootstrap .container-lg  */
  margin:0 auto;             /* mittig */

  /* Grid */
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:24px;
  justify-items:center;
}

.partner-logos img{
  max-width:110px;           /* leicht größer als vorher */
  max-height:70px;
  width:100%;
  object-fit:contain;
}

/* Mobile: 2 Logos pro Zeile, enger */
@media(max-width:600px){
  .partner-logos{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }
}




/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 40px;
  font-size: .95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans VF', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  opacity: .8;
  transition: opacity .2s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  opacity: .6;
  font-size: .85rem;
}

/* ─── Kontakt-Bereich ─────────────────────────────────────────── */
.contact {
  padding: 80px 20px;
  text-align: center;
}
/* Kontakt-Section: Überschrift exakt so groß wie andere H2 */



.contact-wrapper {
  max-width: 1000px;
  margin: 40px auto 0;
  display:grid;
  flex-wrap: wrap;
  grid-template-columns:minmax(280px,1fr) 1fr;
  gap:60px;
  align-items:start;
  justify-content: center;
  text-align: left;
}

.contact-info {
  flex: 1 1 260px;
  font-size: 1rem;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}
.contact-info p{
  margin: 0 0 8px;       /* nur 8 px Abstand unten */
  line-height: 1.45;      /* etwas dichter, aber gut lesbar */
}

.contact-info p:last-child{
  margin-bottom: 0;       /* unterster Absatz ohne extra Luft */
}

/* Labels (Telefon / E-Mail) dürfen sich leicht absetzen */
.contact-info strong{
  display: block;         /* bricht um, <br> kannst du streichen */
  margin-bottom: 2px;
}

.contact-form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #000000;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
/* Kleinere Screens → untereinander stapeln */
@media(max-width:720px){
  .contact-wrapper{grid-template-columns:1fr; gap:40px;}
}
.contact-form .field textarea { resize: vertical; }

.contact-form button{
  align-self:flex-start;
  padding-inline:32px;
}
/* Zwei Felder in einer Zeile */
.field-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;      /* stapelt sich bei schmalen Screens */
}

.field-row .field { flex: 1 1 160px; }  /* beide gleich breit */
/* Unterstrich/Line neben jeder h2 im Content-Bereich */
.content h2::after,
.partner h2::after,
.testimonials h2::after,
.stats h2::after,
.process h2::after,
.pricing h2::after,
.signal-flow h2::after,
.contact h2::after,
.faq h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 14px auto 0;
  background: var(--accent);
  border-radius: 3px;
}

/* ─── Unser Prozess ───────────────────────────────────────────── */

/* ==============================================================
   SECTION-HEADLINES  –  einmalig für alle H2 in den Sections
   ============================================================== */



/* Basis (Desktop bis ~1 200 px)  → schrumpft bereits sanft */
.process h2,
.partner h2,
.pricing h2,
.content h2,
.stats h2,
.testimonials h2,
.service-highlight h2,
.signal-flow h2,
.contact h2,
.faq h2 {
  font-size: clamp(2rem, 5vw + 1rem, 3.2rem);
  /*       ^^^^  ^^^^^^^^^^^^^^^^^  ^^^^^^^^
           min    wächst mit Viewport  max  */
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  text-wrap: balance;      /* modern Browser → hübschere Zeilenumbrüche */
  hyphens: auto;           /* Wörter dürfen getrennt werden, falls nötig */
}

/* Extra-Fallback für ultrakleine Screens (≤ 420 px) */
@media (max-width: 420px) {
  .process h2,
  .pricing h2,
  .partner h2,
  .content h2,
  .stats h2,
  .testimonials h2,
  .service-highlight h2,
  .signal-flow h2,
  .contact h2,
  .faq h2 {
    font-size: 1.75rem;    /* ~28 px */
  }
}


/* ── Timeline: White-Glass Cards & smoother reveal ─────────── */

/* Container – etwas schmalere Lücken, sonst unverändert */
.process-timeline{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:48px;                       /* vorher 60px */
  max-width:1000px;
  margin:60px auto 0;
}

/* Rail bleibt – aber leichte Transparenz */
.timeline-rail{
  position:absolute;
  top:64px;
  left:0; right:0;
  height:4px;
  background:rgba(255,255,255,.25);
  border-radius:2px;
  overflow:hidden;
}
.timeline-rail::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg,transparent 0%,var(--accent) 50%,transparent 100%);
  background-size:200% 100%;
  animation:railFlow 6s linear infinite;
}

/* Glass-Card Step */
.timeline-step{
  position:relative;
  flex:1 1 260px;
  max-width:300px;
  padding:46px 34px 40px;
  border-radius:32px;
  background:rgba(255,255,255,.22);         /* White glass */
  backdrop-filter:blur(18px) saturate(180%);
  -webkit-backdrop-filter:blur(18px) saturate(180%);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 8px 28px rgba(0,0,0,.08);

  /* neue Reveal-Animation */
  opacity:0;
  transform:translateY(50px);
}

/* gestaffeltes Einblenden (3 Karten) */
#timeline.show .timeline-step{
  animation:cardUp .8s cubic-bezier(.25,.8,.3,1) forwards;
  animation-delay:calc(var(--i) * .18s);    /* --i = 1,2,3 */
}
@keyframes cardUp{to{opacity:1;transform:translateY(0);}}

/* Icon bleibt farbig */
.step-icon{
  width:72px; height:72px;
  margin:0 auto 22px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  font-size:1.4rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(var(--accent-rgb),.35);
}

/* Ping-Dot dezenter & langsamer */
.step-icon::after{
  content:"";
  position:absolute;
  right:-32px; top:50%; transform:translateY(-50%);
  width:12px; height:12px; border-radius:50%;
  background:var(--accent);
  animation:dotPing 3.2s cubic-bezier(.19,1,.22,1) infinite;
}
@keyframes dotPing{
  0%{transform:translateY(-50%) scale(1); opacity:1;}
  70%{transform:translateY(-50%) scale(2.4); opacity:0;}
  100%{opacity:0;}
}
.timeline-step:hover{
  transform: rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
}
/* letzte Karte: kein Dot */
.timeline-step:last-of-type .step-icon::after{display:none;}

/* Typografie */
.timeline-step h3{font-size:1.25rem;font-weight:700;margin-bottom:12px;}
.timeline-step p {font-size:1rem; font-weight:300; line-height:1.45;}

/* Mobile: Cards untereinander, Rail ausblenden */
@media(max-width:720px){
  .process-timeline{flex-direction:column; gap:36px;}
  .timeline-rail{display:none;}
  .step-icon::after{display:none;}
}
/* Rail: jetzt hell + 3 Segmente */
.timeline-rail{background:rgba(255,255,255,.15);}
.progress-dot{
  position:absolute; top:-16px; left:0;
  width:20px; height:20px; border-radius:50%;
  background:var(--accent); box-shadow:0 0 14px rgba(var(--accent-rgb),.6);
  transition:left .6s cubic-bezier(.25,.8,.3,1);
}

.step {
  flex: 1 1 260px;
  max-width: 320px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  border-radius: 20px;
  margin-bottom: 14px;
  background: rgba(0,0,0,.03);
  padding: 5px 22px;
  cursor: pointer;
}


/* Summary-Look */
.faq summary{
  position: relative;
  padding: 14px 48px 14px 60px;          /* Platz für Nummer & Pfeil */
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Nummer links */
.faq summary::before{
  counter-increment: faq;
  content: counter(faq, decimal-leading-zero) ".";
  position: absolute; left: 20px; top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--accent);
}

/* Pfeil rechts */
.faq summary::after{
  content: "";
  position: absolute; right: 20px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .25s;
}

/* geöffnet: Pfeil dreht nach unten */
.faq details[open] > summary::after{
  transform: translateY(-50%) rotate(225deg);
}

/* kleiner Abstand zwischen Items */
.faq details{ margin-bottom: 10px; }

/* ---------- Accordion-Styling ----------------------------------- */
.faq { counter-reset: faq; }
html { scroll-behavior: smooth; }   /* überall weiches Ankern-Scrollen */
/* ganz oben im CSS – Voreinstellung */
html { scroll-behavior: auto; }   /* KEIN smooth beim ersten Paint */



.hero-bg img{
  transform:scale(1.15);
  animation:heroZoom 8s ease-out forwards;
}

@keyframes heroZoom{to{transform:scale(1);}}

/****** Hero: Word-by-Word-Einstieg ******/
/* --- Startzustand --- */
.word, .hero-copy, .cta-button{
  opacity:0;
  transform:translateY(40px);
}

/* --- beim Hinzufügen von .show --- */
.hero.show .word,
.hero.show .hero-copy,
.hero.show .cta-button{
  animation:fadeUp .7s cubic-bezier(.2,.8,.3,1) forwards;
}

/* gestaffelte Verzögerung – kommt aus der Inline-Variablen */
.hero.show .word      { animation-delay: calc(var(--i) * .10s); }
.hero.show .hero-copy { animation-delay: .60s; }
.hero.show .cta-button{ animation-delay: .78s; }

@keyframes fadeUp{
  to{ opacity:1; transform:translateY(0); }
}
/* --- Testimonials ------------------------------------------------------ */
.testimonials {
  background: var(--bg-tint);
  padding: 80px 20px;
  text-align: center;
}


.swiper {
  max-width: 760px;
  margin: 0 auto;
}
.swiper-slide {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(14px) saturate(180%);
  border-radius: 30px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.swiper-slide img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
}
.swiper-slide blockquote { font-size: 1.1rem; font-weight: 600; }
.swiper-slide figcaption { margin-top: 14px; font-size: .95rem; opacity: .7; }

.swiper-button-prev,
.swiper-button-next {
  color: var(--accent);
  --swiper-navigation-size: 24px;   /* Icon-Größe */
}
/* --- Sticky CTA -------------------------------------------------------- */
/* --- Sticky CTA  |  Ecke rechts-unten ---------------------------------- */
/* ─── Frosted-Glass Sticky CTA ────────────────────────────────── */
.sticky-cta{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;

  /* Frosted-Glass Look */
  background: rgba(255,255,255,.14);        /* milchig */
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%); /* iOS */
  border: 1px solid rgba(255,255,255,.30);  /* feine Outline */
  box-shadow: 0 8px 24px rgba(0,0,0,.12);

  padding: 12px 26px;
  border-radius: 42px;                      /* “Pill”-Form */
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Inhalt */
.sticky-cta a{
  color: var(--accent);                     /* Akzent als Text */
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover-Effekt: stärkerer Glasfilm & invertierte Farben */
.sticky-cta:hover{
  background: rgba(var(--accent-rgb),.18);
  border-color: rgba(var(--accent-rgb),.35);
}
.sticky-cta:hover a{ color:#fff; }

/* Mobile etwas kleiner */
@media(max-width:480px){
  .sticky-cta{
    right: 12px;
    bottom: 12px;
    padding: 10px 20px;
    font-size: .9rem;
  }
}

/* ── Dropdown-Basis ──────────────────────────────────────────── */
.nav li.has-dropdown{position:relative;}     /* Referenzpunkt */

.dropdown{
  position:absolute;
  top:calc(100% + 8px);                      /* 8 px Abstand ↓ */
  left:50%;
  transform:translate(-50%,-8px);           /* Start etwas höher */
  min-width:220px;

  /* Frosted-Glass Look */
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,.30);
  border-radius:30px;
  box-shadow:0 8px 24px rgba(0,0,0,.12);

  padding:15px 0;                           /* etwas weniger */
  list-style:none;
  display:flex; flex-direction:column;
  gap:0;                                     /* enger */

  /* Animation */
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}

/* Links im Dropdown */
.dropdown a{
  display:block;
  padding:1px 15px;                         /* kompakter */
  font-size:1rem;
  font-weight:500;
  color:#000;
  text-decoration:none;
  transition:background .2s;
}
.dropdown a:hover{
  background:rgba(var(--accent-rgb),.08);
  color:var(--accent);
}

/* Hover/Focus ► Dropdown zeigen */
.nav li.has-dropdown:hover        > .dropdown,
.nav li.has-dropdown:focus-within > .dropdown{
  opacity:1;
  transform:translate(-50%,0);              /* Endposition */
  pointer-events:auto;
}

/* Kleine Screens: Dropdown full-width unter Header */
@media(max-width:720px){
  .dropdown{
    left:0; right:0; transform:none;
    min-width:unset;
    border-radius:0 0 30px 30px;
  }
}
/* — Farbpallette rechts neben der Lupe — */
/* ─ Palette-Container --------------------------------------------------- */
.palette{ position:relative; margin-left:18px; }

/* Toggle-Icon */
.palette-toggle{
  background:none; border:none; cursor:pointer; color:#333;
  display:flex; align-items:center; transition:color .2s;
}
.palette-toggle svg{ width:24px; height:24px; }
.palette-toggle:hover{ color:var(--accent); }

/* Dropdown (Frosted) */
.palette-dropdown{
  position:absolute;
  right:0; top:calc(100% + 8px);
  display:flex; gap:12px;
  padding:10px 14px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,.30);
  border-radius:30px;
  box-shadow:0 8px 24px rgba(0,0,0,.12);

  opacity:0; transform:translateY(-8px);
  pointer-events:none;
  transition:opacity .25s, transform .25s;
}

/* Sichtbar, wenn Eltern-div .show hat */
.palette.show .palette-dropdown{
  opacity:1; transform:translateY(0); pointer-events:auto;
}

/* Farbpunkte */
.palette-dropdown button{
  width:20px; height:20px; border-radius:50%;
  border:2px solid rgba(255,255,255,.4);
  background:var(--c); cursor:pointer;
  transition:transform .2s;
}
.palette-dropdown button:hover{ transform:scale(1.15); }
.palette-dropdown .is-active{
  border-color:#fff; box-shadow:0 0 0 2px rgba(0,0,0,.2);
}

/* Mobile – volle Breite unter Header */
@media(max-width:720px){
  .palette-dropdown{ left:0; right:0; margin-inline:auto; }
}



.plan {
  position: relative;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 32px;
  padding: 36px 28px 48px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.plan:hover {transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,.1);}  
.plan--featured {border-color: var(--accent); box-shadow: 0 12px 32px rgba(var(--accent-rgb),.25);
margin-top: -32px;
}  

.plan-title {font-size: 1.4rem; font-weight: 700; margin-bottom: 14px;}
  .plan-price{font-size:2.6rem;font-weight:700;margin-bottom:22px;line-height:1}
  .plan-price .currency{font-size:1.2rem;vertical-align:super;margin-right:2px}
  .plan-price small{font-size:.8rem;font-weight:400}

.plan-features {list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: .98rem;}
.plan-features li::before {content:"✔"; color: var(--accent); margin-right: 6px;}

.plan-cta {align-self: center; min-width: 160px;}

.badge {position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color:#fff; padding:4px 16px; font-size: .75rem; font-weight:700; border-radius: 20px; box-shadow:0 4px 12px rgba(var(--accent-rgb),.4);}  

.small-print {font-size: .8rem; opacity: .7; margin-top: 30px;}


/* ─── Feature-Cards (überschreibt NICHT .cards/.card) ──────────── */
.feature-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:32px;
  margin-top:40px;
}

.feature-card{
  position:relative;
  padding:36px 28px 44px;
  border-radius:32px;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(18px) saturate(180%);
  -webkit-backdrop-filter:blur(18px) saturate(180%);
  box-shadow:0 8px 24px rgba(0,0,0,.10);
  text-align:center;
  transition:transform .25s, box-shadow .25s;
}

/* zarter Verlauf-Border (ohne echte border-Eigenschaft) */
.feature-card::before{
  content:\"\"; position:absolute; inset:0;
  border-radius:inherit; padding:2px;
  background:linear-gradient(135deg,rgba(var(--accent-rgb),.6),transparent 60%);
  mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  mask-composite:xor;         /* Safari: use -webkit-mask-composite */
  -webkit-mask-composite:xor;
  pointer-events:none;
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 32px rgba(var(--accent-rgb),.25);
}

/* Icon-Circle vorne */
.feature-icon{
  width:72px; height:72px;
  margin:0 auto 18px;
  display:grid; place-items:center;
  border-radius:50%;
  background:var(--bg,rgba(var(--accent-rgb),.15));
  box-shadow:0 4px 12px rgba(0,0,0,.08) inset;
}
.feature-icon img{width:34px;height:34px}

/* Typo – sanft größer als Standard-.card */
.feature-card h3{font-size:1.25rem;font-weight:700;margin-bottom:10px;}
.feature-card p{font-size:1.05rem;font-weight:300;}

/* kleine Screens: mehr Luft */
@media(max-width:480px){
  .feature-card{padding:28px 22px 36px;}
  .feature-icon{width:64px;height:64px;}
}
/* ─── Split Section ────────────────────────── */
.split{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:60px;
  align-items:center;
  max-width:1200px; margin:80px auto;
  padding:0 20px;
}
.split-media img{width:100%;border-radius:32px;box-shadow:0 8px 24px rgba(0,0,0,.12);}
.split-copy h2{margin-bottom:18px;}
.bullet-check{list-style:none;padding:0;margin:24px 0 32px;}
.bullet-check li::before{content:"✔";color:var(--accent);margin-right:6px;}

/* ─── Stats Section ─────────────────────────── */
.stats{background:var(--bg-tint);padding:80px 20px;text-align:center;}
.stat-cards{display:flex;flex-wrap:wrap;gap:32px;justify-content:center;margin-top:40px;}
.stat{flex:1 1 220px;max-width:300px;background:rgba(255,255,255,.15);backdrop-filter:blur(14px) saturate(180%);padding:36px 24px;border-radius:30px;box-shadow:0 8px 24px rgba(0,0,0,.08);}
.stat-value{display:block;font-size:3rem;font-weight:700;color:var(--accent);margin-bottom:10px;}
@media(max-width:540px){.stat-cards{gap:20px;} .stat{padding:28px 18px;}}

/* ─── Tools Logo-Grid ───────────────────────── */
.tools{padding:80px 20px;text-align:center;}
.tools-logos{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:36px;max-width:900px;margin:40px auto;}
.tools-logos img{width:100%;max-height:60px;object-fit:contain;opacity:.8;transition:opacity .2s;}
.tools-logos img:hover{opacity:1;}
/* ─── Frosted-Glass-Variante für Buttons ───────────────────────── */
/* Basis: Klassenkombination .cta-button.cta-frosted  */
.cta-button.cta-frosted {
  /* halbtransparenter Film in Akzentfarbe */
  background: rgba(var(--accent-rgb), .18);
  /* Glass-Blur */
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  
  /* leichte Outline, damit es wie Glas wirkt */
  border: 1px solid rgba(var(--accent-rgb), .35);
  color: #fff;
  
  /* dezenter Schatten */
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), .25);
  
  /* vorhandene Werte beibehalten */
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background-color .2s;
}

/* Hover/Active-Effekt */
.cta-button.cta-frosted:hover {
  background: rgba(var(--accent-rgb), .25);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), .35);
}
/* Persönlicher Service – dezente Tönung & Luft */
.service-highlight{

  padding-block: 80px;
}



/* auf ultrakleinen Screens Karten enger stapeln */
@media(max-width:420px){
  .feature-card{padding:28px 22px;}
}

/* 2 Spalten breit */
.feature-card.wide  { grid-column:span 2; }

/* 2 Zeilen hoch (bei auto-rows:1fr ≈ doppelte Höhe) */
.feature-card.tall  { grid-row:span 2; }

/* 2 × 2 Felder */
.feature-card.large { grid-column:span 2; grid-row:span 2; }

/* Sicherstellen, dass große Karten genug Innenhöhe bekommen */
.feature-card.tall,
.feature-card.large{
  min-height:360px;         /* bei Bedarf anpassen */
}
/* ------------------------------------------------------------ */
/*  Persönlicher Service – Full Width + Masonry-Grid            */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/*  Persönlicher Service – 2×2 Grid                             */
/* ------------------------------------------------------------ */

/* Section-Band */
.service-highlight{
  
  padding-block: 80px;
}
.service-inner{
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
.service-inner h2{ margin-bottom:16px; }

/* Grid-Layout exakt nach Wunsch ------------------------------ */
.service-grid{
  margin-top:48px;
  display:grid;
  gap:32px;
  /* drei Spalten, weil linke große Karte zwei Spalten belegt   */
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows:repeat(2,auto);
}

/* Platzierung der Karten */
.card--big-left   { grid-column:1 / span 2; grid-row:1; }
.card--small-right{ grid-column:3;          grid-row:1; }
.card--small-left-1{grid-column:1;          grid-row:2; }
.card--small-left-2{grid-column:2;          grid-row:2; }
.card--big-right{                    /* ehemals On-Site, jetzt Reporting */
  grid-column: 2 / span 2;           /* rechte zwei Spalten */
  grid-row: 2;                       /* nur zweite Zeile */
 ;                 /* optisch passend */
}

/* Mobile fallback: alles untereinander */
@media(max-width:540px){
  .service-grid{
    grid-template-columns:1fr;
  }
  .card--big-left,
  .card--small-right,
  .card--small-left-1,
  .card--small-left-2,
  .card--big-right{
    grid-column:auto;
    grid-row:auto;
  }
}
.guarantee-banner{
  margin:80px 0;                      /* Abstand zu Nachbar-Sections */
  padding:46px 32px;
  text-align:center;
  border-radius:40px;
  background:rgba(var(--accent-rgb),.18);      /* Frosted-Glass */
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(var(--accent-rgb),.35);
  box-shadow:0 8px 24px rgba(var(--accent-rgb),.25);
  display:flex; flex-direction:column; gap:22px;
  max-width:960px; margin-inline:auto;         /* zentriert */
}
.guarantee-banner p{
  margin:0;
  font-size:1.2rem;
  line-height:1.4;
}
.guarantee-banner strong{font-size:1.5rem;}
@media(max-width:540px){
  .guarantee-banner{padding:36px 24px;}
}
/* ---------- Login Card ------------------------------------------------ */
.login-section{
  min-height:100vh;
  display:grid; place-items:center;
  padding:80px 20px;
  background: url("../img/login_bg.jpg") center/cover;  /* optional BG */
}

.login-card{
  width:100%; max-width:380px;
  padding:46px 36px;
  border-radius:32px;
  background:rgba(255,255,255,.22);
  backdrop-filter:blur(18px) saturate(180%);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 10px 32px rgba(0,0,0,.12);
  text-align:center;
}

.login-card h2{
  font-size:2rem; margin-bottom:26px;
}

.login-card form{
  display:flex; flex-direction:column; gap:22px;
}

.login-card label span{
  display:block; text-align:left; font-weight:600; margin-bottom:4px;
}

.login-card input{
  width:100%; padding:12px 16px;
  border-radius:30px; border:1px solid #000;
  font-family:'DM Sans',sans-serif;
}

.w-full{width:100%}

/* Flash-Nachrichten */
.flash-msgs{list-style:none;padding:0;margin:0 0 18px}
.flash-msgs li{padding:10px 14px;border-radius:20px;font-size:.9rem}
.flash-msgs .success{background:rgba(34,197,94,.15);color:#22c55e}
.flash-msgs .error  {background:rgba(239,68,68,.15);color:#ef4444}
/* Chip‑Container */
.chip-group{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:32px;            /* Abstand unter Headline */
}

/* Ein einzelner Chip */
.chip{
  --c: var(--accent-rgb);      /* Standard‑Farbe = Akzent */
  padding:6px 18px;
  font-family:'Plus Jakarta Sans VF',sans-serif;
  font-size:.95rem;
  font-weight:600;
  border-radius:24px;
  cursor:pointer;
  border:1px solid rgba(var(--c),.35);
  background:rgba(var(--c),.10);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  transition:background .2s,border-color .2s,box-shadow .2s;
}
.chip:hover{background:rgba(var(--c),.18);}
.chip.is-active{
  background:rgb(var(--c));
  border-color:transparent;
  color:#fff;
  box-shadow:0 6px 16px rgba(var(--c),.35);
}

/* Variante für dunklen Grund (z.B. Partner‑Section) */
.partner .chip{--c:255,255,255; background:rgba(255,255,255,.14);}
.partner .chip:hover{background:rgba(255,255,255,.18);}
.partner .chip.is-active{background:#fff;color:#111;box-shadow:none;}
/* Hero leicht dunkler Verlauf, damit Text besser liest */
.hero--project::before{
  background:linear-gradient(160deg,rgba(0,0,0,.65) 0%,rgba(0,0,0,.35) 60%,rgba(var(--accent-rgb),.35) 100%);
}

/* Lead‑Paragraph */
.project-lead{max-width:780px;margin:0 auto 32px;font-size:1.2rem;font-weight:300;}

/* KPI‑Balken */
.project-stats{
  display:flex;flex-wrap:wrap;gap:32px;justify-content:center;margin-top:24px;
}
.project-stats > div{flex:1 1 140px;min-width:140px;background:rgba(255,255,255,.14);backdrop-filter:blur(14px) saturate(160%);padding:24px 18px;border-radius:30px;font-size:.95rem;box-shadow:0 8px 24px rgba(0,0,0,.08);text-align:center;}
.project-stats strong{display:block;font-size:2.2rem;font-weight:700;color:var(--accent);}

/* Testimonial‑Card inside dark section */
.testimonial-card{
  max-width:680px;margin:40px auto;background:rgba(255,255,255,.14);backdrop-filter:blur(14px) saturate(160%);border-radius:30px;padding:40px 32px;text-align:center;box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.testimonial-card img{width:86px;height:86px;border-radius:50%;object-fit:cover;margin-bottom:18px;}
.testimonial-card blockquote{font-size:1.1rem;font-weight:600;margin:0;}
.testimonial-card figcaption{margin-top:12px;font-size:.9rem;opacity:.7;}


@media (prefers-color-scheme: dark){
    :root{
      --bg-tint:#0f0f17;
    }
    body{background-color:#0f0f17;color:#e6e6e6;}
    header.scrolled{background-color:rgba(0,0,0,.35);border-bottom-color:rgba(255,255,255,.15);}
    /* Glas- / Card‑Flächen etwas dunkler */
    .card,
    .plan,
    .feature-card,
    .flow-node,
    .uplink-card,
    .timeline-step,
    .stat,
    .testimonial-card,
    .dropdown,
    .palette-dropdown{
      background:rgba(255,255,255,.08) !important;
      border-color:rgba(255,255,255,.18) !important;
    }
    /* Footer & Partner‑Section */
    .partner, .site-footer{background:#0b0b0b;color:#e6e6e6;}
    /* Inverse Ghost‑Button für Dark */
    .cta-button.cta-inverse{background:transparent;color:var(--accent);border:2px solid var(--accent);}
    .cta-button.cta-inverse:hover{background:var(--accent);color:#fff;}
  }


  /* ─── Live-Search-Overlay ───────────────────────────────────── */
.search-overlay{
  position:fixed; inset:0;
  display:grid; place-items:center;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:1200;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.search-overlay.open{opacity:1; pointer-events:auto;}

/* Frosted-Container */
.search-box{
  width:90%; max-width:600px;
  padding:40px 32px 32px;
  border-radius:38px;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(22px) saturate(180%);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 8px 32px rgba(0,0,0,.18);
  display:flex; flex-direction:column; gap:22px;
}

/* Suchfeld + Button */
#liveSearch{display:flex;}
#liveSearch input{
  flex:1; border:none; border-radius:32px 0 0 32px;
  background:rgba(255,255,255,.30);
  padding:16px 22px; font-size:1.2rem; outline:none;
}
#liveSearch button{
  border:none; background:var(--accent); color:#fff;
  border-radius:0 32px 32px 0; width:64px; cursor:pointer;
  display:grid; place-items:center;
}
#liveSearch button svg{width:24px; height:24px;}

/* Vorschlagsliste */
.search-suggestions{
  list-style:none; margin:0; padding:0;
  max-height:240px; overflow:auto;
}
.search-suggestions li a{
  display:block; padding:10px 14px; border-radius:22px;
  color:#000; text-decoration:none;
  background:rgba(255,255,255,.08);
  transition:background .2s;
}
.search-suggestions li a:hover{
  background:rgba(var(--accent-rgb),.20); color:var(--accent);
}
.search-suggestions .empty{padding:10px 14px; color:#666;}

.overlay-close{
  position:absolute; top:18px; right:24px;
  background:none; border:none; font-size:2rem;
  color:#fff; cursor:pointer;
}

/* ─── Burger-Button ──────────────────────────────────────────── */
.nav-toggle{
  display:none;                      /* nur Mobile → @media unten */
  background:none; border:none; padding:8px;
  cursor:pointer; margin-left:4px; z-index:1300;
}
.nav-toggle .bar{
  display:block; width:24px; height:2px;
  margin:5px 0; border-radius:2px;
  background:currentColor;
  transition:transform .35s ease, opacity .35s ease;
}

/* Linien → Kreuz wenn offen */
.menu-open .nav-toggle .bar:nth-child(1){transform:translateY(7px) rotate(45deg);}
.menu-open .nav-toggle .bar:nth-child(2){opacity:0;}
.menu-open .nav-toggle .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg);}



/* ─── Mobile-Layout < 720 px ─────────────────────────────────── */
@media(max-width:720px){
  /* Burger sichtbar, Suche & Palette nach rechts schieben */
  .nav-toggle{display:block; margin-left:auto;}
  .nav-search{margin-left:12px;}
  .nav.menu-open ul { transform: translateY(0); }

  /* Voll-Screen-Menü */
  .nav ul{
    position:fixed; inset:0;
    flex-direction:column;
    gap:42px;
    justify-content:center; align-items:center;
    background:rgba(255,255,255,.16);
    backdrop-filter:blur(18px) saturate(180%);
    -webkit-backdrop-filter:blur(18px) saturate(180%);
    transform:translateY(-100%);
    transition:transform .45s cubic-bezier(.25,.8,.3,1);
  }
  /* Sichtbar, wenn Menü offen */
  .menu-open .nav ul{transform:translateY(0);}
}



.section-reveal{
  opacity: 0;
  transform: translateY(60px);      /* leicht von unten */
  transition: opacity .7s ease-out,
              transform .7s cubic-bezier(.25,.8,.3,1);
  will-change: opacity, transform;  /* Performance */
}

/* Ziel-State, sobald die Klasse .is-visible gesetzt wird */
.section-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}/* Startzustand – Hero-Hintergrund ist dunkel → Logo weiß */



/* ===== Karten auf kleinen Screens stapeln ===== */
@media (max-width: 640px) {       /* Schwelle frei wählbar */
  .cards {
    flex-direction: column;       /* vertikal statt Zeilen-Wrap */
    gap: 20px;                    /* etwas schmalerer Abstand */
  }

  .card {
    flex: 1 1 100%;               /* volle Breite */
    max-width: 100%;              /* Sicherheitsnetz */
  }
}
