/* ============================================================
   Elektro Obermüller — modernes Website-Stylesheet
   CI: Elektroblau + Anthrazit · mobile-first · kein Build nötig
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --brand:       #2f8fd0;
  --brand-600:   #2179b4;
  --brand-700:   #195f8d;
  --brand-300:   #6bb4e6;
  --brand-glow:  #3da0ee;

  /* Neutrals — light */
  --paper:   #ffffff;
  --paper-2: #f5f8fb;
  --paper-3: #eaf0f6;
  --line:    #e3e9f1;
  --ink:     #14181f;
  --ink-2:   #2a313c;
  --ink-soft:#5d6878;

  /* Neutrals — dark */
  --dark:    #0d0f14;
  --dark-2:  #13161d;
  --dark-3:  #1a1f29;
  --dark-4:  #232a36;
  --line-d:  rgba(255,255,255,.10);
  --ink-inv: #eef3f9;
  --ink-inv-soft: #9aa6b6;

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.10);
  --sh:    0 8px 24px -6px rgba(16,24,40,.14), 0 2px 6px rgba(16,24,40,.06);
  --sh-lg: 0 30px 60px -18px rgba(13,18,30,.28), 0 8px 24px -12px rgba(13,18,30,.18);
  --sh-brand: 0 18px 48px -12px rgba(47,143,208,.45);

  /* Type */
  --font-brand:   "Poppins", system-ui, sans-serif;
  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(1.15rem, 5vw, 2rem);
  --nav-h: 72px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brand-glow); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
.h-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-600);
}
.h-eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--brand), transparent); }
.section-title { font-size: clamp(1.85rem, 5vw, 3rem); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.22rem); color: var(--ink-soft); line-height: 1.6; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.75rem, 9vw, 7rem); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head .lead { margin-top: 1rem; }
.center { text-align: center; margin-inline: auto; }
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .92rem 1.5rem; border-radius: var(--r-pill);
  background: var(--bg); color: var(--fg);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { box-shadow: var(--sh-brand); }
