/* =================================================================
   SalesDrive · v4 · Shared Site Design System
   All-Black Cinematic — used across all pages
   ================================================================= */
:root {
  --bg:        #000000;
  --bg-2:      #050507;
  --bg-3:      #0a0a0d;
  --bg-4:      #101015;
  --surf:      #15161c;
  --surf-2:    #1c1d24;
  --surf-3:    #25262e;

  --line:      rgba(255,255,255,.06);
  --line-2:    rgba(255,255,255,.10);
  --line-3:    rgba(255,255,255,.18);

  --ink:       #f5f5f7;
  --ink-2:     #d2d2d7;
  --ink-3:     #a1a1a6;
  --ink-mute:  #6e6e73;
  --ink-faint: #48484a;

  --blue:        #2997ff;
  --blue-deep:   #0071e3;
  --blue-bright: #6BC9FF;
  --blue-press:  #006edb;
  --blue-glow:   rgba(41,151,255,.32);
  --blue-soft:   rgba(41,151,255,.08);

  --green:  #30d158;
  --amber:  #ffb454;
  --red:    #ff453a;

  --display: "Inter Tight", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;

  --container: 1140px;
  --container-narrow: 920px;
  --container-wide: 1320px;

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--blue); color: #000; }

/* Subtle film grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' /%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* TYPE */
.display { font-family: var(--display); letter-spacing: -.042em; line-height: 1.04; font-weight: 600; }

/* Big glowing headline — uses blue-bright as text-shadow */
.glow {
  text-shadow:
    0 0 30px rgba(107, 201, 255, .35),
    0 0 60px rgba(107, 201, 255, .25),
    0 0 100px rgba(41, 151, 255, .18);
}
.glow em {
  text-shadow:
    0 0 24px rgba(107, 201, 255, .8),
    0 0 60px rgba(107, 201, 255, .55),
    0 0 120px rgba(41, 151, 255, .45);
}

/* Apply pure black everywhere — overrides any --bg-2 / --bg-3 elsewhere */
body { background: #000; }
.h1 { font-size: clamp(40px, 6.4vw, 88px); }
.h2 { font-size: clamp(32px, 4.6vw, 64px); }
.h3 { font-size: clamp(24px, 2.8vw, 40px); }
.h4 { font-size: clamp(19px, 1.9vw, 26px); }
.h5 { font-size: clamp(16px, 1.4vw, 20px); }
.eyebrow { font-size: 12px; font-weight: 500; color: var(--ink-3); letter-spacing: -.005em; }
.eyebrow--blue { color: var(--blue); }
.lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.5; color: var(--ink-2); letter-spacing: -.014em; font-weight: 400; }
.muted { color: var(--ink-3); }
em { font-style: normal; color: var(--blue); }
.gradient-blue { background: linear-gradient(180deg, var(--blue-bright), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section { position: relative; padding: clamp(40px, 6vw, 80px) 0; }
.section--tight { padding: clamp(28px, 4vw, 56px) 0; }
.section--xl { padding: clamp(56px, 8vw, 110px) 0; }
.section--divide::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(90%, 900px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 50%, transparent);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.008em;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 13px; height: 13px; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: linear-gradient(180deg, #1f6fbe, #135fa8);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 8px 24px -10px rgba(31,111,190,.5);
  border-color: rgba(255,255,255,.08);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #2680d4, #1f6fbe);
  transform: translateY(-1px);
}
.btn--primary:active { background: linear-gradient(180deg, #135fa8, #0e4d8a); transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-3); }
.btn--ghost:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.32); }
.btn--link { padding: 0; color: var(--blue); font-size: 15px; border-radius: 0; }
.btn--link:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn--lg { font-size: 16px; padding: 13px 26px; }
.btn--xl { font-size: 18px; padding: 16px 32px; }

/* NAV */
/* Floating contained nav pill — Apple-style */
.nav {
  position: fixed; top: 24px; left: 0; right: 0; z-index: 100;
  height: auto;
  background: transparent;
  border: 0;
  transition: top .3s var(--ease-out);
  pointer-events: none;
}
.nav.scrolled { top: 16px; }
.nav__inner {
  pointer-events: auto;
  max-width: 1024px;
  margin: 0 auto;
  height: 52px;
  padding: 0 18px 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  background: rgba(14,15,18,.78);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 18px 60px -16px rgba(0,0,0,.6);
  width: calc(100% - 32px);
}
.nav.scrolled .nav__inner {
  background: rgba(10,11,14,.88);
  border-color: rgba(255,255,255,.12);
}
.nav__brand { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; color: var(--ink); text-decoration: none; }
.nav__brand-logo { height: 28px; width: auto; max-height: 28px; display: block; flex-shrink: 0; }
.nav__brand-icon { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.nav__brand-text { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -.024em; line-height: 1; }
.nav__brand-text .s { color: var(--ink); }
.nav__brand-text .d { color: var(--blue); }
/* legacy markup safety */
.nav__brand-drive { display: none !important; }
.nav__brand-arrow { display: none !important; }
.nav__brand-wordmark {
  font-family: var(--display);
  font-size: 17px; font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1;
  display: inline-flex; align-items: baseline;
}
.nav__brand-sales { color: var(--ink); }
.nav__brand-drive { color: var(--blue); }
.nav__brand-arrow {
  width: 7px; height: 8px;
  fill: var(--blue);
  margin-left: 2px;
  align-self: center;
  transform: translateY(-3px);
}
.nav__links { display: flex; align-items: center; gap: 24px; font-size: 12px; flex: 1; justify-content: center; }
.nav__links a { color: var(--ink); opacity: .8; transition: opacity .15s ease; white-space: nowrap; }
.nav__links a:hover, .nav__links a.is-current { opacity: 1; }
.nav__links a.is-current { color: var(--blue); }

/* Dropdown menu (Branchen) */
.nav__dd { position: relative; }
.nav__dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  padding: 8px;
  background: rgba(14,15,18,.92);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 24px 60px -16px rgba(0,0,0,.7);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .25s var(--ease-out);
  z-index: 200;
}
.nav__dd-menu::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 14px;
}
.nav__dd-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  opacity: 1;
  transition: background .18s ease, color .18s ease;
}
.nav__dd-menu a:hover {
  background: rgba(107,201,255,.10);
  color: var(--blue-bright);
}
.nav__dd:hover .nav__dd-menu,
.nav__dd:focus-within .nav__dd-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 760px) {
  .nav__dd-menu { display: none; }
}
.nav__cta {
  font-size: 12px; color: var(--ink); opacity: .85;
  display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0;
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  transition: all .2s ease;
}
.nav__cta:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; opacity: 1; }
.nav__cta svg { width: 9px; height: 9px; }

