/* =========================================================================
   VESA — Eigene UI-Styles (ergänzt styles.css)
   ========================================================================= */

/* ---- A1: Blog/Rechtstexte Schriftfarbe -------------------------------
   .text-rich-text hat keine eigene color -> Safari erbt weiß (unlesbar).
   Dunkle Schrift erzwingen (Blog + Rechtstexte liegen beide auf hellem BG). */
.text-rich-text,
.text-rich-text h1,
.text-rich-text h2,
.text-rich-text h3,
.text-rich-text h4,
.text-rich-text p,
.text-rich-text li,
.text-rich-text strong,
.text-rich-text em,
.text-rich-text blockquote {
  color: #1a1a1a;
}
.text-rich-text a {
  color: #1a1a1a;
  text-decoration: underline;
}

/* ---- A2: Trust-Strip Logo-Marquee ------------------------------------
   Marquee-Animation ging bei der Migration verloren -> Strip stand still.
   Eigene Endlos-Animation; -50% = nahtloses Loop bei 2 duplizierten Reihen. */
@keyframes vesa-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logos_component {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: vesa-marquee 70s linear infinite;
  /* GPU-Layer fixieren: verhindert, dass Teile nach mehreren Loops nicht mehr neu
     gezeichnet werden ("rechte Haelfte fehlt"). */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* beide Logo-Sets duerfen NICHT schrumpfen, sonst klappt die zweite Haelfte zusammen */
.logos_component > .logos_row-second { flex: 0 0 auto; }
.logos_component .infinity-slider-logo { flex-shrink: 0; }
.section_logos:hover .logos_component {
  animation-play-state: paused;
}

/* ---- A3: Standorte pulsieren -----------------------------------------
   Puls-Ring (.location_dot-circle) expandiert + verblasst, je Standort versetzt. */
@keyframes vesa-pulse {
  0% { transform: scale(0.45); opacity: 0.95; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
.location_dot-circle {
  transform-origin: center;
  animation: vesa-pulse 2.6s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
}
.location_dot.is-left .location_dot-circle { animation-delay: 0.2s; }
.location_dot.is-center-1 .location_dot-circle { animation-delay: 0.5s; }
.location_dot.is-center-2 .location_dot-circle { animation-delay: 0.8s; }
.location_dot.is-center-3 .location_dot-circle { animation-delay: 1.1s; }
.location_dot.is-center-4 .location_dot-circle { animation-delay: 1.4s; }
.location_dot.is-center-5 .location_dot-circle { animation-delay: 1.7s; }

@media (prefers-reduced-motion: reduce) {
  .logos_component,
  .location_dot-circle,
  .contact_dot { animation: none; }
}

/* ---- Scroll-Reveal -----------------------------------------------------
   Nur bei aktivem JS verstecken (html.js), sonst sichtbar (kein FOUC ohne JS). */
html.js [data-fade-in-bottom]:not(.is-revealed) {
  opacity: 0;
  transform: translateY(1.5rem);
}
[data-fade-in-bottom] {
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
[data-fade-in-bottom].is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-fade-in-bottom]:not(.is-revealed) { opacity: 1; transform: none; }
  [data-fade-in-bottom] { transition: none; }
}

/* ---- Mobile-Navigation -------------------------------------------------
   <=991px ist .ui-nav-menu per Base-CSS display:none. Bei .is-nav-open
   klappt es als Panel unter der Navbar auf. */
@media screen and (max-width: 991px) {
  .navbar.ui-nav.is-nav-open .ui-nav-menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 5%;
    background-color: #0f1115;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    z-index: 60;
  }
  .navbar.ui-nav .ui-nav-button {
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .navbar.ui-nav.is-nav-open .ui-nav-button {
    opacity: 0.7;
  }
}

/* ---- Kontakt-Sektion: heller Abschluss-Fade -----------------------------
   Großer, weicher Verlauf von reinem Weiß (oben) in ein edles helles Brand-Blau
   (unten), plus zwei subtile Mesh-Radials für Tiefe. Heller Grund → dunkler
   Text. Das alte dunkle Bild ist bewusst raus (Dennis: „großer heller Fade"). */
.contact_bg {
  background-color: #ffffff;
  background-image:
    radial-gradient(95% 70% at 8% 0%, rgba(0, 116, 191, 0.08) 0%, rgba(0, 116, 191, 0) 55%),
    radial-gradient(120% 95% at 95% 100%, rgba(0, 142, 201, 0.22) 0%, rgba(0, 142, 201, 0) 58%),
    linear-gradient(170deg, #ffffff 0%, #eef6fc 44%, #d7eaf8 100%);
  background-repeat: no-repeat;
}
.contact_bg .contact_overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 50% 0%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
}

/* ---- Kontakt: Hover-States + Erreichbar-Puls (A5) ------------------------
   Buttons heben leicht ab, Kontaktboxen bekommen einen Brand-Akzent-Ring
   (box-shadow statt Border → kein Layout-Shift). Der grüne Erreichbar-Punkt
   pulsiert dezent als „live"-Signal. */
.section_contact .button.ui-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.section_contact .button.ui-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 116, 191, 0.3);
  filter: brightness(1.04);
}
.contact_split-box,
.contact_middle {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact_split-box:hover {
  transform: translateY(-2px);
  background-color: rgba(0, 0, 0, 0.82);
  box-shadow: 0 0 0 1px rgba(0, 116, 191, 0.55), 0 10px 24px rgba(0, 0, 0, 0.38);
}
.contact_dot {
  animation: vesa-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes vesa-dot-pulse {
  0%, 100% { box-shadow: 0 0 0.5rem 2px #02bf69; }
  50% { box-shadow: 0 0 0.95rem 4px #02bf69; }
}

/* ---- Branchen-Tabs ------------------------------------------------------
   Gradient-Overlay hatte transition:all -> ruckelte beim Tab-Wechsel.
   Auf opacity beschränken; Bilder werden per JS vorab dekodiert. */
.industry_bg-gradient {
  transition: opacity 0.3s ease;
}
.industry_bg-img {
  transition: opacity 0.3s ease;
}

/* ---- Video-Lightbox ----------------------------------------------------- */
.vesa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.vesa-lightbox.is-open { display: flex; }
.vesa-lightbox_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  animation: vesa-lb-fade 0.25s ease;
}
.vesa-lightbox_frame {
  position: relative;
  width: min(940px, 90vw);
  aspect-ratio: 940 / 529;
  z-index: 1;
  animation: vesa-lb-pop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vesa-lightbox_video,
.vesa-lightbox_video iframe,
.vesa-lightbox_video video {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.75rem;
  background: #000;
}
.vesa-lightbox_video video { object-fit: contain; display: block; }
.vesa-lightbox_close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.vesa-lightbox_close:hover { opacity: 1; }
@keyframes vesa-lb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vesa-lb-pop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* =========================================================================
   Landingpages (/leistungen/<service>/<stadt>/) — helles, conversion-fokussiertes
   Design-System. Generiert von scripts/build-localpages.mjs. Namespaced auf
   .lp-body, greift NICHT in die dunkle Hauptsite.
   ========================================================================= */
.lp-body {
  --lp-bg: #ffffff;
  --lp-alt: #f4f7f9;
  --lp-ink: #14181d;
  --lp-soft: #545c64;
  --lp-line: #e5e9ed;
  --lp-blue: #0074bf;
  --lp-blue-d: #015b97;
  --lp-tint: #eaf4fb;
  --lp-radius: 16px;
  background: var(--lp-bg);
  color: var(--lp-ink);
  -webkit-font-smoothing: antialiased;
}
.lp-body a { text-decoration: none; }
.lp-body a:not([class]) { color: inherit; }
.lp-wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---- Buttons ---- */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.97rem; line-height: 1; text-align: center;
  padding: 0.85rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.lp-btn-lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; }
.lp-btn-primary { background: var(--lp-blue); color: #fff; }
.lp-btn-primary:hover { background: var(--lp-blue-d); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 116, 191, .28); }
.lp-btn-ghost { background: #fff; color: var(--lp-ink); border-color: var(--lp-line); }
.lp-btn-ghost:hover { border-color: var(--lp-ink); transform: translateY(-2px); }
.lp-btn-white { background: #fff; color: var(--lp-blue-d); }
.lp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .18); }
.lp-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.lp-btn-outline-white:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* ---- Header (solid hell, sticky) ---- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.lp-header.is-scrolled { border-color: var(--lp-line); box-shadow: 0 8px 24px rgba(16, 22, 30, .06); }
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp-logo { display: inline-flex; align-items: center; }
.lp-logo img { height: 26px; width: auto; display: block; }
.lp-header-cta { display: flex; align-items: center; gap: 1.25rem; }
.lp-header-phone { font-weight: 600; color: var(--lp-ink); white-space: nowrap; }
.lp-header-phone:hover { color: var(--lp-blue); }

/* ---- Hero (helles Split-Layout: Text links, echtes Foto rechts + Float-Karte) ---- */
.lp-hero { padding: clamp(3rem, 5vw, 5rem) 0 clamp(3.5rem, 6vw, 5.5rem); }
.lp-hero-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(2.5rem, 5.5vw, 5rem); align-items: center; }
.lp-hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.8rem); line-height: 1.02; letter-spacing: -0.03em; font-weight: 700; margin: 0 0 1.5rem; text-wrap: balance; }
.lp-accent { color: var(--lp-blue); }
.lp-hero .lp-lead { font-size: clamp(1.12rem, 1.7vw, 1.38rem); line-height: 1.6; color: var(--lp-soft); max-width: 38rem; margin: 0 0 2.25rem; }
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.lp-hero .lp-trust { margin-top: 1.6rem; color: var(--lp-soft); font-size: 0.92rem; }
.lp-lead { font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.6; color: var(--lp-soft); max-width: 40rem; margin: 0 0 1.6rem; }
.lp-trust { margin: 1.2rem 0 0; font-size: 0.86rem; color: var(--lp-soft); }
.lp-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #02bf69; box-shadow: 0 0 0 3px rgba(2, 191, 105, .25); flex: none; }
.lp-hero-media { position: relative; }
.lp-hero-media img { width: 100%; height: clamp(440px, 66vh, 680px); object-fit: cover; border-radius: 26px; box-shadow: 0 40px 90px rgba(16, 22, 30, .22); }
.lp-hero-card { position: absolute; left: -1.5rem; bottom: 2rem; display: flex; flex-direction: column; gap: 0.2rem; background: #fff; padding: 1.05rem 1.35rem; border-radius: 16px; box-shadow: 0 24px 50px rgba(16, 22, 30, .18); }
.lp-hero-card strong { font-size: 1.02rem; font-weight: 700; color: var(--lp-ink); line-height: 1.15; }
.lp-hero-card span { font-size: 0.85rem; color: var(--lp-soft); }
@media (max-width: 860px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-media { order: -1; }
  .lp-hero-media img { height: clamp(260px, 42vh, 380px); }
  .lp-hero-card { left: 1rem; bottom: 1rem; }
}

/* ---- Stat-Band (Vertrauens-Brücke direkt unter dem Hero) ---- */
.lp-statband-wrap { background: #fff; }
.lp-statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: clamp(2.2rem, 4vw, 3.2rem) 0; }
.lp-stat { position: relative; text-align: center; display: flex; flex-direction: column; gap: 0.4rem; padding: 0 0.5rem; }
.lp-stat:not(:last-child)::after { content: ""; position: absolute; right: -0.75rem; top: 12%; bottom: 12%; width: 1px; background: var(--lp-line); }
.lp-stat-num { font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; color: var(--lp-ink); line-height: 1; }
.lp-stat-label { font-size: 0.88rem; color: var(--lp-soft); line-height: 1.35; }

/* ---- Detail-Foto (echtes VESA-Bild im Leistungsumfang) ---- */
.lp-detail-media { aspect-ratio: 4 / 3; }
.lp-detail-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: 0 24px 50px rgba(16, 22, 30, .14); }
.lp-detail-copy .lp-checklist { margin: 1.4rem 0; }
.lp-detail-copy .lp-btn { margin-top: 0.5rem; }

