
: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-head span:first-child{ color: rgba(255,255,255,.72); }
.svc-compare-head span:last-child{ color: #f4f8ff; }
.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-head span:first-child{ color:#425166; }
  .svc-compare-head span:last-child{ color:#0f172a; }
  .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;
  }
}


/* ===== Fix: Mobile Branchen-Section sichtbar (Fallback, falls Reveal nicht triggert) ===== */
@media (max-width: 980px){
  #gruppe-branchen.reveal,
  #gruppe-branchen .reveal{
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ===== v77: freundlicheres Auftreten, Telefon-Hinweis, Mobile-Fixes ===== */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
  background:
    radial-gradient(900px 520px at 12% 12%, rgba(56,189,248,.10), transparent 60%),
    radial-gradient(860px 520px at 88% 16%, rgba(168,85,247,.09), transparent 60%),
    radial-gradient(980px 580px at 50% 100%, rgba(34,197,94,.08), transparent 62%);
}
.hero .hero-card,
.card,
.overview-card,
.service-card,
.hours-box,
.filterbar,
.kontakt-card,
.map-wide-card{
  box-shadow: 0 20px 70px rgba(2,6,23,.22);
}
.card,
.overview-card,
.service-card,
.hours-box,
.filterbar,
.map-wide-card{
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.045));
  border-color: rgba(255,255,255,.13);
}
html.light .card,
html.light .overview-card,
html.light .service-card,
html.light .hours-box,
html.light .filterbar,
html.light .map-wide-card{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
}
.hero-card{
  position:relative;
  overflow:hidden;
}
.hero-card::after,
.service-card::after,
.overview-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 34%, transparent 70%, rgba(34,211,238,.06));
  opacity:.95;
}
.hero-copy p,
.overview-card p,
.service-card p,
.footer p{ color: rgba(255,255,255,.80); }
html.light .hero-copy p,
html.light .overview-card p,
html.light .service-card p,
html.light .footer p{ color: rgba(15,23,42,.74); }
.btn,
.overview-card,
.service-card,
.floating-contact .fc-item{
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn:hover,
.overview-card:hover,
.service-card:hover,
.floating-contact .fc-item:hover{
  box-shadow: 0 22px 70px rgba(2,6,23,.30);
}
.section-head p,
.service-head p,
.about-sub,
.small{ color: rgba(255,255,255,.72); }
html.light .section-head p,
html.light .service-head p,
html.light .about-sub,
html.light .small{ color: rgba(15,23,42,.65); }
.open-ind--notice{
  margin-left:10px;
}
.open-ind--notice .led{
  background: rgba(245,158,11,1);
  box-shadow: 0 0 0 3px rgba(245,158,11,.16);
}
.floating-contact{
  width: min(360px, calc(100vw - 24px));
}
.floating-contact .fc-item{
  min-height: 54px;
  padding: 11px 14px;
  gap: 12px;
}
.floating-contact .fc-txt{
  display:inline-block;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap:anywhere;
}
.floating-contact .open-ind--mini{
  flex: 0 0 auto;
  align-items:center;
}
.floating-contact .open-ind--mini .txt{
  white-space: nowrap;
}
.floating-contact .fc-item.is-disabled{
  cursor: default;
  opacity: .96;
}
.floating-contact .fc-item.is-disabled:hover{
  transform:none;
}
#gruppe-branchen,
#gruppe-branchen .service-grid,
#gruppe-branchen .service-card{
  position:relative;
  z-index:1;
}
@media (max-width: 980px){
  #gruppe-branchen{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
  }
  #gruppe-branchen .service-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:16px !important;
  }
  #gruppe-branchen .service-card{
    display:block !important;
    opacity:1 !important;
    transform:none !important;
    min-height: unset;
  }
  #gruppe-branchen .svc-detail{
    display:grid;
    grid-template-columns:1fr;
  }
  .floating-contact{
    left:12px;
    right:12px;
    width:auto;
    bottom: max(12px, env(safe-area-inset-bottom));
  }
  .floating-contact .fc-item{
    padding: 10px 12px;
    border-radius: 16px;
  }
}
@media (max-width: 640px){
  .hero-actions{ gap:10px; }
  .hero-actions .btn{ width:100%; justify-content:center; }
  .overview-grid,
  .grid-3,
  .grid-2{ gap:16px; }
  .service-card,
  .overview-card,
  .card{ border-radius: 20px; }
}

/* Modal / Hinweis beim Betreten */
.ds-modal-backdrop{
  position:fixed;
  inset:0;
  z-index:10020;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background: rgba(2,6,23,.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ds-modal{
  width:min(680px, 100%);
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(10,14,22,.96), rgba(15,23,42,.92));
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
  position:relative;
  overflow:hidden;
}
.ds-modal::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(560px 220px at 0% 0%, rgba(56,189,248,.16), transparent 60%),
    radial-gradient(480px 200px at 100% 0%, rgba(168,85,247,.16), transparent 62%);
  pointer-events:none;
}
.ds-modal-inner{ position:relative; padding:28px 28px 24px; }
.ds-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.ds-modal-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(245,158,11,.28);
  background: rgba(245,158,11,.12);
  color: rgba(255,240,210,.96);
  font-size:.84rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.ds-modal h3{ font-size: clamp(1.45rem, 2vw, 2rem); margin-top:16px; }
.ds-modal p{ color: rgba(255,255,255,.82); }
.ds-modal-list{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.ds-modal-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
}
.ds-modal-list li .ic{ flex:0 0 auto; color: rgba(34,211,238,.95); }
.ds-modal-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.ds-modal .btn{ justify-content:center; }
.ds-modal-backdrop.is-preloaded{ display:flex; }
@media (max-width: 640px){
  .ds-modal-inner{ padding:22px 18px 18px; }
  .ds-modal-actions .btn{ width:100%; }
}


/* v79 nav split links */
.nav-item-group{ display:inline-flex; align-items:center; gap:6px; position:relative; }
.nav-main-link{ display:inline-flex; align-items:center; min-height:42px; }
.nav-arrow-btn{ padding:8px; min-width:40px; justify-content:center; }
.nav-arrow-btn svg{ width:18px; height:18px; }
.m-top-link{ display:block; padding:10px 14px 6px; font-weight:700; color:rgba(255,255,255,.92); }
.page-hero{ padding:42px 0 28px; }
.page-hero-card{ border:1px solid rgba(255,255,255,.12); background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); border-radius:28px; padding:28px; box-shadow:var(--shadow); }
.page-hero-card p{ max-width:760px; }
/* Floating indicator text must never truncate */
.open-ind--mini .txt{ max-width:none !important; overflow:visible !important; text-overflow:clip !important; }
.floating-contact .fc-item{ align-items:center; }
.floating-contact .fc-txt{ max-width: calc(100% - 130px); }
/* Keep live background, but only one layer should render */
#live-bg{ display:none !important; }
#liveBg{ position:fixed; inset:0; z-index:-3; pointer-events:none; width:100%; height:100%; opacity:.9; }
@media (max-width: 980px){ .nav-item-group{ display:none; } }


/* v80: friendlier hero buttons and page hero */
.hero-actions{grid-template-columns: repeat(5, minmax(0, 1fr));}
.hero-actions .btn{backdrop-filter: blur(8px);}
.hero-actions .btn svg{width:19px;height:19px;}
@media (max-width: 1200px){ .hero-actions{grid-template-columns: repeat(3, minmax(0, 1fr));} }
@media (max-width: 760px){ .hero-actions{grid-template-columns: 1fr 1fr;} }
@media (max-width: 540px){ .hero-actions{grid-template-columns: 1fr;} }

.page-hero{
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(680px 260px at 8% 0%, rgba(34,211,238,.12), transparent 58%),
    radial-gradient(620px 240px at 92% 0%, rgba(168,85,247,.10), transparent 56%);
  pointer-events:none;
}
.page-hero-card{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    radial-gradient(400px 180px at 0% 0%, rgba(34,211,238,.10), transparent 60%);
}
.page-hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 18px;
}
.page-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-weight:600;
}
.page-hero-points{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin:10px 0 20px;
}
.page-hero-point{
  display:flex;
  gap:12px;
  padding:16px 16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
}
.page-hero-point .ic{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  font-size:1.1rem;
  flex:0 0 auto;
}
.page-hero-point strong{display:block; margin-bottom:4px;}
.page-hero-point span:last-child{color:rgba(255,255,255,.76);}
@media (max-width:980px){
  .page-hero-points{grid-template-columns:1fr;}
}
html.light .page-badge{
  color:rgba(15,23,42,.92);
  border-color:rgba(15,23,42,.10);
  background:rgba(255,255,255,.86);
}
html.light .page-hero-point{
  background:rgba(255,255,255,.82);
  border-color:rgba(15,23,42,.08);
}
html.light .page-hero-point span:last-child{color:rgba(15,23,42,.7);}


/* v81 – Home teaser + section redesign in page-hero style */
.home-page #leistungen-uebersicht .section-head,
.home-page #ueber-uns .about-head,
#leistungen > .container > .section-head,
#branchen > .container > .section-head,
#leistungen .service-head,
#branchen .service-head{
  position:relative;
  overflow:hidden;
  padding:24px 24px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    radial-gradient(420px 180px at 0% 0%, rgba(34,211,238,.10), transparent 60%);
  box-shadow: var(--shadow);
}
.home-page #leistungen-uebersicht .section-head::before,
.home-page #ueber-uns .about-head::before,
#leistungen > .container > .section-head::before,
#branchen > .container > .section-head::before,
#leistungen .service-head::before,
#branchen .service-head::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(680px 260px at 8% 0%, rgba(34,211,238,.12), transparent 58%),
    radial-gradient(620px 240px at 92% 0%, rgba(168,85,247,.10), transparent 56%);
  pointer-events:none;
}
.home-page #leistungen-uebersicht .section-head > *,
.home-page #ueber-uns .about-head > *,
#leistungen > .container > .section-head > *,
#branchen > .container > .section-head > *,
#leistungen .service-head > *,
#branchen .service-head > *{ position:relative; z-index:1; }

.home-page #leistungen-uebersicht .section-head,
.home-page #ueber-uns .about-head,
#leistungen > .container > .section-head,
#branchen > .container > .section-head{ margin-bottom:22px; }