.nav__login {
  font-size: 12px; color: var(--ink-2); opacity: .8;
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  padding: 5px 8px;
  margin-right: 4px;
  transition: color .2s ease, opacity .2s ease;
  text-decoration: none;
}
.nav__login:hover { color: var(--blue-bright); opacity: 1; }
.nav__login svg { width: 11px; height: 11px; opacity: .7; }
.nav-spacer { height: 92px; }

.progress {
  position: fixed; top: 46px; left: 0; height: 1px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--blue-bright));
  z-index: 99;
  width: 0;
  transition: width .12s linear;
  box-shadow: 0 0 8px var(--blue-glow);
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta { font-size: 11px; padding: 5px 10px; }
}

/* REVEAL & MOTION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-blur {
  opacity: 0;
  filter: blur(14px);
  transform: scale(.96) translateY(20px);
  transition: opacity 1.1s var(--ease-out), filter 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal-blur.in { opacity: 1; filter: blur(0); transform: scale(1) translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.72);
  transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

.reveal-slide-r { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-slide-r.in { opacity: 1; transform: translateX(0); }
.reveal-slide-l { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-slide-l.in { opacity: 1; transform: translateX(0); }

/* WOW: shadow fly-in (text emerges from deep behind) */
.reveal-shadow {
  opacity: 0;
  transform: perspective(1200px) translateZ(-500px) translateY(50px);
  filter: blur(40px);
  text-shadow: 0 0 80px rgba(41,151,255,.5);
  transition: opacity 1.6s var(--ease-out), transform 1.6s var(--ease-out), filter 1.4s var(--ease-out), text-shadow 1.4s var(--ease-out);
}
.reveal-shadow.in {
  opacity: 1;
  transform: perspective(1200px) translateZ(0) translateY(0);
  filter: blur(0);
  text-shadow: 0 0 0 transparent;
}

