
:root{
  --bg: #0b0f19;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.12);
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 30px;
  --max: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 800px at 15% 20%, rgba(142, 97, 255,.28), transparent 55%),
              radial-gradient(1100px 800px at 85% 20%, rgba(34, 211, 238,.22), transparent 60%),
              radial-gradient(1000px 700px at 50% 90%, rgba(16, 185, 129,.18), transparent 60%),
              var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  overflow-x:hidden;
}

/* ===== Live background (subtle, brand-matching) ===== */
body{ position: relative; }
#live-bg{
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}
#live-bg::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(900px 600px at 20% 25%, rgba(142,97,255,.18), transparent 60%),
    radial-gradient(800px 520px at 82% 18%, rgba(34,211,238,.14), transparent 62%),
    radial-gradient(900px 620px at 55% 85%, rgba(16,185,129,.12), transparent 62%),
    conic-gradient(from 180deg at 50% 50%, rgba(142,97,255,.07), rgba(34,211,238,.06), rgba(16,185,129,.05), rgba(142,97,255,.07));
  filter: blur(26px) saturate(115%);
  opacity: .9;
  transform: translate3d(0,0,0);
  animation: livebgFloat 18s ease-in-out infinite alternate;
}
#live-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10px 10px, rgba(255,255,255,.10) 1px, transparent 1.6px);
  background-size: 28px 28px;
  opacity: .07;
  filter: blur(.2px);
  animation: livebgDrift 22s linear infinite;
}
@keyframes livebgFloat{
  0%{ transform: translate3d(-2%, -1%, 0) scale(1.02) rotate(-2deg); }
  50%{ transform: translate3d(1%, -2%, 0) scale(1.05) rotate(1deg); }
  100%{ transform: translate3d(2%, 1%, 0) scale(1.03) rotate(3deg); }
}
@keyframes livebgDrift{
  0%{ transform: translate3d(0,0,0); }
  100%{ transform: translate3d(-56px, -56px, 0); }
}
@media (prefers-reduced-motion: reduce){
  #live-bg::before, #live-bg::after{ animation: none !important; }
}

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

/* ===== Section separation (better topic boundaries) ===== */
main > section:not(.hero){
  position: relative;
  isolation: isolate;
}
main > section:not(.hero)::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: rgba(255,255,255,.012);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
main > section:not(.hero):nth-of-type(even)::before{
  background: rgba(255,255,255,.018);
}
.small{font-size:.92rem; color:var(--muted2)}
.kicker{letter-spacing:.14em; text-transform:uppercase; font-size:.78rem; color:var(--muted2)}
h1,h2,h3{margin:0 0 12px 0; line-height:1.12}
h1{font-size:clamp(2.1rem, 3.4vw, 3.4rem)}
h2{font-size:clamp(1.6rem, 2.4vw, 2.2rem)}
h3{font-size:1.15rem}
p{margin:0 0 14px 0; color:var(--muted); line-height:1.65}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}
.btn.primary{
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(142,97,255,.40), rgba(34,211,238,.22));
}
.btn .dot{width:9px; height:9px; border-radius:99px; background: currentColor; opacity:.8}
.btn:focus{outline:2px solid rgba(34,211,238,.55); outline-offset:3px}/* Kontaktformular: Status-Dot im Button (wird grün, wenn alle Felder ausgefüllt sind) */
.form-actions .btn.primary .dot{
  background: rgba(0,0,0,.65);
  opacity: .85;
}
.btn.primary.is-complete .dot{
  background: rgba(34,197,94,1);
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
  opacity: 1;
}

/* Öffnungszeiten-Indikator neben Telefon/E-Mail */
.open-ind{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-left:8px;
  font-size:12px;
  color: var(--muted2);
  vertical-align:middle;
  white-space:nowrap;
}
.open-ind .led{
  width:9px; height:9px;
  border-radius:99px;
  background: rgba(239,68,68,1);
  box-shadow: 0 0 0 3px rgba(239,68,68,.14);
  flex:0 0 auto;
}
/* E-Mail: außerhalb Öffnungszeiten bewusst "amber" statt rot */
.open-ind[data-variant="email"] .led{
  background: rgba(245,158,11,1);
  box-shadow: 0 0 0 3px rgba(245,158,11,.16);
}
.open-ind.open .led{
  background: rgba(34,197,94,1);
  box-shadow: 0 0 0 3px rgba(34,197,94,.14);
}


/* Mini-Variante (z.B. Floating-Kontakt unten rechts) */
.open-ind--mini{
  gap:0;
  margin-left:auto;
}
.open-ind--mini .txt{display:none}
.open-ind--mini .led{
  width:8px; height:8px;
}
.open-ind--mini[data-show-hours="true"]{
  gap:6px;
  margin-left:10px;
}
.open-ind--mini[data-show-hours="true"] .txt{
  display:inline;
  font-size:11px;
  color: var(--muted2);
}
.floating-contact .open-ind--mini{
  margin-left:auto;
}


header{
  position:sticky; top:0; z-index:40;
  background: rgba(11,15,25,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.28), transparent 55%),
              linear-gradient(135deg, rgba(142,97,255,.85), rgba(34,211,238,.65));
  box-shadow: 0 22px 70px rgba(142,97,255,.20);
  border: 1px solid rgba(255,255,255,.18);
}
.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  transition: background .18s ease, color .18s ease;
  white-space:nowrap;
}
.navlinks a:hover{background: rgba(255,255,255,.06); color: var(--text)}
.nav-cta{display:flex; gap:10px; align-items:center}

.burger{
  display:none; width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line); background: rgba(255,255,255,.06);
  align-items:center; justify-content:center; cursor:pointer;
}
.burger span{
  width:18px; height:2px; background: rgba(255,255,255,.75);
  position:relative; display:block;
}
.burger span::before,.burger span::after{
  content:""; position:absolute; left:0; width:18px; height:2px;
  background: rgba(255,255,255,.75);
}
.burger span::before{top:-6px}
.burger span::after{top:6px}

.mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile .inner{
  padding:14px 22px 18px;
  display:grid;
  gap:8px;
}
.mobile a{padding:12px 12px; border-radius:14px; background: rgba(255,255,255,.05); color:var(--muted)}
.mobile a:hover{color:var(--text); background: rgba(255,255,255,.08)}

.hero{
  padding:78px 0 44px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.hero-card{padding:28px}

/* Hero: keep transparency, but improve legibility */
.hero .hero-card{
  background: linear-gradient(180deg, rgba(7,10,18,.62), rgba(7,10,18,.40));
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px) saturate(125%);
}
.hero .hero-card h1{ text-shadow: 0 10px 40px rgba(0,0,0,.55); }
.hero .hero-card p,
.hero .hero-card li,
.hero .hero-card .badge{ text-shadow: 0 8px 34px rgba(0,0,0,.45); }
.hero p{font-size:1.05rem}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 18px}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size:.92rem;
}
.badge .pill{
  width:9px; height:9px; border-radius:999px;
  background: linear-gradient(135deg, rgba(142,97,255,.85), rgba(34,211,238,.75));
  box-shadow: 0 0 0 6px rgba(34,211,238,.10);
}
.hero-actions{display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:16px; margin-top:20px; align-items:stretch}
/* Hero CTA grid buttons */
.hero-actions .btn{width:100%; justify-content:center; padding:13px 16px; border-radius:16px; font-weight:650; letter-spacing:.2px}
.hero-actions .btn svg{width:18px; height:18px; flex:0 0 auto; transform: translateY(0.5px)}
@media (max-width: 980px){
  .hero-actions{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 560px){
  .hero-actions{grid-template-columns: 1fr; gap:12px;}
  .hero-actions .btn{justify-content:flex-start;}
}

.hero-visual{
  position:relative;
  overflow:hidden;
  padding:18px;
}
.hero-visual .frame{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:18px;
  position:relative;
}
.hero-visual svg{
  width:100%;
  height:auto;
  color: rgba(255,255,255,.9);
  opacity:.9;
}
.hero-visual .glow{
  position:absolute; inset:-120px -120px auto auto;
  width:340px; height:340px;
  background: radial-gradient(circle, rgba(34,211,238,.28), transparent 60%);
  filter: blur(1px);
}
.hero-visual .glow2{
  position:absolute; inset:auto auto -140px -140px;
  width:380px; height:380px;
  background: radial-gradient(circle, rgba(142,97,255,.26), transparent 62%);
}
.n{
  transform-origin: center;
  animation: float 5.5s ease-in-out infinite;
}
.n2{animation-delay:-.4s}
.n3{animation-delay:-1.1s}
.n4{animation-delay:-1.7s}
.n5{animation-delay:-.9s}
.n7{animation-delay:-1.3s}
.n9{animation-delay:-.6s}
.n10{animation-delay:-1.9s}
.n12{animation-delay:-.8s}
@keyframes float{
  0%,100%{transform: translateY(0)}
  50%{transform: translateY(-10px)}
}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .navlinks{display:none}
  .burger{display:flex}
  .mobile{display:block}
}

.feature{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  min-height: 150px;
  position:relative;
  overflow:hidden;
}
.feature::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(600px 220px at 10% 0%, rgba(34,211,238,.14), transparent 55%),
              radial-gradient(520px 220px at 90% 10%, rgba(142,97,255,.16), transparent 60%);
  opacity:0;
  pointer-events:none;
}
/* Remove strong feature glow */
.feature::before{display:none;}