.btn--primary::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn--primary:hover { background: var(--brand-600); box-shadow: 0 22px 54px -10px rgba(47,143,208,.6); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-600); background: var(--paper-2); }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--light:hover { background: #f0f6fc; }
.btn--outline-inv { --bg: transparent; --fg: #fff; border: 1.5px solid var(--line-d); }
.btn--outline-inv:hover { border-color: var(--brand-300); background: rgba(255,255,255,.06); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 1.85rem; font-size: 1.06rem; }

.textlink { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--brand-600); transition: gap .25s var(--ease); }
.textlink svg { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.textlink:hover { gap: .7rem; }
.textlink:hover svg { transform: translateX(3px); }

/* ============================================================
   HEADER + NAV
   ============================================================ */
.topbar {
  background: var(--dark); color: var(--ink-inv-soft);
  font-size: .85rem; border-bottom: 1px solid var(--line-d);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .5rem; }
.topbar__set { display: flex; align-items: center; gap: 1.5rem; }
.topbar a { display: inline-flex; align-items: center; gap: .5rem; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 1em; height: 1em; color: var(--brand-300); }
.topbar .notruf { color: #fff; font-weight: 600; }
.topbar .notruf .dot { width: 8px; height: 8px; border-radius: 50%; background: #41d17a; box-shadow: 0 0 0 0 rgba(65,209,122,.6); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%{box-shadow:0 0 0 0 rgba(65,209,122,.55)} 70%{box-shadow:0 0 0 7px rgba(65,209,122,0)} 100%{box-shadow:0 0 0 0 rgba(65,209,122,0)} }
@media (max-width: 860px) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(16,24,40,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 1rem; }
.nav__links { display: none; align-items: center; gap: .35rem; }
.nav__links a {
  position: relative; padding: .55rem .85rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .97rem; color: var(--ink-2); transition: color .2s, background .2s;
}
.nav__links a::after {
  content:""; position:absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px;
  background: var(--brand); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav__links a:hover { color: var(--brand-600); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { display: none; }

/* Logo lockup */
.logo { display: inline-flex; align-items: center; gap: .65rem; }
.logo__mark { width: 42px; height: 42px; flex: none; filter: drop-shadow(0 4px 10px rgba(47,143,208,.28)); }
.logo__mark .m-blue { fill: var(--brand); }
.logo__mark .m-dark { fill: var(--ink); transition: fill .3s; }
.logo__word { display: flex; flex-direction: column; line-height: .92; }
.logo__word b { font-family: var(--font-brand); font-weight: 700; font-size: 1.28rem; letter-spacing: -.01em; color: var(--ink); }
.logo__word span { font-family: var(--font-body); font-size: .62rem; letter-spacing: .03em; color: var(--ink-soft); font-weight: 500; margin-top: 1px; }
/* on dark backgrounds */
.on-dark .logo__mark .m-dark, .logo--inv .logo__mark .m-dark { fill: #fff; }
.on-dark .logo__word b, .logo--inv .logo__word b { color: #fff; }
.on-dark .logo__word span, .logo--inv .logo__word span { color: var(--ink-inv-soft); }

/* Burger */
.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper); transition: background .2s, border-color .2s; }
.burger span { display:block; width: 21px; height: 2px; margin-inline:auto; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s; }
.burger:hover { border-color: var(--brand); }
@media (min-width: 992px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .burger { display: none; }
}

/* ============================================================
   MOBILE FLYOUT MENU
   ============================================================ */
.flyout {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
}
.flyout__scrim {
  position: absolute; inset: 0; background: rgba(8,11,16,.55);
  opacity: 0; transition: opacity .4s var(--ease); backdrop-filter: blur(2px);
}
.flyout__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--dark); color: var(--ink-inv);
  display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform .45s var(--ease-out);
  box-shadow: -30px 0 60px -20px rgba(0,0,0,.6);
  overflow-y: auto; overscroll-behavior: contain;
  background-image: radial-gradient(120% 60% at 100% 0%, rgba(47,143,208,.22), transparent 60%);
}
body.flyout-open { overflow: hidden; }
body.flyout-open .flyout { visibility: visible; }
body.flyout-open .flyout__scrim { opacity: 1; }
body.flyout-open .flyout__panel { transform: translateX(0); }
/* burger -> X */
body.flyout-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.flyout-open .burger span:nth-child(2) { opacity: 0; }
body.flyout-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.flyout__head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem var(--pad); border-bottom: 1px solid var(--line-d); }
.flyout__close { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-d); color: #fff; display: grid; place-items: center; transition: background .2s; }
.flyout__close:hover { background: rgba(255,255,255,.08); }
.flyout__close svg { width: 20px; height: 20px; }

.flyout__nav { padding: .75rem var(--pad) .5rem; display: flex; flex-direction: column; }
.flyout__nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem .25rem; font-family: var(--font-display); font-weight: 600; font-size: 1.32rem;
  border-bottom: 1px solid var(--line-d); color: #fff;
  opacity: 0; transform: translateX(18px);
}
.flyout__nav a .idx { font-family: var(--font-body); font-size: .8rem; color: var(--brand-300); font-weight: 600; }
.flyout__nav a:active { color: var(--brand-300); }
body.flyout-open .flyout__nav a { animation: flyIn .5s var(--ease-out) forwards; }
body.flyout-open .flyout__nav a:nth-child(1){animation-delay:.08s}
body.flyout-open .flyout__nav a:nth-child(2){animation-delay:.13s}
body.flyout-open .flyout__nav a:nth-child(3){animation-delay:.18s}
body.flyout-open .flyout__nav a:nth-child(4){animation-delay:.23s}
body.flyout-open .flyout__nav a:nth-child(5){animation-delay:.28s}
body.flyout-open .flyout__nav a:nth-child(6){animation-delay:.33s}
@keyframes flyIn { to { opacity: 1; transform: translateX(0); } }

.flyout__foot { margin-top: auto; padding: 1.25rem var(--pad) calc(1.5rem + env(safe-area-inset-bottom)); }
.flyout__notruf {
  display: flex; align-items: center; gap: .8rem; padding: .95rem 1.1rem; border-radius: var(--r);
  background: linear-gradient(135deg, var(--brand-600), var(--brand)); color: #fff; font-weight: 600; margin-bottom: 1.1rem;
  box-shadow: var(--sh-brand);
}
.flyout__notruf .ico { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; flex: none; }
.flyout__notruf .ico svg { width: 20px; height: 20px; }
.flyout__notruf small { display: block; font-weight: 500; opacity: .85; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.flyout__notruf b { font-size: 1.12rem; }
.flyout__contact { display: grid; gap: .35rem; font-size: .96rem; }
.flyout__contact a, .flyout__contact p { display: flex; align-items: center; gap: .7rem; color: var(--ink-inv-soft); padding: .35rem 0; }
.flyout__contact svg { width: 1.05em; height: 1.05em; color: var(--brand-300); flex: none; }
.flyout__contact a:hover { color: #fff; }
.flyout__social { display: flex; gap: .6rem; margin-top: 1rem; }
.flyout__social a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line-d); display: grid; place-items: center; color: var(--ink-inv-soft); transition: all .2s; }
.flyout__social a:hover { color: #fff; border-color: var(--brand-300); background: rgba(47,143,208,.15); }
.flyout__social svg { width: 18px; height: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: var(--ink-inv); overflow: hidden;
  background: radial-gradient(130% 120% at 80% -10%, #1c2632 0%, transparent 55%), linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  background-color: var(--dark);
  padding-top: clamp(3rem, 8vw, 5.5rem); padding-bottom: clamp(3.5rem, 9vw, 6rem);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -2px;
  background-image: linear-gradient(var(--line-d) 1px, transparent 1px), linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 78%);
  opacity: .55;
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero__glow--1 { width: 540px; height: 540px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(47,143,208,.55), transparent 65%); animation: floatA 14s ease-in-out infinite; }
.hero__glow--2 { width: 420px; height: 420px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(47,143,208,.32), transparent 65%); animation: floatB 18s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,30px)} }
@keyframes floatB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-24px)} }