.d-1 { transition-delay: .08s; }
.d-2 { transition-delay: .16s; }
.d-3 { transition-delay: .24s; }
.d-4 { transition-delay: .32s; }
.d-5 { transition-delay: .40s; }
.d-6 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-blur, .reveal-scale, .reveal-slide-r, .reveal-slide-l, .reveal-shadow { opacity: 1; transform: none; filter: none; text-shadow: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Word-by-word reveal */
.word-reveal { display: inline-block; overflow: hidden; }
.word-reveal > .w {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}
.word-reveal.in > .w { transform: translateY(0); opacity: 1; }

/* Word-reveal-soft: fix for gradient-text elements (background-clip: text) — child <span class="w"> must inherit background so the gradient stays visible */
.word-reveal-soft .w { background: inherit; -webkit-background-clip: text; background-clip: text; color: inherit; }

/* Ambient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb--blue   { background: rgba(41,151,255,.30); }
.orb--purple { background: rgba(120,80,255,.20); }
.orb--cyan   { background: rgba(80,200,255,.20); }
@keyframes orb-drift-1 { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60px, -40px) scale(1.15); } }
@keyframes orb-drift-2 { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-80px, 50px) scale(1.1); } }
.orb-anim-1 { animation: orb-drift-1 18s ease-in-out infinite; }
.orb-anim-2 { animation: orb-drift-2 22s ease-in-out infinite; }

/* SUB-PAGE HERO (smaller than home hero) */
.subhero {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0 clamp(36px, 5vw, 60px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.subhero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.subhero__bg .orb { width: 600px; height: 600px; opacity: .35; }
.subhero__bg .orb--1 { top: -200px; left: 50%; transform: translateX(-50%); }
.subhero__inner { position: relative; z-index: 1; padding: 0 22px; max-width: 920px; margin: 0 auto; }
.subhero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  border-radius: 980px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.subhero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.subhero__title {
  font-family: var(--display);
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.024em;
  margin-bottom: 14px;
  background: linear-gradient(105deg, #d6f0e0 0%, #b3d8e0 38%, #8aa9c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: .18em;
}
.subhero__title em {
  background: linear-gradient(105deg, #d6f0e0 0%, #6BC9FF 50%, #2997ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.subhero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 700px;
  margin: 0 auto 24px;
}

/* SECTION HEADER */
.sec-head { text-align: center; margin-bottom: clamp(24px, 3.5vw, 44px); }
.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 600;
  letter-spacing: -.024em;
  line-height: 1.08;
  margin-bottom: 14px;
  background: linear-gradient(105deg, #d6f0e0 0%, #b3d8e0 38%, #8aa9c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: .18em;
}
.sec-head h2 em {
  background: linear-gradient(105deg, #d6f0e0 0%, #6BC9FF 50%, #2997ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.sec-head p.lead { max-width: 660px; margin: 0 auto; }
.section-num {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.section-num__num { color: var(--blue); }

/* CARDS — generic */
.card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 40px);
  transition: border-color .25s var(--ease), background .3s var(--ease), transform .35s var(--ease-out);
}
.card:hover { border-color: var(--line-3); background: var(--surf-2); transform: translateY(-3px); }

/* FOOTER */
.footer {
  background: #0a0b0d;
  color: var(--ink-3);
  padding: clamp(56px, 7vw, 88px) 0 28px;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
  margin-top: clamp(60px, 8vw, 100px);
  box-shadow: 0 -1px 0 rgba(255,255,255,.04);
}
.footer::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: min(900px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.20) 50%, transparent);
}
/* Clean variant: brand-column + 3 link-columns (SalesEye-style) */
.footer--clean .footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  padding-top: 0;
  border-top: 0;
  align-items: start;
}
.footer--clean .footer__col h6 { color: #fff; font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer--clean .footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer--clean .footer__col a { font-size: 13px; color: var(--ink-3); transition: color .18s ease; padding: 0; }
.footer--clean .footer__col a:hover { color: var(--blue-bright); }

/* Brand column */
.footer__brand { display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
.footer__brand-logo img { height: 28px; width: auto; display: block; opacity: .95; transition: opacity .2s ease; }
.footer__brand-logo:hover img { opacity: 1; }
.footer__tag { font-size: 13px; line-height: 1.55; color: var(--ink-3); margin: 0; }
.footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer__social a:hover { color: var(--blue-bright); border-color: rgba(76,201,255,.4); background: rgba(76,201,255,.08); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }

/* Trust row in footer brand column */
.footer__trust-row { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.footer__trust-tuv { display: inline-flex; max-width: 130px; transition: opacity .2s ease; opacity: .85; }
.footer__trust-tuv:hover { opacity: 1; }
.footer__trust-tuv img { width: 100%; height: auto; display: block; filter: grayscale(.1) brightness(1.05); }
.footer__trust-tp {
  display: flex; align-items: center;
  max-width: 180px;
  padding: 6px 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}
.footer__trust-tp .trustpilot-widget { width: 100% !important; }
.footer__sep { color: var(--ink-mute); opacity: .5; margin: 0 2px; }

/* Status indicator (Alle Systeme operativ) */
.footer__status { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-3); font-size: 11px; }
.footer__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(48,209,88,.7); animation: footer-pulse 2.2s ease-in-out infinite; }
@keyframes footer-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(.85); } }

/* Big tagline on top of footer */
.footer__tagline {
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 44px);
  padding: 0 22px;
}
.footer__tagline-logo {
  font-family: var(--display);
  font-size: 20px; font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 0;
  margin-bottom: 14px;
}
.footer__tagline-logo .s { color: #ffffff; }
.footer__tagline-logo .d { color: var(--blue); }
.footer__tagline-logo .arrow {
  width: 9px; height: 11px; fill: var(--blue);
  margin-left: 2px; align-self: center;
  transform: translateY(-4px);
}
.footer__tagline-headline {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #ffffff;
  max-width: 700px; margin: 0 auto;
}
.footer__tagline-headline em { color: var(--blue-bright); font-style: normal; }
.footer__tagline-sub {
  margin-top: 10px;
  font-size: clamp(13px, 1vw, 14px);
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.5;
  margin-left: auto; margin-right: auto;
}

.footer__brand-logo { height: 28px; width: auto; display: block; margin-bottom: 22px; opacity: .95; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 28px; padding-top: clamp(22px, 2.5vw, 32px); border-top: 1px solid var(--line); }
.footer__brand-wordmark { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -.028em; line-height: 1; display: inline-flex; align-items: baseline; margin-bottom: 16px; }
.footer__brand-wordmark .s { color: var(--ink); }
.footer__brand-wordmark .d { color: var(--blue); }
.footer__brand p { color: var(--ink-mute); line-height: 1.6; max-width: 310px; margin-bottom: 22px; }
.footer__trust { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.footer__trust img {
  height: 50px;
  width: auto;
  opacity: .55;
  filter: grayscale(.3);
  transition: opacity .2s ease, filter .2s ease;
}
.footer__trust img:hover { opacity: .9; filter: grayscale(0); }
.footer__col h6 { font-family: var(--display); font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer__col a { display: block; color: var(--ink-3); padding: 3px 0; font-size: 12px; transition: color .15s ease; }
.footer__col a:hover { color: var(--blue); }
.footer__socials { display: flex; gap: 10px; margin-top: 4px; }
.footer__socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surf);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  padding: 0;
  transition: all .2s ease;
}
.footer__socials a:hover { color: var(--blue); border-color: var(--blue); }
.footer__socials svg { width: 13px; height: 13px; }

/* Long disclaimer block */
.footer__disclaimer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 1080px;
}

.footer__bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-size: 11px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.footer__bottom-meta { display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer__bottom-meta strong { color: var(--ink-3); font-weight: 500; }

@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer--clean .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 880px) {
  .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}
@media (max-width: 640px) {
  .footer--clean .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer--clean .footer__grid { grid-template-columns: 1fr; }
}

/* ======== FINAL CTA — host pill ======== */
.final__host { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; padding: 11px 18px 11px 11px; background: rgba(255,255,255,.04); border: 1px solid var(--line-2); border-radius: 980px; }
.final__host-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 13px; color: #fff; }
.final__host-text { text-align: left; }
.final__host-name { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: -.012em; }
.final__host-role { font-size: 11px; color: var(--ink-3); }

/* ======== COOKIE CONSENT ======== */
.cookie {
  position: fixed; right: clamp(14px, 2vw, 28px); bottom: clamp(14px, 2vw, 28px);
  z-index: 300;
  max-width: 420px;
  background: rgba(15,16,22,.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(41,151,255,.08);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.cookie.in { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cookie__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cookie__icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(41,151,255,.12);
  border-radius: 8px;
  color: var(--blue);
}
.cookie__icon svg { width: 14px; height: 14px; }
.cookie__title { font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.cookie__text { font-size: 13px; line-height: 1.5; color: var(--ink-3); margin-bottom: 14px; }
.cookie__text a { color: var(--blue); }
.cookie__text a:hover { text-decoration: underline; text-underline-offset: 3px; }
.cookie__options { display: grid; gap: 8px; margin-bottom: 14px; }
.cookie__opt { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-2); }
.cookie__opt label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.cookie__opt input { appearance: none; width: 32px; height: 18px; background: var(--surf-3); border-radius: 999px; position: relative; cursor: pointer; transition: background .2s ease; }
.cookie__opt input::after { content: ""; position: absolute; left: 2px; top: 2px; width: 14px; height: 14px; background: #fff; border-radius: 50%; transition: transform .2s var(--ease); }
.cookie__opt input:checked { background: var(--blue); }
.cookie__opt input:checked::after { transform: translateX(14px); }
.cookie__opt input:disabled { background: var(--surf-2); cursor: not-allowed; opacity: .6; }
.cookie__opt-label { font-weight: 500; color: var(--ink); }
.cookie__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie__actions .btn { font-size: 13px; padding: 8px 14px; flex: 1; min-width: 110px; }
.cookie__toggle { color: var(--ink-3); font-size: 12px; background: transparent; border: 0; cursor: pointer; padding: 6px 0; margin-bottom: 8px; display: inline-flex; align-items: center; gap: 4px; }
.cookie__toggle svg { width: 11px; height: 11px; transition: transform .2s var(--ease); }
.cookie.is-expanded .cookie__toggle svg { transform: rotate(180deg); }
.cookie__options { display: none; }
.cookie.is-expanded .cookie__options { display: grid; }

@media (max-width: 560px) {
  .cookie { right: 12px; left: 12px; max-width: none; padding: 18px; }
}

/* ============================================================
   WHITE THEME OVERRIDE · v7 Branding (flippt alle site.css-Seiten auf Weiss)
   ============================================================ */
:root{
  --bg:#ffffff; --bg-2:#f5f5f7; --bg-3:#f0f0f3; --bg-4:#eaeaef;
  --surf:#ffffff; --surf-2:#f6f6f8; --surf-3:#ececf1;
  --line:rgba(0,0,0,.09); --line-2:rgba(0,0,0,.13); --line-3:rgba(0,0,0,.2);
  --ink:#1d1d1f; --ink-2:#3a3d44; --ink-3:#5f6470; --ink-mute:#86868b; --ink-faint:#b0b0b6;
  --blue:#0a66ff; --blue-deep:#0a66ff; --blue-bright:#3b8aff; --blue-press:#0856d6;
  --blue-glow:rgba(10,102,255,.20); --blue-soft:rgba(10,102,255,.07);
}
html,body{background:#fff !important;color:var(--ink) !important}
body::before{display:none !important}
.glow,.glow em{text-shadow:none !important}
::selection{background:var(--blue);color:#fff}
.card{background:#fff;box-shadow:0 16px 44px -32px rgba(0,0,0,.28)}
.card:hover{background:#fff;box-shadow:0 32px 64px -38px rgba(0,0,0,.32)}
.btn--ghost{background:#fff;color:var(--ink);border-color:var(--line-3)}
.footer{background:#fff;border-top:1px solid var(--line)}

/* WHITE THEME: Gradient-Headlines lesbar auf Weiss */
.roi__metric--big .roi__metric-value, .article__h1, .blog-hero__title, .facts__num, .sec-head h2, .sectext h2, .subhero__title{background:linear-gradient(150deg,#15171c,#3a3d44 55%,#5f6470) !important;-webkit-background-clip:text !important;background-clip:text !important;color:transparent !important}
.final__title em, .bottom-cta h2 em, article p em, .zert-tuv__title em, .roi__cta-bar-title em, .blog-hero__title em, .sectext h2 em, .subhero__title em, .blog-cta__title em, .gradient-blue, .sec-head h2 em{background:linear-gradient(130deg,#0a66ff,#3b8aff) !important;-webkit-background-clip:text !important;background-clip:text !important;color:transparent !important}

/* WHITE THEME: Deko-Blau-Glows dimmen (auf Dunkel subtil, auf Weiss zu kraeftig) */
.subhero::before,.blog-hero::before,.final::before,.zert-tuv::before,.contact-band::before,.legal-shell::before{
  background:radial-gradient(760px 420px at 50% 22%,rgba(10,102,255,.05),transparent 60%) !important;
}

/* WHITE THEME: Cookie-Banner als helles Glas-Card */
.cookie{background:rgba(255,255,255,.93) !important;backdrop-filter:saturate(160%) blur(18px) !important;-webkit-backdrop-filter:saturate(160%) blur(18px) !important;border:1px solid rgba(0,0,0,.1) !important;box-shadow:0 28px 70px -28px rgba(0,0,0,.3) !important;color:#1d1d1f !important}
.cookie__title,.cookie__opt-label{color:#1d1d1f !important}
.cookie__text,.cookie__opt,.cookie__toggle,.cookie__opt-info{color:#5f6470 !important}
.cookie__icon{color:#0a66ff !important}

/* WHITE THEME: Deko-Orbs stark dimmen (waren auf Dunkel subtil) */
.orb{opacity:.12 !important;filter:blur(80px) !important}