.feature > *{position:relative}
.icon{
  width:38px; height:38px;
  border-radius:14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px;
}
.icon svg{width:20px; height:20px; opacity:.9}

.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:20px}
.section-head p{max-width:62ch}

.accordion{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.acc-item{border-top:1px solid rgba(255,255,255,.10)}
.acc-item:first-child{border-top:none}
.acc-btn{
  width:100%;
  background: transparent;
  color: var(--text);
  border:0;
  padding:18px 18px;
  display:flex; justify-content:space-between; gap:14px;
  align-items:flex-start;
  cursor:pointer;
}
.acc-title{display:grid; gap:6px; text-align:left}
.acc-title .top{font-weight:700}
.acc-title .sub{color: var(--muted); font-size:.95rem}
.acc-chevron{
  width:34px; height:34px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  flex:0 0 auto;
  transition: transform .18s ease;
}
.acc-panel{
  max-height: 0;
  overflow:hidden;
  transition: max-height .28s ease;
}
.acc-panel .inner{
  padding:0 18px 18px;
  color: var(--muted);
}
.acc-item.open .acc-panel{max-height: 900px}
.acc-item.open .acc-chevron{transform: rotate(180deg)}

.price{
  padding:20px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  position:relative;
  overflow:hidden;
}
.price.recommended{
  border-color: rgba(34,211,238,.30);
  box-shadow: 0 30px 90px rgba(34,211,238,.10);
}

/* Full‑Service als Top‑Produkt stärker hervorheben */
.price.top-product{
  border-color: rgba(255, 215, 128, .38);
  box-shadow: 0 34px 120px rgba(255, 215, 128, .10);
  transform: translateZ(0);
}
.price.top-product::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255, 215, 128, .18), transparent 60%),
              radial-gradient(520px 240px at 85% 10%, rgba(34,211,238,.10), transparent 62%);
  opacity:.9;
  pointer-events:none;
}
.price.top-product > *{ position:relative; }
.price .tag .tag-badge{
  margin-left:8px;
  padding:3px 8px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:800;
  background: rgba(255, 215, 128, .14);
  border:1px solid rgba(255, 215, 128, .22);
}
.price .tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(34,211,238,.12);
  border: 1px solid rgba(34,211,238,.22);
  color: rgba(255,255,255,.86);
  font-size:.82rem;
  margin-bottom:10px;
}
ul.clean{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
ul.clean li{display:flex; gap:10px; align-items:flex-start; color:var(--muted)}
ul.clean li .check{
  width:18px; height:18px; border-radius:6px;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(16,185,129,.28);
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
  flex:0 0 auto;
}
ul.clean li .check svg{width:12px; height:12px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
@media (max-width:980px){.split{grid-template-columns:1fr}}

.form{
  display:grid; gap:12px;
}

/* Kontaktformular: hübscher + besser integriert */
.form-pretty{margin-top:12px}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width:720px){.form-row{grid-template-columns:1fr}}
.field{position:relative}
.field-ic{
  position:absolute;
  left:14px;
  top:34px;
  transform:none;
  width:18px; height:18px;
  color: rgba(255,255,255,.78);
  opacity:.9;
  pointer-events:none;
}
.field-ic svg{width:18px; height:18px}
.field-lbl{
  display:block;
  font-size:12px;
  color: var(--muted2);
  margin: 0 0 6px 2px;
}
.form-pretty .input{padding-left:44px}
.field-full .field-ic{top:36px; transform:none}
.field-full textarea.input{padding-top:14px}
.form-actions{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-top:6px}
.form-privacy{color: var(--muted2)}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
}
textarea.input{min-height:120px; resize:vertical}
.input:focus{outline:2px solid rgba(142,97,255,.45); outline-offset:2px}

.footer{
  padding:40px 0;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--text)}
.footer .legal{display:flex; gap:14px; flex-wrap:wrap; margin-top:10px}

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity:1;
  transform: translateY(0);
}



/* --- Dropdown: Leistungen --- */
.dropdown{position:relative}
.dropbtn{
  display:flex; align-items:center; gap:6px;
  padding:10px 10px;
  border-radius:12px;
  background:transparent;
  border:0;
  color:var(--muted);
  cursor:pointer;
  font:inherit;
  transition: background .18s ease, color .18s ease;
}
.dropbtn svg{width:16px; height:16px; opacity:.9; transition: transform .18s ease}
.dropdown.open .dropbtn{background: rgba(255,255,255,.06); color: var(--text)}
.dropdown.open .dropbtn svg{transform: rotate(180deg)}
.dropmenu{
  position:absolute;
  top:52px;
  left:0;
  width:min(520px, calc(100vw - 40px));
  padding:10px;
  border-radius:16px;
  background: rgba(18,24,41,.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  display:none;
  z-index:50;

  /* ensure everything is reachable on smaller viewports */
  max-height: min(72vh, 640px);
  overflow: auto;
}
.dropdown.open .dropmenu{display:block}

/* subtle scrollbar (keeps design, improves usability) */
.dropmenu::-webkit-scrollbar{width:10px}
.dropmenu::-webkit-scrollbar-thumb{background: rgba(255,255,255,.10); border-radius:999px; border:2px solid rgba(18,24,41,.92)}
.dropmenu::-webkit-scrollbar-track{background: transparent}
.drop-item{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  color: var(--text);
  text-decoration:none;
}
.drop-item:hover{background: rgba(255,255,255,.06)}
.drop-hint{
  display:block;
  font-size:12px;
  color: var(--muted2);
  margin-top:2px;
  line-height:1.25;
}

/* Mobile Leistungen list */
.m-drop{border:1px solid var(--line); border-radius:16px; padding:6px 10px; background: rgba(255,255,255,.04)}
.m-drop summary{cursor:pointer; padding:10px 10px; color: var(--text); list-style:none; user-select:none}
.m-drop summary::-webkit-details-marker{display:none}
.m-drop-items{display:flex; flex-direction:column; gap:6px; padding:0 6px 10px}
.m-drop-items .drop-item{padding:10px 10px}

/* --- Leistungen: Struktur + Live-Illustrationen --- */
.leistung-sub{margin-top:18px; padding-top:18px; border-top:1px solid var(--line)}
.leistung-sub-grid{display:grid; grid-template-columns: 1.4fr .8fr; gap:18px; align-items:center}
.leistung-sub h3{margin:0 0 10px; font-size:18px}
.leistung-sub .hint{display:inline-block; margin-left:8px; font-size:12px; font-weight:500; color: var(--muted2)}
.leistung-sub .txt p{color: var(--muted)}
.bullets{margin:10px 0 0; padding-left:18px; color: var(--muted)}
.bullets li{margin:6px 0}
.viz{display:flex; justify-content:center; align-items:center}
.live-svg{width:100%; max-width:260px; height:auto; color: rgba(255,255,255,.92); opacity:.98}
@media (max-width: 900px){
  .leistung-sub-grid{grid-template-columns:1fr}
  .viz{justify-content:flex-start}
  .dropmenu{left:auto; right:0}
}

/* Animated "live" feel */
.live-svg .srv-scan{transform-box: fill-box; transform-origin: center; animation: scan 1.5s ease-in-out infinite}
.live-svg.server .srv-leds circle{animation: blink 1.1s ease-in-out infinite}
.live-svg.server .srv-leds circle:nth-child(2){animation-delay:.15s}
.live-svg.server .srv-leds circle:nth-child(3){animation-delay:.3s}
.live-svg.server .srv-leds circle:nth-child(5){animation-delay:.45s}
.live-svg.server .srv-leds circle:nth-child(7){animation-delay:.6s}

.live-svg.rack .rack-dot{transform-box: fill-box; transform-origin: center; animation: rackdot 1.6s ease-in-out infinite}
.live-svg.pc .pc-wave{stroke-dasharray: 220; stroke-dashoffset: 220; animation: dash 1.8s ease-in-out infinite}
.live-svg.pc .pc-led{animation: blink 1.2s ease-in-out infinite alternate}
.live-svg.phone .phone-signal{animation: signal 1.2s ease-in-out infinite}
.live-svg.phone .phone-signal2{animation: signal 1.2s ease-in-out infinite .12s}
.live-svg.topo .pkt{animation: pkt 1.6s linear infinite}
.live-svg.topo .pkt2{animation: pkt2 1.6s linear infinite}
.live-svg.topo .pkt3{animation: pkt3 1.6s linear infinite}
.live-svg.topo .pkt4{animation: pkt4 1.6s linear infinite}

@keyframes scan{
  0%{transform: translateY(0); opacity:.25}
  50%{transform: translateY(86px); opacity:.75}
  100%{transform: translateY(0); opacity:.25}
}
@keyframes blink{
  0%{opacity:.18}
  100%{opacity:.9}
}
@keyframes rackdot{
  0%{transform: translateY(0); opacity:.35}
  50%{transform: translateY(92px); opacity:.85}
  100%{transform: translateY(0); opacity:.35}
}
@keyframes dash{
  0%{stroke-dashoffset: 220; opacity:.35}
  50%{stroke-dashoffset: 0; opacity:.85}
  100%{stroke-dashoffset: -220; opacity:.35}
}
@keyframes signal{
  0%{opacity:.12; transform: translateX(0)}
  50%{opacity:.75; transform: translateX(2px)}
  100%{opacity:.12; transform: translateX(0)}
}
@keyframes pkt{
  0%{transform: translateX(0); opacity:.15}
  30%{opacity:.75}
  60%{transform: translateX(86px); opacity:.75}
  100%{transform: translateX(86px); opacity:.15}
}
@keyframes pkt2{
  0%{transform: translateX(0); opacity:.15}
  30%{opacity:.75}
  60%{transform: translateX(86px); opacity:.75}
  100%{transform: translateX(86px); opacity:.15}
}
@keyframes pkt3{
  0%{transform: translateX(0); opacity:.15}
  30%{opacity:.75}
  60%{transform: translateX(-86px); opacity:.75}
  100%{transform: translateX(-86px); opacity:.15}
}
@keyframes pkt4{
  0%{transform: translateY(0); opacity:.15}
  30%{opacity:.75}
  60%{transform: translateY(-66px); opacity:.75}
  100%{transform: translateY(-66px); opacity:.15}
}



/* ===== Theme Toggle (Dark default, Light optional) ===== */
html.light{
  --bg:#f4f7fb;
  --panel: rgba(15,23,42,.06);
  --panel2: rgba(15,23,42,.08);
  --text: rgba(10,16,26,.92);
  --muted: rgba(10,16,26,.70);
  --muted2: rgba(10,16,26,.55);
  --line: rgba(10,16,26,.14);
  --shadow: 0 30px 80px rgba(2,6,23,.10);
}
html.light body{
  background:
    radial-gradient(900px 600px at 18% 16%, rgba(28,141,191,.16), transparent 58%),
    radial-gradient(900px 600px at 82% 18%, rgba(11,58,109,.14), transparent 62%),
    var(--bg);
}

.logo-img{width:34px;height:34px;object-fit:contain;display:block}

.icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  /* a touch brighter for better visibility */
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.theme-toggle .theme-ic{ color:#fff; }
.icon-btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}
html.light .icon-btn:hover{border-color: rgba(10,16,26,.22)}

/* Light mode polish (aim: same premium look as dark) */
html.light header{
  background: rgba(244,247,251,.78);
  border-bottom: 1px solid rgba(15,23,42,.10);
}
html.light .card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 34px 92px rgba(2,6,23,.08);
}
html.light .hero .hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
  border: 1px solid rgba(15,23,42,.14);
  backdrop-filter: blur(16px) saturate(120%);
}
html.light .badge{
  background: rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.10);
}
html.light .btn{
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78));
  border-color: rgba(15,23,42,.12);
  box-shadow: 0 22px 70px rgba(2,6,23,.10);
}
html.light .btn:hover{border-color: rgba(15,23,42,.22)}
html.light .dropmenu{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.12);
  box-shadow: 0 26px 90px rgba(2,6,23,.12);
}
html.light .mega-col{
  border:1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
}
html.light .dropmenu.mega .drop-item:hover{
  background: rgba(15,23,42,.06);
}
html.light .floating-contact .fc-item{
  border-color: rgba(15,23,42,.12);
}