.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem; padding: .45rem .9rem .45rem .55rem;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-d); border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600; color: var(--ink-inv); backdrop-filter: blur(6px);
}
.hero__badge .pill { background: var(--brand); color: #fff; padding: .15rem .55rem; border-radius: var(--r-pill); font-size: .72rem; letter-spacing: .03em; }
.hero h1 {
  font-size: clamp(2.5rem, 7.5vw, 4.6rem); color: #fff; margin-top: 1.4rem; letter-spacing: -.025em;
}
.hero h1 .accent { color: transparent; background: linear-gradient(100deg, var(--brand-300), var(--brand)); -webkit-background-clip: text; background-clip: text; }
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(22px); animation: heroWord .8s var(--ease-out) forwards; }
.hero__sub { margin-top: 1.4rem; max-width: 36ch; font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--ink-inv-soft); line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 5vw, 2.75rem); margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line-d); }
.hero__stat b { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); color: #fff; display: block; line-height: 1; }
.hero__stat span { font-size: .85rem; color: var(--ink-inv-soft); }
@keyframes heroWord { to { opacity: 1; transform: translateY(0); } }

/* hero visual card (right) */
.hero__visual { position: relative; }
.hero__card {
  position: relative; border-radius: var(--r-lg); padding: 1.6rem;
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid var(--line-d); backdrop-filter: blur(10px);
  box-shadow: var(--sh-lg);
}
.hero__card-mark { width: 96px; height: 96px; margin-bottom: 1.1rem; filter: drop-shadow(0 8px 24px rgba(47,143,208,.5)); }
.hero__card h3 { color: #fff; font-size: 1.3rem; }
.hero__card p { color: var(--ink-inv-soft); font-size: .96rem; margin-top: .4rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.hero__chips span { font-size: .82rem; padding: .4rem .8rem; border-radius: var(--r-pill); background: rgba(47,143,208,.16); border: 1px solid rgba(47,143,208,.3); color: var(--brand-300); font-weight: 600; }
.scan { position:absolute; left:0; right:0; height:2px; top:0; background: linear-gradient(90deg, transparent, var(--brand-glow), transparent); animation: scan 4.5s linear infinite; border-radius:2px; opacity:.7; }
@keyframes scan { 0%{top:0;opacity:0} 10%{opacity:.8} 90%{opacity:.8} 100%{top:100%;opacity:0} }

@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; }
}

/* ============================================================
   MARQUEE / TRUST LOGOS
   ============================================================ */
