*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: auto; }
a, button, [onclick] { cursor: pointer; }

:root {
  --black:  #06060a;
  --white:  #f0ede8;
  --dim:    rgba(240,237,232,0.80);
  --dimmer: rgba(240,237,232,0.55);
  --font:   'Barlow', 'Helvetica Neue', Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }
/* overflow-x:hidden NUR auf body, nicht html — sonst bricht window.scrollY in Safari */

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════════════════════════════════════════
   LOGO INTRO — Film-Titelsequenz
══════════════════════════════════════════ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1),
              visibility 1.4s cubic-bezier(0.4,0,0.2,1);
}
.intro--gone {
  opacity: 0;
  visibility: hidden;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.intro-logo-img {
  width: clamp(160px, 22vw, 280px);
  height: auto;
  /* Logo ist dunkelblau — auf schwarzem Hintergrund zu weiß invertieren */
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: intro-slide-up 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

.intro-location {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.75);
  opacity: 0;
  animation: intro-slide-up 1s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

@keyframes intro-slide-up {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0);    }
}

/* ══════════════════════════════════════════
   SCROLL STORY
══════════════════════════════════════════ */
.scroll-story {
  height: 900vh;
  position: relative;
}

.scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

/* ── SCENES ── */
.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  /* Kein CSS transition — opacity wird direkt per JS (scroll) gesteuert */
}
.scene.active { opacity: 1; }

.scene-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%,-50%) scale(1);
  display: block;
  object-fit: cover;
  object-position: center;
  will-change: transform, filter;
  filter: brightness(0.72) contrast(1.15) saturate(0.65);
  /* Blur wird per JS beim Zoom-In gesetzt */
  transition: filter 0.4s ease;
}

/* Film grain */
.grain {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Deep cinematic vignette */
.scene::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  background:
    linear-gradient(to right,
      rgba(4,4,8,0.9)  0%,
      rgba(4,4,8,0.55) 35%,
      rgba(4,4,8,0.12) 65%,
      rgba(4,4,8,0.04) 100%),
    linear-gradient(to top,
      rgba(4,4,8,0.82) 0%,
      rgba(4,4,8,0.15) 28%,
      transparent      55%),
    linear-gradient(to bottom,
      rgba(4,4,8,0.65) 0%,
      transparent      22%),
    radial-gradient(ellipse at 55% 50%,
      transparent      35%,
      rgba(4,4,8,0.5)  100%);
}

/* ── CHAPTER TEXTE ── */
.chapter-text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 30;
  padding: 0 2.5rem 6rem;
  max-width: 620px;
  pointer-events: none;
  /* visibility:hidden verhindert dass Text aus anderen Szenen durchscheint */
  visibility: hidden;
}
.chapter-text.chapter-text--show {
  visibility: visible;
}