/* Light mode: spezifische Komponenten, die im Dark Mode eigene Hintergründe setzen */
html.light .results-card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 34px 92px rgba(2,6,23,.10);
}
html.light .result-pill{
  background: rgba(15,23,42,.03);
  border: 1px solid rgba(15,23,42,.10);
}
html.light .svc-icon{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.03);
}
html.light .svc-icon::after{ opacity:.30; }
html.light #gruppe-branchen .svc-media{ opacity:.10; }

/* ===== Hero Video ===== */
.hero{position:relative; overflow:hidden}
.hero-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  /* Start: etwas heller; wird per JS zusammen mit der Logo/Text-Animation abgedunkelt */
  filter:saturate(.95) contrast(1.05) brightness(1.12);
  transform: scale(1.02);
}

/* Mobile: Video-Ausschnitt etwas nach oben schieben */
@media (max-width: 720px){
  .hero-video{
    object-position: 50% 50%;
    transform: scale(1.06);
  }
}
.hero-video-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 520px at 30% 25%, rgba(11,58,109,.55), transparent 60%),
    radial-gradient(900px 520px at 78% 22%, rgba(28,141,191,.38), transparent 62%),
    rgba(6,10,16,.35);
  transition: opacity .6s ease, background .6s ease;
}

/* Dim-State (ab Logo-Animation) */
.hero.dim .hero-video{filter:saturate(.95) contrast(1.05) brightness(.92)}
.hero.dim .hero-video-overlay{
  background:
    radial-gradient(800px 520px at 30% 25%, rgba(11,58,109,.55), transparent 60%),
    radial-gradient(900px 520px at 78% 22%, rgba(28,141,191,.38), transparent 62%),
    rgba(6,10,16,.62);
}
html.light .hero-video-overlay{
  background:
    radial-gradient(900px 560px at 30% 25%, rgba(11,58,109,.30), transparent 60%),
    radial-gradient(900px 520px at 78% 22%, rgba(28,141,191,.22), transparent 62%),
    rgba(244,247,251,.72);
}
.hero .container, .hero .hero-grid{position:relative; z-index:2}
.hero-brand{
  width:min(320px, 70%);
  height:auto;
  margin:2px 0 18px 0;
  display:block;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.35));
}
html.light .hero-brand{filter: drop-shadow(0 18px 60px rgba(2,6,23,.18));}

/* ===== 'Ihr Anliegen fehlt' polishing ===== */
.note-card{padding:26px 26px 24px 26px}
.note-card h3{font-size:1.25rem; margin-top:6px}
.note-card .btn{margin-top:8px}


/* ===== Hero layout adjustments (single column + centered logo) ===== */
.hero-grid-single{grid-template-columns: 1fr !important;}
.hero-card{max-width: 980px; margin-inline:auto;}
.hero-grid-single .hero-card{max-width:none;}
.hero-logo-wrap{display:flex; justify-content:center; align-items:center; margin: 6px 0 18px 0;}
.hero-logo-img{width:min(360px, 72vw); height:auto; filter: drop-shadow(0 18px 60px rgba(0,0,0,.35)); transform-origin: top center;}

/* === Hero Start-Sequenz (Video -> Logo -> Text) === */
.hero-seq-card, .hero-seq-logo, .hero-seq-copy{
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
}
.hero-seq-logo{ transform: translateY(-10px) scale(.98); }
.hero-seq-show{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
  transition: opacity .65s ease, transform .65s ease;
}
.hero-seq-logo.hero-seq-show{
  animation: logoIn .9s ease forwards;
}
.hero-copy{
  display:block;
}

@media (prefers-reduced-motion: reduce){
  .hero-seq-card, .hero-seq-logo, .hero-seq-copy{
    opacity:1; transform:none; pointer-events:auto;
  }
}

.reveal-logo{opacity:0; transform: translateY(-14px) scale(.98); animation: logoIn .9s ease forwards; animation-delay: .15s;}
@keyframes logoIn{to{opacity:1; transform: translateY(0) scale(1);}}

/* subtle informative list (chips) */
.hero-proof{
  list-style:none;
  padding:0;
  margin: 16px 0 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-proof li{
  display:inline-flex;
  width: fit-content;
  max-width: 100%;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  line-height:1.35;
}
html.light .hero-proof li{
  background: rgba(15,23,42,.05);
}

/* ===== Nav contact ===== */
.nav-meta{display:flex; gap:14px; align-items:center; flex-wrap:wrap;}
.nav-contact{display:inline-flex; align-items:center; gap:10px; color: var(--muted); text-decoration:none;}
.nav-contact:hover{color: var(--text);}
.nav-contact .ic{
  width:28px; height:28px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
}
html.light .nav-contact .ic{background: rgba(15,23,42,.06);}


/* ===== Floating contact widget (bottom-right, sticky) ===== */
.floating-contact{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: grid;
  gap: 10px;
}
.floating-contact .fc-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(10,14,22,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  text-decoration:none;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
html.light .floating-contact .fc-item{
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 60px rgba(2,6,23,.12);
}
.floating-contact .fc-item:hover{
  transform: translateY(-1px);
  border-color: rgba(148,163,184,.55);
}
.floating-contact .fc-ic{
  width: 30px;
  height: 30px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(148,163,184,.28);
  font-size: 14px;
}
html.light .floating-contact .fc-ic{background: rgba(15,23,42,.04);}
.floating-contact .fc-txt{font-weight: 700; font-size: 13px; letter-spacing:.2px}
@media (max-width: 520px){
  .floating-contact{right: 12px; bottom: 12px}
  .floating-contact .fc-item{padding: 9px 10px}
  .floating-contact .fc-txt{font-size: 12.5px}
}


/* === Mega-Dropdown (Leistungen) === */
.dropmenu.mega{
  width:min(980px, calc(100vw - 32px));
  padding:14px;
  max-height: calc(100vh - 110px);
  overflow: auto;
}
.mega-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

/* Branchen: bewusst 2 Spalten (kein leeres Feld nach "Betrieb & Kundenkontakt") */
.dropdown[data-dropdown="branchen"] .mega-grid{
  grid-template-columns:repeat(3, 1fr);
}
.mega-col{
  padding:10px 10px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  backdrop-filter: blur(10px);
}
.mega-title{
  font-weight:800;
  margin-bottom:8px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:baseline;
}
.mega-hint{
  font-weight:600;
  color: var(--muted);
  font-size:.82rem;
}
.dropmenu.mega .drop-item{
  padding:10px 10px;
  border-radius:12px;
  white-space:normal;
  line-height:1.25;
}
.dropmenu.mega .drop-item:hover{
  background: rgba(255,255,255,.07);
}
.mega-footer{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:center;
}
.mega-cta{
  display:inline-flex;
  gap:10px;
  align-items:baseline;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  text-decoration:none;
}
.mega-cta:hover{
  background: rgba(255,255,255,.08);
}
@media (max-width: 980px){
  .dropmenu.mega{ width:min(720px, calc(100vw - 32px)); }
  .mega-grid{ grid-template-columns:1fr; }
}

/* === Leistungen: Gruppen + Cards === */
.service-group{
  margin-top:26px;
  padding:22px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  position:relative;
  overflow:hidden;
}
/* Service group topic separation (clearer start of next main topic) */
#leistungen .service-group::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(90deg, rgba(120,170,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
  opacity:1;
  pointer-events:none;
}
#leistungen .service-group > *{ position:relative; z-index:1; }

#leistungen .service-head{
  padding:14px 16px;
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  margin-bottom:14px;
}
#leistungen .service-head h3{ margin-top:0; }
.service-group::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background: radial-gradient(circle at 30% 30%, rgba(120,170,255,.20), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(120,255,210,.12), transparent 55%);
  filter: blur(18px);
  opacity:0;
  
  pointer-events:none;
}
/* Disabled animated background orbs per v28.1 */
.service-group::before{display:none;}