.marquee { background: var(--paper); border-bottom: 1px solid var(--line); padding-block: 1.5rem; overflow: hidden; }
.marquee__label { text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 1.1rem; }
.marquee__track { display: flex; gap: clamp(2rem, 6vw, 4.5rem); width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: var(--ink-2); opacity: .55; white-space: nowrap; transition: opacity .25s, color .25s; letter-spacing: -.01em; }
.marquee__track span:hover { opacity: 1; color: var(--brand-600); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   LEISTUNGEN (services)
   ============================================================ */
.services { background: var(--paper-2); }
.services__grid { grid-template-columns: 1fr; }
@media (min-width: 620px) { .services__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .services__grid { grid-template-columns: repeat(3,1fr); } }

.scard {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.scard::after { content:""; position:absolute; inset:0; border-radius: inherit; padding:1px; background: linear-gradient(135deg, var(--brand), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:0; transition: opacity .35s; pointer-events:none; }
.scard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.scard:hover::after { opacity: 1; }
.scard__ico {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.15rem;
  background: linear-gradient(145deg, rgba(47,143,208,.14), rgba(47,143,208,.05)); color: var(--brand-600);
  border: 1px solid rgba(47,143,208,.2); transition: transform .35s var(--ease);
}
.scard:hover .scard__ico { transform: scale(1.06) rotate(-3deg); }
.scard__ico svg { width: 28px; height: 28px; }
.scard h3 { font-size: 1.22rem; }
.scard p { margin-top: .5rem; color: var(--ink-soft); font-size: .97rem; }

/* full list of services as chips */
.allservices { margin-top: clamp(2.25rem, 5vw, 3rem); }
.allservices__head { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.allservices__head h3 { font-size: 1.15rem; }
.allservices__head span { color: var(--ink-soft); font-size: .95rem; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li {
  display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line); font-weight: 500; font-size: .94rem; color: var(--ink-2);
  transition: border-color .2s, color .2s, transform .2s;
}
.chips li::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex: none; }
.chips li:hover { border-color: var(--brand); color: var(--brand-600); transform: translateY(-2px); }

/* ============================================================
   SICHERHEIT (alarm + video) — dark
   ============================================================ */
.security { background: var(--dark); color: var(--ink-inv); position: relative; overflow: hidden; }
.security .hero__grid { opacity: .4; }
.security__inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .security__inner { grid-template-columns: 1fr 1fr; } }
.security h2 { color: #fff; }
.security .lead { color: var(--ink-inv-soft); }
.security__list { display: grid; gap: 1rem; margin-top: 1.75rem; }
.security__list li { display: flex; gap: .85rem; align-items: flex-start; }
.security__list .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(47,143,208,.18); border: 1px solid rgba(47,143,208,.35); color: var(--brand-300); display: grid; place-items: center; margin-top: 2px; }
.security__list .ck svg { width: 14px; height: 14px; }
.security__list b { color: #fff; font-weight: 600; }
.security__list p { color: var(--ink-inv-soft); font-size: .95rem; }

.partners { background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid var(--line-d); border-radius: var(--r-lg); padding: 1.75rem; }
.partners h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.partners__brands { display: flex; flex-wrap: wrap; gap: .65rem; }
.partners__brands span { padding: .6rem 1.1rem; border-radius: var(--r-sm); background: rgba(255,255,255,.05); border: 1px solid var(--line-d); font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; color: #fff; }
.partners__note { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line-d); color: var(--ink-inv-soft); font-size: .92rem; }
.partners__note b { color: var(--brand-300); }

/* ============================================================
   STÖRUNGSNOTRUF band
   ============================================================ */
.notruf-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--brand-700), var(--brand-600) 55%, var(--brand));
  color: #fff;
}
.notruf-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 40%); }
.notruf-band__inner { position: relative; z-index: 1; display: grid; gap: 1.75rem; align-items: center; padding-block: clamp(2.5rem, 6vw, 3.75rem); }
@media (min-width: 820px) { .notruf-band__inner { grid-template-columns: 1fr auto; } }
.notruf-band .tag { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.notruf-band .tag .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; animation: pulseWhite 1.8s infinite; }
@keyframes pulseWhite { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.6)} 70%{box-shadow:0 0 0 9px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }
.notruf-band h2 { color: #fff; font-size: clamp(1.6rem, 4.5vw, 2.6rem); margin-top: .6rem; }
.notruf-band p { color: rgba(255,255,255,.9); margin-top: .5rem; max-width: 46ch; }
.notruf-band__call { display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; }
.notruf-band__num {
  display: inline-flex; align-items: center; gap: .8rem; background: #fff; color: var(--brand-700);
  padding: 1rem 1.5rem; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem,3vw,1.55rem);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.4); transition: transform .25s var(--ease);
}
.notruf-band__num:hover { transform: translateY(-3px) scale(1.02); }
.notruf-band__num svg { width: 1.3em; height: 1.3em; }
.notruf-band small { opacity: .85; font-size: .82rem; }

/* ============================================================
   REFERENZEN
   ============================================================ */