/* ---- Service-Pills (alle Leistungen, unten) ---- */
.lp-pills-sec { text-align: center; }
.lp-pills-sec .lp-head { margin-left: auto; margin-right: auto; }
.lp-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.lp-pill { padding: 0.7rem 1.3rem; border-radius: 999px; border: 1px solid var(--lp-line); background: #fff; font-weight: 600; font-size: 0.95rem; color: var(--lp-ink); transition: transform .18s ease, border-color .18s ease, color .18s ease, background-color .18s ease; }
.lp-pill:hover { transform: translateY(-2px); border-color: var(--lp-blue); color: var(--lp-blue); }
.lp-pill.is-active { background: var(--lp-blue); border-color: var(--lp-blue); color: #fff; }

/* ---- Trust-Strip (echte Kundenlogos) ---- */
.lp-trust-strip { background: #fff; border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); padding: clamp(1.75rem, 3vw, 2.5rem) 0; }
.lp-trust-label { display: block; text-align: center; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--lp-soft); margin-bottom: 1.5rem; }
.lp-trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 4rem); }
.lp-trust-logos img { height: clamp(26px, 3vw, 40px); width: auto; object-fit: contain; opacity: 0.62; filter: grayscale(100%); transition: opacity 0.2s ease, filter 0.2s ease; }
.lp-trust-logos img:hover { opacity: 1; filter: grayscale(0); }

/* ---- Warum-Liste (saubere Reihen statt schiefem Karten-Grid) ---- */
.lp-why-list { border-top: 1px solid var(--lp-line); }
.lp-why-row { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(1.4rem, 2.5vw, 2rem) 0; border-bottom: 1px solid var(--lp-line); align-items: baseline; }
.lp-why-n { font-size: 1rem; font-weight: 700; color: var(--lp-blue); font-variant-numeric: tabular-nums; }
.lp-why-c { display: grid; grid-template-columns: minmax(12rem, 1fr) 2fr; gap: clamp(0.5rem, 2vw, 2.5rem); align-items: baseline; }
.lp-why-c h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
.lp-why-c p { color: var(--lp-soft); line-height: 1.6; }
@media (max-width: 760px) { .lp-why-c { grid-template-columns: 1fr; gap: 0.4rem; } }

/* ---- Google-Bewertung + Kundenstimmen ---- */
.lp-google { display: inline-flex; align-items: center; gap: 0.6rem; background: #fff; border: 1px solid var(--lp-line); border-radius: 999px; padding: 0.7rem 1.3rem; margin-bottom: 2.5rem; box-shadow: 0 8px 24px rgba(16, 22, 30, .06); }
.lp-tstars { color: #f5a623; letter-spacing: 0.08em; font-size: 1.05rem; }
.lp-google strong { font-size: 1.15rem; font-weight: 700; }
.lp-google-label { color: var(--lp-soft); font-size: 0.92rem; }
.lp-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.lp-tcard { background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.lp-tcard blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--lp-ink); }
.lp-tcard figcaption { margin-top: auto; }
.lp-tcard figcaption strong { display: block; font-size: 0.95rem; }
.lp-tcard figcaption span { font-size: 0.88rem; color: var(--lp-soft); }
@media (max-width: 860px) { .lp-testi-grid { grid-template-columns: 1fr; } }

/* ---- Breadcrumb ---- */
.lp-breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--lp-soft); }
.lp-breadcrumb a:hover { color: var(--lp-blue); }
.lp-bc-sep { opacity: 0.4; }

/* ---- Sektionen ---- */
.lp-section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.lp-body [id] { scroll-margin-top: 84px; }
.lp-section-alt { background: var(--lp-alt); }
.lp-head { max-width: 46rem; margin: 0 0 2.2rem; }
.lp-eyebrow { display: inline-flex; align-items: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lp-blue); margin-bottom: 0.8rem; }
.lp-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lp-blue); margin-right: 0.7rem; }
.lp-section h2, .lp-cta-inner h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 1rem; font-weight: 700; }
.lp-sub { font-size: 1.08rem; line-height: 1.6; color: var(--lp-soft); margin: 0; }

/* ---- Warum anders (Diff-Grid) ---- */
.lp-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.lp-diff { display: flex; gap: 1rem; padding: 1.6rem 1.5rem; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.lp-diff:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(16, 22, 30, .08); border-color: #d3dae1; }
.lp-diff-num { font-size: 0.95rem; font-weight: 700; color: var(--lp-blue); opacity: 0.55; }
.lp-diff h3 { font-size: 1.08rem; margin: 0 0 0.4rem; font-weight: 600; }
.lp-diff p { margin: 0; color: var(--lp-soft); line-height: 1.55; font-size: 0.97rem; }

/* ---- Detail (Checkliste) ---- */
.lp-detail-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.lp-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.lp-checklist li { position: relative; padding-left: 2.1rem; line-height: 1.5; color: var(--lp-ink); }
.lp-checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.05em; width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--lp-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230074bf' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
}

/* ---- Ablauf (Steps) ---- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.lp-step { position: relative; padding: 1.8rem 1.6rem; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); }
.lp-step-num { display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--lp-blue); color: #fff; font-weight: 700; margin-bottom: 1rem; }
.lp-step h3 { font-size: 1.12rem; margin: 0 0 0.4rem; }
.lp-step p { margin: 0; color: var(--lp-soft); line-height: 1.55; }

/* ---- Quote ---- */
.lp-quote { margin: 0; max-width: 48rem; }
.lp-quote p { font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.4; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 1rem; }
.lp-quote cite { font-style: normal; color: var(--lp-soft); font-weight: 500; }