@keyframes floatOrbs{
  from{ transform: translate3d(-10px,-6px,0) scale(1.02); }
  to  { transform: translate3d(12px,10px,0) scale(1.05); }
}
.service-head{ position:relative; z-index:1; margin-bottom:12px; }
.service-head h3{ margin:0 0 6px; display:flex; flex-wrap:wrap; gap:10px; align-items:baseline; }
.service-hint{ color: var(--muted); font-weight:600; font-size:.95rem; }
.service-head p{ margin:0; color: var(--muted); }

.service-grid{ position:relative; z-index:1; }
.service-card{ padding:16px; position:relative; overflow:hidden; }
.service-card h4{ margin:8px 0 6px; }

/* === Branchen: Detail-Pills (wie bei Leistungen, inkl. Icon) === */
.pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.pills .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size:.86rem;
  font-weight:650;
  letter-spacing:.15px;
  line-height:1.1;
}
.pills .pill svg{ width:15px; height:15px; flex:0 0 auto; opacity:.95; }
.pills .pill .pill-txt{ line-height:1.1; }

/* Außenbox/Look in der Branchen-Gruppe etwas „aufgeräumter“ */
#gruppe-branchen .service-card{ padding:18px; overflow: visible; }
#gruppe-branchen .service-card p{ margin-bottom:0; }
#gruppe-branchen .svc-media{ opacity:.15; }

/* "Ihre Branche fehlt?" bewusst etwas vom oberen Block absetzen */
#gruppe-branchen .ds-missing-branch{ margin-top: 18px; }

/* Service-Illustration (dezentes Bild pro Karte) */
.svc-media{
  position:absolute;
  right:-18px;
  top:-18px;
  width:140px;
  height:140px;
  opacity:.18;
  pointer-events:none;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.25));
}
.svc-media img{ width:100%; height:100%; object-fit:contain; }
.svc-icon{
  width:42px; height:42px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  position:relative;
  overflow:hidden;
}
.svc-icon svg{ width:22px; height:22px; }
.svc-icon::after{
  content:"";
  position:absolute; inset:-60%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), transparent 60%);
  transform: rotate(12deg);
  animation: iconSheen 2.8s ease-in-out infinite;
  opacity:.55;
}
@keyframes iconSheen{
  0%{ transform: translateX(-20%) rotate(12deg); opacity:.0; }
  35%{ opacity:.55; }
  70%{ transform: translateX(18%) rotate(12deg); opacity:.0; }
  100%{ opacity:0; }
}
.svc-sub{ margin:0 0 10px; font-size:.9rem; color: var(--muted); }
.svc-body{ margin:0; }

.service-missing{
  margin-top:18px;
  padding:18px;
}

/* === Section-Abgrenzung: größere Blöcke klarer trennen === */
section{
  scroll-margin-top: 90px;
}
section:not(#hero):not(#footer){
  border-top: 1px solid var(--line);
}



/* === Hero: Typische Ergebnisse (Überschrift sofort sichtbar, Details erst nach Scroll) === */
/* Hinweis: früher mit negativem margin-top "angeheftet" -> kollidierte je nach Viewport. */
.hero-results{ padding: 14px 0 26px; margin-top: 0; }
.hero-results .results-card{ position:relative; z-index:3; }
/* --- Anpassung: "Typische Ergebnisse" Block komplett von rechts nach links --- */
.hero-results .container{
  display:flex;
  justify-content:flex-end; /* Box rechts ausrichten */
}

.results-card.reveal{
  /* überschreibt allgemeines reveal (Y) -> slide von rechts */
  transform: translateX(70px);
  opacity: 0;
}
.results-card.reveal.visible{
  transform: translateX(0);
  opacity: 1;
}

/* Mobile: wieder mittig/volle Breite, aber weiterhin RTL-Einflug */
@media (max-width: 920px){
  .hero-results .container{ justify-content:center; }
  .results-card{ width: min(720px, 100%); }
}


/* "Typische Ergebnisse" – kompakt beim Start, erweitert nach Scroll (JS toggelt .expanded) */
.results-card{
  padding: 18px 22px;
  border-radius: var(--radius2);
  background: rgba(16, 22, 36, .55);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  max-height: 172px;        /* genug für Titel + 3 Fakten */
  overflow: hidden;
  transform: translateZ(0);
  transition: max-height .45s ease, transform .45s ease, padding .45s ease, box-shadow .45s ease;
}
.results-card.expanded{
  max-height: 560px;
  padding: 26px;
  transform: scale(1.02);
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
}

.results-title{
  margin:0 0 10px;
  font-size: 1.15rem;
  display:flex;
  align-items:baseline;
  gap: 10px;
  justify-content:center;
  text-align:center;
}
.results-title-sub{ font-weight: 500; color: var(--muted); font-size: .95em; }

/* Kompakt: Elemente von rechts nach links, klar getrennt */
.results-compact{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 920px){
  .results-compact{ grid-template-columns: 1fr; }
}

.compact-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Neue Kompakt-Anordnung: 1. Zeile zentriert, 2. Zeile linksbündig */
.compact-row-top{ justify-content:center; }
.compact-row-bottom{ justify-content:flex-start; margin-top: 10px; }

/* vertikaler Trenner (nur Desktop) */
.compact-divider{
  flex: 0 0 1px;
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,.14);
  border-radius: 999px;
  opacity:.9;
}
@media (max-width: 720px){
  .compact-divider{ display:none; }
  .compact-row{ gap:10px; }
}

/* Items sauber ausrichten + leichte Einblend-Animation (rechts -> links) */
.compact-item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 14, 25, .55);
  border: 1px solid rgba(255,255,255,.08);
  min-width: 0;
  animation: resultsIn .55s ease both;
}
.compact-item{ animation-delay: .06s; }

@keyframes resultsIn{
  from{ opacity:0; transform: translateX(18px); }
  to{ opacity:1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce){
  .compact-item{ animation: none; }
}

.result-ico{
  display:inline-flex;
  width: 18px;
  height: 18px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  flex: 0 0 18px;
}
.compact-metric{
  font-weight: 800;
  white-space: nowrap;
  letter-spacing:.2px;
}
.compact-text{
  color: var(--muted);
  font-size: .95rem;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}

/* Erweitert */
.results-expanded{ display:none; }
.results-card.expanded .results-expanded{ display:block; }

.results-list{
  list-style:none;
  margin: 8px 0 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.results-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 14, 25, .55);
  border: 1px solid rgba(255,255,255,.08);
}
.list-metric{ font-weight: 800; white-space: nowrap; }
.list-text{ color: var(--muted); }

.results-disclaimer{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(255,255,255,.62);
}

/* Kontakt: Öffnungszeiten */
.hours-box{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 14, 25, .45);
  border: 1px solid rgba(255,255,255,.08);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.hours-ic{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  flex: 0 0 auto;
}
.hours-ic svg{ width: 18px; height: 18px; }
.hours-txt{ line-height: 1.35; }
.hours-txt .kicker{ margin:0 0 2px; }

/* Download: TeamViewer card */
.tv-card{max-width: 860px; margin-inline:auto}
.tv-link{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:14px;
  padding:18px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.tv-link:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16)}
.tv-link img{width:min(340px, 70%); height:auto; object-fit:contain; filter: drop-shadow(0 16px 50px rgba(0,0,0,.30))}

/* === Warum wir? – strukturierter, mehr Substanz, besser lesbar === */
.why-card{ padding: 22px; border-radius: var(--radius2); }
.why-card .feature{ position: relative; }
.mini-tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.tag{
  font-size: .78rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}