.page-teaser-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.page-teaser-card{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    radial-gradient(220px 120px at 0% 0%, rgba(34,211,238,.10), transparent 65%);
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.page-teaser-card:hover{
  transform: translateY(-2px);
  border-color: rgba(34,211,238,.32);
  box-shadow: 0 20px 60px rgba(2,6,23,.26);
}
.page-teaser-icon{
  display:grid;
  place-items:center;
  width:56px;
  height:56px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-size:1.5rem;
  flex:0 0 auto;
}
.page-teaser-copy{ flex:1 1 auto; }
.page-teaser-kicker{ opacity:.82; letter-spacing:.04em; text-transform:uppercase; font-size:.78rem; }
.page-teaser-link{ display:inline-flex; margin-top:10px; font-weight:700; }

#leistungen .service-group,
#branchen .service-group{ margin-top:22px; }
#leistungen .service-head,
#branchen .service-head{ margin-bottom:16px; }
#leistungen .service-head h3,
#branchen .service-head h3{ margin:0 0 8px; }
#leistungen .service-head p,
#branchen .service-head p{ margin:0; max-width:70ch; }

#ueber-uns .grid-3{
  margin-top:22px;
  gap:18px;
}
#ueber-uns .feature,
#ueber-uns .card{
  border-radius:22px;
}
#ueber-uns .card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
    radial-gradient(240px 120px at 0% 0%, rgba(34,211,238,.08), transparent 65%);
}

html.light .home-page #leistungen-uebersicht .section-head,
html.light .home-page #ueber-uns .about-head,
html.light #leistungen > .container > .section-head,
html.light #branchen > .container > .section-head,
html.light #leistungen .service-head,
html.light #branchen .service-head,
html.light .page-teaser-card,
html.light #ueber-uns .card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86)),
    radial-gradient(420px 180px at 0% 0%, rgba(34,211,238,.08), transparent 60%);
  border-color: rgba(15,23,42,.08);
}
html.light .page-teaser-icon{
  background: rgba(255,255,255,.86);
  border-color: rgba(15,23,42,.08);
}

@media (max-width: 980px){
  .page-teaser-grid{ grid-template-columns:1fr; }
  .home-page #leistungen-uebersicht .section-head,
  .home-page #ueber-uns .about-head,
  #leistungen > .container > .section-head,
  #branchen > .container > .section-head,
  #leistungen .service-head,
  #branchen .service-head{ padding:20px 18px; }
}

/* v84 – Leistungen freundlicher, übersichtlicher, eine Leistung pro Zeile */
#leistungen .service-group{
  margin-top: 34px;
}
#leistungen .service-head{
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 14px 40px rgba(2,6,23,.16);
}
html.light #leistungen .service-head{
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  border-color: rgba(2,6,23,.08);
}
#leistungen .service-head h3{
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}
#leistungen .service-head p{
  margin: 0;
  max-width: 900px;
}
#leistungen .service-grid{
  display:grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}
#leistungen .service-card{
  display:grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 10px;
  align-items:start;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(900px 220px at 0% 0%, rgba(34,211,238,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: 0 18px 52px rgba(2,6,23,.20);
}
html.light #leistungen .service-card{
  background:
    radial-gradient(900px 220px at 0% 0%, rgba(56,189,248,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  border-color: rgba(2,6,23,.08);
  box-shadow: 0 18px 44px rgba(15,23,42,.10);
}
#leistungen .service-card::after{
  background: linear-gradient(90deg, rgba(34,211,238,.10), transparent 28%, transparent 70%, rgba(168,85,247,.06));
}
#leistungen .service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(2,6,23,.24);
}
#leistungen .service-card > *:not(.svc-media):not(.svc-icon){
  grid-column: 2;
}
#leistungen .service-card .svc-media{
  grid-column: 1;
  grid-row: 1 / span 8;
  position: relative;
  min-height: 180px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.18), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  opacity: 1;
}
html.light #leistungen .service-card .svc-media{
  border-color: rgba(2,6,23,.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(120,180,255,.18), transparent 48%),
    linear-gradient(180deg, rgba(248,250,252,.95), rgba(241,245,249,.88));
}
#leistungen .service-card .svc-media img{
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.18));
}
#leistungen .service-card .svc-icon{
  grid-column: 2;
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 2px;
  border-radius: 16px;
}
#leistungen .service-card h4{
  grid-column: 2;
  margin: 0;
  font-size: clamp(1.24rem, 1.8vw, 1.5rem);
}
#leistungen .service-card .svc-sub{
  grid-column: 2;
  margin: -2px 0 2px;
  font-size: 1rem;
  color: rgba(255,255,255,.88);
}
html.light #leistungen .service-card .svc-sub{
  color: rgba(15,23,42,.78);
}
#leistungen .svc-chips{
  gap: 10px;
  margin: 2px 0 4px;
}
#leistungen .svc-chips .chip{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
html.light #leistungen .svc-chips .chip{
  background: rgba(248,250,252,.92);
  border-color: rgba(2,6,23,.08);
}
#leistungen .svc-body{
  margin: 2px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}
#leistungen .svc-bullets{
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
#leistungen .svc-bullets li{
  position: relative;
  padding: 11px 14px 11px 40px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
}
#leistungen .svc-bullets li::before{
  content: "✓";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34,211,238,.16);
  color: rgba(220,248,255,.96);
  font-size: .8rem;
  font-weight: 800;
}
html.light #leistungen .svc-bullets li{
  background: rgba(248,250,252,.78);
  border-color: rgba(2,6,23,.08);
}
html.light #leistungen .svc-bullets li::before{
  background: rgba(11,58,109,.10);
  color: rgba(11,58,109,.96);
}
#leistungen .svc-diagram,
#leistungen .svc-more-block{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
html.light #leistungen .svc-diagram,
html.light #leistungen .svc-more-block{
  border-color: rgba(2,6,23,.08);
  background: rgba(248,250,252,.78);
}
#leistungen .svc-more-block{
  margin-top: 4px;
  padding: 14px 16px;
}
#leistungen .svc-more-title{
  margin-bottom: 10px;
  font-weight: 700;
}
#leistungen .svc-more-body p,
#leistungen .svc-more-body li,
#leistungen .svc-list li{
  line-height: 1.65;
}
#leistungen .svc-compare{
  border-radius: 18px;
}
@media (max-width: 900px){
  #leistungen .service-card{
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 20px;
  }
  #leistungen .service-card > *,
  #leistungen .service-card > *:not(.svc-media):not(.svc-icon),
  #leistungen .service-card .svc-media,
  #leistungen .service-card .svc-icon,
  #leistungen .service-card h4,
  #leistungen .service-card .svc-sub{
    grid-column: 1;
  }
  #leistungen .service-card .svc-media{
    grid-row: auto;
    min-height: 150px;
  }
}

/* v84 – Popup-Button bewusst dunkel */
.ds-modal-actions .btn:not(.primary){
  background: linear-gradient(180deg, rgba(0,0,0,.88), rgba(17,24,39,.96));
  border-color: rgba(255,255,255,.14);
  color: #f8fafc;
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}
.ds-modal-actions .btn:not(.primary):hover{
  background: linear-gradient(180deg, rgba(10,10,10,.96), rgba(30,41,59,.98));
  border-color: rgba(255,255,255,.24);
}
.ds-modal-actions .btn:not(.primary):focus{
  outline: 2px solid rgba(255,255,255,.40);
}

/* v85 – freundlichere, ruhigere Service- und Branchenkarten + besser lesbare Kurzvergleiche */
#leistungen .svc-compare,
#leistungen .svc-compare-head,
#leistungen .svc-compare-row{
  color: rgba(244,248,255,.96);
}
#leistungen .svc-compare{
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(10,18,34,.46), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
#leistungen .svc-compare-head{
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
}
#leistungen .svc-compare-head span:first-child{
  color: rgba(224,232,244,.92);
  font-weight: 700;
}
#leistungen .svc-compare-head span:last-child{
  color: #ffffff;
  font-weight: 800;
}
#leistungen .svc-compare-row{
  border-top-color: rgba(255,255,255,.11);
}
#leistungen .svc-compare-row span:first-child{
  color: rgba(244,248,255,.96);
}
#leistungen .svc-compare-row span:last-child{
  color: #7ec8ff;
  font-weight: 700;
}
html.light #leistungen .svc-compare{
  border-color: rgba(2,6,23,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,245,249,.92));
}
html.light #leistungen .svc-compare-head{
  background: linear-gradient(180deg, rgba(226,232,240,.85), rgba(248,250,252,.94));
}
html.light #leistungen .svc-compare-head span:first-child,
html.light #leistungen .svc-compare-row span:first-child{
  color: #1e293b;
}
html.light #leistungen .svc-compare-head span:last-child,
html.light #leistungen .svc-compare-row span:last-child{
  color: #0b3a6d;
}

#gruppe-branchen .service-grid{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}
#gruppe-branchen .service-head{
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: 0 14px 40px rgba(2,6,23,.16);
}
#gruppe-branchen .service-card{
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 10px;
  align-items: start;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(900px 220px at 0% 0%, rgba(34,211,238,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: 0 18px 52px rgba(2,6,23,.20);
  overflow: hidden;
}
#gruppe-branchen .service-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(90deg, rgba(34,211,238,.08), transparent 28%, transparent 72%, rgba(168,85,247,.05));
}
#gruppe-branchen .service-card > *:not(.svc-media):not(.svc-icon){
  grid-column: 2;
  position: relative;
  z-index: 1;
}
#gruppe-branchen .service-card .svc-media{
  grid-column: 1;
  grid-row: 1 / span 6;
  position: relative;
  z-index: 1;
  min-height: 180px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.18), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  opacity: 1;
}
#gruppe-branchen .service-card .svc-media img{
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.18));
}
#gruppe-branchen .service-card .svc-icon{
  grid-column: 2;
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin-bottom: 2px;
  border-radius: 16px;
}
#gruppe-branchen .service-card h4{
  grid-column: 2;
  margin: 0;
  font-size: clamp(1.24rem, 1.8vw, 1.5rem);
}
#gruppe-branchen .service-card p,
#gruppe-branchen .service-card .pills,
#gruppe-branchen .service-card .svc-detail{
  grid-column: 2;
}
#gruppe-branchen .service-card p{
  margin: 0;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}
