:root{
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.12);
  --brand: #5eead4;
  --brand2: #60a5fa;
  --shadow: 0 18px 45px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1140px;
  --pad: 20px;
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust: 100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(96,165,250,0.18), transparent 55%),
    radial-gradient(900px 700px at 85% 25%, rgba(94,234,212,0.14), transparent 55%),
    radial-gradient(800px 600px at 55% 90%, rgba(255,255,255,0.06), transparent 55%),
    #060a14;
  line-height: 1.55;
}
a{ color: inherit; text-decoration:none; }
a:hover{ opacity:0.92; }
.container{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(6,10,20,0.72);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
  transform: translateZ(0);
}
.topbar.is-scrolled{
  background: rgba(6,10,20,0.88);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}


.nav{ display:flex; align-items:center; justify-content:space-between; gap: 14px; padding: 14px 0; }

.brand{ display:flex; align-items:center; gap: 12px; min-width: 240px; }
.brand img{ width: 66px; height: 66px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35)); }
.brand strong{ display:block; font-size: 15px; letter-spacing: 0.2px; }
.brand span{ display:block; font-size: 12px; color: var(--muted); margin-top: 1px; }

.navlinks{ display:flex; align-items:center; gap: 18px; font-size: 13px; color: var(--muted); }
.navlinks a{ padding: 8px 10px; border-radius: 999px; }
.navlinks a:hover{ background: rgba(255,255,255,0.06); color: var(--text); }

.actions{ display:flex; gap: 10px; align-items:center; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 10px;
  padding: 11px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.05); color: var(--text); font-size: 13px; cursor:pointer;
}
.btn:hover{ background: rgba(255,255,255,0.08); }
.btn.primary{
  border: 0;
  background: linear-gradient(135deg, rgba(94,234,212,0.95), rgba(96,165,250,0.95));
  color: #041018;
  font-weight: 700;
}
.btn.primary:hover{ filter: brightness(1.02); }

.burger{
  display:none;
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  cursor:pointer;
}
.burger span{
  display:block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.80);
  margin: 6px auto;
  border-radius: 999px;
}

.hero{ padding: 46px 0 26px; position: relative; overflow:hidden; }
.hero::before{
  content:"";
  position:absolute;
  inset: -80px -80px auto -80px;
  height: 420px;
  background: url("./../img/pattern.svg");
  opacity: 0.35;
  mask-image: radial-gradient(400px 260px at 30% 55%, #000 45%, transparent 70%);
}
.heroGrid{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; align-items: start; }

.kicker{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted); font-size: 12px;
}
.dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(94,234,212,0.10);
}

/* GROßES LOGO – statt großer Überschrift */
.logoBox{
  margin-top: 18px;
  padding: 20px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  width: 100%;
  max-width: 920px;
  position: relative;
  overflow: hidden;
}

.logoBox img{
  width: clamp(320px, 46vw, 680px);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.45));
  position: relative;
  z-index: 1;
  animation: logoPulse 4.4s ease-in-out infinite;
}


.logoBox .t1{ font-weight: 900; letter-spacing: 0.2px; font-size: 18px; }
.logoBox .t2{ color: var(--muted); font-size: 12.5px; margin-top: 2px; max-width: 48ch; }

.lead{ color: var(--muted); font-size: 15px; max-width: 62ch; margin: 12px 0 18px; }
.heroCtas{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h3{ margin:0 0 8px; font-size: 15px; }
.small{ font-size: 12px; color: var(--muted); }

.quick{ margin-top: 12px; display:grid; gap: 10px; }
.quickRow{ display:flex; gap: 10px; align-items:flex-start; color: var(--muted); font-size: 13px; }
.badge{ flex:0 0 auto; width: 34px; height: 34px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); display:grid; place-items:center; }
.badge svg{ width: 18px; height: 18px; color: var(--text); opacity: 0.9; }