.sec-matrix{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.sec-col{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.sec-h{ display:block; font-weight: 700; font-size: .82rem; }
.sec-i{ display:block; margin-top: 2px; color: var(--muted); font-size: .82rem; }

.why-extras{ margin-top: 18px; }
.mini-card{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  position: relative;
  overflow: hidden;
}
.mini-card:before{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(closest-side, rgba(255,255,255,.08), transparent 60%);
  transform: translate(40%, -20%);
  opacity: .35;
  pointer-events:none;
}
.mini-ico{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  margin-bottom: 10px;
}
.mini-ico svg{ width: 22px; height: 22px; }
.why-quote{
  margin-top: 16px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(14, 18, 30, .55);
  backdrop-filter: blur(8px);
}

/* === Leistungen: mehr visuelle Führung (Chips + Icon-Animation) === */
.svc-chips{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: .82rem;
}
.chip svg{ width: 16px; height: 16px; opacity: .9; }

.service-card .svc-icon{
  position: relative;
  overflow: hidden;
}
.service-card .svc-icon:after{
  content:"";
  position:absolute;
  inset:-60%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%);
  opacity: .30;
  animation: svcGlow 4.2s ease-in-out infinite;
  pointer-events:none;
}
@keyframes svcGlow{
  0%{ transform: translate(-8%, -6%); opacity:.18; }
  50%{ transform: translate(8%, 6%); opacity:.34; }
  100%{ transform: translate(-8%, -6%); opacity:.18; }
}
.service-card .svc-icon svg{
  transition: transform .35s ease, filter .35s ease;
}
.service-card:hover .svc-icon svg{
  transform: translateY(-2px) rotate(-2deg) scale(1.02);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

/* Responsive Feinschliff */
@media (max-width: 720px){
  .sec-matrix{ grid-template-columns: 1fr; }
  .result-pill{ min-width: 0; }
}


/* === Direktkontakt: Öffnungszeiten === */
.opening-hours{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.opening-hours .oh-ic{
  width:38px; height:38px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  flex:0 0 auto;
}
.opening-hours .oh-txt{line-height:1.35}
.opening-hours .oh-title{font-weight:800; margin:0 0 2px}
.opening-hours .oh-line{margin:0; color: var(--muted)}


/* Legal pages */
.legal-doc{max-width: 980px; margin: 0 auto;}
.legal-doc h2{margin: 0 0 10px; font-size: 1.25rem;}
.legal-doc h3{margin: 18px 0 8px; font-size: 1.05rem; opacity: .95;}
.legal-doc p, .legal-doc li{line-height: 1.65;}
.legal-doc ul{margin: 10px 0 16px 18px;}
.legal-hr{border: 0; border-top: 1px solid rgba(255,255,255,.08); margin: 18px 0;}
.legal-note{opacity:.8; font-size:.95rem;}
@media (prefers-color-scheme: light){
  .legal-hr{border-top-color: rgba(0,0,0,.10);}
}


/* Mobile menu label (Leistungen) */
.m-drop-label{
  margin: 10px 0 6px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .9;
}

/* Branchen Detail (Probleme & Lösungen) */
.svc-detail{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.svc-detail h5{
  margin: 0 0 6px 0;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.svc-detail ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.svc-detail li{
  margin: 4px 0;
  line-height: 1.35;
}
@media (min-width: 980px){
  .svc-detail{ grid-template-columns: 1fr 1fr; }
}

/* Cookie banner */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));
}
.cookie-card{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(15,21,36,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.cookie-title{
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.cookie-desc{
  font-size: 13px;
  color: rgba(255,255,255,.82);
  line-height: 1.35;
}
.cookie-desc a{ color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions{ display:flex; gap:10px; flex-shrink:0; }
.cookie-actions .btn{
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.cookie-actions .btn.primary{
  border: 0;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(124,92,255,.70));
}
.cookie-actions .btn.ghost:hover{ background: rgba(255,255,255,.10); }
.cookie-actions .btn.primary:hover{ filter: brightness(1.05); }
@media (max-width: 820px){
  .cookie-card{ flex-direction: column; align-items: stretch; }
  .cookie-actions{ justify-content: flex-end; }
}

/* Service-Details: praxisnahe Stichworte */
.svc-bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.svc-bullets li{
  margin: 6px 0;
  line-height: 1.4;
}


/* v26 service-group separation + friendly glow */
.service-group{
  position: relative;
  margin-top: 26px;
  padding-top: 18px;
}
.service-group + .service-group{
  border-top: 1px solid var(--line, rgba(255,255,255,0.10));
}
.service-group::before{
  content:"";
  position:absolute;
  left: -40px;
  right: -40px;
  top: -20px;
  height: 140px;
  background: radial-gradient(circle at 30% 40%, rgba(34,211,238,.14), transparent 60%);
  pointer-events:none;
  filter: blur(1px);
  opacity: .9;
}
body.dark .service-group::before, body[data-theme="dark"] .service-group::before{
  background: radial-gradient(circle at 30% 40%, rgba(34,211,238,.18), transparent 62%),
              radial-gradient(circle at 70% 50%, rgba(142,97,255,.12), transparent 60%);
  opacity: 1;
}
/* Results note icon alignment */
.results-note .note-ico{
  display:inline-block;
  width: 1.2em;
  text-align:center;
  opacity:.9;
}

/* v26: E-Mail indicator is orange when closed */
[data-open-indicator][data-variant="email"]:not(.open) .led,
[data-open-indicator][data-variant="email"]:not(.open)::before{
  background: #f59e0b !important;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.18), 0 0 18px rgba(245,158,11,0.28) !important;
}

/* v27: partner logos with white background (for transparent PNGs) */
.partner-logo-bg{background:#fff;border-radius:14px;padding:10px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(0,0,0,.06)}
body.dark .partner-logo-bg{background:rgba(255,255,255,.92);border-color:rgba(255,255,255,.12)}
/* v27 results layout: keep the good collapsible design + symmetric pills */
.results-card:not(.expanded) .results-grid,
.results-card:not(.expanded) .results-note{
  display:none !important;
}
.results-grid{
  display:grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 720px){
  .results-grid{ grid-template-columns: 1fr; }
}
.result-pill{ min-width: 0 !important; }
.result-metric{
  font-size: 1.25rem !important;
  line-height: 1.1;
}
.results-note{
  margin-top: 12px;
}

@media (max-width: 640px){
  .compact-text{ white-space: normal; max-width: none; }
  .compact-row{ justify-content:flex-start; }
  .compact-divider{ display:none; }
}


/* =========================
   Dropdown: "Ihr Anliegen fehlt?" / Branchen CTA consistency
   ========================= */
.mega-footer { /* ensure footer styling is consistent (already present, keep safe) */ }

/* =========================
   Partner logos: white tile for transparent/low-contrast logos
   ========================= */
.partner-logo-tile{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:10px;
}
.partner-logo-tile--white{
  background:#fff;
}

/* =========================
   Infinity Live Background
   ========================= */
#liveBg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index: 0;
  pointer-events:none;
  opacity:.85;
}
/* ensure page sections stay readable */


/* Keep content readable above canvas */
.page, main, .app, .wrapper {
  position: relative;
  z-index: 0;
}


/* === Dark base overlay (keeps original design while letting live canvas show) === */
html, body {
  background: transparent;
  color: rgba(255,255,255,0.92);
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;          /* same layer as canvas; canvas is drawn behind via DOM order */
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(90, 60, 255, 0.16), rgba(0,0,0,0) 55%),
    radial-gradient(1000px 700px at 90% 20%, rgba(0, 210, 255, 0.12), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(7,10,18,0.86), rgba(7,10,18,0.92));
}
/* put canvas slightly above overlay so it's visible */
#liveBg{ z-index: 1; opacity: .65; mix-blend-mode: screen; }
/* content above everything */
.page, main, .app, .wrapper, header, nav, section, footer {
  position: relative;
  z-index: 2;
}


/* === Sticky navigation (do not hide on scroll) === */
header{
  position: sticky;
  top: 0;
  z-index: 50; /* above content and background */
}
/* keep the header readable above animated background */
header::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(7,10,18,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index:-1;
}
/* avoid layout jump */
body{ scroll-padding-top: 84px; }


/* =========================
   Clarity & hierarchy upgrades
   ========================= */
:root{
  --glass: rgba(255,255,255,0.06);
  --glass2: rgba(255,255,255,0.10);
  --stroke: rgba(255,255,255,0.10);
}

#scrollProgress{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  background: rgba(255,255,255,0.05);
}
#scrollProgress > span{
  display:block;
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(0,210,255,0.0), rgba(0,210,255,0.8), rgba(120,82,255,0.8));
}

.overview{ margin-top: 10px; }
.overview-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.overview-card{
  display:flex;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  text-decoration:none;
  color: inherit;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.overview-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.oc-ico{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  flex: 0 0 auto;
}
.overview-card h3{ margin: 0 0 4px 0; font-size: 1.0rem; }
.overview-card p{ margin: 0 0 8px 0; color: rgba(255,255,255,0.78); 
  line-height: 1.5;
}
.oc-link{ color: rgba(0,210,255,0.95); font-weight: 600; font-size: 0.92rem; }

/* Filterbar */
.filterbar{
  margin: 14px 0 18px 0;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
}
.filterlabel{ font-weight: 650; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.filterinput{
  flex: 1 1 260px;
  min-width: 240px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  outline: none;
}
.filterinput:focus{
  border-color: rgba(0,210,255,0.45);
  box-shadow: 0 0 0 4px rgba(0,210,255,0.10);
}
.filtermeta{ color: rgba(255,255,255,0.70); font-size: 0.9rem; }

/* Process */
.process-steps{
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.process-steps li{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px 18px;
  display:flex;
  gap: 12px;
}
.ps-idx{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 750;
}
.process-steps h3{ margin: 0 0 6px 0; font-size: 1.0rem; }
.process-steps p{ margin: 0; color: rgba(255,255,255,0.78); }
.process-cta{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Pack tabs */
.packtabs{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px 0;
}
.packtab{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  font-weight: 650;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.packtab:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,0.18); }
.packtab.is-active{
  background: rgba(0,210,255,0.12);
  border-color: rgba(0,210,255,0.35);
}

/* Testimonials */
.t-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.t-card{
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.t-card blockquote{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.55;
}
.t-card figcaption{
  margin-top: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

/* Reveal improvements (smooth but subtle) */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 980px){
  .overview-grid{ grid-template-columns: 1fr; }
  .t-grid{ grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: 1fr; }
}


/* Overview icon styling (monochrome, consistent) */
.oc-ico svg{
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,0.88);
  opacity: 0.95;
}


/* =========================
   Icon Color System (Brand Accents)
   ========================= */

/* Base icon container glow */
.oc-ico{
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
}

/* Default SVG behavior */
.oc-ico svg{
  transition: transform .2s ease, filter .2s ease;
}

/* Individual accent colors per card */
.overview-card:nth-child(1) .oc-ico svg{
  fill:#5B8CFF;              /* Infrastructure Blue */
  filter: drop-shadow(0 0 6px rgba(91,140,255,.45));
}
.overview-card:nth-child(2) .oc-ico svg{
  fill:#00D2FF;              /* Network / Data Cyan */
  filter: drop-shadow(0 0 6px rgba(0,210,255,.45));
}
.overview-card:nth-child(3) .oc-ico svg{
  fill:#22E6A7;              /* Support / Availability Green */
  filter: drop-shadow(0 0 6px rgba(34,230,167,.45));
}

/* Subtle interaction */
.overview-card:hover .oc-ico svg{
  transform: scale(1.08);
}

/* Process step numbers get same accent logic */
.process-steps li:nth-child(1) .ps-idx{ background:rgba(91,140,255,.15); color:#5B8CFF; }
.process-steps li:nth-child(2) .ps-idx{ background:rgba(0,210,255,.15); color:#00D2FF; }
.process-steps li:nth-child(3) .ps-idx{ background:rgba(34,230,167,.15); color:#22E6A7; }
.process-steps li:nth-child(4) .ps-idx{ background:rgba(168,120,255,.15); color:#A878FF; }
.process-steps li:nth-child(5) .ps-idx{ background:rgba(255,184,77,.15); color:#FFB84D; }

/* Keep typography readable */
.ps-idx{
  border:1px solid rgba(255,255,255,.18);
  font-weight:700;
}

/* Tiny polish for testimonial cards */
.t-card{
  border:1px solid rgba(255,255,255,.12);
}


/* =========================
   Section Icon Accents (global)
   ========================= */
:root{
  --a-blue: #5B8CFF;
  --a-cyan: #00D2FF;
  --a-mint: #22E6A7;
  --a-violet:#A878FF;
  --a-amber:#FFB84D;
}

/* Make all inline SVG icons follow currentColor by default */
svg[aria-hidden="true"]{ color: currentColor; }
svg[aria-hidden="true"] path[stroke="currentColor"]{ stroke: currentColor; }
svg[aria-hidden="true"] path[fill="currentColor"]{ fill: currentColor; }

/* Navbar dropdown chevrons */
header .dropbtn svg{
  color: rgba(255,255,255,0.70);
}
header .dropdown:hover .dropbtn svg,
header .dropbtn[aria-expanded="true"] svg{
  color: var(--a-cyan);
  filter: drop-shadow(0 0 6px rgba(0,210,255,.35));
}

/* Typische Ergebnisse icons */
.compact-item:nth-child(1) .result-ico{ color: var(--a-cyan); text-shadow: 0 0 10px rgba(0,210,255,.25); }
.compact-item:nth-child(2) .result-ico{ color: var(--a-blue); text-shadow: 0 0 10px rgba(91,140,255,.25); }
.compact-item:nth-child(3) .result-ico{ color: var(--a-mint); text-shadow: 0 0 10px rgba(34,230,167,.25); }

/* Warum wir mini-cards */
#warum-wir .mini-card:nth-child(1) .mini-ico{ color: var(--a-cyan); }
#warum-wir .mini-card:nth-child(2) .mini-ico{ color: var(--a-blue); }
#warum-wir .mini-card:nth-child(3) .mini-ico{ color: var(--a-mint); }
#warum-wir .mini-card:nth-child(4) .mini-ico{ color: var(--a-violet); }
#warum-wir .mini-ico svg{
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.0));
}
#warum-wir .mini-ico{
  filter: drop-shadow(0 0 8px rgba(0,210,255,.18));
}

/* Leistungen service icons */
#leistungen .service-card:nth-child(3n+1) .svc-icon{ color: var(--a-cyan); }
#leistungen .service-card:nth-child(3n+2) .svc-icon{ color: var(--a-blue); }
#leistungen .service-card:nth-child(3n)   .svc-icon{ color: var(--a-mint); }
#leistungen .svc-icon svg{
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.0));
}
#leistungen .svc-icon{
  filter: drop-shadow(0 0 10px rgba(0,210,255,.22));
}

/* Branchen: color the mega titles with subtle accents to guide scanning */
.dropmenu[aria-label="Branchen"] .mega-title:nth-of-type(1){ color: rgba(255,255,255,0.92); }
.dropmenu[aria-label="Branchen"] .mega-col:nth-child(1) .mega-title{ text-shadow: 0 0 10px rgba(0,210,255,.12); }
.dropmenu[aria-label="Branchen"] .mega-col:nth-child(2) .mega-title{ text-shadow: 0 0 10px rgba(91,140,255,.12); }
.dropmenu[aria-label="Branchen"] .mega-col:nth-child(3) .mega-title{ text-shadow: 0 0 10px rgba(34,230,167,.12); }

/* Generic icon buttons */
.icon-btn svg, .icon svg{ color: var(--a-cyan); filter: drop-shadow(0 0 8px rgba(0,210,255,.25)); }

/* =========================
   Kontakt: 3-Spalten-Layout + Google Maps Embed
   ========================= */
#kontakt .contact-map-card h3{ margin-bottom: 6px; }
#kontakt .map-embed{
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  aspect-ratio: 16 / 12;
}
#kontakt .map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 1100px){
  #kontakt .map-embed{ aspect-ratio: 16 / 10; }
}