.refs__grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 720px) { .refs__grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 980px) { .refs__grid { grid-template-columns: repeat(4,1fr); } }
.ref-card {
  display: flex; flex-direction: column; gap: .35rem; justify-content: center; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.3rem; min-height: 116px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; position: relative; overflow: hidden;
}
.ref-card::before { content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--brand); transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease); }
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--paper); }
.ref-card:hover::before { transform: scaleY(1); }
.ref-card b { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); letter-spacing: -.01em; }
.ref-card span { font-size: .85rem; color: var(--ink-soft); }
.refs__more { margin-top: 2.5rem; }
.refs__more h3 { font-size: 1.1rem; margin-bottom: 1.1rem; color: var(--ink-2); }

/* ============================================================
   ÜBER UNS / PROZESS
   ============================================================ */
.about { background: var(--paper-2); }
.about__inner { display: grid; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
@media (min-width: 900px){ .about__inner { grid-template-columns: 1fr 1fr; } }
.values { display: grid; gap: 1rem; margin-top: 1.75rem; }
.value { display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 1.2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); transition: transform .3s var(--ease), box-shadow .3s; }
.value:hover { transform: translateX(4px); box-shadow: var(--sh-sm); }
.value__ico { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(145deg, var(--brand), var(--brand-600)); color: #fff; box-shadow: var(--sh-brand); }
.value__ico svg { width: 22px; height: 22px; }
.value b { display: block; font-size: 1.05rem; }
.value p { color: var(--ink-soft); font-size: .94rem; margin-top: .15rem; }

.process { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem,4vw,2.25rem); box-shadow: var(--sh); }
.process h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.process__step { display: flex; gap: 1.1rem; padding-bottom: 1.5rem; position: relative; }
.process__step:not(:last-child)::before { content:""; position:absolute; left: 20px; top: 44px; bottom: 4px; width: 2px; background: linear-gradient(var(--brand), var(--line)); }
.process__num { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--dark); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; z-index: 1; }
.process__step:nth-child(1) .process__num { background: var(--brand); }
.process__step b { display: block; font-size: 1.05rem; }
.process__step p { color: var(--ink-soft); font-size: .94rem; margin-top: .1rem; }

/* ============================================================
   JOBS
   ============================================================ */