section{ padding: 26px 0; }
.sectionHead{ display:flex; align-items:flex-end; justify-content:space-between; gap: 14px; margin-bottom: 12px; }
.sectionHead h2{ margin:0; font-size: 18px; letter-spacing: -0.2px; }
.sectionHead p{ margin:0; color: var(--muted); font-size: 13px; max-width: 64ch; }

.grid{ display:grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.service{ grid-column: span 4; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); background: rgba(255,255,255,0.05); padding: 16px; box-shadow: 0 10px 22px rgba(0,0,0,0.25); }
.service:hover{ background: rgba(255,255,255,0.065); }
.service h3{ margin: 6px 0 6px; font-size: 14px; }
.service p{ margin:0; color: var(--muted); font-size: 13px; }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.panel{ border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius2); background: rgba(255,255,255,0.045); padding: 18px; }
.panel h3{ margin:0 0 8px; font-size: 15px; }
.panel p{ margin:0; color: var(--muted); font-size: 13px; }

.list{ margin: 10px 0 0; padding: 0; list-style: none; display:grid; gap: 8px; }
.list li{ display:flex; gap: 10px; align-items:flex-start; color: var(--muted); font-size: 13px; }
.check{ width: 18px; height: 18px; border-radius: 6px; background: rgba(94,234,212,0.12); border: 1px solid rgba(94,234,212,0.28); display:grid; place-items:center; margin-top: 1px; flex: 0 0 auto; }
.check svg{ width: 12px; height: 12px; color: var(--brand); }

.form{ display:grid; gap: 10px; margin-top: 10px; }
.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  font-size: 13px;
  outline: none;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, textarea:focus{ border-color: rgba(96,165,250,0.55); box-shadow: 0 0 0 4px rgba(96,165,250,0.12); }
.hidden-hp{ display:none !important; }

.footer{ margin-top: 24px; border-top: 1px solid var(--line); padding: 18px 0; color: var(--muted); font-size: 12px; }
.footerRow{ display:flex; gap: 14px; align-items:center; justify-content:space-between; flex-wrap: wrap; }
.footer a{ color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover{ color: var(--text); }
.mobileOnly{ display:none; }

@media (max-width: 820px){ .heroGrid{ grid-template-columns: 1fr; } .split{ grid-template-columns: 1fr; } .service{ grid-column: span 6; } }
@media (max-width: 680px){
  .miniTrack{ display:none; }

  .navlinks{ display:none; }
  .burger{ display:inline-block; }
  .actions .btn:not(.primary){ display:none; }
  .service{ grid-column: span 12; }
  .row{ grid-template-columns: 1fr; }
  .mobileOnly{ display:block; }
  .navlinks.open{ display:flex; flex-direction:column; align-items:stretch; gap: 6px; padding: 10px 0 14px; }
  .navlinks.open a{ padding: 10px 12px; }
  .logoBox{
  margin-top: 18px;
  padding: 20px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  width: 100%;
  max-width: 720px;
  position: relative;
  overflow: hidden;
}

  .logoBox img{
  width: clamp(320px, 42vw, 560px);
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.45));
  position: relative;
  z-index: 1;
  animation: logoPulse 4.4s ease-in-out infinite;
}

}


/* Hero title sizing */
.heroTitle{font-weight:900;letter-spacing:-0.6px;line-height:1.05;font-size:clamp(34px,4.4vw,58px);margin:14px 0 10px;}


/* === Topbar Bauarbeiter-Animation (CSS-only) === */
.miniTrack{
  display:flex; align-items:center; gap:10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  min-width: 220px;
  white-space: nowrap;
}
.miniTrack .label{ font-size:12px; color: var(--muted); }
.track{
  position: relative;
  width: 150px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.track::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, rgba(94,234,212,0.00), rgba(94,234,212,0.28), rgba(96,165,250,0.28), rgba(96,165,250,0.00));
  transform: translateX(-80%);
  animation: trackSheen 2.6s linear infinite;
  opacity: 0.9;
}
.worker{
  position:absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  animation: workerMove 3.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.35));
}
.worker svg{ width: 100%; height: 100%; display:block; }
@keyframes workerMove{ 0%{ left: 8%; } 50%{ left: 92%; } 100%{ left: 8%; } }
@keyframes trackSheen{ 0%{ transform: translateX(-90%);} 100%{ transform: translateX(90%);} }