/* =========================
   Open indicator: E-Mail outside hours = orange + hint
   ========================= */
.open-ind.email-closed .led{
  background: rgba(245,158,11,1);
  box-shadow: 0 0 0 3px rgba(245,158,11,.16);
}
.open-ind.email-closed{
  color: rgba(245,158,11,0.95);
}

/* =========================
   Mini open indicator sizing (avoid overlay on scroll)
   ========================= */
.open-ind--mini .txt{
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.open-ind--mini{
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

/* === Map embed sizing fix === */
#kontakt .map-embed{
  aspect-ratio: auto;
  height: 320px;
}
@media (max-width: 1100px){
  #kontakt .map-embed{ height: 260px; }
}
#kontakt .map-actions{ margin-top: 10px; display:flex; }
.btn-sm{ padding: 8px 10px; font-size: 0.92rem; }


/* =========================
   Hint Panels (integrated but distinct)
   ========================= */
.hint-panel{
  position: relative;
  border-radius: 18px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}
.hint-panel::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(800px 300px at 20% 0%, rgba(0,210,255,0.10), rgba(0,0,0,0) 55%),
              radial-gradient(700px 260px at 90% 20%, rgba(91,140,255,0.10), rgba(0,0,0,0) 55%);
  pointer-events:none;
}
.hint-panel > *{ position: relative; z-index: 1; }
.hint-panel .kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.hint-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(0,210,255,0.14);
  border: 1px solid rgba(0,210,255,0.22);
  color: var(--a-cyan, #00D2FF);
  font-weight: 800;
  font-size: 0.85rem;
}
/* reduce 'inserted' feeling by matching section spacing */
.overview, .process, .testimonials{ margin-top: 18px; }
.overview .section-head, .process .section-head, .testimonials .section-head{ margin-bottom: 12px; }


/* =========================
   Kontakt: Map wide (below contact cards)
   ========================= */
.kontakt-map-wide{ margin-top: 16px; }
.map-wide-card{
  padding: 18px 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.map-wide-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.map-wide-head h3{ margin: 0; }
.map-wide-head .small{ margin: 0; color: rgba(255,255,255,0.70); }
#kontakt .map-embed{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  height: 360px;
}
@media (max-width: 980px){
  #kontakt .map-embed{ height: 280px; }
}


/* =========================
   Integrated Hint Sections (native look + helpful)
   ========================= */