/* Jedes Kind-Element einzeln animiert */
.chapter-text .chapter-num,
.chapter-text .chapter-label,
.chapter-text .chapter-title,
.chapter-text .chapter-quote-attr,
.chapter-text .chapter-body,
.chapter-text .chapter-points,
.chapter-text .chapter-cta {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  0.9s cubic-bezier(0.16,1,0.3,1),
    transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.chapter-text--show .chapter-num         { opacity:1; transform:translateY(0); transition-delay:0.00s; }
.chapter-text--show .chapter-label       { opacity:1; transform:translateY(0); transition-delay:0.08s; }
.chapter-text--show .chapter-title       { opacity:1; transform:translateY(0); transition-delay:0.16s; }
.chapter-text--show .chapter-quote-attr  { opacity:1; transform:translateY(0); transition-delay:0.30s; }
.chapter-text--show .chapter-body,
.chapter-text--show .chapter-points      { opacity:1; transform:translateY(0); transition-delay:0.28s; }
.chapter-text--show .chapter-cta         { opacity:1; transform:translateY(0); transition-delay:0.40s; pointer-events:auto; }

.chapter-num {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--dimmer);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.chapter-label {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
}
.chapter-label::before {
  content: '— ';
  opacity: 0.5;
}
.chapter-title {
  font-size: clamp(2rem,4.5vw,4rem);
  font-weight: 200;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.chapter-sub {
  font-size: 0.88rem;
  color: var(--dim);
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.chapter-quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-top: -0.8rem;
  margin-bottom: 1rem;
}

.chapter-body {
  font-size: 0.95rem;
  color: var(--dim);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 1.6rem;
}
.chapter-points {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--dim);
  line-height: 2;
  margin-bottom: 1.6rem;
}
.chapter-points li::before {
  content: '— ';
  opacity: 0.5;
}
.chapter-cta {
  display: inline-block !important;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid rgba(240,237,232,0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.chapter-cta:hover { color: var(--white); border-color: rgba(240,237,232,0.8); }
.chapter-cta--primary {
  background: var(--white);
  color: var(--black) !important;
  padding: 0.75rem 1.8rem 0.7rem;
  border: none;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.chapter-cta--primary:hover { opacity: 0.85; }

/* ══════════════════════════════════════════
   HUD
══════════════════════════════════════════ */
.hud-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9002;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem 2rem 0;
  pointer-events: none; /* Kinder mit pointer-events:auto überschreiben das */
}
/* Nur der rechte Bereich mit Button ist klickbar */
.hud-right { pointer-events: auto; }
.hud-project {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hud-logo-link { display: block; line-height: 0; }
.hud-logo {
  width: 72px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(-6px);
  /* erscheint nach Intro-Fade (3.2s) */
  animation: hud-logo-in 0.9s cubic-bezier(0.16,1,0.3,1) 3.6s forwards;
}
@keyframes hud-logo-in {
  to { opacity: 1; transform: translateY(0); }
}
.hud-project strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.hud-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.hud-coords {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--dimmer);
}
.hud-ref {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dimmer);
}
.hud-ref strong {
  display: block;
  font-weight: 300;
  color: var(--dim);
}
.crosshair {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  opacity: 0.28;
}
.crosshair::before,
.crosshair::after { content:''; position:absolute; background:var(--white); }
.crosshair::before { width:1px; height:100%; left:50%; top:0; }
.crosshair::after  { height:1px; width:100%; top:50%; left:0; }

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem 1.5rem;
  pointer-events: none;
}
.bottom-nav-sections {
  display: flex;
  gap: 2rem;
  pointer-events: auto;
}
.bottom-nav-sections button {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dimmer);
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}
.bottom-nav-sections button.active,
.bottom-nav-sections button:hover { color: var(--white); }
.bottom-nav-right { pointer-events: auto; }

.scroll-cue {
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dimmer);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  transition: opacity 0.6s;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(240,237,232,0.4), transparent);
  margin-left: auto;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:0.3; }
  50%      { opacity:0.85; }
}