@media (max-width: 680px){
  .miniTrack{ display:none; }
}

.miniTrack .worker{ width:22px; height:22px; }
.miniTrack .worker svg{ width:100%; height:100%; }


/* === Full-width Bauarbeiter-Bar (langsamer, links→rechts, Icon gut sichtbar) === */
.topTrackWrap{
  width: 100%;
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.topTrackLabel{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.topTrack{
  position: relative;
  flex: 1;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: visible; /* Icon darf über die Linie ragen */
}
.topTrack::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(94,234,212,0.00),
    rgba(94,234,212,0.22),
    rgba(96,165,250,0.22),
    rgba(96,165,250,0.00)
  );
  transform: translateX(-90%);
  animation: topTrackSheen 3.4s linear infinite;
  opacity: 0.9;
}
.topWorker{
  position:absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  animation: topWorkerMove 10s linear infinite;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.45));
}
.topWorker svg{ width:100%; height:100%; display:block; }
@keyframes topWorkerMove{
  0%{ left: -6%; }
  100%{ left: 106%; }
}
@keyframes topTrackSheen{
  0%{ transform: translateX(-90%); }
  100%{ transform: translateX(90%); }
}
@media (max-width: 680px){
  /* .topTrackWrap bleibt auch auf Mobile sichtbar */
}


/* === Kontakt: kleine Standortkarte === */
.mapCard{
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  overflow: hidden;
}
.mapHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mapHead strong{ font-size: 12px; color: rgba(255,255,255,0.88); }
.mapHead span{ font-size: 12px; color: var(--muted); }
.mapFrame{
  width: 100%;
  height: 180px;
  border: 0;
  display:block;
  background: rgba(255,255,255,0.04);
}
.mapActions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px 12px;
}


/* === Referenzen / Galerie === */
.portfolioWrap{ margin-top: 8px; }
.baGrid{ display:grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 12px; }
.baItem{
  grid-column: span 6;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}
.baTop{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.baTop strong{ font-size: 13px; }
.baTop span{ font-size: 12px; color: var(--muted); }
.baStage{ display:flex; gap: 8px; }
.chip{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
.chip.done{ border-color: rgba(94,234,212,0.24); background: rgba(94,234,212,0.10); color: rgba(94,234,212,0.95); }

.baFrame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
}
.baFrame img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.baAfter{ clip-path: inset(0 50% 0 0); }
.baHandle{
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.65);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
  pointer-events: none;
}
.baKnob{
  position:absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%,-50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  display:grid;
  place-items:center;
  backdrop-filter: blur(10px);
}
.baKnob svg{ width: 18px; height: 18px; opacity: 0.9; }

.baRange{
  width: calc(100% - 24px);
  margin: 10px 12px 12px;
  accent-color: #5eead4;
}

.workGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.workItem{
  grid-column: span 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
  cursor: pointer;
  position: relative;
}
.workItem img{ width:100%; height: clamp(160px, 22vw, 240px); object-fit: cover; display:block; }
.workCap{
  padding: 10px 10px 11px;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
}
.workItem:hover{ transform: translateY(-1px); transition: transform 120ms ease; background: rgba(255,255,255,0.05); }

/* Lightbox */
.lb{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 1000;
  padding: 16px;
}
.lb.open{ display:flex; }
.lbInner{
  width: min(1100px, 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,14,24,0.85);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}
.lbTop{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}
.lbClose{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}
.lbImg{ width:100%; height: auto; display:block; background: rgba(255,255,255,0.02); }

@media (max-width: 980px){
  .baItem{ grid-column: span 12; }
  .workItem{ grid-column: span 6; }
  .workItem img{ height: 170px; }
}
@media (max-width: 680px){
  .workItem{ grid-column: span 12; }
  .workItem img{ height: 190px; }
}