.hint-surface{
  position: relative;
  border-radius: 18px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
}
.hint-surface::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 320px at 20% 0%, rgba(0,210,255,0.10), rgba(0,0,0,0) 60%),
    radial-gradient(900px 320px at 85% 20%, rgba(91,140,255,0.10), rgba(0,0,0,0) 60%);
  opacity: .9;
}
.hint-surface > *{ position: relative; z-index: 1; }
.hint-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.82rem;
  letter-spacing: .02em;
  color: rgba(0,210,255,0.95);
  background: rgba(0,210,255,0.12);
  border: 1px solid rgba(0,210,255,0.22);
}
.hint-divider{
  margin-top: 14px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Make head spacing match overall system */
.overview .section-head, .process .section-head, .testimonials .section-head{
  margin-bottom: 12px;
}
.overview h2, .process h2, .testimonials h2{
  max-width: 980px;
}
.overview .muted, .process .muted, .testimonials .muted{
  max-width: 980px;
}

/* Cards inside hint sections slightly denser, more integrated */
.overview-card, .process-steps li, .t-card{
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
}


/* =========================
   Kicker as non-paragraph heading (Hinweis/Ablauf/Feedback)
   ========================= */
.section-head .kicker{
  margin: 0 0 8px 0;
  padding: 0;
}

/* =========================
   Button icons for internal navigation
   ========================= */
a.btn svg{
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 6px;
}


/* =========================
   Hint kicker inline layout (no paragraph-like break)
   ========================= */
.hint-surface .section-head .kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 520px){
  .hint-surface .section-head .kicker{ flex-wrap: wrap; white-space: normal; }
}
.hint-pill{ margin: 0; }


/* =========================
   Leistungen: Search field aligned right
   ========================= */
.filterbar{
  justify-content: space-between;
}
.filterinput{
  margin-left: auto;
  max-width: 520px;
}
.filtermeta{
  flex: 1 1 100%;
  margin-left: 0;
}


/* === Hint sections: integrated & clean (re-tuned) === */
.hint-surface{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
}
.hint-surface::before{
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(0,210,255,0.09), rgba(0,0,0,0) 60%),
    radial-gradient(700px 260px at 85% 15%, rgba(91,140,255,0.08), rgba(0,0,0,0) 60%);
  opacity: .85;
}
.hint-surface .section-head{
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hint-surface .section-head .kicker{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;   /* no weird breaks */
  white-space: normal;
}
.hint-divider{ display:none; } /* no extra inserted line */


/* === Leistungen: filterbar grid layout (label left, input right) === */
#leistungen .filterbar{
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px);
  gap: 10px 12px;
  align-items: center;
}
#leistungen .filterlabel{ grid-column: 1 / 2; margin:0; }
#leistungen .filterinput{ grid-column: 2 / 3; width:100%; max-width: 520px; margin-left: 0; }
#leistungen .filtermeta{ grid-column: 1 / -1; }
@media (max-width: 760px){
  #leistungen .filterbar{ grid-template-columns: 1fr; }
  #leistungen .filterinput{ grid-column: 1 / -1; max-width: 100%; }
}


/* =========================
   Leistungen: force search input to the RIGHT (override)
   ========================= */
#leistungen .filterbar{
  display: grid !important;
  grid-template-columns: 1fr minmax(280px, 560px) !important;
  justify-items: stretch;
  align-items: center;
}
#leistungen .filterinput{
  justify-self: end;
  width: 100% !important;
  max-width: 560px !important;
}
#leistungen .filterlabel{ justify-self: start; }

/* Leistungen: Intro-Text links, Suchfeld rechts neben dem Einleitungstext */
#leistungen .section-head.leistungen-head{
  /* .section-head ist global flex (2-Spalten-Layout). Für Leistungen brauchen wir wieder
     den klassischen, sauberen Head wie vorher: Kicker + H2 oben, darunter Intro-Zeile. */
  display: block;
}
#leistungen .section-head.leistungen-head h2{
  margin-bottom: 10px;
}
#leistungen .leistungen-intro{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  justify-content: space-between;
}
#leistungen .leistungen-desc{
  margin: 0;
  flex: 1 1 620px;
  min-width: 280px;
}
#leistungen .filterbar{
  margin: 0;              /* neben Text, kein zusätzlicher Abstand nach oben */
  flex: 0 0 520px;
  max-width: 560px;
}
@media (max-width: 980px){
  #leistungen .leistungen-intro{ flex-direction: column; align-items: stretch; }
  #leistungen .filterbar{ flex: 1 1 auto; max-width: 100%; }
}


/* =========================
   Testimonials slider (right -> left, 20 reviews, random order)
   ========================= */
.t-slider{margin-top: 18px; position: relative;}
.t-slider-viewport{overflow:hidden; border-radius: var(--radius2);}
.t-track{
  display:flex;
  gap: 14px;
  align-items: stretch;
  width: max-content;
  will-change: transform;
  animation: tMarquee 68s linear infinite;
  padding: 2px 2px 6px 2px;
}
.t-slider:hover .t-track{ animation-play-state: paused; }
@keyframes tMarquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.t-slide{
  min-width: 360px;
  max-width: 420px;
}
@media (max-width: 760px){
  .t-slide{ min-width: 300px; max-width: 360px; }
  .t-track{ animation-duration: 58s; }
}
@media (prefers-reduced-motion: reduce){
  .t-track{ animation: none; }
}

/* Light mode readability fixes (override hard-coded white text colors) */
html.light .overview-card p,
html.light .process-steps p,
html.light .map-wide-head .small,
html.light .filterlabel{ color: var(--text) !important; }
html.light .filtermeta{ color: var(--muted) !important; }
html.light .muted, html.light .small{ color: var(--muted) !important; }
html.light .hint-surface{
  background: rgba(255,255,255,.62) !important;
  border: 1px solid rgba(15,23,42,.10) !important;
}
html.light .hint-surface::before{ opacity: .55 !important; }

/* Light mode: make chips/pills and cards consistently readable */
html.light .chip,
html.light .pill,
html.light .result-pill{
  color: rgba(10,16,26,.86) !important;
  border-color: rgba(15,23,42,.12) !important;
  background: rgba(15,23,42,.03) !important;
}
html.light .t-card,
html.light .t-slide,
html.light .feature,
html.light .mini-card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78)) !important;
  border: 1px solid rgba(15,23,42,.10) !important;
}


/* =========================
   Leistungen: Deep-dive details
   ========================= */
.svc-more{ margin-top:14px; border:1px solid var(--line); border-radius: var(--radius2); background: rgba(255,255,255,.03); overflow:hidden; }
:root.light .svc-more{ background: rgba(0,0,0,.03); }
.svc-more > summary{ cursor:pointer; list-style:none; padding:12px 14px; font-weight:700; display:flex; align-items:center; gap:10px; }
.svc-more > summary::-webkit-details-marker{ display:none; }
.svc-more > summary:after{ content:""; margin-left:auto; width:10px; height:10px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform: rotate(45deg); opacity:.7; }
.svc-more[open] > summary:after{ transform: rotate(-135deg); }
.svc-more-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; padding:12px 14px 14px; }
@media (max-width: 820px){ .svc-more-grid{ grid-template-columns:1fr; } }

