/* ============================================================
   net97 – Version 2  ·  Modernes, animiertes Design (Framer/Webflow-Stil)
   Hausfarben: Rot #BE1522 · Grau #676767
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #131316;
  --ink-2:      #1d1d22;
  --accent:     #be1522;
  --accent-2:   #e22d3a;
  --accent-3:   #ff5a6a;
  --accent-ink: #a01019;
  --paper:      #ffffff;
  --paper-2:    #f6f6f7;
  --line:       #e8e8eb;
  --text:       #24242a;
  --muted:      #676767;
  --muted-2:    #9a9aa0;

  /* Hausschrift Montserrat für Headlines & UI, Inter als ruhiger Lesetext-Fallback */
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', 'Inter', system-ui, sans-serif;

  --r-sm: 12px; --r: 18px; --r-lg: 26px; --r-xl: 34px;
  --shadow-sm: 0 2px 10px rgba(19,19,22,.06);
  --shadow:    0 24px 50px -22px rgba(19,19,22,.26);
  --shadow-lg: 0 50px 90px -34px rgba(19,19,22,.4);

  --container: 1200px;
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body); color: var(--text); background: var(--paper);
  line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.08; color: var(--ink); font-weight: 700; letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.container--narrow { max-width: 820px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--ink); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }

/* Durchgängiger, gut sichtbarer Tastatur-Fokus (WCAG 2.4.7) */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent-2); outline-offset: 3px; border-radius: 4px;
}

.gradient-text { background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 45%, var(--accent-3) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Scroll-Fortschritt ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: transparent; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-3)); box-shadow: 0 0 12px rgba(226,45,58,.6); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: var(--r-sm); border: 1.5px solid transparent; cursor: pointer;
  transition: box-shadow .25s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out);
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: none; font-weight: 700; }
.btn--primary:hover { background: var(--accent-2); box-shadow: none; }
.btn--primary:active { background: var(--accent-ink); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; }

.eyebrow { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 1rem; }
.eyebrow::after { content: ''; flex: 0 0 auto; width: 34px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-3)); }
.eyebrow--light { color: var(--accent-3); }
.on-dark { color: #fff; }
.on-dark-muted { color: #b8b8c0; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.7); -webkit-backdrop-filter: saturate(160%) blur(16px); backdrop-filter: saturate(160%) blur(16px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav__link { position: relative; font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink); }
.nav__link span { display: inline-block; }
.nav__link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-3)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out); }
.nav__link:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav { display: flex; flex-direction: column; gap: .35rem; padding: 1rem clamp(1.1rem,4vw,2rem) 1.5rem; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { font-family: var(--font-head); font-weight: 600; padding: .7rem .2rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-nav a:last-child { border: 0; margin-top: .6rem; justify-content: center; }

/* ---------- Mesh-Gradient (animierte Blobs) ---------- */
.mesh { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.mesh__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.mesh__blob--1 { width: 46vw; height: 46vw; left: -8vw; top: -10vw; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); animation: blob1 18s ease-in-out infinite; }
.mesh__blob--2 { width: 40vw; height: 40vw; right: -6vw; top: 4vw; background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%); opacity: .4; animation: blob2 22s ease-in-out infinite; }
.mesh__blob--3 { width: 34vw; height: 34vw; left: 30vw; bottom: -14vw; background: radial-gradient(circle, #7a8aa0 0%, transparent 70%); opacity: .3; animation: blob3 26s ease-in-out infinite; }
.mesh__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%); mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%); }
.mesh--dark .mesh__blob { opacity: .35; }
@keyframes blob1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8vw,4vw) scale(1.15); } }
@keyframes blob2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6vw,6vw) scale(1.1); } }
@keyframes blob3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw,-6vw) scale(1.2); } }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0 0; overflow: hidden;
  background:
    linear-gradient(165deg, rgba(19,19,22,.55) 0%, rgba(14,14,17,.68) 55%, rgba(13,13,16,.88) 100%),
    url('assets/hero-bgneu.jpg') center/cover no-repeat,
    linear-gradient(165deg, var(--ink) 0%, #0e0e11 60%, var(--ink-2) 100%);
}
/* Hex-Bild ersetzt das quadratische Gitter im Hero */
.hero .mesh__grid { display: none; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; padding-bottom: clamp(3rem, 6vw, 5rem); }
.badge { display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 500; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); padding: .45rem .95rem; border-radius: 999px; color: #dcdce2; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); margin-bottom: 1.6rem; }
.badge__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 0 0 rgba(255,90,106,.7); animation: pulse 2.2s infinite; }