#gruppe-branchen .pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 4px 0 6px;
}
#gruppe-branchen .pill{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
#gruppe-branchen .svc-detail{
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  gap: 14px;
}
#gruppe-branchen .svc-detail > div{
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
#gruppe-branchen .svc-detail h5{
  margin: 0 0 8px;
  font-size: .78rem;
  letter-spacing: .08em;
  color: rgba(226,232,240,.82);
}
#gruppe-branchen .svc-detail ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(244,248,255,.92);
}
#gruppe-branchen .svc-detail li{
  margin: 6px 0;
  line-height: 1.5;
}
#gruppe-branchen .ds-missing-branch .svc-detail{
  grid-template-columns: 1fr;
}
html.light #gruppe-branchen .service-head{
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  border-color: rgba(2,6,23,.08);
}
html.light #gruppe-branchen .service-card{
  background:
    radial-gradient(900px 220px at 0% 0%, rgba(56,189,248,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  border-color: rgba(2,6,23,.08);
  box-shadow: 0 18px 44px rgba(15,23,42,.10);
}
html.light #gruppe-branchen .service-card .svc-media{
  border-color: rgba(2,6,23,.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(120,180,255,.18), transparent 48%),
    linear-gradient(180deg, rgba(248,250,252,.95), rgba(241,245,249,.88));
}
html.light #gruppe-branchen .service-card p{
  color: rgba(15,23,42,.78);
}
html.light #gruppe-branchen .pill{
  background: rgba(248,250,252,.92);
  border-color: rgba(2,6,23,.08);
}
html.light #gruppe-branchen .svc-detail{
  border-top-color: rgba(2,6,23,.08);
}
html.light #gruppe-branchen .svc-detail > div{
  border-color: rgba(2,6,23,.08);
  background: rgba(248,250,252,.78);
}
html.light #gruppe-branchen .svc-detail h5{
  color: #425166;
}
html.light #gruppe-branchen .svc-detail ul,
html.light #gruppe-branchen .svc-detail li{
  color: #0f172a;
}
@media (max-width: 900px){
  #gruppe-branchen .service-card{
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 20px;
  }
  #gruppe-branchen .service-card > *,
  #gruppe-branchen .service-card > *:not(.svc-media):not(.svc-icon),
  #gruppe-branchen .service-card .svc-media,
  #gruppe-branchen .service-card .svc-icon,
  #gruppe-branchen .service-card h4,
  #gruppe-branchen .service-card p,
  #gruppe-branchen .service-card .pills,
  #gruppe-branchen .service-card .svc-detail{
    grid-column: 1;
  }
  #gruppe-branchen .service-card .svc-media{
    grid-row: auto;
    min-height: 150px;
  }
  #gruppe-branchen .svc-detail{
    grid-template-columns: 1fr;
  }
}

/* v86: navigation always visible while scrolling on all pages */
header{
  position:fixed !important;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:120;
}
body{
  padding-top:72px;
  scroll-padding-top:96px;
}
header .mobile{
  position:relative;
  z-index:121;
}
@media (max-width: 980px){
  body{ padding-top:72px; }
}


/* v87: cartoon-inspired visual refresh across the whole website */
:root{
  --toon-cyan: #66d9ff;
  --toon-blue: #6ea8ff;
  --toon-violet: #9f7cff;
  --toon-ink: rgba(10,18,34,.72);
}

/* more welcoming card language */
.card,
.feature,
.mini-card,
.results-card,
.tv-card,
.contact-card,
.review-card,
.accordion,
.note-card,
.why-quote,
#leistungen .service-head,
#branchen .service-head,
#gruppe-branchen .service-head,
#ueber-uns .section-head,
#leistungen > .container > .section-head,
#branchen > .container > .section-head{
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(102,217,255,.10), transparent 42%),
    radial-gradient(120% 140% at 100% 0%, rgba(159,124,255,.11), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(2,6,23,.22);
}

/* friendly sticker-style icon surfaces */
.icon,
.svc-icon,
.mini-ico,
.hours-ic,
.fc-ic,
.result-ico,
.acc-chevron,
.nav-contact .ic,
.compact-item .result-ico{
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.35), transparent 34%),
    linear-gradient(180deg, rgba(142,97,255,.92), rgba(90,182,255,.88));
  border: 1px solid rgba(255,255,255,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    0 12px 28px rgba(72,109,255,.22);
  color: #fff;
}
.icon svg,
.svc-icon svg,
.mini-ico svg,
.hours-ic svg,
.acc-chevron svg,
.nav-contact .ic svg{
  color:#fff;
  filter: drop-shadow(0 3px 8px rgba(9,15,28,.30));
}
.result-ico{ color:#fff; }

/* CTA/icon buttons get the same friendlier icon treatment */
.btn svg,
.hero-actions .btn svg,
.hero-proof svg,
.pills .pill svg,
.chip svg{
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.26), transparent 34%), linear-gradient(180deg, rgba(142,97,255,.82), rgba(90,182,255,.80));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 8px 18px rgba(72,109,255,.22);
}

/* service & industry cards feel more illustrated and less flat */
#leistungen .service-card,
#gruppe-branchen .service-card{
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(102,217,255,.10), transparent 42%),
    radial-gradient(120% 140% at 100% 0%, rgba(159,124,255,.11), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: 0 24px 68px rgba(2,6,23,.24);
}
#leistungen .service-card{
  padding: 24px 26px;
  border-radius: 30px;
}
#leistungen .service-card::before,
#gruppe-branchen .service-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 14%, transparent 86%, rgba(255,255,255,.04));
}
#leistungen .service-card:hover,
#gruppe-branchen .service-card:hover,
.feature:hover,
.mini-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 30px 86px rgba(2,6,23,.28);
}
.feature,
.mini-card,
#leistungen .service-card,
#gruppe-branchen .service-card{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* illustrated media blocks like the reference style */
.svc-media,
#gruppe-branchen .service-card .svc-media{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.26), transparent 34%),
    radial-gradient(circle at 70% 76%, rgba(115,96,255,.18), transparent 36%),
    linear-gradient(180deg, rgba(113,190,255,.17), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 18px 40px rgba(2,6,23,.20);
}
.svc-media img,
#gruppe-branchen .service-card .svc-media img{
  filter: saturate(1.08) contrast(1.03) drop-shadow(0 18px 28px rgba(11,17,32,.22));
  transform: translateY(-2px) scale(1.03);
}

/* better hierarchy inside the long cards */
#leistungen .service-card h4,
#gruppe-branchen .service-card h4{
  font-size: clamp(1.26rem, 1.75vw, 1.55rem);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
#leistungen .service-card p,
#gruppe-branchen .service-card p,
.svc-body,
.about-intro,
.about-sub{
  color: rgba(247,250,255,.90);
}
.svc-sub{
  color: rgba(224,233,246,.84);
  font-weight: 600;
}
.pills .pill,
.chip,
.tag,
.hero-proof li,
.compact-item,
.results-list li,
#gruppe-branchen .pill,
#gruppe-branchen .svc-detail > div,
.svc-compare,
.svc-diagram,
.opening-hours,
.hours-box{
  background: rgba(8,15,28,.28);
  border-color: rgba(255,255,255,.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* comparison/table readability and cartoon-like polish */
#leistungen .svc-compare,
#leistungen .svc-diagram{
  border-radius: 24px;
  overflow: hidden;
}
#leistungen .svc-compare-head{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
}
#leistungen .svc-compare-head span:last-child,
#leistungen .svc-compare-row span:last-child{
  color: #9ad9ff;
  text-shadow: 0 1px 10px rgba(73,172,255,.14);
}
#leistungen .svc-compare-head span:first-child,
#leistungen .svc-compare-row span:first-child{
  color: rgba(245,248,255,.96);
}

/* section titles feel less technical and more inviting */
.section-head h2,
.service-head h3,
.hero-card h1,
.hero-card h2{
  letter-spacing: -.03em;
}
.kicker{
  color: rgba(196,226,255,.72);
}

/* dark mode keeps the lively look; light mode remains clean */
html.light .card,
html.light .feature,
html.light .mini-card,
html.light .results-card,
html.light .tv-card,
html.light .contact-card,
html.light .review-card,
html.light .accordion,
html.light .note-card,
html.light .why-quote,
html.light #leistungen .service-head,
html.light #branchen .service-head,
html.light #gruppe-branchen .service-head,
html.light #ueber-uns .section-head,
html.light #leistungen > .container > .section-head,
html.light #branchen > .container > .section-head,
html.light #leistungen .service-card,
html.light #gruppe-branchen .service-card{
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(102,217,255,.08), transparent 42%),
    radial-gradient(120% 140% at 100% 0%, rgba(159,124,255,.08), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.92));
  border-color: rgba(2,6,23,.08);
  box-shadow: 0 18px 44px rgba(15,23,42,.10);
}
html.light .icon,
html.light .svc-icon,
html.light .mini-ico,
html.light .hours-ic,
html.light .fc-ic,
html.light .result-ico,
html.light .acc-chevron,
html.light .nav-contact .ic{
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(180deg, rgba(130,116,255,.92), rgba(97,188,255,.90));
  border-color: rgba(255,255,255,.78);
}
html.light #leistungen .service-card p,
html.light #gruppe-branchen .service-card p,
html.light .svc-body,
html.light .about-intro,
html.light .about-sub{
  color: rgba(15,23,42,.78);
}

/* mobile: keep cards airy, icons visible */
@media (max-width: 900px){
  #leistungen .service-card{
    padding: 20px;
  }
  .svc-media,
  #gruppe-branchen .service-card .svc-media{
    min-height: 150px;
  }
}


/* v88: mobile menu should scroll independently and feel stable */
html.mobile-nav-open,
body.mobile-nav-open{
  overflow: hidden;
}
body.mobile-nav-open{
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 980px){
  header .mobile{
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 140;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      linear-gradient(180deg, rgba(9,14,26,.96), rgba(9,14,26,.94)),
      radial-gradient(120% 120% at 0% 0%, rgba(102,217,255,.10), transparent 40%),
      radial-gradient(120% 120% at 100% 0%, rgba(159,124,255,.12), transparent 44%);
    backdrop-filter: blur(18px) saturate(135%);
    border-top: 1px solid rgba(255,255,255,.08);
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  .mobile .inner{
    padding: 14px 16px 24px;
    gap: 10px;
  }
  .mobile a,
  .mobile .m-top-link,
  .mobile .m-drop summary{
    min-height: 50px;
    display:flex;
    align-items:center;
    border-radius: 16px;
  }
  .mobile > .inner > a{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.92);
  }
  .mobile > .inner > a:hover,
  .mobile > .inner > a:active{
    background: rgba(255,255,255,.10);
  }
  .m-drop{
    padding: 8px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(2,6,23,.18);
    overflow: hidden;
  }
  .m-drop summary{
    position: relative;
    padding: 14px 44px 14px 14px;
    font-weight: 700;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.96);
  }
  .m-drop summary::after{
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    opacity: .8;
    transition: transform .2s ease;
  }
  .m-drop[open] summary::after{
    transform: translateY(-35%) rotate(-135deg);
  }
  .m-drop-items{
    margin-top: 8px;
    padding: 6px 0 2px;
    gap: 8px;
  }
  .m-drop-items .drop-item,
  .m-top-link{
    padding: 12px 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.88);
  }
  .m-drop-items .drop-item:hover,
  .m-top-link:hover{
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.98);
  }
  .m-drop-label{
    margin: 8px 0 2px;
    padding: 4px 2px 0;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
}