/* ---- FAQ-Accordion ---- */
.lp-faq-wrap { max-width: 52rem; }
.lp-faq { display: grid; gap: 0.7rem; }
.lp-faq-item { border: 1px solid var(--lp-line); border-radius: 14px; background: #fff; overflow: hidden; }
.lp-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.15rem 1.4rem; font-size: 1.04rem; font-weight: 600; color: var(--lp-ink); font-family: inherit; }
.lp-faq-ic { position: relative; flex: none; width: 1.1rem; height: 1.1rem; }
.lp-faq-ic::before, .lp-faq-ic::after { content: ""; position: absolute; background: var(--lp-blue); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.lp-faq-ic::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.lp-faq-ic::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.lp-faq-item.is-open .lp-faq-ic::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.lp-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.lp-faq-item.is-open .lp-faq-a { grid-template-rows: 1fr; }
.lp-faq-a > p { overflow: hidden; margin: 0; padding: 0 1.4rem; color: var(--lp-soft); line-height: 1.6; }
.lp-faq-item.is-open .lp-faq-a > p { padding-bottom: 1.25rem; }

/* ---- Related Chips ---- */
.lp-related { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 2rem; }
.lp-related-label { font-size: 0.9rem; color: var(--lp-soft); margin-right: 0.25rem; }
.lp-chip { font-size: 0.9rem; padding: 0.5rem 0.9rem; border-radius: 999px; border: 1px solid var(--lp-line); color: var(--lp-ink); transition: border-color .18s ease, background-color .18s ease, color .18s ease; }
.lp-chip:hover { border-color: var(--lp-blue); color: var(--lp-blue); background: var(--lp-tint); }
.lp-chip-hub { font-weight: 600; color: var(--lp-blue); border-color: transparent; }

/* ---- Hub: Service-Karten ---- */
.lp-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.lp-svc-card { position: relative; padding: 1.7rem 1.6rem 2.6rem; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.lp-svc-card:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(16, 22, 30, .09); border-color: #d3dae1; }
.lp-svc-card h3 { font-size: 1.18rem; margin: 0 0 0.5rem; }
.lp-svc-card p { margin: 0; color: var(--lp-soft); line-height: 1.5; font-size: 0.97rem; }
.lp-svc-arrow { position: absolute; right: 1.5rem; bottom: 1.4rem; color: var(--lp-blue); font-size: 1.2rem; transition: transform .2s ease; }
.lp-svc-card:hover .lp-svc-arrow { transform: translateX(4px); }

/* ---- CTA-Band ---- */
.lp-cta-band { background: linear-gradient(135deg, #0074bf 0%, #015b97 100%); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.lp-cta-inner { max-width: 44rem; }
.lp-cta-inner h2 { color: #fff; }
.lp-cta-inner p { color: rgba(255, 255, 255, .88); font-size: 1.1rem; line-height: 1.55; margin: 0 0 1.7rem; }

/* ---- Footer ---- */
.lp-footer { border-top: 1px solid var(--lp-line); padding: 2.2rem 0; }
.lp-footer-inner { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between; }
.lp-footer-brand { display: flex; align-items: center; gap: 0.85rem; color: var(--lp-soft); font-size: 0.9rem; }
.lp-footer-brand img { height: 24px; width: auto; }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.9rem; }
.lp-footer-links a { color: var(--lp-soft); }
.lp-footer-links a:hover { color: var(--lp-blue); }

/* ---- Sticky-CTA (mobil) ---- */
.lp-stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 0.6rem; padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
  background: rgba(255, 255, 255, .94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--lp-line); box-shadow: 0 -8px 24px rgba(16, 22, 30, .08);
  transform: translateY(120%); transition: transform .3s ease;
}
.lp-stickycta .lp-btn { flex: 1; }
.lp-stickycta.is-visible { transform: translateY(0); }

/* ---- Reveal ---- */
.lp-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.lp-reveal.is-in { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media screen and (max-width: 991px) {
  .lp-diff-grid, .lp-steps, .lp-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-media { order: -1; }
  .lp-hero-media img { max-height: 320px; }
  .lp-detail-grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 640px) {
  .lp-diff-grid, .lp-steps, .lp-svc-grid { grid-template-columns: 1fr; }
  .lp-statband { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
  .lp-stat::after { display: none; }
  .lp-header-phone { display: none; }
  .lp-stickycta { display: flex; }
  .lp-cta-row .lp-btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-hero-bg img, .lp-scroll span { animation: none; }
}

/* =========================================================================
   Politur-Runde 2 (Dennis-Feedback)
   ========================================================================= */

/* N1 — Hero: schweres Dunkel-Radial raus, damit das Leipzig-Bild durchkommt.
   Statt Vollflächen-Abdunkelung nur links abdunkeln (Text-Lesbarkeit) + sanfter
   Boden-Verlauf (blendet in die Trust-Strip-Sektion). Rechts/Himmel bleibt frei. */
.hero_overlay {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.5) 100%);
}

/* N2 — Team-Grafiken auf breiten/Ultrawide-Monitoren weiter nach außen schieben.
   Auf normalem Desktop unverändert; ab 1600px / 2000px wachsen die negativen
   Offsets, damit die Grafiken nicht in der Mitte „kleben". */
@media screen and (min-width: 1600px) {
  .employees_img-1 { left: -23rem; }
  .employees_img-2 { left: -22rem; }
  .employees_img-3 { left: -19rem; }
  .employees_img-4 { right: -18rem; }
  .employee_img-5 { right: -21rem; }
  .employee_img-6 { right: -26rem; }
}
@media screen and (min-width: 2000px) {
  .employees_img-1 { left: -31rem; }
  .employees_img-2 { left: -30rem; }
  .employees_img-3 { left: -27rem; }
  .employees_img-4 { right: -26rem; }
  .employee_img-5 { right: -29rem; }
  .employee_img-6 { right: -34rem; }
}

/* N3 — Blog-Vorschaukarten: Titel + Text waren creme (#FCF7F5) auf weißer Karte
   → unlesbar. Karten liegen auf hellem BG, also dunkle Schrift erzwingen. */
.section_blog .blog_link h1,
.section_blog .blog_link h2,
.section_blog .blog_link h3,
.section_blog .blog_link h4,
.section_blog .blog_link p {
  color: #1a1a1a;
}

/* =========================================================================
   Navigation: Floating-Pill (Menü A) + Scroll-Spy-„Schimmer".
   Erscheint erst ab dem „Vesa"-Abschnitt (.is-shown via app.js). Alte
   Webflow-Bottom-Pill ist aus.
   ========================================================================= */
.navbar.ui-nav { display: none !important; }
section[id] { scroll-margin-top: 96px; }

.vnav {
  position: fixed; left: 50%; bottom: 1.75rem; z-index: 200;
  display: flex; align-items: center; gap: 0.2rem;
  background: linear-gradient(180deg, rgba(30, 32, 36, 0.55) 0%, rgba(12, 14, 17, 0.42) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(170%); backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.10); padding: 0.45rem 0.55rem; border-radius: 999px;
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.24),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.05),
    inset 0 -12px 22px rgba(0, 0, 0, 0.22),
    0 12px 32px rgba(0, 0, 0, 0.34),
    0 2px 8px rgba(0, 0, 0, 0.24);
  opacity: 0; transform: translateX(-50%) translateY(150%); pointer-events: none;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.vnav.is-shown { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.vnav a { position: relative; z-index: 1; padding: 0.55rem 0.95rem; border-radius: 999px; font-weight: 600; font-size: 0.93rem; color: rgba(255, 255, 255, 0.68); text-decoration: none; white-space: nowrap; transition: color 0.2s ease; }
.vnav a:hover, .vnav a.is-active { color: #ffffff; }
.vnav-ind { position: absolute; top: 0.45rem; bottom: 0.45rem; left: 0; border-radius: 999px; background: rgba(255, 255, 255, 0.13); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 4px 16px rgba(0, 116, 191, 0.30); opacity: 0; pointer-events: none; transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), width 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; }
.vnav-cta { margin-left: 0.35rem; background: #0074bf; color: #fff; font-weight: 600; padding: 0.6rem 1.2rem; }
.vnav-cta:hover { background: #015b97; color: #fff; }
@media (max-width: 820px) {
  /* Mobil: kein Pill-Menü (wrappte zum Blob) — nur ein schlanker schwebender
     „Kontakt aufnehmen"-Button unten rechts. */
  .vnav {
    left: auto; right: 1rem; bottom: 1rem;
    transform: translateY(150%);
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    border: 0; box-shadow: none; padding: 0; gap: 0;
  }
  .vnav.is-shown { transform: translateY(0); }
  .vnav a:not(.vnav-cta) { display: none; }
  .vnav-ind { display: none; }
  .vnav-cta { margin: 0; box-shadow: 0 8px 24px rgba(0, 116, 191, 0.45); }
}
@media (prefers-reduced-motion: reduce) { .vnav { transition: opacity 0.3s ease; } .vnav-ind { transition: opacity 0.2s ease; } }

/* Homepage-Buttons: Brand-Blau primär, Ghost sekundär (statt Silber-Gradient) */
.button.ui-button { background-color: #0074bf !important; background-image: none !important; color: #fff !important; border-color: transparent !important; }
.button.ui-button:hover { background-color: #015b97 !important; }
.button.is-secondary.ui-button { background-color: transparent !important; background-image: none !important; color: #fff !important; border-color: rgba(255, 255, 255, 0.45) !important; }
.button.is-secondary.ui-button:hover { background-color: rgba(255, 255, 255, 0.1) !important; border-color: #fff !important; }

/* =========================================================================
   Kontakt-Sektion → Konzept C2: kluger Spruch (Headline) statt VESA-Logo, zwei
   CTAs + Kontaktzeile, Trust-Badges klein ganz unten. Auf dem handshake-Backdrop.
   ========================================================================= */
/* Kein min-height:100vh mehr (das war der „Scroll-Effekt", der die Sektion
   bildschirmfüllend reinzog). Stattdessen großzügiges Padding, unten mehr. */
.section_contact { padding-top: clamp(4rem, 9vw, 7.5rem) !important; padding-bottom: clamp(6rem, 15vw, 13rem) !important; height: auto !important; min-height: 0 !important; }
.section_contact .contact_component {
  display: flex !important; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(1.8rem, 3.5vw, 2.8rem);
  max-width: 900px; margin-left: auto; margin-right: auto;
}
/* Reihenfolge: Spruch+CTAs+Zeile zuerst, Trust-Badges darunter */
.section_contact .contact_right { order: 1; display: flex; flex-direction: column; align-items: center; gap: 1.7rem; width: 100%; }
.section_contact .contact_left { order: 2; display: flex; flex-direction: column; align-items: center; gap: 1rem; background: none; border: 0; padding: 0; margin-top: 0.7rem; }
.section_contact .contact_logo { display: none !important; }
/* Trust-Badges sind cremeweiß (für dunkel gemacht) → dezenter dunkler Chip,
   damit sie auf dem hellen Grund lesbar bleiben. */
.section_contact .contact_badges {
  display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.1rem;
  padding: 0.65rem 1.25rem; border-radius: 999px;
  background: #0e1418; box-shadow: 0 14px 34px rgba(14, 20, 24, 0.18);
}
.section_contact .contact_badge { height: clamp(28px, 3.4vw, 36px); width: auto; }
/* Subtext + Erreichbarkeit sind in der hellen Variante sichtbar (dunkel) */
.section_contact .contact_text-max-width { display: block !important; max-width: 54ch; }
.section_contact .contact_text-max-width p { color: #51606e; font-size: clamp(1rem, 1.6vw, 1.12rem); line-height: 1.55; }
.section_contact .contact_middle { display: inline-flex !important; align-items: center; gap: 0.6rem; color: #41505e; font-size: 0.95rem; }
.section_contact .contact_middle .text-size-tiny { display: none; }      /* nur die Hauptzeile zeigen */
.section_contact .contact_middle .text-weight-medium { color: #41505e; }
.section_contact .contact_top { background: transparent !important; box-shadow: none !important; padding: 0 !important; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.section_contact .tagline { display: inline-flex; align-items: center; gap: 0.5rem; align-self: center; }
/* Tagline-Text nutzt sonst den weißen Gradient → auf hellem Grund unsichtbar */
.section_contact .tagline .text-style-gradient {
  background-image: none !important; -webkit-text-fill-color: #0074bf !important; color: #0074bf !important;
}
.section_contact .contact_inner { display: flex; flex-direction: column; align-items: center; gap: 1.7rem; }
.section_contact .contact_inner h2 {
  display: block !important; color: #0e1419;
  font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -0.03em; margin: 0; max-width: 15ch;
}
.section_contact .contact_inner h2 .text-color-grey { color: #8b97a5 !important; }
.section_contact .button-group { justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
.section_contact .button-group .button.ui-button { padding: 1.05rem 2rem; font-size: 1.02rem; }
/* sekundäre CTAs (Nachricht schreiben / Anrufen): saubere dunkle Outline auf hell */
.section_contact .button-group .is-secondary {
  display: inline-flex !important; align-items: center; gap: 0.5rem;
  background: #ffffff !important;
  border: 1px solid rgba(14, 20, 25, 0.22) !important;
  color: #0e1419 !important;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.section_contact .button-group .is-secondary:hover {
  background: #ffffff !important;
  border-color: #0074bf !important;
  box-shadow: 0 0 0 1px #0074bf, 0 12px 28px rgba(0, 116, 191, 0.14);
}
.section_contact .vesa-call-icon { width: 1rem; height: 1rem; filter: brightness(0); opacity: 0.8; }
/* Kontaktzeile: dezent, dunkel */
.section_contact .contact_split { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 1.4rem; }
.section_contact .contact_split-box {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none !important; border: 0 !important; padding: 0 !important; box-shadow: none !important;
  color: #51606e; font-size: 0.95rem; font-weight: 500; text-decoration: none;
}
.section_contact .contact_split-box div { text-decoration: none; }
.section_contact .contact_split-box:hover { color: #0074bf; background: none !important; box-shadow: none !important; }
.section_contact .contact_split-icon { width: 0.95rem; height: 0.95rem; filter: brightness(0); opacity: 0.6; }

/* =========================================================================
   Politur-Runde 3 (Dennis-Feedback)
   ========================================================================= */
/* Menü-Klick + alle Anker: smooth scrollen statt abrupt springen */
html { scroll-behavior: smooth; }

/* Trust-Strip-Marquee forcieren (Inline-Style hatte ihn auf animation:none) */
.section_logos .logos_component { animation: vesa-marquee 84s linear infinite !important; }
.section_logos .logos_row-second { animation: none !important; }
.section_logos:hover .logos_component { animation-play-state: paused !important; }

/* Hero-Button NICHT blau — weiß/clean. Andere Buttons (Kontakt) bleiben blau. */
.section_hero .button.ui-button { background-color: #ffffff !important; background-image: none !important; color: #14181c !important; border-color: transparent !important; }
.section_hero .button.ui-button:hover { background-color: #e9edf1 !important; }

/* Hero-Zweitbutton („Leistungen entdecken") — Frosted Glass statt nacktem Outline.
   Primärbutton bleibt weiß, der Zweite hebt sich glasig/blurry ab. */
.section_hero .button.is-secondary.ui-button {
  background-color: rgba(255, 255, 255, 0.12) !important;
  background-image: none !important;
  -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
  backdrop-filter: blur(12px) saturate(160%) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.22) !important;
}
.section_hero .button.is-secondary.ui-button:hover {
  background-color: rgba(255, 255, 255, 0.22) !important;
  border-color: #ffffff !important;
}

/* Kontakt: schwarze Box hinter „Projekt anfragen" weg (.contact_top war #000000b3) */
.section_contact .contact_top { background-color: transparent !important; box-shadow: none !important; }

/* Sektionen deutlich weiter auseinander — galt vorher nur ab 1200px UND war zu klein.
   Jetzt ungated + großzügig (Dennis mehrfach: „immer noch zu nah, mehr Abstand"). */
.section_vesa, .section_service, .section_industry, .section_employees,
.section_location, .section_blog, .section_clients {
  padding-top: clamp(4.5rem, 8vw, 10rem) !important;
  padding-bottom: clamp(4.5rem, 8vw, 10rem) !important;
}

/* Standorte: Puls KOMPLETT NEU (alter grauer Scale-Ring war kaum sichtbar).
   Jetzt ein klarer Radar-Ping in Brand-Blau: fester Mittelpunkt + expandierende
   Ringe (box-shadow), gestaffelt je Stadt. Original-Marker bleibt statisch sichtbar. */
.section_location .location_dot { z-index: 1; }
.section_location .location_dot-circle {
  animation: none !important;
  opacity: 1 !important;
  z-index: 2;
}
.section_location .location_dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 0.7rem; height: 0.7rem;
  margin: -0.35rem 0 0 -0.35rem;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(0, 116, 191, 0.5);
  animation: vesa-ping 2.6s cubic-bezier(0.2, 0.55, 0.3, 1) infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes vesa-ping {
  0%   { box-shadow: 0 0 0 0 rgba(0, 116, 191, 0.5); opacity: 1; }
  70%  { box-shadow: 0 0 0 1.7rem rgba(0, 116, 191, 0); opacity: 1; }
  100% { box-shadow: 0 0 0 1.7rem rgba(0, 116, 191, 0); opacity: 0.85; }
}
.section_location .location_dot.is-left::after     { animation-delay: 0.3s; }
.section_location .location_dot.is-center-1::after  { animation-delay: 0.6s; }
.section_location .location_dot.is-center-2::after  { animation-delay: 0.9s; }
.section_location .location_dot.is-center-3::after  { animation-delay: 1.2s; }
.section_location .location_dot.is-center-4::after  { animation-delay: 1.5s; }
.section_location .location_dot.is-center-5::after  { animation-delay: 1.8s; }

/* =========================================================================
   Standorte → angewinkelte 3D-Karte (CSS-3D): kräftiger Tilt + langsame
   Auto-Rotation + Maus-Parallax (JS: init3DMap). Pins liegen flach = Boden.
   ========================================================================= */
.section_location .location_component { perspective: 1300px; perspective-origin: 50% 38%; gap: clamp(2rem, 5vw, 6rem) !important; align-items: center; }
.section_location { padding-top: clamp(5rem, 11vw, 12rem) !important; padding-bottom: clamp(5rem, 11vw, 12rem) !important; }
.section_location .location_left {
  flex: none;
  width: clamp(22rem, 33vw, 32rem) !important;   /* minimal größer */
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(56deg);
  transform-origin: center 55%;
  will-change: transform;
}
.section_location .location_dot {
  transform-style: preserve-3d;
  margin: -1.625rem 0 0 -1.6rem;   /* Pin auf seinem Zentrum verankern (3.2×3.25rem) */
}
/* Pin-Positionen geo-akkurat: Mercator-Projektion der 7 Städte auf die native
   Karten-viewBox 360×486, per Render verifiziert. Stadt-Zuordnung beliebig
   (Pins identisch). bottom/right der Webflow-Basis wird explizit aufgehoben. */
.section_location .location_dot.is-center-1 { top: 20.6%; left: 44.8%; bottom: auto; right: auto; }  /* Hamburg */
.section_location .location_dot.is-center-2 { top: 34.4%; left: 81.8%; bottom: auto; right: auto; }  /* Berlin */
.section_location .location_dot.is-center-3 { top: 49.7%; left: 70.6%; bottom: auto; right: auto; }  /* Leipzig */
.section_location .location_dot.is-center-4 { top: 54.3%; left: 56.0%; bottom: auto; right: auto; }  /* Erfurt */
.section_location .location_dot.is-center-5 { top: 81.8%; left: 36.0%; bottom: auto; right: auto; }  /* Stuttgart */
.section_location .location_dot.is-left     { top: 54.9%; left: 11.8%; bottom: auto; right: auto; }  /* Köln */
.section_location .location_dot:not(.is-left):not(.is-center-1):not(.is-center-2):not(.is-center-3):not(.is-center-4):not(.is-center-5) {
  top: 89.5%; left: 62.0%; bottom: auto; right: auto;   /* München */
}
@media (max-width: 860px) {
  .section_location .location_component { perspective: none; gap: clamp(1.25rem, 6vw, 2.25rem) !important; }
  .section_location .location_left { transform: none !important; width: clamp(15rem, 68vw, 21rem) !important; }
}

/* =========================================================================
   Politur-Runde 4 (Dennis-Feedback)
   ========================================================================= */

/* Scroll-Vergleichssektion: war 500vh (5 Screens scrollen!) → deutlich kürzer,
   damit der „Problem → Lösung"-Wechsel mit ganz wenig Scrollen passiert. */
.section_animation { height: 270vh !important; }

/* Preloader töten: hatte ein Inline-style="display:flex" (Webflow-Rest) und
   blitzte daher bei JEDEM (Re)Load als VESA-Logo auf, das dann ausfadete —
   genau der „hässliche Schimmer". !important schlägt das Inline-display. */
.preloader { display: none !important; }

/* Video sitzt zu weit oben / zu nah an Team → klar nach unten schieben. */
.section_video { padding-top: clamp(7.5rem, 12vw, 14rem) !important; }

/* Branchen + Leistungen: Auto-Fade zwischen den Panes (sichtbarer Wechsel). */
.section_industry .ui-tab-pane.is-tab-active,
.section_service .ui-tab-pane.is-tab-active {
  animation: vesa-tab-fade 0.55s ease;
}
@keyframes vesa-tab-fade { from { opacity: 0.3; } to { opacity: 1; } }

/* Auto-Switch-Fortschritt als kleine, smoothe Progress-PILL oben rechts in der Box
   (Dennis: Ring ruckelte → scaleX-Transform ist butterweich auf GPU). Gleich für
   Branchen + Leistungen, je in der .ui-tab-content. */
.section_industry .ui-tab-content,
.section_service .ui-tab-content { position: relative; }
.section_industry .ui-tab-content { border-radius: 1.5rem; }
.tab-pill {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  width: 132px; height: 6px; border-radius: 99px;
  background: rgba(0, 116, 191, 0.20);   /* Track — auf hell & dunkel sichtbar */
  overflow: hidden; z-index: 9; pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.tab-pill::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: #0074bf; transform: scaleX(0); transform-origin: left center;
  will-change: transform;
}
.tab-pill.is-running::after { animation: tab-pill-fill var(--pilldur, 3000ms) linear; }
@keyframes tab-pill-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .tab-pill { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .section_industry .ui-tab-pane.is-tab-active,
  .section_service .ui-tab-pane.is-tab-active { animation: none; }
}

/* =========================================================================
   Kontakt-Funnel — Glas-Modal (öffnet via „Projekt anfragen" / „Nachricht schreiben")
   ========================================================================= */
/* overflow-x:clip statt hidden — verhindert horizontalen Overflow, OHNE GSAP ScrollTrigger
   zu brechen (hidden auf html/body macht body zum Scroll-Container -> Scroll-Story kaputt). */
html, body { overflow-x: clip; max-width: 100%; }
/* Logo-Marquee (sehr breite Scroll-Reihe) kapseln, sonst blaeht er den Layout-Viewport auf (Mobil-Overflow) */
.section_logos, .logos_wrapper { overflow: hidden; }
.vfunnel { position: fixed; inset: 0; box-sizing: border-box; z-index: 9998; display: none; align-items: center; justify-content: center; padding: 1rem; }
.vfunnel.is-open { display: flex; }
.vfunnel_backdrop { position: absolute; inset: 0; background: rgba(6, 8, 10, 0.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); animation: vesa-lb-fade 0.25s ease; }
/* Helles, cleanes Premium-Modal (passt zur Creme-Seite, schön einfach) */
.vfunnel_card {
  position: relative; z-index: 1; width: min(560px, calc(100vw - 2rem)); box-sizing: border-box;
  max-height: calc(100svh - 2rem); overflow-y: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: clamp(2rem, 5vw, 3rem);
  animation: vesa-lb-pop 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: #0b0d0f;
}
.vfunnel_close { position: absolute; top: 1.1rem; right: 1.2rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; font-size: 1.5rem; line-height: 1; color: #888; background: #f2f1ef; border: 0; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease; }
.vfunnel_close:hover { background: #e6e4e1; color: #0b0d0f; }
.vfunnel_eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #0074bf; }
.vfunnel_eyebrow::before { content: ""; width: 18px; height: 2px; background: #0074bf; }
.vfunnel_form { display: flex; flex-direction: column; }
.vfunnel_hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.vfunnel_err { color: #d6342c; font-size: 0.88rem; margin: 0.5rem 0 0; }
.vfunnel_done { text-align: center; padding: 1rem 0 0.5rem; }
.vfunnel_check { width: 3.6rem; height: 3.6rem; margin: 0 auto 1.2rem; border-radius: 50%; background: rgba(2, 191, 105, 0.12); color: #02bf69; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; }
.vfunnel_done h3 { font-size: 1.5rem; margin: 0 0 0.5rem; color: #0b0d0f; }
.vfunnel_done p { color: #666; line-height: 1.5; margin: 0; }
/* Step-Wizard: Progress-Bar, eine Frage pro Schritt, sanfter Übergang */
.vfunnel_bar { height: 4px; border-radius: 99px; background: #eceae7; overflow: hidden; margin: 1.1rem 0 2rem; }
.vfunnel_bar i { display: block; height: 100%; width: 0; background: #0074bf; border-radius: inherit; transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.vfunnel_step { transition: opacity 0.22s ease, transform 0.22s ease; }
.vfunnel_step.is-leaving { opacity: 0; transform: translateX(-14px); }
.vfunnel_q { font-size: clamp(1.5rem, 3.4vw, 2rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.12; margin: 0 0 0.4rem; color: #0b0d0f; }
.vfunnel_hint { color: #777; font-size: 0.95rem; line-height: 1.5; margin: 0 0 1.3rem; }
.vfunnel_q + .vfunnel_in, .vfunnel_hint + .vfunnel_in { margin-top: 1.3rem; }
.vfunnel_in {
  width: 100%; padding: 1.05rem 1.2rem; border-radius: 14px;
  border: 1.5px solid #e2e0dd; background: #faf9f7;
  color: #0b0d0f; font-size: 1.08rem; font-family: inherit; resize: vertical;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.vfunnel_in:focus { outline: none; border-color: #0074bf; background: #fff; box-shadow: 0 0 0 4px rgba(0, 116, 191, 0.1); }
.vfunnel_in::placeholder { color: #aaa; }
.vfunnel_nav { display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem; }
.vfunnel_back { background: none; border: 0; color: #888; cursor: pointer; font-size: 0.95rem; font-family: inherit; padding: 0.5rem 0; transition: color 0.2s ease; }
.vfunnel_back:hover { color: #0b0d0f; }
.vfunnel_back[hidden] { display: none; }
.vfunnel_next, .vfunnel_submit { margin-left: auto; min-width: 9.5rem; padding: 1.05rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer; background: #0074bf; color: #fff; font-size: 1.02rem; font-weight: 600; font-family: inherit; transition: background-color 0.2s ease, transform 0.15s ease; }
.vfunnel_next:hover, .vfunnel_submit:hover { background: #015b97; transform: translateY(-2px); }
.vfunnel_next:disabled, .vfunnel_submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.vfunnel_next[hidden] { display: none; }
/* Auswahl-Chips (Leistung) */
.vfunnel_choices { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.3rem; }
.vfunnel_choice { padding: 0.8rem 1.2rem; border-radius: 999px; border: 1.5px solid #e2e0dd; background: #faf9f7; color: #0b0d0f; font-size: 1rem; font-weight: 500; font-family: inherit; cursor: pointer; transition: border-color 0.18s, background-color 0.18s, transform 0.15s; }
.vfunnel_choice:hover { border-color: #0074bf; background: #fff; transform: translateY(-2px); }
.vfunnel_choice.is-sel { background: #0074bf; border-color: #0074bf; color: #fff; }
/* Adress-Autocomplete */
.vfunnel_addr { position: relative; margin-top: 1.3rem; }
.vfunnel_addr .vfunnel_in { margin-top: 0; }
.vfunnel_sugg { position: absolute; top: calc(100% + 0.4rem); left: 0; right: 0; z-index: 5; background: #fff; border: 1px solid #e2e0dd; border-radius: 14px; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16); overflow: hidden; max-height: 240px; overflow-y: auto; }
.vfunnel_sugg[hidden] { display: none; }
.vfunnel_sugg-i { display: block; width: 100%; text-align: left; padding: 0.85rem 1.1rem; border: 0; background: none; color: #0b0d0f; font-size: 0.98rem; font-family: inherit; cursor: pointer; transition: background-color 0.15s; }
.vfunnel_sugg-i:hover { background: #f2f1ef; }
.vfunnel_sugg-i + .vfunnel_sugg-i { border-top: 1px solid #f0eeec; }
@media (max-width: 560px) {
  .vfunnel_card { padding: 1.6rem 1.3rem; border-radius: 22px; }
  .vfunnel_q { font-size: 1.4rem; }
  .vfunnel_choice { padding: 0.7rem 1rem; font-size: 0.95rem; }
}

/* =========================================================================
   Mobil-Tightening: Sektionen auf dem Handy waren zu groß/klumpig (zu viel
   Scrollen). Padding deutlich runter, Scroll-Story kürzer, Funnel-Modal passt.
   ========================================================================= */
@media (max-width: 768px) {
  .section_vesa, .section_service, .section_industry, .section_employees,
  .section_location, .section_blog, .section_clients {
    padding-top: clamp(2.25rem, 7vw, 3.25rem) !important;
    padding-bottom: clamp(2.25rem, 7vw, 3.25rem) !important;
  }
  .section_contact { padding-top: clamp(3rem, 12vw, 4.5rem) !important; padding-bottom: clamp(4.5rem, 16vw, 7rem) !important; min-height: 0 !important; }
  .section_video { padding-top: clamp(2.5rem, 9vw, 4rem) !important; padding-bottom: clamp(2.5rem, 9vw, 4rem) !important; }
  /* Scroll-Vergleichssektion deutlich kürzer (sonst „20 Meter scrollen") */
  .section_animation { height: 150vh !important; }
  /* Kontakt-Headline nicht zu riesig auf kleinen Screens */
  .section_contact .contact_inner h2 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  /* Funnel-Modal sitzt sauber */
  .vfunnel { padding: 0.75rem; }
}

/* =========================================================================
   Video-Trigger → cleanes dunkles Panel (statt „Schmutz"-Thumbnail): VESA-Logo
   + Play + Label. Klick öffnet die Video-Lightbox (initLightbox). JS: initVideoTrigger.
   ========================================================================= */
.section_video .video_lightbox {
  position: relative;
  display: flex !important; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  min-height: clamp(280px, 38vw, 440px);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(0, 116, 191, 0.20) 0%, rgba(0, 116, 191, 0) 55%),
    linear-gradient(180deg, #161b21 0%, #0b0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px; overflow: hidden; text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.section_video .video_lightbox:hover { transform: translateY(-3px); box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45); border-color: rgba(255, 255, 255, 0.14); }
.section_video .video_lightbox-img { display: none !important; }
/* Loop-Teaser als Box-Hintergrund + Scrim für Kontrast (Klicks fallen auf den Trigger) */
.vesa-vid-loop {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; border: 0; pointer-events: none;
}
.vesa-vid-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.28) 0%, rgba(8, 10, 12, 0.30) 45%, rgba(8, 10, 12, 0.62) 100%);
  transition: background 0.3s ease;
}
.section_video .video_lightbox:hover .vesa-vid-scrim { background: linear-gradient(180deg, rgba(8, 10, 12, 0.20) 0%, rgba(8, 10, 12, 0.26) 45%, rgba(8, 10, 12, 0.58) 100%); }
.section_video .video_overlay {
  position: relative !important; z-index: 2; display: flex; align-items: center; justify-content: center;
  width: 5rem; height: 5rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.section_video .video_lightbox:hover .video_overlay { transform: scale(1.08); background: #0074bf; border-color: #0074bf; }
.section_video .video_inner { width: 1.7rem; }
.vesa-vid-logo { height: 2rem; width: auto; opacity: 0.95; }
.vesa-vid-label { position: relative; z-index: 2; color: #fff; font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; letter-spacing: -0.01em; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5); }
.vesa-vid-sub { position: relative; z-index: 2; color: rgba(255, 255, 255, 0.72); font-size: 0.88rem; margin-top: -0.7rem; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5); }
.section_video .video_number { display: none; } /* Dauer steht jetzt im Panel */

/* =========================================================================
   Footer: Hub-and-Spoke-Links zu den Leipzig-Leistungsseiten.
   Schließt die zuvor verwaisten Local-SEO-Seiten intern an (Crawl-Pfad +
   keyword-starke Anchor-Texte). Dunkler Footer → heller Link-Text.
   ========================================================================= */
.footer_seo {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 1.3rem;
  padding-bottom: 1.6rem; margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer_seo-label {
  width: 100%; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em;
  opacity: 0.5; margin-bottom: 0.3rem;
}
.footer_seo a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s ease; }
.footer_seo a:hover { color: #fff; }

/* =========================================================================
   Ratgeber-Seiten (/ratgeber/*) — Answer-First-Content (SEO + GEO).
   Helle Lese-Spalte; die Answer-Box hebt die Direktantwort hervor (für
   Featured Snippets / AI-Overviews). Restliche lp-* Klassen wiederverwendet.
   ========================================================================= */
.lp-guide-wrap { max-width: 760px; margin: 0 auto; padding-top: clamp(1.5rem, 4vw, 3rem); padding-bottom: clamp(2rem, 6vw, 4.5rem); }
.lp-guide h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.08; letter-spacing: -0.02em; color: #0e1419; margin: 0.5rem 0 1.3rem; }
.lp-answer { background: linear-gradient(135deg, #eef6fc 0%, #e3f0fa 100%); border-left: 4px solid #0074bf; border-radius: 0 14px 14px 0; padding: 1.3rem 1.6rem; margin: 0 0 2.6rem; }
.lp-answer p { margin: 0; font-size: clamp(1.05rem, 2vw, 1.18rem); line-height: 1.55; color: #1c2730; font-weight: 500; }
.lp-guide-block { margin-bottom: 2.2rem; }
.lp-guide-block h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.02em; color: #0e1419; margin: 0 0 0.8rem; }
.lp-guide-block > p { font-size: 1.05rem; line-height: 1.65; color: #41505e; margin: 0 0 1rem; }
.lp-guide .lp-cta-band { border-radius: 20px; margin-top: 2.4rem; }

/* === Dennis-Menue 2: Transparent->Solid + Gradient-Overlay + blauer CTA === */
.section_hero{position:relative}
/* Vignette (Raender + Mitte dunkler -> Text lesbar) ueber vertikalem Verlauf (unten schwaerzer) */
.section_hero .hero_overlay{background:radial-gradient(125% 85% at 50% 42%,transparent 28%,rgba(0,0,0,.5) 100%),linear-gradient(180deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.42) 32%,rgba(0,0,0,.44) 55%,rgba(0,0,0,.62) 76%,rgba(0,0,0,.92) 100%)!important}
/* Hero-Headline in eine Zeile (Desktop), auf Mobil normal umbrechend */
.section_hero .heading-style-h1{white-space:nowrap;font-size:clamp(1.9rem,3.9vw,3rem);letter-spacing:-.025em}
@media(max-width:600px){.section_hero .heading-style-h1{white-space:normal;font-size:1.9rem}}
/* ============================================================
   TOP-NAV V1 — Fixed, erscheint beim Scrollen, Leistungen-Dropdown.
   Ersetzt das verworrene "Menue 2" (reaktivierte Webflow-Navbar)
   UND die alte Floating-Pill (.vnav). Beide werden hart abgeschaltet.
   ============================================================ */
.navbar.ui-nav{display:none!important}                 /* Webflow-Top-Nav komplett aus */
.vnav{display:none!important}                           /* alte Floating-Pill aus */
.section_hero .hero_overlay{z-index:1!important}        /* Hero-Overlay sichtbar (war z-index:-1) */
.hero_icon-wrapper{position:absolute;top:clamp(.7rem,2vh,1.2rem);left:50%;transform:translateX(-50%);z-index:3;margin:0}  /* Logo oben mittig im Hero, hoch + klein */
.hero_icon{height:clamp(28px,3.2vw,38px);width:auto}

.nv{position:fixed;top:0;left:0;right:0;z-index:1000;transform:translateY(-100%);opacity:0;pointer-events:none;transition:transform .6s cubic-bezier(.22,1,.36,1),opacity .5s ease;background:rgba(8,11,15,.82);-webkit-backdrop-filter:blur(16px) saturate(140%);backdrop-filter:blur(16px) saturate(140%);box-shadow:0 1px 0 rgba(255,255,255,.06),0 12px 40px rgba(0,0,0,.35)}
.nv.is-shown{transform:none;opacity:1;pointer-events:auto}
/* Offenes Mobile-Menue muss ueber den Seiteninhalt. .nv erzeugt mit z-index:1000
   einen Stacking-Context — ein Kind kann nicht ueber Elemente mit hoeherem
   z-index steigen (Seite hat u.a. 2000/3000). Also hebt .nv sich selbst an,
   bleibt aber unter dem Funnel-Modal (.vfunnel, 9998). */
.nv.is-mob-open{z-index:9000}
.nv-in{max-width:1240px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:.85rem clamp(1.25rem,4vw,2.2rem)}
.nv-logo-link{flex:none;display:inline-flex;align-items:center}
.nv-logo{height:23px;width:auto;display:block}
.nv-nav{display:flex;align-items:center;gap:.1rem}
.nv-link{position:relative;display:inline-flex;align-items:center;gap:.35rem;padding:.55rem .85rem;border-radius:999px;font-size:.93rem;font-weight:500;color:rgba(255,255,255,.82);text-decoration:none;white-space:nowrap;transition:color .2s,background-color .2s}
.nv-link:hover,.nv-link.is-active{color:#fff;background:rgba(255,255,255,.08)}
.nv-actions{display:inline-flex;align-items:stretch;gap:.5rem;flex:none}
.nv-cta{display:inline-flex;align-items:center;padding:.6rem 1.5rem;border-radius:999px;background:#0074bf;color:#fff;font-weight:700;font-size:.94rem;text-decoration:none;white-space:nowrap;transition:background-color .2s,transform .2s}
.nv-cta:hover{background:#015b97;color:#fff;transform:translateY(-1px)}
.nv-caret{width:.55em;height:.55em;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-1px);transition:transform .25s cubic-bezier(.22,1,.36,1)}
.nv-has-drop{position:relative}
.nv-has-drop:hover .nv-caret,.nv-has-drop.open .nv-caret{transform:rotate(-135deg) translateY(2px)}
.nv-drop{position:absolute;top:100%;left:0;transform:translateY(10px);width:min(620px,calc(100vw - 2rem));margin-top:.55rem;background:rgba(14,18,22,.97);-webkit-backdrop-filter:blur(22px) saturate(150%);backdrop-filter:blur(22px) saturate(150%);border:1px solid rgba(255,255,255,.1);border-radius:18px;box-shadow:0 30px 80px rgba(0,0,0,.55);padding:.7rem;display:grid;grid-template-columns:1fr 1fr;gap:.2rem;opacity:0;pointer-events:none;transition:opacity .28s cubic-bezier(.22,1,.36,1),transform .28s cubic-bezier(.22,1,.36,1)}
.nv-drop::before{content:"";position:absolute;top:-.55rem;left:0;right:0;height:.55rem}  /* Hover-Bruecke Link<->Panel */
.nv-has-drop:hover .nv-drop,.nv-has-drop.open .nv-drop{opacity:1;pointer-events:auto;transform:translateY(0)}
.nv-drop-i{display:flex;flex-direction:column;gap:.12rem;padding:.7rem .85rem;border-radius:12px;text-decoration:none;transition:background-color .2s}
.nv-drop-i:hover{background:rgba(255,255,255,.07)}
.nv-drop-t{font-size:.97rem;font-weight:600;color:#fff}
.nv-drop-s{font-size:.8rem;color:rgba(255,255,255,.5);line-height:1.35}
/* ---- Mobile-Menue (Burger + Overlay-Panel) --------------------------------
   Bis 780px ersetzt der Burger die Desktop-Nav. Vorher wurde .nv-nav hier
   ersatzlos ausgeblendet -> auf dem Handy gab es KEINE Navigation. */
.nv-burger{display:none;position:relative;width:44px;height:44px;flex:none;padding:0;border:1px solid rgba(255,255,255,.24);border-radius:10px;background:transparent;cursor:pointer;-webkit-appearance:none;appearance:none;transition:background-color .2s,border-color .2s}
.nv-burger:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5)}
.nv-burger span{position:absolute;left:12px;width:20px;height:2px;border-radius:2px;background:rgba(255,255,255,.92);transition:transform .3s cubic-bezier(.22,1,.36,1),opacity .2s ease}
.nv-burger span:nth-child(1){top:15px}
.nv-burger span:nth-child(2){top:21px}
.nv-burger span:nth-child(3){top:27px}
.nv.is-mob-open .nv-burger span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nv.is-mob-open .nv-burger span:nth-child(2){opacity:0}
.nv.is-mob-open .nv-burger span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* .nv traegt backdrop-filter und ist damit Containing Block fuer position:fixed-
   Nachkommen — ein fixed-Panel waere nur so hoch wie die Leiste. Deshalb
   absolut zur Leiste positioniert, Hoehe explizit (dvh wegen Mobile-URL-Leiste). */
@supports not (height: 100dvh){.nv-mob{height:calc(100vh - var(--nv-h,64px))}}
.nv-mob{position:absolute;top:100%;left:0;right:0;height:calc(100dvh - var(--nv-h,64px));z-index:999;display:flex;flex-direction:column;justify-content:space-between;gap:1rem;padding:1.2rem clamp(1.25rem,5vw,2rem) calc(1.4rem + env(safe-area-inset-bottom,0px));background:#080b0f;-webkit-backdrop-filter:blur(22px) saturate(150%);backdrop-filter:blur(22px) saturate(150%);overflow-y:auto;-webkit-overflow-scrolling:touch;opacity:0;visibility:hidden;transform:translateY(-8px);transition:opacity .3s ease,transform .3s cubic-bezier(.22,1,.36,1),visibility .3s}
.nv.is-mob-open .nv-mob{opacity:1;visibility:visible;transform:none}
.nv-mob-nav{display:flex;flex-direction:column}
.nv-mob-i,.nv-mob-acc{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:52px;padding:.55rem 0;border:0;border-bottom:1px solid rgba(255,255,255,.09);background:transparent;color:rgba(255,255,255,.92);font-family:inherit;font-size:1.12rem;font-weight:500;text-align:left;text-decoration:none;cursor:pointer}
.nv-mob-i:hover,.nv-mob-i:focus-visible,.nv-mob-acc:hover{color:#fff}
.nv-mob-caret{width:.5em;height:.5em;flex:none;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px);transition:transform .25s cubic-bezier(.22,1,.36,1)}
.nv-mob-group.open .nv-mob-caret{transform:rotate(-135deg) translateY(2px)}
.nv-mob-sub{display:grid;grid-template-rows:0fr;transition:grid-template-rows .3s cubic-bezier(.22,1,.36,1)}
.nv-mob-sub>*{overflow:hidden}
.nv-mob-group.open .nv-mob-sub{grid-template-rows:1fr}
.nv-mob-sub-i{display:block;min-height:44px;padding:.7rem 0 .7rem 1rem;color:rgba(255,255,255,.6);font-size:1rem;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.05)}
.nv-mob-sub-i:hover{color:#fff}
.nv-mob-foot{display:flex;flex-direction:column;gap:.7rem;padding-top:1rem}
.nv-mob-cta{display:flex;align-items:center;justify-content:center;min-height:52px;border-radius:999px;background:#0074bf;color:#fff;font-weight:700;font-size:1rem;text-decoration:none}
.nv-mob-cta:hover{background:#015b97;color:#fff}
.nv-mob-tel{display:flex;align-items:center;justify-content:center;min-height:48px;border-radius:999px;border:1px solid rgba(255,255,255,.24);color:rgba(255,255,255,.92);font-weight:600;font-size:1rem;text-decoration:none}

@media(max-width:780px){
  .nv-nav{display:none}
  .nv-in{gap:.6rem}
  .nv-burger{display:block}
}
@media(min-width:781px){.nv-mob{display:none}}
@media(prefers-reduced-motion:reduce){.nv-mob,.nv-burger span,.nv-mob-sub,.nv-mob-caret{transition-duration:.01ms!important}}
/* Nav-Fade ist erwuenscht (kein nerviger Effekt) -> bewusst NICHT von reduced-motion gekillt.
   Nur die Dropdown-/Link-Mikrotransitions verkuerzen. */
@media(prefers-reduced-motion:reduce){.nv-drop,.nv-link,.nv-caret,.nv-cta{transition-duration:.01ms!important}}

/* ============================================================
   INTRO-OVERLAY — kurzer Marken-Fade beim Laden (nur Startseite).
   Logo + Tagline faden ein, dann Curtain-Up -> Hero erscheint.
   ============================================================ */
html.vi-lock, html.vi-lock body { overflow: hidden !important; }
#vesa-intro{position:fixed;inset:0;z-index:3000;display:grid;place-items:center;background:#0b0d0f;will-change:transform,opacity;transition:transform .7s cubic-bezier(.76,0,.24,1),opacity .45s ease .2s}
#vesa-intro.done{transform:translateY(-101%);opacity:0;pointer-events:none}

/* ---- Seitenwechsel-Vorhang ------------------------------------------------
   Legt sich beim Klick auf einen internen Link über die Seite, damit zwischen
   zwei Dokumenten kein harter Weiß-Blitz steht. Die Zielseite blendet über
   .pt-in wieder auf. Farbe = Intro-Hintergrund, damit der Übergang zur
   Startseiten-Intro nahtlos ist. */
.pt-veil{position:fixed;inset:0;z-index:2900;background:#0b0d0f;opacity:0;pointer-events:none;transition:opacity .34s ease}
.pt-veil.is-on{opacity:1;pointer-events:auto}
@keyframes ptIn{from{opacity:0}to{opacity:1}}
html.pt-in body{animation:ptIn .42s ease both}
@media(prefers-reduced-motion:reduce){.pt-veil{display:none}html.pt-in body{animation:none}}
.vi-inner{text-align:center;padding:1.5rem}
.vi-logo{height:clamp(34px,4.2vw,46px);width:auto;margin:0 auto;display:block;opacity:0;transform:translateY(12px) scale(.985);animation:viLogo .9s cubic-bezier(.22,1,.36,1) .1s forwards}
}
.vi-tag{margin-top:2.6rem;font-size:clamp(.82rem,1.7vw,1rem);font-weight:500;letter-spacing:.05em;color:rgba(255,255,255,.62);opacity:0;animation:viTag .6s cubic-bezier(.22,1,.36,1) .32s forwards}
@keyframes viLogo{to{opacity:1;transform:none}}
@keyframes viTag{from{opacity:0;transform:translateY(8px)}to{opacity:.62;transform:none}}
@media(prefers-reduced-motion:reduce){#vesa-intro{display:none}}

/* ============================================================
   INTER (self-hosted, DSGVO-konform) — global statt system-ui
   ============================================================ */
@font-face{font-family:"Inter";font-style:normal;font-weight:100 900;font-display:swap;src:url("/assets/fonts/inter-variable.woff2") format("woff2")}
:root{--_typography---font-styles--body:"Inter",system-ui,-apple-system,sans-serif;--_typography---font-styles--heading:"Inter",system-ui,-apple-system,sans-serif}
body{font-family:"Inter",system-ui,-apple-system,sans-serif;font-feature-settings:"cv11","ss01";letter-spacing:-.011em}

/* ============================================================
   KONTAKT-SEKTION — grosse App-Karte (Bild drin), zentriert, Inter
   ============================================================ */
/* Kontakt = App-Karte: passt komplett in den Bildschirm (unter Menue), Scroll-Scale, Glasmorphism */
.vk{position:relative;background:#fcf7f5;padding:clamp(8px,1.1vw,14px)}
.vk-card{position:relative;min-height:calc(100svh - 96px);border-radius:clamp(22px,2.6vw,40px);overflow:hidden;display:flex;align-items:center;justify-content:center;text-align:center;transform:scale(.82);transition:transform .15s ease-out;will-change:transform}
.vk-bg{position:absolute;inset:0;background:url("/assets/img/5309411e1187deedf5baf2c07695510b_hotels-p-1600.webp") center/cover no-repeat;z-index:0}
/* Vignette staerker */
.vk-ov{position:absolute;inset:0;z-index:1;background:radial-gradient(120% 100% at 50% 48%,rgba(6,8,11,.48),rgba(6,8,11,.86))}
.vk-in{position:relative;z-index:2;padding:clamp(1.5rem,4vw,3rem);max-width:52rem;display:flex;flex-direction:column;align-items:center;gap:clamp(1.4rem,3.2vh,2.2rem)}
.vk h2{font-size:clamp(2.1rem,5.1vw,4.4rem);font-weight:400;letter-spacing:-.03em;line-height:1.04;color:#fff;margin:0 0 .4rem}
.vk-pills{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:center}
.vk-pill{display:inline-flex;align-items:center;gap:.6rem;padding:1.05rem 2rem;border-radius:999px;font-size:1.02rem;font-weight:600;text-decoration:none;transition:transform .22s cubic-bezier(.22,1,.36,1),background-color .22s,box-shadow .22s}
.vk-pill.accent{background:#0074bf;color:#fff;box-shadow:0 12px 32px rgba(0,116,191,.42)}
.vk-pill.accent:hover{background:#015b97;transform:translateY(-3px)}
.vk-pill.light{background:#fff;color:#0b0d0f}
.vk-pill.light:hover{background:#ececec;transform:translateY(-3px)}
.vk-callback{color:rgba(255,255,255,.85);font-size:.96rem;text-decoration:underline;text-underline-offset:3px;transition:color .2s}
.vk-callback:hover{color:#fff}
.vk-contact{display:flex;flex-wrap:wrap;gap:.7rem;align-items:center;justify-content:center;color:rgba(255,255,255,.8);font-size:.98rem}
.vk-contact a{color:#fff;text-decoration:none}.vk-contact a:hover{text-decoration:underline}.vk-contact span{opacity:.5}
.vk-badges{position:absolute;left:0;right:0;bottom:clamp(1.4rem,4vh,2.8rem);z-index:2;display:flex;flex-wrap:wrap;gap:clamp(1.3rem,3.5vw,2.8rem);align-items:center;justify-content:center}
.vk-badges img{height:clamp(28px,3.2vw,38px);width:auto;opacity:.8;filter:brightness(0) invert(1)}
@media(max-width:600px){.vk-pills{flex-direction:column;align-items:stretch}.vk-pill{justify-content:center}.vk-badges{position:static;margin-top:2.2rem}}

/* Footer lesbar: dunkler Abschluss, ALLE Texte hell, Logo weiss */
.section_footer{background:#0b0d0f}
.section_footer,.section_footer a,.section_footer p,.section_footer span,.section_footer div{color:rgba(255,255,255,.72)!important}
.section_footer a:hover{color:#fff!important}
.section_footer .footer_logo{filter:brightness(0) invert(1)}

/* ============================================================
   LEISTUNGS-DETAILSEITEN (/leistungen/<slug>) — VESA-Stil, Inter
   ============================================================ */
.ls-hero{position:relative;min-height:64vh;display:flex;align-items:flex-end;overflow:hidden;background:#0b0d0f}
.ls-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.ls-hero-ov{position:absolute;inset:0;z-index:1;background:linear-gradient(0deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.35) 55%,rgba(0,0,0,.5) 100%)}
.ls-hero-in{position:relative;z-index:2;max-width:1240px;margin:0 auto;width:100%;padding:0 clamp(1.25rem,4vw,2.2rem) clamp(2.6rem,6vh,4rem)}
.ls-kick{font-size:.78rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:#5cb3ee;margin-bottom:.9rem}
.ls-kick a{color:rgba(255,255,255,.6)}.ls-kick a:hover{color:#fff}
.ls-hero h1{font-size:clamp(2.4rem,5.6vw,4.4rem);font-weight:700;letter-spacing:-.035em;line-height:1.01;color:#fff;max-width:18ch}
.ls-hero .ls-tag{margin-top:1.1rem;font-size:1.2rem;color:rgba(255,255,255,.82);max-width:42rem;line-height:1.5}
.ls-sec{max-width:1240px;margin:0 auto;padding:clamp(3.5rem,8vh,6rem) clamp(1.25rem,4vw,2.2rem)}
.ls-lead{font-size:clamp(1.3rem,2.5vw,1.85rem);font-weight:500;letter-spacing:-.02em;line-height:1.42;color:#0b0d0f;max-width:50rem}
.ls-h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700;letter-spacing:-.025em;color:#0b0d0f;margin-bottom:.4rem}
.ls-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(258px,1fr));gap:1.1rem;margin-top:2.2rem}
.ls-card{background:#fcf7f5;border:1px solid rgba(0,0,0,.06);border-radius:1rem;padding:1.6rem 1.7rem}
.ls-card h3{font-size:1.12rem;font-weight:600;color:#0b0d0f;margin-bottom:.5rem}
.ls-card p{font-size:.96rem;color:#555;line-height:1.55}
.ls-cta{position:relative;max-width:1240px;margin:0 auto;border-radius:clamp(18px,2vw,32px);overflow:hidden;color:#fff;text-align:center;box-shadow:0 30px 70px -28px rgba(0,0,0,.5)}
.ls-cta-bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.ls-cta-ov{position:absolute;inset:0;z-index:1;background:radial-gradient(120% 110% at 50% 30%,rgba(6,8,11,.62),rgba(6,8,11,.9))}
.ls-cta-in{position:relative;z-index:2;padding:clamp(3rem,7vw,5.5rem) clamp(1.5rem,4vw,3rem)}
.ls-cta h2{font-size:clamp(1.8rem,4vw,3rem);font-weight:600;letter-spacing:-.03em;line-height:1.05}
.ls-cta p{margin:1rem auto 0;color:rgba(255,255,255,.8);max-width:34rem;font-size:1.08rem}
.ls-cta .vk-pills{margin-top:2.2rem}
.ls-cta .vk-pill.ghost{background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.22)}
.ls-cta .vk-pill.ghost:hover{background:rgba(255,255,255,.18)}
.ls-cta .vk-pill.link{color:rgba(255,255,255,.85);opacity:1}
/* Reiche Leistungsblatt-Bloecke */
.ls-werte{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.1rem;max-width:1240px;margin:0 auto}
.ls-wert{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:1rem;padding:1.4rem 1.5rem}
.ls-wert h3{font-size:1.05rem;font-weight:600;color:#0b0d0f;margin-bottom:.4rem}
.ls-wert p{font-size:.94rem;color:#555;line-height:1.5}
.ls-numlist{list-style:none;counter-reset:ls;margin:2rem 0 0;padding:0;display:flex;flex-direction:column}
.ls-numlist li{counter-increment:ls;display:flex;gap:1.2rem;padding:1.2rem .4rem;border-top:1px solid rgba(0,0,0,.08)}
.ls-numlist li:last-child{border-bottom:1px solid rgba(0,0,0,.08)}
.ls-numlist li::before{content:counter(ls,decimal-leading-zero);font-size:.85rem;font-weight:600;color:#0074bf;min-width:2ch;font-variant-numeric:tabular-nums;padding-top:.15rem}
.ls-numlist h3{font-size:1.08rem;font-weight:600;color:#0b0d0f;margin-bottom:.3rem}
.ls-numlist p{font-size:.96rem;color:#555;line-height:1.5}
.ls-trustrow{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.2rem;max-width:1240px;margin:0 auto;background:#0b0d0f;border-radius:1.2rem;padding:1.8rem clamp(1.3rem,3vw,2.4rem)}
.ls-trustitem{display:flex;flex-direction:column;gap:.2rem}
.ls-trustitem strong{color:#fff;font-size:1rem;font-weight:600}
.ls-trustitem span{color:rgba(255,255,255,.6);font-size:.88rem}
.ls-steps{list-style:none;margin:2rem 0 0;padding:0;display:flex;flex-direction:column;gap:.8rem}
.ls-steps li{display:flex;gap:1.2rem;align-items:flex-start;background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:1rem;padding:1.2rem 1.4rem}
.ls-stepnum{flex:none;width:2rem;height:2rem;border-radius:999px;background:#0074bf;color:#fff;display:grid;place-items:center;font-weight:600;font-size:.95rem}
.ls-steps h3{font-size:1.05rem;font-weight:600;color:#0b0d0f;margin-bottom:.25rem}
.ls-steps p{font-size:.94rem;color:#555;line-height:1.5}
.ls-chips{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.5rem}
.ls-chip{padding:.7rem 1.2rem;border-radius:999px;background:#fff;border:1px solid rgba(0,0,0,.12);font-size:.95rem;color:#0b0d0f}
/* Icons in Wert-Kacheln + Trust */
.ls-wert-ic{display:block;width:2.1rem;height:2.1rem;color:#0074bf;margin-bottom:.85rem}
.ls-wert-ic svg{width:100%;height:100%}
.ls-trustitem{flex-direction:row;align-items:flex-start;gap:.75rem}
.ls-trust-ic{flex:none;width:1.4rem;height:1.4rem;color:#5cb3ee;margin-top:.15rem}
.ls-trust-ic svg{width:100%;height:100%}
.ls-trustitem>div{display:flex;flex-direction:column;gap:.2rem}
/* Hero-CTA + Buttons (Leistungsseiten) */
.ls-hero-cta{display:flex;flex-wrap:wrap;align-items:center;gap:1rem 1.4rem;margin-top:2rem}
.ls-hero-note{color:rgba(255,255,255,.72);font-size:.92rem}
.ls-btn-primary,.ls-btn-ghost{display:inline-flex;align-items:center;gap:.6rem;padding:1.05rem 1.8rem;border-radius:999px;font-size:1rem;font-weight:600;text-decoration:none;transition:transform .2s var(--ease,cubic-bezier(.22,1,.36,1)),background-color .2s,box-shadow .2s}
.ls-btn-primary svg,.ls-btn-ghost svg{width:1.2rem;height:1.2rem;flex:none}
.ls-btn-primary{background:#0074bf;color:#fff;box-shadow:0 12px 30px rgba(0,116,191,.35)}
.ls-btn-primary:hover{background:#015b97;transform:translateY(-2px)}
.ls-btn-ghost{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.25)}
.ls-btn-ghost:hover{background:rgba(255,255,255,.16);transform:translateY(-2px)}
.ls-cta-btns{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;margin-top:2rem}
.ls-cta-note{margin-top:1.3rem;color:rgba(255,255,255,.6);font-size:.92rem}
.ls-cta-note a{color:rgba(255,255,255,.85);text-decoration:underline}
/* Menue-Load-Fade (Unterseiten mit statischem is-shown Nav) */
.nv.nv-load{animation:nvLoad .6s cubic-bezier(.22,1,.36,1) both}
@keyframes nvLoad{from{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:none}}
/* FAQ-Accordion (ausklappbar) */
.ls-faqs{max-width:860px;margin:1.8rem 0 0}
.ls-faq{border-top:1px solid rgba(0,0,0,.1)}
.ls-faq:last-child{border-bottom:1px solid rgba(0,0,0,.1)}
.ls-faq summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem .3rem;font-size:1.08rem;font-weight:600;color:#0b0d0f}
.ls-faq summary::-webkit-details-marker{display:none}
.ls-faq-plus{position:relative;flex:none;width:1.1rem;height:1.1rem}
.ls-faq-plus::before,.ls-faq-plus::after{content:"";position:absolute;background:#0074bf;border-radius:2px;transition:transform .25s var(--ease,ease)}
.ls-faq-plus::before{top:50%;left:0;right:0;height:2px;transform:translateY(-50%)}
.ls-faq-plus::after{left:50%;top:0;bottom:0;width:2px;transform:translateX(-50%)}
.ls-faq[open] .ls-faq-plus::after{transform:translateX(-50%) scaleY(0)}
.ls-faq-a{padding:0 .3rem 1.3rem}
.ls-faq-a p{color:#555;line-height:1.6;font-size:.98rem;max-width:62ch}
/* Hero Zurück-Link + Eyebrow */
.ls-back{display:inline-flex;align-items:center;gap:.45rem;color:rgba(255,255,255,.75);font-size:.92rem;font-weight:500;text-decoration:none;margin-bottom:1.1rem;transition:color .2s}
.ls-back:hover{color:#fff}
.ls-back svg{width:1.05rem;height:1.05rem}
.ls-eyebrow{font-size:.78rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:#5cb3ee;margin-bottom:.9rem}
/* Strukturierter Footer */
.ls-footer{background:#0b0d0f;color:rgba(255,255,255,.7)}
.ls-footer-in{max-width:1240px;margin:0 auto;padding:clamp(2.5rem,5vw,4rem) clamp(1.25rem,4vw,2.2rem) 1.5rem}
.ls-footer-top{display:flex;flex-wrap:wrap;gap:2.5rem;justify-content:space-between}
.ls-footer-logo{height:26px;width:auto;filter:brightness(0) invert(1);opacity:.9}
.ls-footer-cols{display:flex;flex-wrap:wrap;gap:2.5rem 3.5rem}
.ls-footer-cols h4{color:#fff;font-size:.95rem;font-weight:600;margin-bottom:.9rem}
.ls-footer-cols a,.ls-footer-cols span{display:block;color:rgba(255,255,255,.6);font-size:.92rem;text-decoration:none;margin-bottom:.5rem;transition:color .2s}
.ls-footer-cols a:hover{color:#fff}
.ls-footer-bot{display:flex;flex-wrap:wrap;gap:.6rem 1.5rem;justify-content:space-between;margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.1);font-size:.86rem;color:rgba(255,255,255,.5)}

/* ====== Buttons einheitlich ECKIG (Dennis-Entscheidung) ====== */
.button,.ui-button,.nv-cta,.nv-link,.vk-pill,
.ls-btn-primary,.ls-btn-ghost,.ls-chip,
.vfunnel_next,.vfunnel_submit,.vfunnel_choice,
.lp-pill,.lp-chip,.lp-google{border-radius:8px!important}

/* ====== Trusted-By Badges groesser + etwas weiter hoch ====== */
.text_badge{height:clamp(34px,4vw,48px)!important;width:auto}
.text_badges{margin-top:1.4rem!important;gap:clamp(1rem,2.4vw,2.2rem)!important;align-items:center}

.nv-tel{display:inline-flex;align-items:center;gap:.4rem;padding:.6rem 1rem;border-radius:8px;border:1px solid rgba(255,255,255,.24);color:rgba(255,255,255,.92);font-weight:600;font-size:.9rem;text-decoration:none;white-space:nowrap;box-sizing:border-box;transition:background-color .2s,border-color .2s}.nv-tel:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.55)}.nv-tel svg{width:16px;height:16px;flex:none}@media(max-width:600px){.nv-tel span{display:none}.nv-tel{padding:.6rem}}

.blog_top-right{display:flex;align-items:center;gap:1.25rem}

/* ====== Slider-Pfeile als tippbare App-Buttons (Blog + Team), zentriert ====== */
.blog_arrows{justify-content:center!important;gap:.65rem}
.employee_arrow{gap:.65rem}
.swiper-prev-blog,.swiper-next-blog,.swiper-prev-employee,.swiper-next-employee{width:2.9rem!important;height:2.9rem;padding:.7rem;box-sizing:border-box;background:rgba(0,0,0,.045);border:1px solid rgba(0,0,0,.13);border-radius:8px;cursor:pointer;transition:background .2s,border-color .2s,transform .15s}
.swiper-prev-blog:hover,.swiper-next-blog:hover,.swiper-prev-employee:hover,.swiper-next-employee:hover{background:rgba(0,116,191,.09);border-color:#0074bf;transform:translateY(-1px)}

/* Funnel-Dropdown (Stelle-Auswahl in der Bewerbung) */
.vfunnel_select{cursor:pointer;appearance:none;-webkit-appearance:none;background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none" stroke="%23888" stroke-width="2" stroke-linecap="round"><path d="M1 1l5 5 5-5"/></svg>');background-repeat:no-repeat;background-position:right 1.1rem center;padding-right:2.6rem}

/* Funnel-Einverständnis-Hinweis (letzter Schritt) */
.vfunnel_consent{font-size:.78rem;color:#8a9099;line-height:1.5;margin:.9rem 0 0}

/* Standorte-Chips (section_location): standen mit 10%-Grau (#a9a9a91a) OHNE eigene
   Textfarbe auf weißem Grund -> praktisch unsichtbar ("Standorte weiß", Dennis).
   Jetzt klarer Kontrast + Border wie die funktionierenden ls-chips. */
.section_location .service_dot{
  background-color:#fff;
  border:1px solid rgba(0,0,0,.14);
  color:#0b0d0f;
  font-weight:500;
  text-decoration:none;
  transition:border-color .2s ease,background-color .2s ease,transform .2s ease;
}
.section_location a.service_dot:hover{
  border-color:#0074bf;
  background-color:#f4f8fb;
  transform:translateY(-1px);
}

/* Team-Seitengrafiken (employees_img): hatten feste rem-Breiten (12–21rem) und skalierten
   zwischen ~992px und 1600px GAR NICHT -> auf kleineren Laptops zu groß/dominant (Dennis:
   "wenn der Bildschirm kleiner ist, muss das auch kleiner werden"). Jetzt gestuft schmaler.
   Bewusst width statt transform:scale — der Team-Fade (IntersectionObserver) setzt inline
   translateX, ein CSS-transform würde damit kollidieren. Unter ~992px sind sie ohnehin aus. */
/* Zweiter Wurf (Dennis): müssen FRÜHER + SCHNELLER enger werden; linke Seite ragte zu
   weit. Ab 1600px schmaler UND weiter reingezogen (Offsets, nicht nur Breite), ab 1300px
   stärker. Über 1600px (Ultra-Wide/16:9) bleiben sie bewusst weit draußen — dort passt es. */
@media (max-width:1600px){
  .employees_img-1{width:10.5rem;left:-11.5rem}
  .employees_img-2{width:10.5rem;left:-11rem}
  .employees_img-3{width:5.2rem;left:-9.5rem}
  .employees_img-4{width:14rem;right:-8rem}
  .employee_img-5{width:14rem;right:-10rem}
  .employee_img-6{width:18rem;right:-13rem}
}
@media (max-width:1300px){
  .employees_img-1{width:8.5rem;left:-7.5rem}
  .employees_img-2{width:8.5rem;left:-7rem}
  .employees_img-3{width:4.2rem;left:-6rem}
  .employees_img-4{width:11rem;right:-5rem}
  .employee_img-5{width:11rem;right:-6.5rem}
  .employee_img-6{width:14rem;right:-9rem}
}

/* Page-Transition (siehe initPageTransition in app.js): jede Seite fadet beim Laden sanft
   rein; beim Klick auf einen internen Link fadet der Inhalt raus, dann wird navigiert
   (Dennis: "kurz rein laden und raus laden" beim Domain-/Seitenwechsel). Das .js-Guard
   stellt sicher, dass ohne JavaScript nichts unsichtbar bleibt. */
@keyframes vpageIn{from{opacity:0}to{opacity:1}}
html.js body{animation:vpageIn .38s ease both}
/* animation:none ist entscheidend — sonst hält der fill-mode "both" opacity:1 fest und
   der Raus-Fade (opacity:0) greift nicht (Dennis: "raus passiert einfach nicht"). */
html.js body.is-leaving{animation:none;opacity:0;transition:opacity .26s ease}
@media (prefers-reduced-motion: reduce){
  html.js body{animation:none}
  html.js body.is-leaving{transition:none}
}

/* ============================================================================
   HOMEPAGE-TYPOGRAFIE — einheitliche Kartentitel (Dennis: „Überschriften überall
   unterschiedlich groß + unterschiedliche Dicken"). Die Karten-/Item-/Namenstitel
   waren gemischt: Service 1.75rem/400 · Industrie 1.25rem/400 · Team-Name 1.25rem/400
   · Kunden 1.125rem/500 · Blog 1.75rem/400 -> jetzt EINE Schriftgruppe (1.5rem/600).
   Nur app.css (declean-safe), styles.css unangetastet. Weights auf der Homepage
   damit nur noch 400 (Regular) und 600 (SemiBold). */
.section_service .heading-style-h3,
.section_industry h3,
.section_clients h3,
.section_employees .employee_overlay .text-size-large,
.section_blog h3{
  font-size:clamp(1.25rem,1.55vw,1.5rem)!important;
  font-weight:600!important;
  line-height:1.3;
  letter-spacing:-.005em;
}