/* Mobile-Tuning: Bauarbeiter-Bar sichtbar lassen */
@media (max-width: 680px){
  .topTrackWrap{
    padding: 8px 10px;
    margin-top: 8px;
    border-radius: 14px;
  }
  .topTrackLabel{ display:none; }
  .topTrack{ height: 14px; }
  .topWorker{ width: 32px; height: 32px; }
}

.baFrame{ touch-action: pan-y; cursor: ew-resize; }


/* Galerie-Kacheln: Pfeil-Hinweis */
.workArrow{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  display:grid;
  place-items:center;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  line-height: 1;
}
.workArrow svg{ width: 18px; height: 18px; }

/* Lightbox: Prev/Next Pfeile */
.lbStage{ position: relative; }
.lbNavBtn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.38);
  color: rgba(255,255,255,0.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  backdrop-filter: blur(10px);
  z-index: 3;
}
.lbNavBtn:hover{ background: rgba(255,255,255,0.08); }
.lbPrev{ left: 10px; }
.lbNext{ right: 10px; }
.lbNavBtn svg{ width: 20px; height: 20px; }
@media (max-width: 680px){
  .lbNavBtn{ width: 40px; height: 40px; border-radius: 14px; }
  .lbPrev{ left: 8px; }
  .lbNext{ right: 8px; }
}




/* iOS Safe-Area */
.topbar{ padding-top: env(safe-area-inset-top); }
.footer{ padding-bottom: calc(18px + env(safe-area-inset-bottom)); }


/* Accessibility */
:focus-visible{ outline: 2px solid rgba(96,165,250,0.75); outline-offset: 3px; border-radius: 12px; }


/* Responsive Nav ordering */
.topTrackWrap{ flex: 1 1 420px; }
@media (max-width: 980px){
  .nav{ gap: 10px; }
  .topTrackWrap{ flex-basis: 100%; order: 9; }
  .navlinks{ order: 6; }
  .actions{ order: 8; }
}
@media (max-width: 680px){
  .brand{ min-width: 0; }
  .brand img{ width: 52px; height: 52px; }
  .btn{ padding: 11px 13px; }
  .topTrackWrap{ margin-top: 6px; }
}


@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}


/* Button icon */
.btn .btnIco{ width:20px; height:20px; display:block; flex:0 0 auto; opacity:0.95; }


/* Fixes: Fixed header offset */
body{ padding-top: var(--topbarH, 96px); }
section{ scroll-margin-top: calc(var(--topbarH, 96px) + 16px); }


/* Vorher/Nachher Status-Chips (dynamisch) */
.chip.active{
  border-color: rgba(94,234,212,0.34);
  background: rgba(94,234,212,0.14);
  color: rgba(94,234,212,0.98);
}


/* === Premium 2026/27 Enhancements === */
.trustRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.trustChip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.84);
  font-size: 12px;
}
.trustChip strong{ color: rgba(255,255,255,0.92); font-weight: 800; }
.trustChip a{ text-decoration: underline; text-underline-offset: 3px; color: rgba(255,255,255,0.90); }
.trustChip .star{ color: rgba(94,234,212,0.95); font-weight: 900; }

.quickQuote{
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  padding: 14px;
}
.quickQuoteTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.quickQuoteTop h4{
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.2px;
}
.quickQuoteTop p{
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.qqGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.qqGrid .qqCol4{ grid-column: span 4; }
.qqGrid .qqCol6{ grid-column: span 6; }
.qqGrid .qqCol12{ grid-column: span 12; }
select.qq, input.qq{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  font-size: 13px;
  outline: none;
}
select.qq:focus, input.qq:focus{
  border-color: rgba(96,165,250,0.55);
  box-shadow: 0 0 0 4px rgba(96,165,250,0.12);
}
.qqBtnRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  justify-content:space-between;
}
.qqNote{ font-size: 12px; color: var(--muted); }