.jobs { background: var(--dark); color: var(--ink-inv); position: relative; overflow: hidden; }
.jobs .hero__grid { opacity: .35; }
.jobs__inner { position: relative; z-index: 1; }
.job-card { background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid var(--line-d); border-radius: var(--r-lg); padding: clamp(1.6rem,4vw,2.5rem); }
.job-card__top { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.job-card__badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem; border-radius: var(--r-pill); background: rgba(65,209,122,.14); border: 1px solid rgba(65,209,122,.35); color: #58e08c; font-weight: 600; font-size: .82rem; }
.job-card h3 { color: #fff; font-size: clamp(1.4rem,3.5vw,1.9rem); }
.job-card__sub { color: var(--ink-inv-soft); margin-top: .4rem; }
.job-card__cols { display: grid; gap: 1.75rem; margin-top: 1.5rem; }
@media (min-width: 760px){ .job-card__cols { grid-template-columns: 1.3fr 1fr; } }
.job-req { display: grid; gap: .7rem; }
.job-req li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-inv-soft); font-size: .96rem; }
.job-req .ck { flex: none; color: var(--brand-300); margin-top: 3px; }
.job-req .ck svg { width: 15px; height: 15px; }
.job-side { background: rgba(0,0,0,.25); border: 1px solid var(--line-d); border-radius: var(--r); padding: 1.4rem; align-self: start; }
.job-side b { color: #fff; }
.job-side p { color: var(--ink-inv-soft); font-size: .92rem; margin: .35rem 0 1.1rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__inner { display: grid; gap: clamp(2rem,5vw,3rem); }
@media (min-width: 920px){ .contact__inner { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.contact__info { display: grid; gap: 1rem; align-content: start; }
.cinfo {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 1.25rem; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r); transition: border-color .25s, transform .25s, box-shadow .25s;
}
.cinfo:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.cinfo__ico { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--dark); color: var(--brand-300); }
.cinfo__ico svg { width: 21px; height: 21px; }
.cinfo small { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 600; }
.cinfo b, .cinfo a { font-size: 1.06rem; font-weight: 600; color: var(--ink); display: block; line-height: 1.4; }
.cinfo a:hover { color: var(--brand-600); }
.cinfo .muted { font-weight: 500; color: var(--ink-soft); font-size: .95rem; }

/* form */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem,4vw,2.25rem); box-shadow: var(--sh); }
.form__row { display: grid; gap: 1rem; }
@media (min-width:560px){ .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink-2); }
.field label .req { color: var(--brand-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper-2); transition: border-color .2s, background .2s, box-shadow .2s; font-size: 1rem;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(47,143,208,.12); }
.form__note { font-size: .85rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }
.form__ok { display: none; align-items: center; gap: .6rem; padding: .9rem 1.1rem; border-radius: var(--r-sm); background: rgba(65,209,122,.12); border: 1px solid rgba(65,209,122,.4); color: #1c7a45; font-weight: 600; margin-bottom: 1rem; }
.form__ok.show { display: flex; }

/* map */
.map { margin-top: 2.5rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh); position: relative; }
.map iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(.25) contrast(1.02); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: var(--ink-inv-soft); padding-block: clamp(3rem,6vw,4.5rem) 2rem; position: relative; }
.footer__top { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-d); }
@media (min-width: 760px){ .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__about p { margin-top: 1.1rem; font-size: .95rem; max-width: 40ch; }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 1.1rem; letter-spacing: 0; }
.footer__links { display: grid; gap: .65rem; }
.footer__links a, .footer__contact a, .footer__contact p { display: inline-flex; align-items: center; gap: .6rem; transition: color .2s; font-size: .96rem; }
.footer__links a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact { display: grid; gap: .7rem; }
.footer__contact svg { width: 1.05em; height: 1.05em; color: var(--brand-300); flex: none; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.75rem; font-size: .85rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal a:hover { color: #fff; }
.footer__credit { opacity: .7; }

/* back to top */
.totop { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90; width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-brand); opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none; transition: all .35s var(--ease); }
.totop.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.totop:hover { background: var(--brand-600); transform: translateY(-3px); }
.totop svg { width: 22px; height: 22px; }

/* floating mobile notruf */
.fab-notruf { position: fixed; left: 1.1rem; bottom: 1.1rem; z-index: 90; display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.15rem; border-radius: var(--r-pill); background: linear-gradient(135deg, #e8453a, #c9362c); color: #fff; font-weight: 700; font-size: .92rem; box-shadow: 0 14px 34px -10px rgba(201,54,44,.6); transform: translateY(120%); transition: transform .4s var(--ease); }
.fab-notruf.show { transform: translateY(0); }
.fab-notruf svg { width: 18px; height: 18px; }
.fab-notruf .lbl { display: none; }
@media (max-width: 991px){ .fab-notruf .lbl { display: inline; } }
@media (min-width: 992px){ .fab-notruf { display: none; } }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.page-hero { background: var(--dark); color: #fff; padding-block: clamp(2.5rem,7vw,4.5rem); position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; font-size: clamp(2rem,6vw,3.2rem); position: relative; z-index: 1; }
.page-hero p { color: var(--ink-inv-soft); margin-top: .6rem; position: relative; z-index: 1; }
.page-hero .crumbs { font-size: .88rem; color: var(--ink-inv-soft); margin-bottom: .8rem; position: relative; z-index: 1; }
.page-hero .crumbs a:hover { color: #fff; }
.legal { padding-block: clamp(2.5rem,6vw,4.5rem); }
.legal__body { max-width: 820px; }
.legal__body h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .75rem; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: .5rem; }
.legal__body p, .legal__body li { color: var(--ink-2); margin-bottom: .9rem; }
.legal__body ul { list-style: disc; padding-left: 1.3rem; }
.legal__body li { margin-bottom: .5rem; }
.legal__body a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.legal__toc { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; }
.legal__toc b { display:block; margin-bottom:.6rem; }
.legal__toc ol { padding-left: 1.2rem; color: var(--ink-soft); }
.legal__toc a:hover { color: var(--brand-600); }
.notice { background: #fff7e6; border: 1px solid #ffe2a8; border-radius: var(--r); padding: 1.1rem 1.3rem; margin: 1.5rem 0; color: #7a5a12; font-size: .95rem; }
.notice b { color: #6b4e0f; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal-delay="4"]{ transition-delay: .32s; }
[data-reveal-delay="5"]{ transition-delay: .40s; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1; transform:none; } }

/* utilities */
.u-mt-sm { margin-top: 1rem; }
.u-hide { display: none !important; }