.hero__title { color: #fff; font-size: clamp(2rem, 5.2vw, 4.1rem); font-weight: 800; letter-spacing: -.035em; }
.hero__title .line { display: block; }
.hero__title .line__inner { display: block; opacity: 0; transform: translateY(42px); }
.hero.is-in .line__inner { animation: lineUp .9s var(--ease-out) forwards; }
.hero.is-in .line:nth-child(1) .line__inner { animation-delay: .1s; }
.hero.is-in .line:nth-child(2) .line__inner { animation-delay: .24s; }
.hero.is-in .line:nth-child(3) .line__inner { animation-delay: .38s; }
@keyframes lineUp { to { opacity: 1; transform: translateY(0); } }

.hero__sub { color: #c2c2cc; font-size: clamp(1.02rem, 1.7vw, 1.2rem); margin: 1.5rem 0 2.2rem; max-width: 42ch; }
.hero__sub strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Hero Visual – asymmetrisch versetzt & leicht gedreht, ragt rechts über den Rand */
.hero__visual { position: relative; transform-style: preserve-3d; margin-top: clamp(1rem, 4vw, 3.5rem); margin-right: clamp(-4rem, -4vw, 0rem); rotate: 2.5deg; }
.hero__visual .glass-card { rotate: -2.5deg; }
.glass-card { border-radius: var(--r-xl); border: 1px solid rgba(255,255,255,.14); background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.03)); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); overflow: hidden; }
.dash__bar { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.dash__dots { display: inline-flex; gap: 5px; }
.dash__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); }
.dash__dots i:first-child { background: #ff6058; } .dash__dots i:nth-child(2) { background: #ffbd2e; } .dash__dots i:nth-child(3) { background: #28c840; }
.dash__title { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: #f0f0f3; }
.dash__live { margin-left: auto; font-size: .72rem; font-weight: 600; color: var(--accent-3); }
.dash__body { padding: 1.1rem; display: grid; gap: .7rem; }
.dash__row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 13px; padding: .7rem .9rem; }
.dash__ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: .9rem; }
.dash__ico svg { width: 15px; height: 15px; }
.dash__ico.ok { background: rgba(40,200,100,.18); color: #5ef0a8; } .dash__ico.warn { background: rgba(255,189,46,.18); color: #ffce6a; }
.dash__label { font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: #f0f0f3; }
.dash__status { font-size: .76rem; font-weight: 600; text-align: right; }
.dash__status.ok { color: #7ef0b6; } .dash__status.warn { color: #ffd27a; }
.dash__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: .3rem; }
.metric { text-align: center; background: rgba(190,21,34,.12); border: 1px solid rgba(190,21,34,.24); border-radius: 13px; padding: .7rem .4rem; }
.metric b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: #fff; }
.metric span { font-size: .66rem; color: #b2b2ba; }
.floaty { position: absolute; display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.95); color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: .82rem; padding: .65rem .95rem; border-radius: 14px; box-shadow: var(--shadow); animation: bob 5s ease-in-out infinite; }
.floaty span { flex: 0 0 auto; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.floaty span svg { width: 13px; height: 13px; }
.floaty span { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-size: .85rem; }
.floaty--1 { top: 7%; left: -9%; }
.floaty--2 { bottom: 8%; right: -7%; animation-delay: -2.5s; }
/* Schwebe-Animation über translate (kollidiert nicht mit JS-transform-Parallax) */
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

/* Marquee */
.marquee { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); padding: 1rem 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 1.6rem; padding-right: 1.6rem; white-space: nowrap; flex: none; }
.marquee__group span { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: rgba(255,255,255,.55); }
.marquee__group i { font-style: normal; color: var(--accent-3); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sektionen ---------- */
.section { position: relative; padding: var(--section-y) 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #fff; overflow: hidden; }

/* ---------- Statement (großer Satz) ---------- */
.statement { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement__text { max-width: 24ch; margin-inline: auto; text-align: center; font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem); line-height: 1.26; letter-spacing: -.02em; color: var(--muted-2); }
.statement__text .hl { color: var(--ink); }

/* ---------- Software- & App-Entwicklung (Showcase) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.showcase__lead { color: var(--muted); font-size: 1.08rem; margin: 1rem 0 1.6rem; max-width: 46ch; }
.showcase__list { display: grid; gap: .75rem; margin-bottom: 1.6rem; }
.showcase__list li { display: flex; align-items: center; gap: .75rem; font-weight: 500; color: var(--ink); }
.showcase__check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.showcase__check svg { width: 13px; height: 13px; }
.showcase__projects { font-size: .96rem; color: var(--muted); margin-bottom: 1.6rem; }
.showcase__projects strong { color: var(--ink); font-family: var(--font-head); }
/* Browser-Mockup */
.browser { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff; }
.browser__bar { display: flex; align-items: center; gap: .9rem; padding: .7rem 1rem; background: #f1f2f5; border-bottom: 1px solid var(--line); }
.browser__dots { display: inline-flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: #cfd2d8; }
.browser__dots i:first-child { background: #ff6058; } .browser__dots i:nth-child(2) { background: #ffbd2e; } .browser__dots i:nth-child(3) { background: #28c840; }
.browser__url { font-family: var(--font-head); font-size: .8rem; color: var(--muted); background: #fff; padding: .3rem .9rem; border-radius: 999px; border: 1px solid var(--line); }
.browser img { display: block; width: 100%; height: auto; }
/* Echtes Foto im Rahmen (statt Mockup) */
.shot { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.shot img { display: block; width: 100%; height: auto; }
.shot__cap { position: absolute; left: 14px; bottom: 14px; right: 14px; display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: #fff; padding: .55rem .85rem; border-radius: 999px;
  background: rgba(19,19,22,.62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); width: max-content; max-width: calc(100% - 28px); }
.shot__dot { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 8px rgba(255,90,106,.8); }
@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; } .showcase__visual { order: -1; max-width: 460px; margin-inline: auto; } }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal { background: var(--paper); color: var(--ink); padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem); min-height: 70vh; }
.legal__back { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--accent-ink); margin-bottom: 1.6rem; }
.legal__back:hover { color: var(--accent); }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1.6rem; }
.legal__hint { background: rgba(190,21,34,.05); border: 1px solid rgba(190,21,34,.22); border-radius: 14px; padding: 1rem 1.2rem; font-size: .9rem; color: var(--accent-ink); margin-bottom: 2rem; }
.legal__content { max-width: 75ch; }
.legal__content h2 { font-size: 1.25rem; margin: 2rem 0 .6rem; }
.legal__content h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
.legal__content p, .legal__content li { color: #44444c; margin-bottom: .9rem; font-size: 1rem; line-height: 1.7; }
.legal__content ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal__content a { color: var(--accent-ink); text-decoration: underline; }
.legal__content strong { color: var(--ink); }

/* Honeypot-Feld (Spam-Schutz) – für Menschen unsichtbar */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.section--dark .section__lead { color: #b8b8c0; }
/* Editorial-Überschrift: linksbündig, fortlaufender Index, große Geister-Nummer */
body { counter-reset: sec; }
.section__head { position: relative; margin: 0 0 clamp(2.6rem, 5vw, 4rem); text-align: left; padding-top: .5rem; }
.section__head h2, .section__head .section__lead, .section__head .head__note { max-width: 760px; }
.section__lead { font-size: 1.1rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Cards (3D-Tilt + Spotlight) ---------- */
/* Bento-Grid: unterschiedlich große Kacheln statt gleichförmigem Raster */
.cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.9rem, 1.8vw, 1.4rem); grid-auto-flow: dense; }
.card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.9rem; overflow: hidden; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s; transform-style: preserve-3d; grid-column: span 2; }
.card:nth-child(1) { grid-column: span 4; grid-row: span 2; }
/* Feature-Kachel dunkel hervorgehoben */
.card:nth-child(1) {
  background:
    linear-gradient(160deg, rgba(19,19,22,.84) 0%, rgba(22,22,27,.7) 55%, rgba(20,20,25,.9) 100%),
    url('assets/01-IT-Sicherheit.jpg') center/cover no-repeat,
    linear-gradient(160deg, var(--ink) 0%, #16161b 65%, var(--ink-2) 100%);
  border-color: transparent; color: #fff; padding: clamp(2rem, 3.2vw, 2.8rem);
}
.card:nth-child(1) .card__icon { width: 64px; height: 64px; color: #fff; background: rgba(255,255,255,.1); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); margin-bottom: auto; }
.card:nth-child(1) .card__icon svg { width: 32px; height: 32px; }
.card:nth-child(1) h3 { color: #fff; font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-top: 1.6rem; }
.card:nth-child(1) .card__problem { color: #fff; font-size: 1.12rem; }
.card:nth-child(1) p { color: #c2c2cc; max-width: 46ch; }
.card:nth-child(1) .card__glow { background: radial-gradient(460px circle at var(--mx,30%) var(--my,10%), rgba(226,45,58,.28), transparent 60%); opacity: .9; }
/* Banner-Kachel (volle Breite): Icon links, Text rechts */
.card--wide { grid-column: span 6; display: grid; grid-template-columns: auto 1fr; column-gap: clamp(1.4rem, 3vw, 2.4rem); align-items: center;
  background: linear-gradient(120deg, #fff 0%, #fff 55%, rgba(190,21,34,.05) 100%); }
.card--wide .card__icon { grid-column: 1; grid-row: 1 / span 3; align-self: center; width: 64px; height: 64px; margin: 0; }
.card--wide .card__icon svg { width: 30px; height: 30px; }
.card--wide h3 { grid-column: 2; }
.card--wide .card__problem { grid-column: 2; }
.card--wide p:not(.card__problem) { grid-column: 2; max-width: 70ch; }
.card:hover { box-shadow: var(--shadow); border-color: transparent; }
.card__glow { position: absolute; inset: 0; opacity: 0; transition: opacity .3s; background: radial-gradient(320px circle at var(--mx,50%) var(--my,0%), rgba(190,21,34,.1), transparent 60%); }
.card:hover .card__glow { opacity: 1; }
.card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: var(--accent); background: linear-gradient(135deg, rgba(190,21,34,.12), rgba(255,90,106,.12)); margin-bottom: 1.2rem; transition: transform .35s var(--ease-out); }
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { transform: translateZ(30px) scale(1.06); }
.card h3 { margin-bottom: .5rem; }
.card__problem { font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.card p { font-size: .96rem; }

/* ---------- Split (Warum) ---------- */
.split { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.usp-list { display: grid; gap: 1.1rem; margin: 1.7rem 0 2.2rem; }
.usp-list li { display: flex; gap: .85rem; align-items: flex-start; }
.usp-list div { color: #c2c2cc; }
.usp-list strong { color: #fff; }
.usp-list__check { flex: 0 0 auto; width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-weight: 700; font-size: .85rem; margin-top: 2px; }

.support-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.support-card__head { display: flex; align-items: center; gap: .8rem; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line); }
.support-card__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.support-card__head strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--ink); }
.support-card__head span { font-size: .82rem; color: var(--muted); }
.support-card__online { margin-left: auto; font-size: .74rem; font-weight: 600; color: var(--accent-ink); display: inline-flex; align-items: center; gap: .35rem; }
.support-card__online::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #28c840; animation: pulse 2.2s infinite; }
.support-card__chat { padding: 1.3rem; display: grid; gap: .7rem; background: var(--paper-2); }
.bubble { max-width: 86%; padding: .7rem 1rem; border-radius: 16px; font-size: .92rem; line-height: 1.45; }
.bubble--in { background: #fff; border: 1px solid var(--line); color: var(--text); border-bottom-left-radius: 5px; justify-self: start; }
.bubble--out { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-bottom-right-radius: 5px; justify-self: end; }
.support-card__foot { display: flex; align-items: center; gap: .5rem; padding: .9rem 1.3rem; font-size: .82rem; color: var(--muted); }
.support-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ---------- Stats ---------- */
.stats { background: var(--ink-2); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: clamp(2rem,4vw,3rem) clamp(1.1rem,4vw,2.2rem); }
.stat { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 1.5rem 1rem; }
.stat__value { display: inline-flex; align-items: baseline; justify-content: center; }
.stat__num, .stat__plus { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.1rem, 4vw, 3rem); background: linear-gradient(135deg, var(--accent-3), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat__label { font-size: .9rem; color: #b2b2ba; margin-top: .55rem; }

/* ---------- Referenzen ---------- */
/* Bento-Referenzen: große Feature-Stimme + kleinere Kacheln */
.refs { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.9rem, 1.8vw, 1.4rem); grid-auto-flow: dense; align-items: stretch; }
.ref { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.9rem; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); grid-column: span 2; }
.ref:nth-child(1) { grid-column: span 4; }
.ref:nth-child(4) { grid-column: span 4; }
.ref:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ref::before { content: '\201C'; position: absolute; top: .1rem; right: 1.3rem; font-family: var(--font-head); font-size: 4rem; color: var(--line); line-height: 1; }
.ref__tag { display: inline-block; align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: .78rem; color: var(--accent-ink); background: rgba(190,21,34,.1); padding: .3rem .8rem; border-radius: 999px; margin-bottom: 1rem; }
.ref__quote { font-family: var(--font-head); font-weight: 500; font-size: 1.08rem; color: var(--ink); line-height: 1.5; }
.ref__meta { display: block; margin-top: auto; padding-top: 1rem; font-size: .85rem; color: var(--muted-2); }
/* Feature-Stimme in Markenrot */
.ref:nth-child(1) { background: linear-gradient(150deg, var(--accent), var(--accent-2)); border-color: transparent; color: #fff; box-shadow: 0 24px 50px -22px rgba(190,21,34,.5); }
.ref:nth-child(1) .ref__quote { color: #fff; font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.45; }
.ref:nth-child(1) .ref__tag { background: rgba(255,255,255,.18); color: #fff; }
.ref:nth-child(1) .ref__meta { color: rgba(255,255,255,.85); }
.ref:nth-child(1)::before { color: rgba(255,255,255,.25); }
.refs__note { text-align: center; margin-top: 1.6rem; font-size: .85rem; color: var(--muted-2); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.1rem 1.9rem; }
.step__num { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); margin-bottom: 1.1rem; }
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .96rem; }
.step:not(:last-child)::after { content: '→'; position: absolute; top: 2.5rem; right: -1.2rem; color: var(--accent); font-size: 1.4rem; font-weight: 700; z-index: 2; }

/* ---------- Region ---------- */
.region__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.region__tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.7rem; }
.region__tags li { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); padding: .55rem 1.1rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
/* Kirchzarten-Teaser zur Landingpage */
.region__teaser { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; padding: 1rem 1.2rem; border-radius: var(--r);
  background: linear-gradient(120deg, rgba(190,21,34,.08), rgba(255,90,106,.05)); border: 1px solid rgba(190,21,34,.22);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.region__teaser:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.region__teaser-badge { flex: 0 0 auto; font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); padding: .45rem .75rem; border-radius: 999px; }
.region__teaser-text { font-size: .95rem; color: var(--muted); line-height: 1.4; }
.region__teaser-text strong { color: var(--ink); font-family: var(--font-head); }
/* Überregionaler Hinweis – dezent, Heimatregion bleibt im Fokus */
.region__reach { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: .92rem; line-height: 1.65; color: var(--muted); }
.region__reach strong { color: var(--ink); font-weight: 600; }
.map-svg { width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.pin circle { fill: var(--accent-2); }
.pin--main circle { fill: var(--accent); stroke: #fff; stroke-width: 2.5; }
.pin--main { animation: pinpulse 2.4s ease-in-out infinite; transform-origin: 232px 150px; }
.pin text { font-family: var(--font-head); font-weight: 600; font-size: 12px; fill: #f0f0f3; text-anchor: middle; }
.pin--main text { font-size: 13px; fill: #fff; }
@keyframes pinpulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); max-width: 900px; margin-inline: auto; }
.member { text-align: center; }
.member__photo { border-radius: var(--r-lg); margin-bottom: 1.1rem; overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow); }
/* Team-Fotos: einheitlicher Studio-Look ist direkt in die Bilder eingearbeitet */
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .5s var(--ease-out); }
.member:hover .member__photo img { transform: scale(1.06); }
.member h3 { margin-bottom: .2rem; }
.member span { color: var(--muted); font-size: .92rem; }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: .8rem; max-width: 820px; }
.acc { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s; }
.acc.is-open { box-shadow: var(--shadow-sm); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); background: none; border: 0; padding: 1.2rem 1.4rem; cursor: pointer; text-align: left; }
.acc__icon { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.acc__icon::before, .acc__icon::after { content: ''; position: absolute; background: var(--accent-ink); border-radius: 2px; transition: transform .3s var(--ease); }
.acc__icon::before { top: 9px; left: 0; width: 20px; height: 2.5px; }
.acc__icon::after { left: 9px; top: 0; width: 2.5px; height: 20px; }
.acc.is-open .acc__icon::after { transform: scaleY(0); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc__body p { padding: 0 1.4rem 1.3rem; font-size: .98rem; }

/* ---------- CTA / Form ---------- */
.cta { background: var(--ink); color: #fff; overflow: hidden; }
.cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cta__contact { display: grid; gap: .9rem; margin-top: 2rem; }
.cta__contact li { display: flex; align-items: center; gap: .8rem; color: #dcdce2; font-family: var(--font-head); font-weight: 500; }
.cta__contact a:hover { color: var(--accent-3); }
.cta__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); }
.cta__ico svg { width: 18px; height: 18px; }
.map-embed { margin-top: 1.8rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-lg); }
.map-embed iframe { display: block; width: 100%; height: 240px; border: 0; }
.map-embed__link { display: block; text-align: center; padding: .7rem 1rem; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: #f0f0f3; background: rgba(255,255,255,.06); transition: background .25s; }
.map-embed__link:hover { background: rgba(190,21,34,.25); color: #fff; }

.form { background: rgba(255,255,255,.06); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.3rem); box-shadow: var(--shadow-lg); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: block; margin-bottom: 1rem; }
.field > span { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: #f0f0f3; margin-bottom: .4rem; }
.field input, .field textarea { width: 100%; font-family: var(--font-body); font-size: .98rem; color: #fff; padding: .85rem 1rem; border: 1.5px solid rgba(255,255,255,.18); border-radius: 13px; background: rgba(255,255,255,.06); transition: border-color .25s, background .25s, box-shadow .25s; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.45); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-2); background: rgba(255,255,255,.1); box-shadow: 0 0 0 4px rgba(226,45,58,.22); }
.field textarea { resize: vertical; min-height: 110px; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; color: #b8b8c0; margin: .4rem 0 1.2rem; cursor: pointer; }
.checkbox input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; }
.form__status { margin-top: .9rem; font-size: .92rem; font-weight: 600; min-height: 1.2em; text-align: center; }
.form__status.is-ok { color: #6ee7a8; } .form__status.is-err { color: #ff8a8a; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #d2d2d8; padding: clamp(2.6rem,5vw,4rem) 0 1.8rem; border-top: 3px solid var(--accent); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 180px; pointer-events: none; background: radial-gradient(600px 180px at 50% 0, rgba(190,21,34,.18), transparent 70%); }
.footer__top { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.8rem; padding-bottom: 1.8rem; }
.footer__logo { display: inline-block; background: #fff; padding: .55rem .8rem; border-radius: 12px; }
.footer__logo img { height: 38px; width: auto; }
.footer__brand p { color: #9c9ca4; margin-top: .9rem; font-size: .92rem; }
.footer__reach { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; }
.footer__phone { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff; padding: .7rem 1.2rem; border-radius: var(--r-sm); background: var(--accent); box-shadow: none; transition: background .25s var(--ease-out); }
.footer__phone:hover { background: var(--accent-2); }
.footer__reach-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: #b2b2ba; padding: .6rem 1rem; border-radius: var(--r-sm); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: color .2s, border-color .2s; }
a.footer__reach-item:hover { color: #fff; border-color: rgba(190,21,34,.5); }
.footer__nav { position: relative; display: flex; flex-wrap: wrap; gap: .5rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__nav a { font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: #c9c9d0; padding: .45rem 1rem; border-radius: 999px; transition: background .2s, color .2s; }
.footer__nav a:hover { background: rgba(190,21,34,.18); color: #fff; }
.footer__bottom { position: relative; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; padding-top: 1.4rem; font-size: .82rem; color: #919199; }
.footer__legal a:hover { color: var(--accent-3); }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 14px 30px -8px rgba(190,21,34,.7); animation: floaty 4s ease-in-out infinite; }

/* ---------- Animationen ---------- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,90,106,.6); } 70% { box-shadow: 0 0 0 10px rgba(255,90,106,0); } 100% { box-shadow: 0 0 0 0 rgba(255,90,106,0); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Scroll-Reveal (über [data-anim]) */
[data-anim] { opacity: 0; will-change: transform, opacity; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-anim="fade-up"]    { transform: translateY(34px); }
[data-anim="fade-right"] { transform: translateX(-28px); }
[data-anim="zoom"]       { transform: scale(.92); }
[data-anim].is-visible   { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__title .line__inner { opacity: 1; transform: none; animation: none; }
  .mesh__blob, .marquee__track, .badge__pulse, .pin--main, .fab, .floaty, .support-card__online::before { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin: 0 auto; rotate: 0deg; }
  .hero__visual .glass-card { rotate: 0deg; }
  .floaty--1 { left: 0; } .floaty--2 { right: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card { grid-column: span 1 !important; grid-row: auto !important; }
  .card:nth-child(1) { grid-column: span 2 !important; }
  .card--wide { grid-column: span 2 !important; }
  .refs { grid-template-columns: repeat(2, 1fr); }
  .ref { grid-column: span 1 !important; }
  .ref:nth-child(1) { grid-column: span 2 !important; }
  .split, .region__inner, .cta__inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { content: '↓'; top: auto; right: auto; bottom: -1.3rem; left: 50%; transform: translateX(-50%); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer__top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .cards, .refs, .team { grid-template-columns: 1fr; }
  .card, .card:nth-child(1), .card--wide { grid-column: span 1 !important; }
  .card--wide { display: flex !important; }
  .ref, .ref:nth-child(1) { grid-column: span 1 !important; }
  .form__row { grid-template-columns: 1fr; }
  .footer__reach { width: 100%; } .footer__phone { width: 100%; justify-content: center; }
  .fab { display: grid; }
  .floaty { display: none; }
  body { font-size: 16px; }
}
@media (max-width: 460px) { .footer__reach-item { width: 100%; justify-content: center; } .hero__actions .btn { flex: 1; } }

/* ============================================================
   V6-STUDIO OVERRIDES — Glow-Headlines, roter Hero-Glow,
   zentrierte Ausrichtung, Partner-Logo-Banner
   ============================================================ */

/* ---- Roter Hero-Glow (rote Details über dem Hexagon-Muster) ---- */
.hero {
  background:
    linear-gradient(to bottom, rgba(7,5,5,.85) 0%, rgba(7,5,5,.35) 16%, rgba(7,5,5,0) 40%),
    radial-gradient(72% 92% at 33% 46%, rgba(203,26,40,.42) 0%, rgba(150,20,30,.16) 33%, rgba(10,8,8,0) 60%),
    linear-gradient(155deg, rgba(20,10,11,.58) 0%, rgba(12,9,9,.7) 46%, rgba(9,7,7,.94) 100%),
    url('assets/hero-bgneu.jpg') center/cover no-repeat,
    #0c0a0a;
}

/* ---- Glow-Reveal-Headlines ---- */
.gh .gh-w { display: inline-block; }
.gh .gh-c { display: inline; color: rgba(255,255,255,.15); }
.js .gh { color: rgba(255,255,255,.15); }
.js .gh--light, .gh--light .gh-c { color: rgba(22,19,15,.14); }
/* Failsafe / no-JS: sofort voll sichtbar */
.no-anim .gh, .no-anim .gh .gh-c { color: #fff !important; text-shadow: none !important; }
.no-anim .gh .gh-w--accent .gh-c { color: #e01e2b !important; }
.no-anim .gh--light, .no-anim .gh--light .gh-c { color: #16130f !important; }
.no-anim .gh--light .gh-w--accent .gh-c { color: #be1522 !important; }

/* ---- Ausrichtung: alles linksbündig ---- */
.section__head { text-align: left; margin-inline: 0; }
.statement__text { text-align: left; margin-inline: 0; }
.showcase__text, .split__content, .cta__text { text-align: left; }
.region__inner > div:first-child { text-align: left; }
.showcase__text .eyebrow, .split__content .eyebrow, .cta__text .eyebrow,
.region__inner .eyebrow { margin-inline: 0; }
.showcase__list, .usp-list, .cta__contact { align-items: flex-start; }
.showcase__list li, .usp-list li, .cta__contact li { justify-content: flex-start; text-align: left; }
.region__tags { justify-content: flex-start; }
.hero__content { text-align: left; }
.hero__content .badge { margin-inline: 0; }
.hero__actions { justify-content: flex-start; }

/* ---- Partner-Logo-Banner ---- */
.logos { position: relative; z-index: 2; background: #0c0a0a; padding: clamp(2rem, 4vw, 3.2rem) 0; overflow: hidden; }
.logos__label { text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); margin: 0 auto 1.7rem; padding-inline: 1.2rem; }
.logos__viewport { -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logos__track { display: inline-flex; align-items: center; gap: clamp(2.5rem, 5vw, 4.5rem); white-space: nowrap; animation: logoscroll 46s linear infinite; will-change: transform; }
.logos__track--rev { animation: logoscroll 40s linear infinite reverse; }
.logos:hover .logos__track { animation-play-state: paused; }
.logos__label--2 { margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.port { flex: 0 0 auto; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: clamp(.9rem, 1.3vw, 1.05rem); letter-spacing: .02em; color: rgba(255,255,255,.62); display: inline-flex; align-items: center; }
.port::before { content: "\2022"; color: var(--accent-3, #ff5a6a); margin-right: clamp(2.5rem,5vw,4.5rem); font-size: .8em; }
.logo { flex: 0 0 auto; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(1.15rem, 1.8vw, 1.45rem); letter-spacing: -.01em; color: rgba(255,255,255,.5); transition: color .3s ease; }
.logo:hover { color: #fff; }
.logo img { height: 30px; width: auto; filter: grayscale(1) brightness(0) invert(1); opacity: .55; transition: opacity .3s ease; }
.logo:hover img { opacity: 1; }
@keyframes logoscroll { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .gh, .gh .gh-c { color: #fff !important; text-shadow: none !important; }
  .gh .gh-w--accent .gh-c { color: #e01e2b !important; }
  .gh--light, .gh--light .gh-c { color: #16130f !important; }
  .gh--light .gh-w--accent .gh-c { color: #be1522 !important; }
  .logos__track { animation: none !important; justify-content: center; flex-wrap: wrap; width: 100%; gap: 1.4rem 2.5rem; }
}

/* ---- Kinetischer Wort-Swap (Software-Sektion) ---- */
.soft-swap { color: var(--ink); }
.swap { display: inline-block; overflow: hidden; vertical-align: bottom; color: var(--accent); text-align: left; }
.swap__list { display: block; }
.swap__w { display: block; line-height: 1.15; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) {
  .swap { height: auto !important; width: auto !important; }
  .swap__list { display: inline; }
  .swap__w { display: inline; }
  .swap__w:not(:first-child) { display: none; }
}

/* ---- Fester Submit-Button (nicht verspielt: solide Fläche, feste Ecken, kein Anheben) ---- */
.btn--solid { background: var(--accent); border-radius: var(--r-sm); box-shadow: none; will-change: auto; font-weight: 700; letter-spacing: .01em; }
.btn--solid:hover { background: var(--accent-2); box-shadow: none; transform: none; }
.btn--solid:active { background: var(--accent-ink); transform: none; }

/* ---- Kontakt vereinfacht (niedrigere Hürde) ---- */
.cta__quick { margin: 1.6rem 0 1.9rem; }
.cta__quick .btn { margin-bottom: 1rem; }
.cta__ease { color: #c6c6ce; font-size: .95rem; max-width: 44ch; }
.cta__ease strong { color: #fff; }
.form__hint { font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: #d3d3da; margin-bottom: 1.2rem; padding: .75rem 1rem; background: rgba(226,45,58,.12); border-left: 3px solid var(--accent-2); border-radius: 10px; }
.form__hint strong { color: #fff; font-weight: 700; }
.field .opt { font-weight: 400; font-size: .78em; color: rgba(255,255,255,.5); text-transform: none; letter-spacing: 0; }

/* ---- Sticky-Schnellkontakt (Fernwartung / Chat / Jetzt beraten) ---- */
.sticky-actions { position: fixed; right: 16px; top: 90px; z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.sticky-act { display: inline-flex; align-items: center; height: 52px; background: var(--accent); color: #fff; border-radius: 16px; box-shadow: 0 10px 26px -8px rgba(190,21,34,.55); overflow: hidden; text-decoration: none; transition: background .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.sticky-act__label { white-space: nowrap; max-width: 0; opacity: 0; font-family: var(--font-head); font-weight: 700; font-size: .92rem; letter-spacing: -.01em; padding-left: 0; transition: max-width .38s var(--ease-out), opacity .3s var(--ease-out), padding .38s var(--ease-out); }
.sticky-act__ic { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; }
.sticky-act__ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sticky-act:hover, .sticky-act:focus-visible { background: var(--accent-2); box-shadow: 0 14px 30px -8px rgba(190,21,34,.65); }
.sticky-act:hover .sticky-act__label, .sticky-act:focus-visible .sticky-act__label { max-width: 240px; opacity: 1; padding-left: 18px; }
@media (max-width: 560px) {
  .sticky-actions { right: 12px; top: 82px; gap: 10px; }
  .sticky-act { height: 48px; }
  .sticky-act__ic { flex-basis: 48px; width: 48px; height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-act, .sticky-act__label { transition: none; }
}

/* ============================================================
   Chat-Assistent (Fenster + geführter Assistent, dockt an AiS an)
   ============================================================ */
.chat { position: fixed; right: 16px; bottom: 18px; z-index: 120; width: min(372px, calc(100vw - 32px)); max-height: min(600px, calc(100vh - 40px)); display: flex; flex-direction: column; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px -20px rgba(0,0,0,.55); animation: chatIn .3s var(--ease-out); }
.chat[hidden] { display: none; }
@keyframes chatIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.chat__head { display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; background: var(--accent); color: #fff; }
.chat__avatar { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.9); display: grid; place-items: center; }
.chat__avatar img { width: 24px; height: 24px; }
.chat__who { display: flex; flex-direction: column; line-height: 1.25; }
.chat__who strong { font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.chat__status { font-size: .74rem; opacity: .92; display: inline-flex; align-items: center; gap: .35rem; }
.chat__dot { width: 7px; height: 7px; border-radius: 50%; background: #34d17f; }
.chat__close { margin-left: auto; background: rgba(255,255,255,.16); border: 0; color: #fff; width: 32px; height: 32px; border-radius: 9px; cursor: pointer; display: grid; place-items: center; }
.chat__close svg { width: 18px; height: 18px; }
.chat__close:hover { background: rgba(255,255,255,.28); }
.chat__body { flex: 1 1 auto; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .55rem; background: #f5f5f6; }
.msg { max-width: 84%; padding: .68rem .9rem; border-radius: 15px; font-family: var(--font-body); font-size: .93rem; line-height: 1.45; }
.msg--bot { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.msg--user { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 5px; }
.msg--bot a { color: var(--accent); text-decoration: underline; }
.msg--user a { color: #fff; text-decoration: underline; }
.msg__typing { display: inline-flex; gap: 4px; padding: .1rem 0; }
.msg__typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); animation: chatTyping 1.2s infinite; }
.msg__typing i:nth-child(2) { animation-delay: .2s; } .msg__typing i:nth-child(3) { animation-delay: .4s; }
@keyframes chatTyping { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.chat__quick { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0 1rem .7rem; background: #f5f5f6; }
.chat__quick:empty { display: none; }
.chip { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--accent); background: #fff; border: 1.5px solid rgba(190,21,34,.35); border-radius: 999px; padding: .45rem .9rem; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.chat__input { display: flex; gap: .5rem; padding: .7rem; border-top: 1px solid var(--line); background: #fff; }
.chat__input input { flex: 1 1 auto; min-width: 0; border: 1.5px solid var(--line); border-radius: 12px; padding: .7rem .85rem; font-family: var(--font-body); font-size: .95rem; color: var(--ink); }
.chat__input input:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(226,45,58,.15); }
.chat__input button { flex: 0 0 auto; width: 44px; border: 0; background: var(--accent); color: #fff; border-radius: 12px; cursor: pointer; display: grid; place-items: center; }
.chat__input button:hover { background: var(--accent-2); }
.chat__input button svg { width: 20px; height: 20px; }
.chat__legal { font-size: .68rem; color: var(--muted-2); text-align: center; padding: .45rem 1rem .7rem; background: #fff; }
.chat__legal a { color: var(--muted); text-decoration: underline; }
body.chat-open .sticky-actions { opacity: 0; pointer-events: none; }
@media (max-width: 560px) { .chat { right: 10px; left: 10px; bottom: 10px; width: auto; max-height: calc(100vh - 20px); } }
@media (prefers-reduced-motion: reduce) { .chat { animation: none; } .msg__typing i { animation: none; } }

/* ============================================================
   Fernwartung-Modal (pcvisit Kundenmodul)
   ============================================================ */
.remote { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 1rem; }
.remote[hidden] { display: none; }
.remote__backdrop { position: absolute; inset: 0; background: rgba(10,8,8,.6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.remote__box { position: relative; z-index: 1; width: min(440px, 100%); max-height: calc(100vh - 2rem); overflow-y: auto; background: #fff; border-radius: 22px; padding: clamp(1.5rem, 4vw, 2.2rem); box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); animation: chatIn .3s var(--ease-out); text-align: left; }
.remote__close { position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; border: 0; background: var(--paper-2); border-radius: 10px; cursor: pointer; display: grid; place-items: center; color: var(--ink); }
.remote__close:hover { background: var(--line); }
.remote__close svg { width: 18px; height: 18px; }
.remote__badge { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-ink); background: rgba(190,21,34,.08); padding: .35rem .7rem; border-radius: 999px; }
.remote__box h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; margin: 1rem 0 .5rem; color: var(--ink); }
.remote__lead { color: var(--muted); font-size: .98rem; margin-bottom: 1.3rem; }
.remote__lead strong { color: var(--ink); }
.remote__steps { display: grid; gap: .9rem; margin-bottom: 1.5rem; }
.remote__steps li { display: flex; gap: .8rem; align-items: flex-start; }
.remote__n { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; background: var(--accent); color: #fff; border-radius: 9px; font-family: var(--font-head); font-weight: 800; font-size: .95rem; }
.remote__steps li strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem; }
.remote__steps li div span { color: var(--muted); font-size: .9rem; line-height: 1.4; }
.remote__help { margin-top: 1rem; font-size: .86rem; color: var(--muted); text-align: center; }
.remote__help a { color: var(--accent); font-weight: 700; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .remote__box { animation: none; } }

/* ============================================================
   net97 Agent (Ticketsystem) — Mockup im "Warum"-Bereich
   ============================================================ */
.agentcard { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.08); }
.agentcard__bar { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.1rem; background: linear-gradient(180deg, #46464f 0%, #37373f 100%); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.09), inset 0 -1px 0 rgba(0,0,0,.35); }
.agentcard__app { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.agentcard__mark { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); box-shadow: inset -6px -6px 0 rgba(0,0,0,.18); }
.agentcard__status { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; color: #cdcdd4; }
.agentcard__dot { width: 8px; height: 8px; border-radius: 50%; background: #34d17f; }
.agentcard__body { padding: 1.2rem; }
.agentcard__lead { color: var(--muted); font-size: .95rem; margin-bottom: 1.1rem; line-height: 1.5; }
.agentcard__lead strong { color: var(--ink); }
.agentcard__actions { display: grid; gap: .55rem; margin-bottom: 1.1rem; }
.agentcard__act { display: flex; align-items: center; gap: .7rem; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 12px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink); background: #fff; cursor: default; user-select: none; transition: transform .28s var(--ease-out), border-color .28s var(--ease-out), box-shadow .28s var(--ease-out), background-color .28s var(--ease-out), color .28s var(--ease-out); }
.agentcard__act:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-ink); background: #fff5f5; box-shadow: 0 14px 28px -16px rgba(190,21,34,.55); }
.agentcard__act:hover .agentcard__ic svg { stroke: var(--accent); }
.agentcard__act--primary { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 10px 24px -12px rgba(190,21,34,.6); }
.agentcard__act--primary:hover { transform: translateY(-2px); background: var(--accent-2); color: #fff; border-color: var(--accent-2); box-shadow: 0 18px 32px -12px rgba(190,21,34,.72); }
.agentcard__act--primary:hover .agentcard__ic svg { stroke: #fff; }
/* Wird eine der anderen Aktionen gehovert, tritt "Ticket einreichen" zurück (wird weiß/neutral) */
.agentcard__actions:has(.agentcard__act:not(.agentcard__act--primary):hover) .agentcard__act--primary { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: none; transform: none; }
@media (prefers-reduced-motion: reduce) { .agentcard__act { transition: border-color .2s, background-color .2s, color .2s; } .agentcard__act:hover, .agentcard__act--primary:hover { transform: none; } }
.agentcard__ic { flex: 0 0 auto; display: grid; place-items: center; }
.agentcard__ic svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.agentcard__ticket { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1rem; }
.agentcard__ticket-head { display: flex; align-items: center; gap: .55rem; margin-bottom: .5rem; }
.agentcard__tag { font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: var(--ink); }
.agentcard__state { font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .03em; text-transform: uppercase; color: #0f7a45; background: rgba(15,122,69,.1); padding: .18rem .55rem; border-radius: 999px; }
.agentcard__ticket p { color: var(--ink); font-size: .9rem; line-height: 1.45; margin-bottom: .6rem; }
.agentcard__by { display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--muted); }
.agentcard__avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .72rem; }

/* ============================================================
   Interaktiver Leistungs-Showcase  (#leistungen)
   Liste links · großes wechselndes "Bild" rechts
   ============================================================ */
.svc { display: grid; grid-template-columns: minmax(205px, 285px) minmax(330px, 1fr) minmax(205px, 285px); gap: clamp(.75rem, 1.6vw, 1.3rem); align-items: center; margin-top: clamp(1.5rem, 4vw, 2.6rem); text-align: left; }
.svc__menu { display: flex; flex-direction: column; gap: .55rem; }
.svc__item { display: flex; align-items: center; gap: .85rem; width: 100%; text-align: left; padding: .85rem .95rem; border: 1px solid var(--line); border-radius: 15px; background: #fff; cursor: pointer; font: inherit; color: inherit; transition: border-color .28s var(--ease-out), background-color .28s var(--ease-out), box-shadow .28s var(--ease-out), transform .28s var(--ease-out); }
.svc__item:hover, .svc__item.is-active { border-color: var(--accent); box-shadow: 0 16px 34px -22px rgba(190,21,34,.55); transform: translateX(3px); }
.svc__item:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; }
.svc__ic { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--paper-2); color: var(--ink); transition: background-color .28s var(--ease-out), color .28s var(--ease-out); }
.svc__ic svg { width: 23px; height: 23px; }
.svc__item:hover .svc__ic, .svc__item.is-active .svc__ic { background: var(--accent); color: #fff; }
.svc__txt { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.svc__txt strong { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.svc__txt span { font-size: .82rem; color: var(--muted); line-height: 1.35; }
.svc__arrow { margin-left: auto; flex: 0 0 auto; color: var(--muted-2); opacity: 0; transform: translateX(-5px); transition: opacity .28s var(--ease-out), transform .28s var(--ease-out), color .28s; }
.svc__arrow svg { width: 18px; height: 18px; display: block; }
.svc__item:hover .svc__arrow, .svc__item.is-active .svc__arrow { opacity: 1; transform: none; color: var(--accent); }

/* Rechtes Menü gespiegelt: Icon außen, Pfeil zeigt nach innen zur Bühne */
.svc__menu--right .svc__item { flex-direction: row-reverse; }
.svc__menu--right .svc__txt { align-items: flex-end; text-align: right; }
.svc__menu--right .svc__arrow { margin-left: 0; margin-right: auto; transform: translateX(5px); }
.svc__menu--right .svc__arrow svg { transform: scaleX(-1); }
.svc__menu--right .svc__item:hover .svc__arrow, .svc__menu--right .svc__item.is-active .svc__arrow { transform: none; }
.svc__menu--right .svc__item:hover, .svc__menu--right .svc__item.is-active { transform: translateX(-3px); }

.svc__stage { position: relative; border-radius: 22px; overflow: hidden; min-height: 500px; background: radial-gradient(120% 120% at 15% 0%, #45454e 0%, #35353c 45%, #2c2c32 100%); border: 1px solid rgba(255,255,255,.09); box-shadow: var(--shadow-lg); }
.svc__stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 80% 15%, rgba(190,21,34,.16), transparent 70%); pointer-events: none; }
.svc__panel { position: absolute; inset: 0; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: scale(1.015); transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), visibility .5s; }
.svc__panel.is-active { opacity: 1; visibility: visible; transform: none; }
.svc__scene { flex: 1 1 auto; display: grid; place-items: center; padding: clamp(.5rem, 1.2vw, 1rem); min-height: 0; }
.svc__scene svg { width: 100%; height: 100%; max-height: 380px; overflow: visible; }
/* Lesbarkeits-Halo: dunkle Kontur hinter jeder Beschriftung, damit Labels über Linien/Pfeilen klar bleiben */
.svc__scene svg text { paint-order: stroke; stroke: rgba(16,16,22,.72); stroke-width: 2.6px; stroke-linejoin: round; stroke-linecap: round; }
.svc__caption { position: relative; padding: 1.15rem clamp(1.2rem, 3vw, 1.9rem) 1.45rem; border-top: 1px solid rgba(255,255,255,.07); background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.28)); }
.svc__badge { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--accent); padding: .3rem .7rem; border-radius: 999px; margin-bottom: .55rem; }
.svc__caption p { color: #cfcfd6; font-size: .95rem; line-height: 1.5; margin: 0; }

@media (max-width: 1000px) {
  .svc { grid-template-columns: 1fr 1fr; align-items: start; }
  .svc__stage { grid-column: 1 / -1; order: -1; min-height: 360px; }
  .svc__scene svg { max-height: 260px; }
  .svc__menu--right .svc__item { flex-direction: row; }
  .svc__menu--right .svc__txt { align-items: flex-start; text-align: left; }
  .svc__menu--right .svc__arrow { margin-left: auto; margin-right: 0; transform: translateX(-5px); }
  .svc__menu--right .svc__arrow svg { transform: none; }
  .svc__menu--right .svc__item:hover, .svc__menu--right .svc__item.is-active { transform: translateX(3px); }
}
@media (max-width: 560px) {
  .svc { grid-template-columns: 1fr; }
  .svc__scene svg { max-height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  .svc__item { transition: border-color .2s, background-color .2s, color .2s; }
  .svc__item:hover, .svc__item.is-active { transform: none; }
  .svc__panel { transition: opacity .2s linear, visibility .2s; transform: none; }
  .svc__panel.is-active { transform: none; }
}

/* ============================================================
   AUDIT-FIXES (Barrierefreiheit / Responsive) – 2026-07
   Bewusst als spätere Überschreibungen mit gleicher Spezifität.
   ============================================================ */

/* A11y: SVG-Szenen-Animationen bei "Bewegung reduzieren" anhalten */
@media (prefers-reduced-motion: reduce) {
  .svc__scene svg * { animation: none !important; }
  .logos__track, .logos__track--rev, .marquee__track { animation: none !important; }
}

/* A11y: Kontrast – Sekundärtext #9a9aa0 (2.8:1) -> --muted #676767 (5.66:1) */
.ref__meta { color: var(--muted); }
.refs__note { color: var(--muted); }
.chat__legal { color: var(--muted); }
/* Logo-/Portfolio-Label: 42% -> 55% Deckkraft (4.06:1 -> 6.28:1) */
.logos__label { color: rgba(255,255,255,.55); }

/* A11y/Responsive: Tap-Ziele >= 44px */
.nav-toggle { min-width: 44px; min-height: 44px; box-sizing: border-box; align-items: center; justify-content: center; }
.footer__nav a { padding: .6rem 1rem; }
.footer__legal a { display: inline-block; padding: .5rem .3rem; }

/* Responsive: Hero-Headline sauber umbrechen – nur an Bindestrich/Leerzeichen,
   kein Wortbruch mitten im Wort. Schriftgröße (oben) hält lange Komposita in der Spalte. */
.hero__title { overflow-wrap: break-word; }
.hero__title .gh-w { overflow-wrap: break-word; word-break: normal; }

/* Responsive/Touch: Sticky-Schnellkontakt-Labels auf Touch-Geräten dauerhaft zeigen */
@media (hover: none) {
  .sticky-act__label { max-width: 240px; opacity: 1; padding-left: 12px; }
}

/* A11y: Laufbänder bei Hover/Fokus pausieren (Pause-Mechanismus, ergänzt reduced-motion) */
.logos:hover .logos__track, .logos:focus-within .logos__track,
.logos:hover .logos__track--rev, .logos:focus-within .logos__track--rev,
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }

/* Kleine Eyebrow-Labels über den Abschnitts-Überschriften ausblenden */
.eyebrow { display: none; }