/* ── HAMBURGER MENU BUTTON ── */
.menu-btn {
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  pointer-events: auto; /* überschreibt hud-top pointer-events:none */
  position: relative;
  z-index: 9001;
}
.menu-btn span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1),
              opacity 0.3s, transform 0.3s,
              background 0.4s;
}
/* Wenn body Klasse "light-hud" hat → dunkle Striche */
body.light-hud .menu-btn span { background: #1a1a1a; }
body.light-hud .hud-project strong { color: #1a1a1a; }
body.light-hud .hud-project span   { color: #888; }
body.light-hud .hud-coords         { color: #888; }
body.light-hud .hud-logo           { filter: none; }
body.light-hud .bottom-nav-sections button       { color: #aaa; }
body.light-hud .bottom-nav-sections button.active { color: #1a1a1a; }
body.light-hud .scroll-cue         { color: #aaa; }
.menu-btn span:nth-child(1) { width: 22px; }
.menu-btn span:nth-child(2) { width: 16px; }
.menu-btn span:nth-child(3) { width: 22px; }
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 22px; }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 22px; }

/* ── FULLSCREEN NAV OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4,4,8,0.97);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1),
              visibility 0.5s cubic-bezier(0.4,0,0.2,1);
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.nav-links { list-style: none; }
.nav-links li {
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              opacity 0.6s cubic-bezier(0.16,1,0.3,1);
}
.nav-overlay.open .nav-links li { transform: translateY(0); opacity: 1; }
.nav-links li:nth-child(1) { transition-delay: 0.05s; }
.nav-links li:nth-child(2) { transition-delay: 0.10s; }
.nav-links li:nth-child(3) { transition-delay: 0.15s; }
.nav-links li:nth-child(4) { transition-delay: 0.20s; }
.nav-links li:nth-child(5) { transition-delay: 0.25s; }
.nav-links li:nth-child(6) { transition-delay: 0.30s; }
.nav-link {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  display: block;
  line-height: 1.2;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--dim); }
.nav-footer {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s 0.4s, transform 0.5s 0.4s;
}
.nav-overlay.open .nav-footer { opacity: 1; transform: translateY(0); }
.nav-footer a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dimmer);
  transition: color 0.2s;
}
.nav-footer a:hover { color: var(--white); }

/* process more link */
.process-more {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(240,237,232,0.08);
}

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  bottom: 2.2rem;
  right: 2rem;
  z-index: 200;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s 1s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s 1s cubic-bezier(0.16,1,0.3,1),
              background 0.2s, color 0.2s;
  animation: cta-appear 0.8s cubic-bezier(0.16,1,0.3,1) 3.8s forwards;
}
@keyframes cta-appear {
  to { opacity:1; transform:translateY(0); }
}
.floating-cta:hover {
  background: transparent;
  color: var(--white);
  outline: 1px solid rgba(240,237,232,0.6);
}
/* Im hellen Bereich: dunkler Button */
body.light-hud .floating-cta {
  background: #1a1a1a;
  color: #f5f4f0;
}
body.light-hud .floating-cta:hover {
  background: transparent;
  color: #1a1a1a;
  outline: 1px solid rgba(0,0,0,0.4);
}

/* Progress bar */
.progress-bar {
  position: fixed;
  bottom: 0; left: 0;
  height: 1px;
  background: rgba(240,237,232,0.06);
  width: 100%;
  z-index: 101;
}
.progress-fill {
  height: 100%;
  background: rgba(240,237,232,0.32);
  width: 0%;
  transition: width 0.1s linear;
}


/* ══════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
══════════════════════════════════════════ */
[data-anim] { opacity:0; will-change:opacity,transform; }
[data-anim].in { transition-timing-function: cubic-bezier(0.25,0.46,0.45,0.94); }

[data-anim="fade-up"]        { transform:translateY(40px); }
[data-anim="fade-up"].in     { opacity:1; transform:translateY(0);  transition:opacity .75s,transform .75s; }
[data-anim="slide-left"]     { transform:translateX(-56px); }
[data-anim="slide-left"].in  { opacity:1; transform:translateX(0);  transition:opacity .8s,transform .8s; }
[data-anim="slide-right"]    { transform:translateX(56px); }
[data-anim="slide-right"].in { opacity:1; transform:translateX(0);  transition:opacity .8s,transform .8s; }
[data-anim="scale-up"]       { transform:scale(0.92); }
[data-anim="scale-up"].in    { opacity:1; transform:scale(1);       transition:opacity .85s,transform .85s; }

[data-stagger] > * { opacity:0; transform:translateY(32px); will-change:opacity,transform; }
[data-stagger].in > * {
  opacity:1; transform:translateY(0);
  transition: opacity .7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform .7s cubic-bezier(0.25,0.46,0.45,0.94);
}
[data-stagger].in > *:nth-child(1) { transition-delay:.00s; }
[data-stagger].in > *:nth-child(2) { transition-delay:.15s; }
[data-stagger].in > *:nth-child(3) { transition-delay:.30s; }
[data-stagger].in > *:nth-child(4) { transition-delay:.45s; }

/* ══════════════════════════════════════════
   SECTIONS BELOW SCROLL STORY — helles Design
══════════════════════════════════════════ */
#mainContent {
  background: #f5f4f0;
  color: #1a1a1a;
}
#mainContent .section-label  { color: #888; }
#mainContent h2, #mainContent h3 { color: #1a1a1a; }
#mainContent p  { color: #444; }
#mainContent .stat-n { color: #1a1a1a; }
#mainContent .stat-n em { color: #888; }
#mainContent .stat-l  { color: #888; }
#mainContent .process-step,
#mainContent .hook-section,
#mainContent .trust-section,
#mainContent .cta-section,
#mainContent .stats-section { border-color: rgba(0,0,0,0.08); }
#mainContent .link-arrow  { color: #888; border-color: rgba(0,0,0,0.2); }
#mainContent .link-arrow:hover { color: #1a1a1a; }
#mainContent .step-num    { color: #aaa; }
#mainContent .process-steps { border-color: rgba(0,0,0,0.08); }
#mainContent .process-step  { border-color: rgba(0,0,0,0.08); }
#mainContent .hook-title  { color: #1a1a1a; }
#mainContent .hook-sub    { color: #666; }
#mainContent .hook-asterisk { color: #aaa; }
#mainContent .trust-q-text  { color: #1a1a1a; }
#mainContent .trust-q-sub, #mainContent .trust-bio-text { color: #555; }
#mainContent .trust-q-label, #mainContent .trust-bio-label { color: #aaa; }
#mainContent .trust-link  { color: #1a1a1a; border-color: rgba(0,0,0,0.3); }
#mainContent .trust-google { color: #666; }
#mainContent .trust-photo-wrap { background: #e0ddd8; }
#mainContent .trust-photo-fallback { color: #aaa; background: #e0ddd8; }
#mainContent .btn-primary { background: #1a1a1a; color: #f5f4f0; }
#mainContent .btn-primary:hover { opacity: 0.8; }
#mainContent .btn-whatsapp { border-color: rgba(0,0,0,0.2); color: #1a1a1a; }
#mainContent .btn-text-link { color: #888; border-color: rgba(0,0,0,0.2); }
#mainContent .footer { background: #1a1a1a; }
#mainContent .footer, #mainContent .footer p,
#mainContent .footer a, #mainContent .footer-logo,
#mainContent .footer-desc, #mainContent .footer-h,
#mainContent .footer-bottom { color: rgba(240,237,232,0.6); }
#mainContent .footer ul a:hover,
#mainContent .footer-social a:hover { color: var(--white); }
#mainContent .footer-bottom p { color: rgba(240,237,232,0.25); }
#mainContent .cta-section h2 { color: #1a1a1a; }
#mainContent .cta-section p  { color: #555; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }

/* ── STATS ── */
.stats-section {
  padding: 8rem 0 7rem;
  border-top: 1px solid rgba(240,237,232,0.1);
  border-bottom: 1px solid rgba(240,237,232,0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.stat-n {
  display: block;
  font-size: clamp(3rem,5vw,5rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}
.stat-n em { font-style:normal; font-size:1.2rem; color:var(--dim); margin-left:2px; }
.stat-l {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.8rem;
}

/* ── PROCESS ── */
.process-section { padding: 7rem 0; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3.5rem;
  display: block;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.process-step {
  padding: 2.5rem;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.process-step:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.step-num {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #bbb;
  margin-bottom: 1.8rem;
  display: block;
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.process-step p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
}

/* ── BLOG ── */
.blog-section {
  padding: 7rem 0;
  border-top: 1px solid rgba(240,237,232,0.07);
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-header h2 {
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.link-arrow {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dimmer);
  border-bottom: 1px solid rgba(240,237,232,0.18);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(240,237,232,0.07);
  border: 1px solid rgba(240,237,232,0.07);
}
.blog-card { background: var(--black); overflow: hidden; transition: background 0.3s; }
.blog-card:hover { background: #111; }
.blog-card a { display: block; }
.blog-img {
  aspect-ratio: 16/9;
  background: #1a1a1a center/cover;
  overflow: hidden;
}
.blog-body { padding: 1.75rem; }
.blog-tag {
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dimmer);
  display: block;
  margin-bottom: 0.8rem;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.blog-read {
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dimmer);
  border-bottom: 1px solid rgba(240,237,232,0.15);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s;
}
.blog-card:hover .blog-read { color: var(--white); }

/* ── HOOK ── */
.hook-section {
  padding: 7rem 0;
  border-top: 1px solid rgba(240,237,232,0.1);
}
.hook-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.hook-asterisk { color: var(--dim); }
.hook-sub {
  font-size: 1rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* ── SERVICES GRID (6 Karten) ── */
.services-section { padding: 0 0 7rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240,237,232,0.08);
  border: 1px solid rgba(240,237,232,0.08);
  margin-top: 2rem;
}
.service-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.service-card:hover { background: #0f0f14; }
.service-num {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--dimmer);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── TRUST / ÜBER MICH ── */
.trust-section {
  padding: 7rem 0;
  border-top: 1px solid rgba(240,237,232,0.1);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.trust-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}
.trust-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}
.trust-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: var(--dimmer);
  background: #111;
}
.trust-content { padding-top: 0.5rem; }
.trust-q-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 1rem;
}
.trust-q-text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.trust-q-sub {
  font-size: 0.92rem;
  color: var(--dim);
  line-height: 1.8;
}
.trust-bio-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 1rem;
}
.trust-bio-text {
  font-size: 0.92rem;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.trust-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.trust-link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(240,237,232,0.35);
  padding-bottom: 3px;
  transition: border-color 0.2s;
  display: inline-block;
}
.trust-link:hover { border-color: var(--white); }
.trust-google {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--dim);
  transition: color 0.2s;
  display: inline-block;
}
.trust-google:hover { color: var(--white); }

/* ── FOOTER SOCIAL ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-social a {
  color: rgba(240,237,232,0.35);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--white); }

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
  .trust-photo-wrap { aspect-ratio: 4/3; }
}

/* ── CTA ── */
.cta-section {
  padding: 8rem 0;
  border-top: 1px solid rgba(240,237,232,0.07);
}
.cta-section h2 {
  font-size: clamp(2rem,5vw,4.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.cta-section p {
  font-size: 1rem;
  color: var(--dim);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-actions { display:flex; gap:1.5rem; flex-wrap:wrap; align-items:center; }
.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.82; }
.btn-text-link {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dimmer);
  border-bottom: 1px solid rgba(240,237,232,0.18);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-text-link:hover { color: var(--white); }

.btn-whatsapp {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 1px solid rgba(240,237,232,0.3);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.btn-whatsapp:hover {
  background: rgba(240,237,232,0.08);
  border-color: rgba(240,237,232,0.6);
}

/* ── FOOTER ── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(240,237,232,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(240,237,232,0.07);
}
.footer-logo {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-desc { font-size:0.85rem; color:var(--dim); line-height:1.65; }
.footer-h {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a {
  font-size: 0.88rem;
  color: var(--dimmer);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(240,237,232,0.3);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right:none; border-bottom:1px solid rgba(240,237,232,0.08); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:2rem; }
  .bottom-nav-sections { gap: 1.2rem; }
  .chapter-title { font-size: clamp(2.2rem,9vw,3.5rem); }
  .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
  .trust-photo-wrap { aspect-ratio: 4/3; }
  .floating-cta { font-size: 0.6rem; padding: 0.7rem 1.4rem; bottom: 1.5rem; right: 1.2rem; }
  .nav-overlay { padding: 0 6vw; }
}
@media (max-width: 560px) {
  .container { padding: 0 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .bottom-nav-sections { display: none; }
  .hud-top { padding: 1rem 1.25rem 0; }
  .chapter-text { padding: 0 1.2rem 4rem; }
  .chapter-title { font-size: clamp(1.8rem,8vw,2.8rem); }
  .chapter-body { font-size: 0.88rem; max-width: 100%; }
  .floating-cta { font-size: 0.55rem; padding: 0.65rem 1.2rem; bottom: 1.2rem; right: 1rem; letter-spacing: 0.14em; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: clamp(1.8rem,8vw,3rem); }
  .nav-link { font-size: clamp(1.8rem,8vw,3rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99998;
  background: rgba(6,6,10,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(240,237,232,0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner--hidden  { transform: translateY(100%); }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.cookie-text p { font-size: 0.8rem; color: rgba(240,237,232,0.55); line-height: 1.65; margin-bottom: 0.3rem; }
.cookie-text p strong { color: rgba(240,237,232,0.9); font-weight: 400; }
.cookie-text a { color: rgba(240,237,232,0.7); border-bottom: 1px solid rgba(240,237,232,0.25); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.cookie-btn--accept  { background: var(--white); color: var(--black); }
.cookie-btn--decline { background: transparent; color: rgba(240,237,232,0.5); border: 1px solid rgba(240,237,232,0.2); }
.cookie-btn:hover { opacity: 0.8; }
@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; gap: 1.2rem; padding: 1.5rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════
   LENA — KI CHATBOT
══════════════════════════════════════════ */
#lena-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 9998; }

/* Toggle Button */
.lena-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none; cursor: pointer;
  background: #1a1a2e;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.lena-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.lena-toggle--open { transform: scale(0.9); }
.lena-toggle-avatar { width: 100%; height: 100%; position: relative; }
.lena-toggle-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.lena-toggle-fallback {
  display: none; width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(145deg,#1a1a2e,#0f3460);
  align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 200; color: #a0c0ff;
}
.lena-toggle-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(80,128,255,0.4);
  animation: lena-pulse 2.5s ease-in-out infinite;
}
@keyframes lena-pulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 0; }
}

/* Chat Panel */
.lena-panel {
  position: absolute;
  bottom: 72px; right: 0;
  width: 340px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.3s cubic-bezier(0.16,1,0.3,1),
              visibility 0.3s;
}
.lena-panel--open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.lena-header {
  background: #06060a;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.lena-header-info { display: flex; align-items: center; gap: 0.75rem; }
.lena-avatar-sm {
  width: 38px; height: 38px; border-radius: 50%; overflow: hidden;
  background: linear-gradient(145deg,#1a1a2e,#0f3460); flex-shrink: 0;
  position: relative;
}
.lena-avatar-sm img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.lena-avatar-sm-fallback {
  display: none; width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 200; color: #a0c0ff;
}
.lena-header-info strong { display: block; font-size: 0.85rem; font-weight: 400; color: #f0ede8; }
.lena-header-info span   { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(160,192,255,0.7); }
.lena-close {
  background: none; border: none; color: rgba(240,237,232,0.4);
  font-size: 0.9rem; cursor: pointer; padding: 4px; transition: color 0.2s;
}
.lena-close:hover { color: #f0ede8; }

/* Messages */
.lena-messages {
  flex: 1; overflow-y: auto;
  padding: 1.2rem; display: flex; flex-direction: column;
  gap: 0.8rem; max-height: 320px;
  background: #f9f8f6;
}
.lena-msg { max-width: 85%; }
.lena-msg p {
  font-size: 0.85rem; line-height: 1.6; color: #1a1a1a;
  background: #fff; padding: 0.7rem 0.9rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin: 0;
}
.lena-msg--user { align-self: flex-end; }
.lena-msg--user p { background: #1a1a1a; color: #f0ede8; }
.lena-msg--bot  { align-self: flex-start; }

/* Typing indicator */
.lena-typing {
  display: flex; gap: 5px; padding: 0.8rem 1rem;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  width: fit-content;
}
.lena-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #aaa;
  animation: lena-dot 1.2s ease-in-out infinite;
}
.lena-typing span:nth-child(2) { animation-delay: 0.2s; }
.lena-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes lena-dot {
  0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
  40%          { transform: scale(1);   opacity: 1; }
}

/* Input */
.lena-input-row {
  display: flex; gap: 0; border-top: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.lena-input-row input {
  flex: 1; border: none; outline: none;
  padding: 0.9rem 1rem; font-family: var(--font, 'Barlow', sans-serif);
  font-size: 0.88rem; color: #1a1a1a; background: transparent;
}
.lena-input-row input::placeholder { color: #bbb; }
#lenaSend {
  background: #1a1a1a; color: #f0ede8;
  border: none; cursor: pointer;
  padding: 0 1.1rem; transition: opacity 0.2s;
}
#lenaSend:hover { opacity: 0.8; }

/* Quick-Buttons */
.lena-quick-btns { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.lena-quick {
  background: none; border: 1px solid rgba(0,0,0,0.12);
  font-family: var(--font, 'Barlow', sans-serif); font-size: 0.75rem;
  color: #444; padding: 0.5rem 0.8rem; text-align: left; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lena-quick:hover { background: #f5f4f0; border-color: rgba(0,0,0,0.25); }

/* Toggle Label */
.lena-toggle-label {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,237,232,0.6); white-space: nowrap; pointer-events: none;
}
body.light-hud .lena-toggle-label { color: rgba(0,0,0,0.45); }

/* Lead-Formular */
.lena-lead-form {
  display: flex; flex-direction: column; gap: 0.55rem;
  background: #fff; padding: 1rem; width: 100%;
  border-top: 2px solid #1a1a1a;
}
.lena-lead-title {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #888; margin-bottom: 0.2rem;
}
.lena-lead-input {
  border: 1px solid rgba(0,0,0,0.15); padding: 0.65rem 0.8rem;
  font-family: var(--font, 'Barlow', sans-serif); font-size: 0.85rem;
  color: #1a1a1a; background: #faf9f7; outline: none; width: 100%;
  transition: border-color .2s;
}
.lena-lead-input:focus { border-color: #1a1a1a; }
.lena-lead-submit {
  background: #1a1a1a; color: #f0ede8; border: none; cursor: pointer;
  font-family: var(--font, 'Barlow', sans-serif); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 0.75rem 1rem;
  transition: opacity .2s; text-align: center; margin-top: 0.3rem;
}
.lena-lead-submit:hover { opacity: 0.82; }
.lena-lead-hint { font-size: 0.68rem; color: #bbb; line-height: 1.5; }
.lena-lead-card { max-width: 100%; width: 100%; }
.lena-lead-card > p { padding: 0.5rem; font-size: 0.85rem; color: #555; }

/* Lead Erfolg */
.lena-lead-success { padding: 0.75rem; }
.lena-lead-success p { font-size: 0.85rem; color: #1a1a1a; margin-bottom: 0.5rem; }
.lena-lead-termin {
  display: inline-block; margin-top: 0.5rem;
  background: #1a1a1a; color: #f0ede8;
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.65rem 1.2rem;
}

/* Termin-Link im Chat */
.lena-termin-link {
  display: inline-block; color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,0.3); padding-bottom: 2px;
  font-size: 0.82rem;
}
.lena-termin-btn {
  display: block; text-align: center;
  background: #1a1a1a; color: #f5f4f0;
  padding: 0.75rem 1rem; font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; transition: opacity .2s;
}

@media (max-width: 560px) {
  #lena-widget { bottom: 1.2rem; right: 1rem; }
  .lena-panel  { width: calc(100vw - 2rem); right: 0; }
  .lena-toggle { width: 52px; height: 52px; }
}