/* Sticky Mobile CTA */
.mCtaBar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6,10,20,0.86);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display:none;
}
.mCtaRow{
  display:grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 10px;
}
.mCtaBar .mBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
}
.mCtaBar .mBtn.primary{
  border: 0;
  background: linear-gradient(135deg, rgba(94,234,212,0.95), rgba(96,165,250,0.95));
  color: #041018;
  font-weight: 800;
}
.mCtaBar .mBtn svg{ width: 18px; height: 18px; }
@media (max-width: 680px){
  .mCtaBar{ display:block; }
  body{ padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
}

/* FAQ */
.faq{
  margin-top: 10px;
  display:grid;
  gap: 12px;
}
details.faqItem{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 12px 14px;
}
details.faqItem summary{
  cursor: pointer;
  list-style: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}
details.faqItem summary::-webkit-details-marker{ display:none; }
.faqIcon{
  width: 26px;
  height: 26px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.faqIcon svg{ width: 16px; height: 16px; opacity: 0.9; }
.faqBody{ margin-top: 10px; color: var(--muted); font-size: 13px; }
details[open] .faqIcon{ border-color: rgba(94,234,212,0.28); background: rgba(94,234,212,0.10); }

/* Map consent overlay */
.mapFrameWrap{ position: relative; }
.mapOverlay{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
  backdrop-filter: blur(6px);
}
.mapOverlayInner{
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(6,10,20,0.72);
  padding: 12px;
}
.mapOverlayInner strong{ font-size: 13px; display:block; margin-bottom: 4px; }
.mapOverlayInner p{ margin: 0 0 10px; color: var(--muted); font-size: 12px; }
.mapOverlayInner .btn{ width: 100%; justify-content:center; }

/* Slight premium polish */
.card, .panel, .service, .baItem, .workItem{ transform: translateZ(0); }

#lbPlay{ border-radius: 12px; }
#lbPlay.playing{ border-color: rgba(94,234,212,0.34); background: rgba(94,234,212,0.14); color: rgba(94,234,212,0.98); }



/* 2026/27 Device polish */
*{ -webkit-tap-highlight-color: transparent; }
body{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Leistungen: buntere Icon-Badges (nur in Leistungen) */
#leistungen .service .badge{
  width: 46px !important;
  height: 46px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0,0,0,0.28);
}
#leistungen .service .badge::after{
  content:"";
  position:absolute;
  inset:-12px;
  background: radial-gradient(220px 140px at 20% 20%, rgba(255,255,255,0.26), transparent 60%);
  opacity: 0.8;
}
#leistungen .service .badge svg{
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.96);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.28));
}

/* individuelle Farbverläufe */
#leistungen .service:nth-of-type(1) .badge{ background: linear-gradient(135deg, rgba(96,165,250,0.95), rgba(34,197,253,0.85)); }
#leistungen .service:nth-of-type(2) .badge{ background: linear-gradient(135deg, rgba(251,146,60,0.95), rgba(245,158,11,0.85)); }
#leistungen .service:nth-of-type(3) .badge{ background: linear-gradient(135deg, rgba(94,234,212,0.95), rgba(96,165,250,0.85)); }
#leistungen .service:nth-of-type(4) .badge{ background: linear-gradient(135deg, rgba(168,85,247,0.95), rgba(96,165,250,0.82)); }
#leistungen .service:nth-of-type(5) .badge{ background: linear-gradient(135deg, rgba(34,197,94,0.92), rgba(94,234,212,0.80)); }
#leistungen .service:nth-of-type(6) .badge{ background: linear-gradient(135deg, rgba(148,163,184,0.92), rgba(96,165,250,0.75)); }

/* Tablet-Optimierung: mehr Luft und bessere Spalten */
@media (max-width: 980px){
  .hero{ padding-top: 34px; }
  .service{ padding: 18px; }
  .workCap{ font-size: 12.5px; }
}
@media (max-width: 820px){
  .heroGrid{ gap: 16px; }
  .logoBox{ padding: 18px; }
}
@media (max-width: 680px){
  .nav{ padding: 12px 0; }
  .logoBox{ gap: 12px; }
}