.svc-more-block{ border:1px solid var(--line); border-radius: 18px; padding:12px; background: rgba(255,255,255,.02); }
:root.light .svc-more-block{ background: rgba(255,255,255,.6); }
.svc-more-title{ display:flex; align-items:center; gap:10px; font-weight:800; margin-bottom:8px; }
.svc-more-ic{ width:34px; height:34px; border-radius: 12px; display:grid; place-items:center; color: #fff; background: linear-gradient(135deg, rgba(120,180,255,.95), rgba(163,100,255,.95)); box-shadow: 0 10px 25px rgba(0,0,0,.22); }
:root.light .svc-more-ic{ box-shadow: 0 10px 25px rgba(0,0,0,.12); }
.svc-more-ic svg{ width:18px; height:18px; }
.svc-more-body p{ margin:0; }
.svc-more-body ul{ margin:0; padding-left:18px; }
.svc-more-body li{ margin:6px 0; }

.mini-compare{ display:grid; gap:8px; margin-top:10px; }
.mini-compare > div{ display:grid; grid-template-columns: 110px 1fr; align-items:center; gap:10px; }
.mini-compare span{ font-size:.9rem; opacity:.85; }
.mini-compare b{ display:block; height:10px; border-radius: 999px; background: linear-gradient(90deg, rgba(34,211,238,.95), rgba(168,85,247,.95)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }

/* =========================
   Managed IT: Compare table
   ========================= */
.compare-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.compare-tools{ display:flex; gap:12px; align-items:center; }
.compare-toggle{ display:flex; align-items:center; gap:10px; user-select:none; font-weight:700; }
.compare-toggle input{ width:18px; height:18px; accent-color: #7aa7ff; }

.compare-tablewrap{ margin-top:12px; overflow:auto; border:1px solid var(--line); border-radius: 18px; }
.compare-table{ width:100%; border-collapse: collapse; min-width: 760px; }
.compare-table th, .compare-table td{ padding:12px 14px; border-bottom:1px solid var(--line); vertical-align: middle; }
.compare-table th{ text-align:left; font-weight:900; font-size:.95rem; background: rgba(255,255,255,.03); }
:root.light .compare-table th{ background: rgba(0,0,0,.03); }
.compare-table td[data-v="yes"]{ font-weight:900; }
.compare-table tr.is-diff-hidden{ display:none; }

/* Light mode legibility hardening for performance */
:root.light .muted{ color: rgba(15,23,42,.78) !important; }
:root.light .chip{ background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.12); }
:root.light .svc-body, :root.light .svc-sub{ color: rgba(15,23,42,.92); }

/* v59 content helpers */
.svc-list{ margin:10px 0 0 18px; color:var(--muted, #9aa4b2); }
.svc-list li{ margin:6px 0; }
.svc-compare{ border:1px solid rgba(255,255,255,.12); border-radius:14px; overflow:hidden; background:rgba(255,255,255,.03); }
.svc-compare-head{ display:grid; grid-template-columns:1fr 1fr; padding:10px 12px; font-weight:600; background:rgba(255,255,255,.05); }
.svc-compare-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; padding:10px 12px; border-top:1px solid rgba(255,255,255,.08); }
.svc-compare-row span:last-child{ color:#d7e7ff; }
@media (prefers-color-scheme: light){
  .svc-compare{ border-color: rgba(2,6,23,.12); background: rgba(2,6,23,.02); }
  .svc-compare-head{ background: rgba(2,6,23,.04); }
  .svc-compare-row{ border-top-color: rgba(2,6,23,.08); }
  .svc-compare-row span:last-child{ color:#0b3a6d; }
}

/* v60 Feinschliff Leistungen */
.svc-more-block{ margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08); }
.svc-more-title{ font-weight:600; letter-spacing:.2px; margin-bottom:6px; }
.svc-list li{ line-height:1.55; }
.service-card{ transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover{ transform: translateY(-4px); box-shadow:0 10px 28px rgba(0,0,0,.25); }

/* v63 – Leistungen: Diagramme statt Dropdown */
.svc-diagram{ margin-top:14px; padding:12px 12px 10px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.03);
}
.svc-diagram-head{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:8px; }
.svc-diagram-title{ font-weight:650; letter-spacing:.2px; }
.svc-diagram-note{ font-size:.85rem; opacity:.75; }
.svc-diagram-row{ display:grid; grid-template-columns: 130px 1fr 44px; gap:10px; align-items:center; padding:6px 0; }
.svc-diagram-label{ font-size:.92rem; opacity:.9; }
.svc-diagram-val{ text-align:right; font-variant-numeric: tabular-nums; opacity:.9; }
.svc-diagram-bar{ position:relative; height:10px; border-radius:999px; overflow:hidden; background:rgba(255,255,255,.10); }
.svc-diagram-bar i{ display:block; height:100%; border-radius:999px; background:linear-gradient(90deg, rgba(120,180,255,.95), rgba(210,235,255,.95)); }
@media (max-width:640px){
  .svc-diagram-row{ grid-template-columns: 1fr; gap:6px; }
  .svc-diagram-val{ text-align:left; }
}
@media (prefers-color-scheme: light){
  .svc-diagram{ border-color: rgba(2,6,23,.12); background: rgba(2,6,23,.02); }
  .svc-diagram-bar{ background: rgba(2,6,23,.10); }
  .svc-diagram-bar i{ background: linear-gradient(90deg, rgba(11,58,109,.95), rgba(120,180,255,.95)); }
}

/* v64 – Über Uns Ergänzung */
.about-bio{
  margin-top:12px;
  max-width:760px;
  line-height:1.6;
  opacity:.95;
}

/* v65 – Über Uns Text als Pille */
.pill--block{
  white-space: normal;
  line-height: 1.55;
  padding: 12px 16px;
  max-width: 900px;
  display: inline-block;
}
.about-pills{
  margin-top: 10px;
}

/* v68 – Sichtbarer Über-uns-Block */
.about-highlight{
  margin-top:16px;
  margin-bottom:8px;
}
.about-highlight-inner{
  padding:18px 20px;
  border-radius:14px;
  background:#111827;            /* dunkler, klarer Kontrast */
  color:#F9FAFB;                 /* explizit hell, unabhängig vom Theme */
  border:1px solid rgba(255,255,255,.08);
  max-width:900px;
  line-height:1.65;
  font-size:0.98rem;
}

/* Light Mode */
@media (prefers-color-scheme: light){
  .about-highlight-inner{
    background:#F3F4F6;
    color:#111827;
    border:1px solid rgba(0,0,0,.08);
  }
}

/* v69 – Vertikale Zentrierung Hinweis / Auf einen Blick */
.ds-center-fix .container{
  display:flex;
  flex-direction:column;
  justify-content:center;   /* vertikal */
}

.ds-center-fix .section-head{
  margin-top:0;
  margin-bottom:0;
}

@media (min-width:900px){
  .ds-center-fix{
    display:flex;
    align-items:center;     /* sorgt für saubere Mittelachse */
  }
}

/* v70 – Präzise Zentrierung "Hinweis / Auf einen Blick" */
.ds-hinweis-fix{
  display:flex;
  align-items:center;          /* vertikal exakt mittig */
}

.ds-hinweis-fix .container{
  display:flex;
  flex-direction:column;
  justify-content:center;      /* Inhalt mittig im verfügbaren Raum */
  min-height:220px;            /* sorgt für echte Mittelachse, nicht optische */
}

.ds-hinweis-fix .kicker{
  display:inline-flex;
  align-items:center;          /* Badge + Text exakt auf Linie */
  gap:10px;
  margin:0;                    /* entfernt Offset nach oben */
}

.ds-hinweis-fix .kicker .hint-pill{
  display:inline-flex;
  align-items:center;
  line-height:1;               /* verhindert visuelles "Hängen" */
}

.ds-hinweis-fix h2{
  margin-top:10px;             /* definiert klaren Abstand statt Zufallsmargin */
}


/* v71 – "Hinweis / Auf einen Blick" sauber mittig neben Überschrift */
.ds-overview .section-head{
  display:grid;
  grid-template-columns: 190px 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 8px;
  align-items:center;
}
.ds-overview .kicker{
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self:center;
  justify-self:start;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  margin:0;
}
.ds-overview .kicker .hint-pill{
  align-self:flex-start;
}
.ds-overview .section-head h2{
  grid-column: 2;
  grid-row: 1;
  margin:0;
}
.ds-overview .section-head p{
  grid-column: 2;
  grid-row: 2;
  margin:0;
}

/* v71 – Mobile Dropdown scrollen + Touch-Scroll */
.dropmenu, .dropmenu.mega{
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

/* v71 – horizontales Ziehen verhindern */
html, body{
  overflow-x: hidden;
}
.mega-grid, .overview-grid, .hero-grid{
  min-width:0;
}

/* v72 – Kicker horizontal mittig in der linken Spalte */
.ds-overview .kicker{
  justify-self:center;      /* statt ganz links */
  align-items:center;
  text-align:center;
}
.ds-overview .kicker .hint-pill{
  align-self:center;
}

/* v72 – Mobile Suche Leistungen: sauber, ohne Überlauf */
@media (max-width: 640px){
  #serviceFilter{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .service-filter-row, .service-filter{
    width: 100%;
    max-width: 100%;
    display:flex;
    justify-content:flex-end;
  }
  .service-filter-row{
    flex-wrap: wrap;
    gap:10px;
  }
  #serviceFilterMeta{
    width:100%;
    max-width:100%;
  }
}


/* === Über Uns Layout Fix (single column) === */
.about-full{
    width:100% !important;
    max-width:900px;
    margin:0 auto;
}

#ueber-uns .container,
#about .container{
    display:block !important;
}

#ueber-uns .grid,
#about .grid{
    grid-template-columns:1fr !important;
}

#ueber-uns .about-left,
#about .about-left{
    display:none !important;
}

/* Über Uns – Intro Text */
.about-intro{
    font-size:1.05rem;
    line-height:1.7;
    margin:20px 0 30px 0;
    color:#d9e1e8;
    max-width:900px;
}



/* === Über Uns – Design Konsolidierung (v74) === */
#ueber-uns .about-head{
  display:block !important;
  margin-bottom:22px;
  max-width: 980px;
}

#ueber-uns .about-head .kicker{
  margin-bottom:8px;
}

#ueber-uns .about-head h2{
  margin: 0 0 14px 0;
}

#ueber-uns .about-intro{
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 14px 0;
  max-width: 980px;
}

#ueber-uns .about-sub{
  margin: 0;
  line-height: 1.7;
  opacity: .9;
  max-width: 980px;
}

/* Feature-Karten im Über-Uns-Grid optisch angleichen */
#ueber-uns .grid-3{
  margin-top: 18px;
}

/* Auf Mobile sauberer Abstand */
@media (max-width: 768px){
  #ueber-uns{ scroll-margin-top: 80px; }
  #ueber-uns .about-head{ margin-bottom: 18px; }
}



/* === Hero-Video: Mobile sauber mittig (v75) === */
@media (max-width: 768px) {
  /* Video selbst */
  video {
    object-fit: cover !important;
    object-position: 50% 50% !important; /* Mittelpunkt */
    transform: none !important;
  }

  /* Häufige Wrapper-Patterns: sicherstellen, dass nicht nach oben verschoben wird */
  .hero video, .hero-video, .hero__video, .video-bg, .bg-video {
    object-fit: cover !important;
    object-position: 50% 50% !important;
    transform: none !important;
  }

  /* Falls ein Wrapper das Video verschiebt (top/translate) – neutralisieren */
  .hero, .hero .video, .hero .video-wrap, .video-wrapper, .hero-media, .hero-bg {
    background-position: center center !important;
  }
}


/* === Mobile: Logo & Text nach 1s einblenden (Desktop bleibt unverändert) === */
@media (max-width: 768px){

  .hero-logo,
  .hero h1,
  .hero .claim,
  .hero .hero-content{
      animation-delay: 1s !important;
      transition-delay: 1s !important;
  }

  /* Falls opacity-basierte Einblendung genutzt wird */
  body.mobile-faststart .hero-logo,
  body.mobile-faststart .hero h1,
  body.mobile-faststart .claim,
  body.mobile-faststart .hero-content{
      opacity:1 !important;
      transform:none !important;
  }
}