/* v89: robust mobile nav behavior */
@media (max-width: 980px){
  header .mobile{
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  header .mobile.is-open,
  header .mobile[data-open="true"]{
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .mobile .inner{
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 36px;
  }
  .burger{ display:flex; }
  .navlinks{ display:none; }
}


/* v90: final mobile nav fix */
header{overflow:visible;}
@media (max-width: 980px){
  header .mobile{
    top:72px;
    height:calc(100dvh - 72px);
    max-height:none;
  }
  header .mobile .inner,
  header .mobile .inner.container{
    display:flex;
    flex-direction:column;
    gap:10px;
    width:100%;
    max-width:none;
    min-height:100%;
    max-height:none;
    overflow-y:visible;
    padding:14px 16px 32px;
  }
  header .mobile .m-drop{
    display:block;
  }
  header .mobile .m-drop > summary{
    order:0;
  }
  header .mobile .m-top-link{
    margin-top:8px;
  }
}

/* v91: hard fix mobile navigation overlay and dropdown flow */
@media (max-width: 980px){
  header .nav{
    min-height:72px;
  }
  header .mobile,
  .mobile[data-mobile]{
    position: fixed !important;
    inset: 72px 0 0 0 !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 72px) !important;
    max-height: calc(100vh - 72px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      linear-gradient(180deg, rgba(8,12,22,.985), rgba(9,14,26,.97)),
      radial-gradient(120% 120% at 0% 0%, rgba(102,217,255,.12), transparent 40%),
      radial-gradient(120% 120% at 100% 0%, rgba(159,124,255,.14), transparent 44%) !important;
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 9999 !important;
  }

  header .mobile .inner,
  header .mobile .inner.container,
  .mobile[data-mobile] .inner,
  .mobile[data-mobile] .inner.container{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 14px 16px calc(28px + env(safe-area-inset-bottom)) !important;
    box-sizing: border-box !important;
  }

  header .mobile .m-drop,
  .mobile[data-mobile] .m-drop{
    display: block !important;
    width: 100% !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: rgba(255,255,255,.045) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    box-shadow: 0 12px 32px rgba(2,6,23,.18) !important;
  }

  header .mobile .m-drop > summary,
  .mobile[data-mobile] .m-drop > summary{
    list-style: none;
    cursor: pointer;
    min-height: 54px !important;
    padding: 14px 44px 14px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: rgba(255,255,255,.045) !important;
  }

  header .mobile .m-drop-items,
  .mobile[data-mobile] .m-drop-items{
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px 8px 10px !important;
    max-height: none !important;
    overflow: visible !important;
  }

  header .mobile .m-drop[open] .m-drop-items,
  .mobile[data-mobile] .m-drop[open] .m-drop-items{
    display: flex !important;
  }

  header .mobile .m-drop-items .drop-item,
  header .mobile .m-top-link,
  .mobile[data-mobile] .m-drop-items .drop-item,
  .mobile[data-mobile] .m-top-link{
    width: 100% !important;
    min-height: 48px !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
  }
}

/* ===== Leistungen v2 ===== */
.svc2-hero{padding:56px 0 24px}
.svc2-hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center}
.svc2-copy h1{font-size:clamp(2rem,4vw,3.4rem);line-height:1.04;margin:.2rem 0 .9rem}
.svc2-copy .lead{max-width:68ch;font-size:1.02rem;color:var(--muted)}
.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(103,232,249,.08);border:1px solid rgba(103,232,249,.18);color:#bdf4ff;font-size:.82rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}
.svc2-actions,.svc2-contact-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.svc2-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:22px}
.svc2-stat{padding:18px;border-radius:22px}
.svc2-stat strong{display:block;font-size:1.4rem;margin-bottom:4px}
.svc2-stat span{color:var(--muted);font-size:.95rem}
.svc2-stage{position:relative;min-height:440px}
.svc2-stage-main{padding:22px;border-radius:28px;overflow:hidden;min-height:420px;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at top right, rgba(99,102,241,.18), transparent 40%), linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04))}
.svc2-stage-main img,.svc2-category-media img,.svc2-branches-media img{width:100%;height:auto;display:block}
.svc2-float{position:absolute;max-width:220px;padding:16px 18px;border-radius:22px}
.svc2-float strong{display:block;line-height:1.25}
.svc2-mini-kicker{display:block;font-size:.75rem;text-transform:uppercase;letter-spacing:.08em;color:#9fe9ff;margin-bottom:8px}
.svc2-float-a{left:-6px;bottom:42px}
.svc2-float-b{right:-6px;top:34px}
.svc2-finder-wrap{padding:10px 0 8px}
.svc2-finder{padding:22px 24px;border-radius:26px;display:grid;grid-template-columns:1fr;gap:18px}
.svc2-finder h2,.svc2-section-head h2,.svc2-compare-card h2,.svc2-contact-card h2,.svc2-branches-copy h2{margin:.35rem 0 .55rem}
.svc2-finder p,.svc2-category-head p,.svc2-branches-copy p,.svc2-contact-card p,.svc2-process-card p,.svc2-package p{color:var(--muted)}
.svc2-search{width:100%;padding:15px 16px;border-radius:16px;border:1px solid rgba(255,255,255,.12);background:rgba(15,23,42,.7);color:#fff;outline:none}
.svc2-search::placeholder{color:#97a4b8}
.svc2-finder-controls{display:grid;gap:14px}
.svc2-pills{display:flex;gap:10px;flex-wrap:wrap}
.svc2-pill{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);color:#fff;padding:10px 14px;border-radius:999px;cursor:pointer;font:inherit;transition:transform .18s ease,background .18s ease,border-color .18s ease}
.svc2-pill:hover,.svc2-pill.is-active{background:rgba(103,232,249,.12);border-color:rgba(103,232,249,.28);transform:translateY(-1px)}
.svc2-overview{padding:10px 0 4px}
.svc2-overview-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.svc2-overview-card{padding:22px;border-radius:24px}
.svc2-overview-ic{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,#06b6d4,#8b5cf6);font-weight:800;margin-bottom:12px}
.svc2-category{padding:26px 0}
.svc2-category.alt .svc2-category-head{order:0}
.svc2-category-grid{display:grid;grid-template-columns:1fr 420px;gap:24px;align-items:start}
.svc2-category-head h2{margin:.35rem 0 .7rem;font-size:clamp(1.65rem,3vw,2.5rem);line-height:1.08}
.svc2-iconline{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.svc2-iconline span,.svc2-branch-list span{display:inline-flex;padding:10px 12px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);color:#d9e5f7}
.svc2-category-media{grid-column:2;grid-row:1 / span 2}
.svc2-category-media .card,.svc2-category-media{position:relative}
.svc2-category-media img{border-radius:26px;border:1px solid rgba(255,255,255,.1);background:#eef6ff;box-shadow:var(--shadow)}
.svc2-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.svc2-cards-3col{grid-template-columns:repeat(3,minmax(0,1fr))}
.svc2-card{padding:22px;border-radius:24px;display:flex;flex-direction:column;gap:10px;min-height:100%}
.svc2-card h3{margin:0;font-size:1.08rem;line-height:1.25}
.svc2-card p{margin:0;color:var(--muted)}
.svc2-card ul,.svc2-package ul,.svc2-compare-grid ul{margin:0;padding-left:18px;color:#d6e2f3}
.svc2-card li,.svc2-package li,.svc2-compare-grid li{margin:.2rem 0}
.svc2-card-icon{width:52px;height:52px;border-radius:18px;display:grid;place-items:center;font-size:1.5rem;background:linear-gradient(135deg, rgba(34,211,238,.18), rgba(139,92,246,.18));border:1px solid rgba(255,255,255,.08)}
.svc2-compare,.svc2-process,.svc2-packages,.svc2-branches,.svc2-contact{padding:28px 0}
.svc2-compare-card,.svc2-contact-card{padding:28px;border-radius:28px}
.svc2-compare-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:18px}
.svc2-compare-grid>div,.svc2-package,.svc2-process-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:22px;padding:20px}
.svc2-branches-grid{display:grid;grid-template-columns:1fr 420px;gap:24px;align-items:center}
.svc2-section-head{max-width:760px;margin-bottom:18px}
.svc2-process-grid,.svc2-package-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.svc2-process-card strong{display:inline-grid;place-items:center;width:46px;height:46px;border-radius:16px;background:linear-gradient(135deg,#06b6d4,#8b5cf6);margin-bottom:12px}
.svc2-package-grid{grid-template-columns:repeat(3,1fr)}
.svc2-package h3,.svc2-process-card h3{margin:.2rem 0 .5rem}
.svc2-contact-card{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center}
[data-filter-group]{scroll-margin-top:90px}

@media (max-width: 1180px){
  .svc2-hero-grid,.svc2-category-grid,.svc2-branches-grid{grid-template-columns:1fr}
  .svc2-category-media{grid-column:auto;grid-row:auto}
  .svc2-cards-3col,.svc2-cards,.svc2-overview-grid,.svc2-process-grid,.svc2-package-grid,.svc2-compare-grid,.svc2-stat-grid{grid-template-columns:repeat(2,1fr)}
  .svc2-stage{min-height:auto}
  .svc2-float{position:static;max-width:none;margin-top:12px}
  .svc2-contact-card{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .svc2-hero{padding-top:26px}
  .svc2-copy h1{font-size:2rem}
  .svc2-cards-3col,.svc2-cards,.svc2-overview-grid,.svc2-process-grid,.svc2-package-grid,.svc2-compare-grid,.svc2-stat-grid{grid-template-columns:1fr}
  .svc2-stage-main{min-height:280px}
  .svc2-finder,.svc2-card,.svc2-overview-card,.svc2-package,.svc2-process-card,.svc2-compare-card,.svc2-contact-card{padding:18px}
  .svc2-pills{gap:8px}
  .svc2-pill{padding:9px 12px}
}

/* ===== Digi-Sense v88 polish: stronger layout, less wasted space, cleaner alignment ===== */
.svc2-hero{
  padding: 52px 0 18px;
}
.svc2-hero-grid{
  grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
  gap: 32px;
  align-items: stretch;
}
.svc2-copy,
.svc2-stage,
.svc2-category-head,
.svc2-cards,
.svc2-overview-card,
.svc2-process-card,
.svc2-package,
.svc2-compare-grid > div,
.svc2-contact-card,
.svc2-finder,
.svc2-stat,
.svc2-branches-copy{
  min-width: 0;
}
.svc2-copy .lead{max-width: 72ch;}
.svc2-actions .btn,
.svc2-contact-actions .btn{
  min-height: 48px;
}
.svc2-stat-grid{
  gap: 16px;
}
.svc2-stat{
  padding: 18px 20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height: 108px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.svc2-stat strong{font-size: clamp(1.28rem,2.3vw,1.7rem);}

.svc2-stage{
  display:grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  align-content:start;
  min-height: 0;
}
.svc2-stage-main{
  grid-column: 1 / -1;
  min-height: 430px;
  padding: 28px;
  border-radius: 30px;
}
.svc2-stage-main img{
  max-height: 360px;
  width: 100%;
  object-fit: contain;
}
.svc2-float{
  position: static;
  max-width: none;
  min-height: 120px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.svc2-float-a,
.svc2-float-b{left:auto;right:auto;top:auto;bottom:auto;}

.svc2-finder-wrap{padding: 16px 0 10px;}
.svc2-finder{
  padding: 24px 26px;
  grid-template-columns: minmax(0,.9fr) minmax(320px,1.1fr);
  align-items:end;
  gap: 22px;
}
.svc2-finder-controls{gap: 16px;}
.svc2-search{
  min-height: 54px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.svc2-pills{gap: 10px;}
.svc2-pill{
  min-height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.svc2-overview{padding: 18px 0 8px;}
.svc2-overview-grid{
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}
.svc2-overview-card{
  padding: 24px;
  min-height: 100%;
  display:flex;
  flex-direction:column;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.svc2-overview-card h3{margin: 0 0 10px;}
.svc2-overview-card p{margin-bottom:0;}
.svc2-overview-ic{
  width: 50px;
  height: 50px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.svc2-category{
  padding: 34px 0;
}
.svc2-category-grid{
  grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr);
  gap: 24px 28px;
  align-items:start;
}
.svc2-category-head{
  align-self:start;
  padding-top: 8px;
}
.svc2-category-head p{
  max-width: 68ch;
}
.svc2-category-media{
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 94px;
  align-self:start;
}
.svc2-category-media img,
.svc2-branches-media img{
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: contain;
  padding: 20px;
}
.svc2-cards,
.svc2-cards-3col{
  grid-column: 1 / -1;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.svc2-card{
  padding: 22px;
  min-height: 100%;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.038));
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.svc2-card:hover,
.svc2-overview-card:hover,
.svc2-process-card:hover,
.svc2-package:hover,
.svc2-compare-grid > div:hover{
  transform: translateY(-3px);
  border-color: rgba(103,232,249,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.svc2-card-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
}
.svc2-card h3{min-height: 2.8em;}
.svc2-card ul{margin-top: auto;}

.svc2-compare,
.svc2-process,
.svc2-packages,
.svc2-branches,
.svc2-contact{
  padding: 34px 0;
}
.svc2-compare-card,
.svc2-contact-card{
  padding: 30px;
  border-radius: 30px;
}
.svc2-compare-grid{
  margin-top: 20px;
  gap: 20px;
}
.svc2-compare-grid > div,
.svc2-package,
.svc2-process-card{
  padding: 22px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
}
.svc2-branches-grid{
  grid-template-columns: minmax(0,1fr) minmax(340px,.9fr);
  gap: 30px;
  align-items:center;
}
.svc2-branch-list{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 18px 0 22px;
}
.svc2-process-grid{
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}
.svc2-package-grid{
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.svc2-process-card strong{
  width: 48px;
  height: 48px;
}
.svc2-contact-card{
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
}
.svc2-contact-actions{
  justify-content:flex-end;
  align-items:center;
}

.footer-grid{
  align-items:start;
  gap: 24px;
}
.footer .card{
  height: 100%;
}

@media (max-width: 1180px){
  .svc2-cards,
  .svc2-cards-3col,
  .svc2-overview-grid,
  .svc2-package-grid,
  .svc2-process-grid{
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 980px){
  .svc2-hero-grid,
  .svc2-finder,
  .svc2-category-grid,
  .svc2-branches-grid,
  .svc2-contact-card{
    grid-template-columns: 1fr;
  }
  .svc2-stage{
    grid-template-columns: 1fr 1fr;
  }
  .svc2-category-media{
    position: static;
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }
  .svc2-cards,
  .svc2-cards-3col{
    grid-column: auto;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .svc2-contact-actions{justify-content:flex-start;}
}

@media (max-width: 720px){
  .svc2-stage,
  .svc2-stat-grid,
  .svc2-overview-grid,
  .svc2-cards,
  .svc2-cards-3col,
  .svc2-package-grid,
  .svc2-process-grid,
  .svc2-compare-grid{
    grid-template-columns: 1fr;
  }
  .svc2-stage-main{
    min-height: 300px;
    padding: 20px;
  }
  .svc2-stage-main img{
    max-height: 240px;
  }
  .svc2-finder,
  .svc2-overview-card,
  .svc2-card,
  .svc2-process-card,
  .svc2-package,
  .svc2-compare-card,
  .svc2-contact-card{
    padding: 18px;
  }
  .svc2-card h3{min-height: 0;}
}


/* === Branchen final polish === */
.svc2-category-head,
.svc2-card,
.svc2-overview-card,
.dropmenu.mega .drop-item,
.mega-title,
.footer p,
.footer .small{
  overflow-wrap:anywhere;
  word-break:normal;
}

.svc2-category-head p strong{
  color:var(--text);
}

.svc2-card{
  align-items:flex-start;
}

.svc2-card h3{
  min-height:0;
  text-wrap:balance;
}

.svc2-card p,
.svc2-card li,
.svc2-overview-card p{
  line-height:1.6;
}

.svc2-card ul{
  width:100%;
  margin-top:4px;
  padding-left:20px;
}

.svc2-card--result,
.svc2-card--links{
  border-color:rgba(103,232,249,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.045));
}

.svc2-result-list li,
.svc2-link-list li{
  margin:.42rem 0;
}

.svc2-result-list li::marker{
  color:#67e8f9;
}

.svc2-category-grid{
  gap:28px 32px;
}

.svc2-category{
  scroll-margin-top:110px;
}

@media (max-width: 980px){
  .svc2-category-media{
    margin-top:-4px;
  }
}

@media (max-width: 720px){
  .svc2-category-head h2,
  .svc2-card h3,
  .svc2-overview-card h3{
    text-wrap:pretty;
  }
}

/* === Branchen final live-ready polish === */
.svc2-category .svc2-cards-3col{
  position:relative;
}
.svc2-category .svc2-cards-3col:nth-of-type(1),
.svc2-category .svc2-cards-3col:nth-of-type(2){
  padding-top: 38px;
}
.svc2-category .svc2-cards-3col:nth-of-type(2){
  margin-top: 26px;
}
.svc2-category .svc2-cards-3col:nth-of-type(1)::before,
.svc2-category .svc2-cards-3col:nth-of-type(2)::before{
  position:absolute;
  left:0;
  top:0;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 14px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:#eaf2ff;
}
.svc2-category .svc2-cards-3col:nth-of-type(1)::before{
  content:"Typische Probleme";
}
.svc2-category .svc2-cards-3col:nth-of-type(2)::before{
  content:"Unsere Lösung";
}
.svc2-category .svc2-cards-3col:nth-of-type(1) .svc2-card{
  position:relative;
}
.svc2-category .svc2-cards-3col:nth-of-type(1) .svc2-card::after{
  content:"↓";
  position:absolute;
  left:50%;
  bottom:-42px;
  transform:translateX(-50%);
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  font-size:1.05rem;
  font-weight:800;
  color:#dffaff;
  background:linear-gradient(135deg, rgba(6,182,212,.92), rgba(139,92,246,.92));
  box-shadow:0 12px 30px rgba(6,182,212,.18);
  border:1px solid rgba(255,255,255,.22);
  z-index:3;
}
.svc2-category .svc2-cards-3col:nth-of-type(1) .svc2-card::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-24px;
  transform:translateX(-50%);
  width:2px;
  height:20px;
  background:linear-gradient(180deg, rgba(103,232,249,.70), rgba(139,92,246,.35));
  z-index:2;
}
.svc2-category .svc2-cards-3col:nth-of-type(2) .svc2-card{
  border-color:rgba(103,232,249,.14);
  background:linear-gradient(180deg, rgba(103,232,249,.08), rgba(255,255,255,.04));
}
.svc2-category .svc2-cards-3col:nth-of-type(3){
  margin-top: 4px;
}
.svc2-hero-card h3,
.svc2-overview-card h3,
.svc2-category-head h2{
  text-wrap:pretty;
}
.svc2-overview-card{
  min-height:100%;
}
.svc2-category-head p,
.svc2-card p,
.svc2-overview-card p{
  max-width:72ch;
}
@media (max-width: 980px){
  .svc2-category .svc2-cards-3col:nth-of-type(1),
  .svc2-category .svc2-cards-3col:nth-of-type(2){
    padding-top:34px;
  }
  .svc2-category .svc2-cards-3col:nth-of-type(1) .svc2-card::after{
    bottom:-36px;
  }
}
@media (max-width: 720px){
  .svc2-category .svc2-cards-3col:nth-of-type(1),
  .svc2-category .svc2-cards-3col:nth-of-type(2){
    padding-top:30px;
  }
  .svc2-category .svc2-cards-3col:nth-of-type(2){
    margin-top:22px;
  }
  .svc2-category .svc2-cards-3col:nth-of-type(1) .svc2-card::after{
    bottom:-28px;
    width:30px;
    height:30px;
  }
  .svc2-category .svc2-cards-3col:nth-of-type(1) .svc2-card::before{
    bottom:-16px;
    height:12px;
  }
}


/* Branchen final polish */
.svc2-hero-grid--final{grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);gap:34px;align-items:stretch}
.svc2-hero-copy--final,.svc2-hero-card--final{height:100%}
.svc2-hero-copy--final{display:flex;flex-direction:column;justify-content:flex-start}
.svc2-iconline--hero{margin-bottom:18px}
.svc2-hero-branchnav{margin-top:18px;padding:20px 22px;border-radius:26px;background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.1);box-shadow:0 18px 46px rgba(2,6,23,.18)}
.svc2-hero-branchnav-head{display:grid;gap:4px;margin-bottom:14px}
.svc2-hero-branchnav-head strong{font-size:1rem;line-height:1.2}
.svc2-hero-branchnav-head span{color:var(--muted);font-size:.95rem}
.svc2-pills--grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.svc2-pills--grid .svc2-pill{display:flex;align-items:center;justify-content:center;min-height:48px;text-align:center;padding:12px 14px;font-weight:700}
.svc2-stat-grid--hero{margin-top:18px}
.svc2-stat-grid--hero .svc2-stat{min-height:140px;display:flex;flex-direction:column;justify-content:space-between}
.svc2-hero-card--final{display:flex;flex-direction:column;justify-content:space-between;padding:28px 28px 26px;border-radius:30px;position:relative;overflow:hidden;background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.12);box-shadow:0 26px 70px rgba(2,6,23,.24)}
.svc2-hero-card--final::before{content:"";position:absolute;inset:auto -10% -20% auto;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle, rgba(103,232,249,.13), transparent 65%);pointer-events:none}
.svc2-hero-card--final > *{position:relative;z-index:1}
.svc2-hero-card--final h3{margin:.45rem 0 .8rem;font-size:clamp(1.5rem,2.3vw,2rem);line-height:1.1;max-width:15ch}
.svc2-hero-card-lead{margin:0 0 14px;color:#d6e2f3;max-width:42ch}
.svc2-hero-checks{flex:1;display:flex;align-items:flex-start}
.svc2-hero-checklist{display:grid;gap:12px;margin:0;padding:0;list-style:none}
.svc2-hero-checklist li{display:grid;grid-template-columns:28px 1fr;gap:12px;align-items:flex-start;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.07)}
.svc2-hero-checklist li:last-child{border-bottom:0;padding-bottom:0}
.svc2-hero-card-footer{margin-top:20px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08)}
.svc2-hero-outcome{padding:16px 18px;border-radius:20px;background:linear-gradient(135deg, rgba(34,211,238,.12), rgba(139,92,246,.10));border:1px solid rgba(103,232,249,.16)}
.svc2-hero-outcome strong{display:block;margin-bottom:6px;color:#eefcff}
.svc2-hero-outcome p{margin:0;color:#dce9f7}
.svc2-overview-grid{align-items:stretch}
.svc2-overview-card,.svc2-card,.svc2-contact-sidebox{backdrop-filter:blur(8px)}
.svc2-category-grid{gap:28px}
.svc2-category-head{padding-right:8px}
.svc2-category .svc2-cards-3col{align-items:stretch}
.svc2-card{height:100%}
.svc2-card h3{text-wrap:pretty}
.svc2-contact-card--branchen-final{grid-template-columns:minmax(0,1fr) minmax(260px,340px);gap:26px;align-items:stretch;padding:30px!important}
.svc2-contact-copy,.svc2-contact-side{display:flex;flex-direction:column;justify-content:center}
.svc2-contact-sidebox{height:100%;padding:22px;border-radius:24px;background:linear-gradient(180deg, rgba(103,232,249,.08), rgba(255,255,255,.04));border:1px solid rgba(103,232,249,.14)}
.svc2-contact-sidebox strong{display:block;margin-bottom:10px}
.svc2-contact-sidebox ul{margin:0;padding-left:18px;color:#dce9f7}
.svc2-contact-sidebox li{margin:.42rem 0}
@media (max-width: 1180px){
  .svc2-hero-grid--final{grid-template-columns:1fr}
  .svc2-hero-card--final h3{max-width:none}
}
@media (max-width: 860px){
  .svc2-pills--grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .svc2-contact-card--branchen-final{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .svc2-hero-branchnav{padding:18px}
  .svc2-pills--grid{grid-template-columns:1fr}
  .svc2-stat-grid--hero .svc2-stat{min-height:auto}
  .svc2-hero-card--final{padding:22px 20px}
}


/* === Startseite: Teaser-Icons sauberer und farbiger === */
.page-teaser-icon{
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 28px rgba(2,8,23,.22);
}
.page-teaser-icon .pt-svg{
  width: 100%;
  height: 100%;
  display: block;
}
.page-teaser-card:hover .page-teaser-icon{
  transform: translateY(-1px) scale(1.02);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* === Über uns: Karten nicht abschneiden / sauber ausrichten === */
#ueber-uns .grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
#ueber-uns .grid-3 > *{
  min-width: 0;
}
#ueber-uns .feature,
#ueber-uns .card{
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
#ueber-uns .feature h3,
#ueber-uns .feature p,
#ueber-uns .card p{
  overflow-wrap: anywhere;
}

@media (max-width: 980px){
  #ueber-uns .grid-3{
    grid-template-columns: 1fr;
  }
}

/* bessere farbige Icons */
.icon, .page-teaser-icon {
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#fff;
}


/* PREMIUM ICON SYSTEM */
.premium-icon {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: 16px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.25s ease;
}

.premium-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.35),
    0 0 20px rgba(139,92,246,0.4);
}

.icon.premium-icon {
  font-size: 24px;
  color: #fff;
}

.page-teaser-icon.premium-icon {
  font-size: 26px;
  color: #fff;
}


/* === V103: echte Premium-Icons auf der Startseite === */
.icon,
.page-teaser-icon{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 14px 34px rgba(15,23,42,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  padding: 0;
  color: inherit;
}

.icon{
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.page-teaser-icon{
  width: 72px;
  height: 72px;
  border-radius: 22px;
  flex: 0 0 auto;
}

.icon img,
.page-teaser-icon img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.feature:hover .icon,
.page-teaser-card:hover .page-teaser-icon{
  transform: translateY(-2px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 18px 40px rgba(15,23,42,.24),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* alte Premium-Textfärbungen neutralisieren */
.icon.premium-icon,
.page-teaser-icon.premium-icon{
  font-size: inherit;
  color: inherit;
}

@media (max-width: 900px){
  .icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
  .page-teaser-icon{
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }
}


/* === V104: alle Startseiten-Icons konsequent vereinheitlicht === */
.icon,
.page-teaser-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 34px rgba(15,23,42,.18), inset 0 1px 0 rgba(255,255,255,.08);
  overflow:hidden;
  padding:0;
}

.icon img,
.page-teaser-icon img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

/* falls einzelne Blöcke abweichende Font-Icons hatten */
.icon::before,
.page-teaser-icon::before{
  content:none !important;
}


/* === V105: restliche Startseiten-Icons komplett ersetzt === */
.oc-ico,
.mini-ico,
.check,
.result-ico,
.theme-ic{
  display:flex;
  align-items:center;
  justify-content:center;
}

.oc-ico{
  width:68px;
  height:68px;
  border-radius:20px;
  padding:0;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 14px 34px rgba(15,23,42,.18), inset 0 1px 0 rgba(255,255,255,.08);
  overflow:hidden;
  flex:0 0 auto;
}
.oc-ico img{width:100%;height:100%;display:block;object-fit:contain;}

.mini-ico{
  width:56px;
  height:56px;
  border-radius:18px;
  padding:0;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 12px 28px rgba(15,23,42,.16), inset 0 1px 0 rgba(255,255,255,.08);
  overflow:hidden;
}
.mini-ico img{width:100%;height:100%;display:block;object-fit:contain;}

.check{
  width:28px;
  height:28px;
  min-width:28px;
  min-height:28px;
  border-radius:10px;
  overflow:hidden;
  margin-top:2px;
}
.check img{width:100%;height:100%;display:block;object-fit:contain;}

.result-ico{
  width:34px;
  height:34px;
  min-width:34px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(15,23,42,.14);
}
.result-ico img{width:100%;height:100%;display:block;object-fit:contain;}

.theme-ic{
  width:22px;
  height:22px;
  line-height:0;
}
.theme-ic img{width:100%;height:100%;display:block;object-fit:contain;}

.oc-ico svg,
.mini-ico svg,
.check svg,
.result-ico svg{
  display:none !important;
}

@media (max-width: 900px){
  .oc-ico{width:60px;height:60px;border-radius:18px;}
  .mini-ico{width:50px;height:50px;border-radius:16px;}
}


/* === V106: Hintergrund der Icons entfernen === */
.icon,
.page-teaser-icon,
.oc-ico,
.mini-ico,
.check,
.result-ico {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* bessere Integration */
.icon img,
.page-teaser-icon img,
.oc-ico img,
.mini-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* === V107: Startseite Icons wirklich final === */

/* sämtliche künstlichen Hintergründe entfernen */
.icon,
.page-teaser-icon,
.oc-ico,
.mini-ico,
.check,
.result-ico,
.field-ic,
.hours-ic{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* große Karten-Icons */
.icon img,
.page-teaser-icon img,
.oc-ico img,
.mini-ico img{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 16px rgba(15,23,42,.12));
}

/* Button-Icons sichtbar ersetzen */
a.btn svg{display:none !important;}
a.btn img{
  width: 18px !important;
  height: 18px !important;
  display: inline-block !important;
  vertical-align: -3px !important;
  margin-right: 10px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 10px rgba(15,23,42,.10));
}

/* Kontaktformular & Öffnungszeiten */
.field-ic{
  width: 20px !important;
  height: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.field-ic svg{display:none !important;}
.field-ic img{
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  object-fit: contain !important;
}
.hours-ic{
  width: 20px !important;
  height: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hours-ic svg{display:none !important;}
.hours-ic img{
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  object-fit: contain !important;
}

/* kleine Ergebnis-/Check-Icons ohne Kachel */
.check img{
  width: 18px !important;
  height: 18px !important;
  display: block !important;
}
.result-ico img{
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}

/* Theme-Icon */
.theme-ic{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.theme-ic img{
  width: 18px !important;
  height: 18px !important;
  display: block !important;
}

/* Größen der bestehenden Wrapper leicht harmonisieren */
.page-teaser-icon{width:72px;height:72px;}
.icon{width:64px;height:64px;}
.oc-ico{width:64px;height:64px;}
.mini-ico{width:52px;height:52px;}


/* === V108: Startseiten-Icons größer und präsenter === */

/* große Karten */
.page-teaser-icon{
  width: 96px !important;
  height: 96px !important;
}
.page-teaser-icon img{
  width: 96px !important;
  height: 96px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 18px rgba(15,23,42,.12)) !important;
}

.icon,
.oc-ico{
  width: 82px !important;
  height: 82px !important;
}
.icon img,
.oc-ico img{
  width: 82px !important;
  height: 82px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 16px rgba(15,23,42,.12)) !important;
}

.mini-ico{
  width: 68px !important;
  height: 68px !important;
}
.mini-ico img{
  width: 68px !important;
  height: 68px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 14px rgba(15,23,42,.10)) !important;
}

/* Buttons deutlich sichtbarer */
a.btn{
  gap: 10px !important;
}
a.btn img{
  width: 22px !important;
  height: 22px !important;
  margin-right: 0 !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 8px rgba(15,23,42,.10)) !important;
}

/* Kontaktformular / Öffnungszeiten etwas präsenter */
.field-ic{
  width: 24px !important;
  height: 24px !important;
}
.field-ic img{
  width: 22px !important;
  height: 22px !important;
}
.hours-ic{
  width: 24px !important;
  height: 24px !important;
}
.hours-ic img{
  width: 22px !important;
  height: 22px !important;
}

/* Kleine Listen-/Ergebnis-Icons weiterhin fein, aber sichtbarer */
.check{
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
}
.check img{
  width: 22px !important;
  height: 22px !important;
}
.result-ico{
  width: 28px !important;
  height: 28px !important;
}
.result-ico img{
  width: 28px !important;
  height: 28px !important;
}

@media (max-width: 980px){
  .page-teaser-icon{
    width: 82px !important;
    height: 82px !important;
  }
  .page-teaser-icon img{
    width: 82px !important;
    height: 82px !important;
  }
  .icon,
  .oc-ico{
    width: 72px !important;
    height: 72px !important;
  }
  .icon img,
  .oc-ico img{
    width: 72px !important;
    height: 72px !important;
  }
  .mini-ico{
    width: 60px !important;
    height: 60px !important;
  }
  .mini-ico img{
    width: 60px !important;
    height: 60px !important;
  }
}


/* === V109: neue handgezeichnete, weichere Homepage-Icons === */
.page-teaser-icon,
.icon,
.oc-ico,
.mini-ico{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.page-teaser-icon{
  width: 104px !important;
  height: 104px !important;
}
.page-teaser-icon img{
  width: 104px !important;
  height: 104px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 16px rgba(15,23,42,.10)) !important;
}

.icon,
.oc-ico{
  width: 88px !important;
  height: 88px !important;
}
.icon img,
.oc-ico img{
  width: 88px !important;
  height: 88px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 9px 14px rgba(15,23,42,.09)) !important;
}

.mini-ico{
  width: 72px !important;
  height: 72px !important;
}
.mini-ico img{
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 12px rgba(15,23,42,.08)) !important;
}

/* Buttons zurückhaltender und passender */
a.btn img{
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  filter: none !important;
}

.check img,
.result-ico img,
.field-ic img,
.hours-ic img,
.theme-ic img{
  filter: none !important;
}

@media (max-width: 980px){
  .page-teaser-icon{width: 90px !important; height: 90px !important;}
  .page-teaser-icon img{width: 90px !important; height: 90px !important;}
  .icon, .oc-ico{width: 78px !important; height: 78px !important;}
  .icon img, .oc-ico img{width: 78px !important; height: 78px !important;}
  .mini-ico{width: 62px !important; height: 62px !important;}
  .mini-ico img{width: 62px !important; height: 62px !important;}
}


/* === V110: Startseiten-Icons exakt im Stil der Leistungen === */
.page-teaser-icon,
.icon,
.oc-ico,
.mini-ico,
.check,
.result-ico,
.field-ic,
.hours-ic,
.theme-ic{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.page-teaser-icon img,
.icon img,
.oc-ico img,
.mini-ico img,
.check img,
.result-ico img,
.field-ic img,
.hours-ic img,
.theme-ic img,
a.btn img{
  filter: none !important;
}

.page-teaser-icon{ width: 96px !important; height: 96px !important; }
.page-teaser-icon img{ width: 96px !important; height: 96px !important; object-fit: contain !important; }

.icon,
.oc-ico{ width: 82px !important; height: 82px !important; }
.icon img,
.oc-ico img{ width: 82px !important; height: 82px !important; object-fit: contain !important; }

.mini-ico{ width: 64px !important; height: 64px !important; }
.mini-ico img{ width: 64px !important; height: 64px !important; object-fit: contain !important; }

a.btn img{
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
}

.check{ width: 18px !important; height: 18px !important; min-width: 18px !important; }
.check img{ width: 18px !important; height: 18px !important; object-fit: contain !important; }

.result-ico{ width: 22px !important; height: 22px !important; min-width: 22px !important; }
.result-ico img{ width: 22px !important; height: 22px !important; object-fit: contain !important; }

.field-ic img,
.hours-ic img,
.theme-ic img{
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
}


/* === V113: Leistungskarten Icons gezielt ersetzt === */
/* === V114: Startseite-Icons im exakt gleichen Look wie Leistungen === */

/* Home wrappers use the same box style as .svc2-card-icon */
.oc-ico,
.icon,
.mini-ico,
.page-teaser-icon,
.check,
.result-ico,
.field-ic,
.hours-ic,
.theme-ic{
  width: 52px !important;
  height: 52px !important;
  border-radius: 18px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(139,92,246,.18)) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.page-teaser-icon{
  width: 56px !important;
  height: 56px !important;
}

.home-icon-glyph{
  display: block !important;
  font-size: 1.45rem !important;
  line-height: 1 !important;
  transform: translateY(1px) !important;
  filter: saturate(1.05);
}

.page-teaser-icon .home-icon-glyph{
  font-size: 1.55rem !important;
}

.mini-ico .home-icon-glyph{
  font-size: 1.35rem !important;
}

.check,
.result-ico,
.field-ic,
.hours-ic,
.theme-ic{
  width: 28px !important;
  height: 28px !important;
  border-radius: 10px !important;
}

.check .home-icon-glyph,
.result-ico .home-icon-glyph,
.field-ic .home-icon-glyph,
.hours-ic .home-icon-glyph,
.theme-ic .home-icon-glyph{
  font-size: .9rem !important;
  transform: none !important;
}

/* clear old image-based overrides on homepage */
.oc-ico img,
.icon img,
.mini-ico img,
.page-teaser-icon img,
.check img,
.result-ico img,
.field-ic img,
.hours-ic img,
.theme-ic img{
  display: none !important;
}

/* buttons on start page should stay clean */
a.btn{
  gap: 0 !important;
}
a.btn img{
  display:none !important;
}

@media (max-width: 900px){
  .oc-ico,
  .icon,
  .mini-ico,
  .page-teaser-icon{
    width: 50px !important;
    height: 50px !important;
    border-radius: 17px !important;
  }
  .page-teaser-icon{
    width: 54px !important;
    height: 54px !important;
  }
}


/* === V116: Ergebnis-Kacheln gezielt korrigiert === */
.results-compact .result-ico{
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 11px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(139,92,246,.18)) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.results-compact .result-ico .home-icon-glyph{
  font-size: 1rem !important;
  line-height: 1 !important;
  transform: translateY(0) !important;
}
.results-compact .compact-text{
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
}


/* === V118: konkrete Korrekturen auf der Startseite === */

/* Ergebnis-Kachel Text wirklich sichtbar und korrekt */
.results-compact .compact-text{
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
}

/* Über uns: Heading-Box rechts nicht abschneiden */
#ueber-uns .about-head{
  width: 100% !important;
  max-width: 980px !important;
  box-sizing: border-box !important;
  padding-right: 0 !important;
  overflow: visible !important;
}
#ueber-uns .about-head h2,
#ueber-uns .about-head p{
  max-width: 980px !important;
  overflow-wrap: anywhere !important;
}
#ueber-uns .container{
  overflow: visible !important;
}
#ueber-uns .card.reveal{
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

/* Kontaktformular: Icons weiter nach links und etwas höher */
.form-pretty .field{
  position: relative !important;
}
.form-pretty .field .field-ic{
  position: absolute !important;
  left: 11px !important;
  top: 31px !important;
  transform: none !important;
  width: 18px !important;
  height: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}
.form-pretty .field.field-full .field-ic{
  top: 33px !important;
}
.form-pretty .input{
  padding-left: 38px !important;
}
.form-pretty .field-ic .home-icon-glyph{
  font-size: 0.95rem !important;
  line-height: 1 !important;
  transform: none !important;
}


/* === V119: Anonymisierte Projektrückmeldungen + Über-uns + Kontakt + Leistungen-Icons === */

/* Über uns: Kopfblock im selben Designsystem wie andere Infoblöcke */
#ueber-uns .about-head{
  display:block !important;
  width:100% !important;
  max-width:none !important;
  box-sizing:border-box !important;
  margin:0 0 22px 0 !important;
  padding:26px 28px !important;
  border-radius:24px !important;
  background:rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.09) !important;
  overflow:hidden !important;
}
#ueber-uns .container{
  overflow:visible !important;
}
#ueber-uns .about-head h2,
#ueber-uns .about-intro,
#ueber-uns .about-sub{
  max-width:none !important;
}
#ueber-uns .about-intro,
#ueber-uns .about-sub{
  overflow-wrap:anywhere !important;
}
@media (max-width: 768px){
  #ueber-uns .about-head{
    padding:22px 20px !important;
    border-radius:22px !important;
  }
}

/* Kontaktformular: Icons sauber links und vertikal zentriert */
.form-pretty .field{
  position:relative !important;
}
.form-pretty .field .field-ic{
  position:absolute !important;
  left:12px !important;
  top:35px !important;
  width:18px !important;
  height:18px !important;
  transform:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  pointer-events:none !important;
}
.form-pretty .field.field-full .field-ic{
  top:35px !important;
}
.form-pretty .input{
  padding-left:42px !important;
}
.form-pretty .field-ic .home-icon-glyph{
  font-size:.95rem !important;
  line-height:1 !important;
  transform:none !important;
}

/* Leistungen: alle Icons wieder sichtbar und einheitlich */
.svc2-card .svc2-card-icon{
  width:52px !important;
  height:52px !important;
  border-radius:18px !important;
  display:grid !important;
  place-items:center !important;
  overflow:hidden !important;
  font-size:0 !important;
}
.svc2-card .svc2-card-icon img{
  width:32px !important;
  height:32px !important;
  display:block !important;
  object-fit:contain !important;
}

/* Slider-Texte sauber lesbar */
.t-quote{
  white-space:normal !important;
}

.svc2-card-icon{font-size:1.5rem !important;}


/* === V121: Leistungen-Icons wieder sichtbar === */
.svc2-card .svc2-card-icon{
  display:grid !important;
  place-items:center !important;
  font-size:1.5rem !important;
  line-height:1 !important;
  overflow:visible !important;
}
.svc2-card .svc2-card-icon img{
  display:none !important;
}


/* === V122: Feedback-Slider verlangsamt + Sterne === */
.t-track{
  animation-duration: 96s !important;
}
@media (max-width: 760px){
  .t-track{
    animation-duration: 84s !important;
  }
}
.t-stars{
  display:flex;
  align-items:center;
  gap:2px;
  margin-bottom:10px;
  color:#f5c451;
  font-size:0.95rem;
  letter-spacing:0.5px;
}
.t-stars span{
  color:rgba(245,196,81,.38);
}


/* === V124: Sterne im Feedback-Slider wirklich sichtbar === */
.t-card .t-stars{
  display:flex !important;
  align-items:center !important;
  gap:2px !important;
  margin:0 0 10px 0 !important;
  color:#f5c451 !important;
  font-size:.95rem !important;
  line-height:1 !important;
  letter-spacing:.5px !important;
}
.t-card .t-stars span{
  color:rgba(245,196,81,.35) !important;
}


/* === V125: Startseiten-CTA-Buttons mit Icons im gleichen Design === */
.hero-actions .btn{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
}
.hero-actions .btn .btn-ic{
  width:20px;
  height:20px;
  display:inline-grid;
  place-items:center;
  line-height:1;
  font-size:1rem;
  transform: translateY(1px);
  flex:0 0 auto;
}
@media (max-width: 768px){
  .hero-actions .btn{
    gap:8px !important;
  }
  .hero-actions .btn .btn-ic{
    width:18px;
    height:18px;
    font-size:.95rem;
  }
}


/* === V126: Cookie Button Design verbessert === */
.cookie-actions .btn.primary{
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  border: none !important;
  color:#fff !important;
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  box-shadow: 0 6px 18px rgba(34,197,94,.35) !important;
}

.cookie-actions .btn.primary::before{
  content:"✔";
  font-size:0.9rem;
  display:inline-block;
  transform: translateY(-1px);
}

.cookie-actions .btn.primary:hover{
  background: linear-gradient(135deg, #16a34a, #15803d) !important;
  box-shadow: 0 8px 22px rgba(34,197,94,.45) !important;
}


/* === V127: Mobile Optimization (Desktop untouched) === */
@media (max-width: 768px){

  /* Container spacing */
  .container{
    padding-left:16px !important;
    padding-right:16px !important;
  }

  /* Headings scaling */
  h1{ font-size:1.8rem !important; }
  h2{ font-size:1.5rem !important; }
  h3{ font-size:1.2rem !important; }

  /* Hero spacing */
  .hero{
    padding-top:80px !important;
    padding-bottom:40px !important;
  }

  /* Buttons full width where useful */
  .btn{
    width:100%;
    justify-content:center !important;
  }

  /* Fix button groups */
  .hero-actions,
  .actions,
  .btn-group{
    flex-direction:column !important;
    gap:10px !important;
  }

  /* Cards grid -> 1 column */
  .grid-3,
  .grid-2,
  .svc2-process-grid,
  .svc2-package-grid,
  .svc2-compare-grid{
    grid-template-columns:1fr !important;
  }

  /* Branchen + Leistungen cards spacing */
  .svc2-card,
  .feature,
  .overview-card{
    padding:18px !important;
  }

  /* Testimonials slider fix */
  .t-slide{
    min-width:85% !important;
  }

  /* Fix overflow text */
  p, h1, h2, h3{
    word-break:break-word;
  }

  /* Forms */
  .input{
    font-size:16px !important; /* prevent zoom */
  }

  /* Contact section */
  .kontakt-grid{
    grid-template-columns:1fr !important;
  }

  /* Footer */
  .footer-grid{
    grid-template-columns:1fr !important;
    gap:20px !important;
  }

  /* Navigation dropdown fix */
  .nav-dropdown{
    max-height:70vh !important;
    overflow-y:auto !important;
  }

  /* Fix icon alignment */
  .icon,
  .svc2-card-icon{
    margin-bottom:10px;
  }

}


/* === V128: Mobile Premium === */
@media (max-width: 768px){

  /* Smooth premium spacing */
  section{
    scroll-margin-top: 84px;
  }
  .section-head{
    margin-bottom: 14px !important;
  }
  .section-head h2{
    line-height: 1.14 !important;
    letter-spacing: -0.01em;
  }
  .muted, p{
    line-height: 1.62 !important;
  }

  /* Premium cards */
  .feature,
  .overview-card,
  .svc2-card,
  .svc2-compare-grid > div,
  .svc2-package,
  .svc2-process-card,
  .t-card,
  .map-wide-card,
  .svc2-contact-card,
  .card{
    border-radius: 22px !important;
  }

  /* Better hero rhythm */
  .hero .container,
  .svc2-hero .container{
    gap: 16px !important;
  }
  .hero-actions{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .hero-actions .btn{
    min-height: 48px !important;
    border-radius: 16px !important;
  }

  /* Better chip/search handling */
  .pills,
  .chips,
  .filterchips{
    gap: 8px !important;
  }
  .pills span,
  .chips span,
  .chip{
    max-width: 100%;
    white-space: normal !important;
  }
  #serviceFilter,
  .search-input,
  input[type="search"]{
    min-height: 48px !important;
    border-radius: 16px !important;
  }

  /* Sliders / marquees calmer on mobile */
  .t-track{
    animation-duration: 120s !important;
  }

  /* Reduce motion and visual noise on mobile */
  .reveal,
  .reveal-up,
  .parallax,
  .floating,
  .glow,
  .tilt{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .18s !important;
  }
  html{
    scroll-behavior: smooth;
  }

  /* Floating contact pills move above sticky CTA */
  .floating-contact,
  .floating-pills,
  .floating-actions{
    bottom: 86px !important;
  }

  /* Contact and forms */
  .form-pretty .input,
  .input{
    min-height: 48px !important;
    border-radius: 16px !important;
  }
  textarea.input{
    min-height: 132px !important;
  }

  /* Footer breathing room above sticky CTA */
  .footer{
    padding-bottom: 110px !important;
  }

  /* Sticky premium CTA */
  .mobile-premium-cta{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(8,15,30,0), rgba(8,15,30,.52) 22%, rgba(8,15,30,.82));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .mobile-premium-cta-inner{
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 10px;
    max-width: 680px;
    margin: 0 auto;
  }
  .mobile-premium-cta .mp-cta{
    min-height: 50px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -.01em;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 10px 30px rgba(2,8,23,.22);
  }
  .mobile-premium-cta .mp-cta.primary{
    color: #fff;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  }
  .mobile-premium-cta .mp-cta.ghost{
    color: var(--text);
    background: rgba(255,255,255,.08);
  }

  /* Slightly better nav touch targets */
  .nav a,
  .menu a,
  .nav-dropdown a,
  button,
  .btn{
    min-height: 44px;
  }
}

/* Hide sticky CTA on desktop */
@media (min-width: 769px){
  .mobile-premium-cta{ display:none !important; }
}


/* === V129: mobile fixes for slider, contact, direct contact and CTA behavior === */
@media (max-width: 768px){

  /* Bewertungen: kein Marquee auf Mobile, stattdessen horizontal scrollbar-snap */
  .t-slider{
    overflow: visible !important;
  }
  .t-slider-viewport{
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 6px !important;
  }
  .t-slider-viewport::-webkit-scrollbar{
    height: 6px;
  }
  .t-slider-viewport::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.16);
    border-radius: 999px;
  }
  .t-track{
    animation: none !important;
    width: auto !important;
    display: flex !important;
    gap: 12px !important;
    padding: 2px 2px 8px 2px !important;
  }
  .t-slide{
    min-width: 88% !important;
    max-width: 88% !important;
    scroll-snap-align: start !important;
    flex: 0 0 88% !important;
  }

  /* Kontakt / Direktkontakt: alles in eine saubere Spalte, nichts abschneiden */
  #kontakt .kontakt-grid,
  #kontakt .contact-grid,
  #kontakt .svc2-contact-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  #kontakt .kontakt-grid > *,
  #kontakt .contact-grid > *,
  #kontakt .svc2-contact-grid > *,
  #kontakt .svc2-contact-card,
  #kontakt .map-wide-card,
  #kontakt .card,
  #kontakt .feature{
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  #kontakt .map-wide-head{
    align-items: flex-start !important;
  }
  #kontakt .map-wide-head > *{
    min-width: 0 !important;
  }
  #kontakt h2,
  #kontakt h3,
  #kontakt p,
  #kontakt a,
  #kontakt .small{
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  /* Form fields and direct contact tiles: prevent right clipping */
  .form-pretty,
  .form-pretty .field-row,
  .form-pretty .field,
  .form-pretty .field-full{
    min-width: 0 !important;
    width: 100% !important;
  }
  .form-pretty .field-row{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .form-pretty .input{
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* floating contact pills and sticky CTA: integrated on first view */
  [data-mobile-floating]{
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: none !important;
    z-index: 61 !important;
    transition: opacity .25s ease, transform .25s ease !important;
  }
  [data-mobile-floating].is-hidden-mobile{
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(16px) !important;
  }
  [data-mobile-floating] .fc-list,
  [data-mobile-floating] .floating-contact-inner,
  [data-mobile-floating] .floating-pills-inner{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  [data-mobile-floating] .fc-item,
  [data-mobile-floating] .pill,
  [data-mobile-floating] a{
    min-height: 46px !important;
    border-radius: 16px !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  [data-mobile-premium-cta]{
    bottom: 12px !important;
    padding: 0 12px calc(0px + env(safe-area-inset-bottom)) !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: opacity .25s ease, transform .25s ease !important;
    z-index: 60 !important;
  }
  [data-mobile-premium-cta].is-hidden-mobile{
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(16px) !important;
  }
  .mobile-premium-cta-inner{
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .mobile-premium-cta .mp-cta{
    min-height: 46px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(2,8,23,.18) !important;
  }

  /* ensure footer no giant dead space if CTA hides on scroll */
  .footer{
    padding-bottom: 28px !important;
  }
}


/* === V131: mobile floating contact pills once-hide fix === */
@media (max-width: 768px){
  .floating-contact.is-hidden-mobile,
  [data-mobile-floating].is-hidden-mobile{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(18px) !important;
  }
}


/* === V132: reliable mobile pill visibility state === */
@media (max-width: 768px){
  .floating-contact,
  [data-mobile-floating]{
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease !important;
  }

  .floating-contact.is-hidden-mobile,
  [data-mobile-floating].is-hidden-mobile{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(18px) !important;
  }
}
