/* ============================================================
   Brandium Media — styles.css
   Schwarz · Weiß · Blau — modern, seriös, stark animiert
   ============================================================ */

:root {
  --bg:        #07080c;
  --bg-2:      #0a0c12;
  --surface:   #11141d;
  --surface-2: #161a25;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);

  --text:      #f5f7fc;
  --muted:     #9aa4b8;
  --muted-2:   #6b7488;

  --blue:        #2f6bff;
  --blue-bright: #5b9cff;
  --blue-soft:   #8fbaff;
  --blue-deep:   #0f3bce;
  --blue-glow:   rgba(47,107,255,.45);

  --radius:   18px;
  --radius-lg: 26px;
  --maxw: 1200px;

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

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4 { font-family: 'Inter', sans-serif; font-weight: 700; line-height: 1.08; letter-spacing: -.025em; overflow-wrap: break-word; }

.grad {
  background: linear-gradient(100deg, var(--blue-bright), var(--blue-soft) 55%, #ffffff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kicker {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 18px;
  padding-left: 30px; position: relative;
}
.kicker::before { content:""; position:absolute; left:0; top:50%; width:20px; height:2px; background: var(--blue); transform: translateY(-50%); }

/* ============ BACKGROUND FX ============ */
.bg-aurora, .bg-grid, .bg-noise { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.bg-aurora { overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.blob-1 { width: 50vw; height: 50vw; background: radial-gradient(circle, var(--blue) 0%, transparent 70%); top: -10%; left: -8%; animation: drift1 24s ease-in-out infinite; }
.blob-2 { width: 42vw; height: 42vw; background: radial-gradient(circle, var(--blue-deep) 0%, transparent 70%); bottom: -12%; right: -6%; animation: drift2 30s ease-in-out infinite; }
.blob-3 { width: 32vw; height: 32vw; background: radial-gradient(circle, #1746a8 0%, transparent 70%); top: 40%; left: 50%; animation: drift3 28s ease-in-out infinite; opacity:.35; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8vw,6vh) scale(1.15)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-7vw,-5vh) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(-50%,0) scale(1)} 50%{transform:translate(-40%,-8vh) scale(1.2)} }

.bg-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  opacity: .5;
}
.bg-noise {
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 60%);
  transform: translate(-50%,-50%); pointer-events: none; z-index: 1; opacity: 0;
  transition: opacity .4s ease; filter: blur(20px); will-change: transform;
}
@media (hover:hover) and (pointer:fine) { .cursor-glow { opacity: .6; } }

main, .nav, .footer { position: relative; z-index: 2; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .96rem;
  padding: 13px 22px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { transition: transform .3s var(--ease); }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-primary {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff; box-shadow: 0 8px 30px -8px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); border-color: var(--blue); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: padding .35s var(--ease), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 11px 0; background: rgba(7,8,12,.72);
  backdrop-filter: blur(16px) saturate(160%); border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; }
.brand-logo { width: 34px; height: 34px; border-radius: 9px; }
.brand-dot { color: var(--blue-bright); }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { font-size: .94rem; color: var(--muted); font-weight: 500; position: relative; padding: 4px 0; transition: color .25s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--blue); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(82vw, 340px);
  background: rgba(10,12,18,.96); backdrop-filter: blur(18px);
  border-left: 1px solid var(--line); padding: 96px 30px 40px;
  display: flex; flex-direction: column; gap: 8px; z-index: 99;
  transform: translateX(100%); transition: transform .45s var(--ease-out); visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a { font-family: 'Inter', sans-serif; font-size: 1.15rem; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-menu .btn { justify-content: center; margin-top: 18px; border: none; }

/* ============ HERO ============ */
.hero { padding: 168px 0 90px; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  padding: 8px 16px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255,255,255,.03); backdrop-filter: blur(8px); margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 0 var(--blue-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--blue-glow)} 70%{box-shadow:0 0 0 10px transparent} 100%{box-shadow:0 0 0 0 transparent} }

.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 26px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-sub { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -12px; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.avatars img:first-child { margin-left: 0; }
.hero-trust p { font-size: .86rem; color: var(--muted); max-width: 240px; line-height: 1.4; }

/* hero visual */
.hero-visual { position: relative; height: 520px; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-2); background: var(--surface);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.8);
  transition: transform .4s var(--ease);
}
.hero-card-main { inset: 0 40px 0 0; }
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hc-badge {
  position: absolute; top: 16px; left: 16px; display: flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; padding: 7px 13px; border-radius: 999px;
  background: rgba(7,8,12,.7); backdrop-filter: blur(10px); border: 1px solid var(--line-2);
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff4d4d; animation: pulse-red 1.6s infinite; }
@keyframes pulse-red { 0%,100%{opacity:1} 50%{opacity:.35} }
.hc-stat {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(7,8,12,.66); backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 14px 18px;
}
.hc-stat strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.7rem; color: #fff; line-height: 1; }
.hc-stat span { font-size: .8rem; color: var(--muted); }

.hero-card-float { padding: 0; }
.card-float-a {
  width: 230px; right: -10px; top: 36px; padding: 18px; background: rgba(17,20,29,.85);
  backdrop-filter: blur(12px); animation: floatA 6s ease-in-out infinite;
}
.card-float-b {
  width: 144px; height: 196px; left: -24px; bottom: 104px;
  animation: floatB 7s ease-in-out infinite;
}
.card-float-b img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(14px)} }
.mini-metric .mm-top { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.mini-metric .up { color: #3ddc84; font-weight: 700; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.bars i { flex: 1; background: linear-gradient(180deg, var(--blue-bright), var(--blue-deep)); border-radius: 4px 4px 2px 2px; animation: grow 2.4s var(--ease) infinite alternate; }
.bars i:nth-child(1){height:30%; animation-delay:0s} .bars i:nth-child(2){height:55%; animation-delay:.1s}
.bars i:nth-child(3){height:40%; animation-delay:.2s} .bars i:nth-child(4){height:75%; animation-delay:.3s}
.bars i:nth-child(5){height:60%; animation-delay:.4s} .bars i:nth-child(6){height:90%; animation-delay:.5s}
.bars i:nth-child(7){height:100%; animation-delay:.6s}
@keyframes grow { from{transform:scaleY(.7); opacity:.7} to{transform:scaleY(1); opacity:1} }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--line-2); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 3px; background: var(--blue-bright); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translateY(-4px)} 40%{opacity:1} 80%{opacity:0; transform:translateY(10px)} }

/* ============ TRUST MARQUEE ============ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; background: rgba(255,255,255,.012); overflow: hidden; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 38px; width: max-content; animation: marquee 36s linear infinite; }
.trust:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 600; color: var(--muted); white-space: nowrap; transition: color .3s; }
.marquee-track span:hover { color: var(--text); }
.marquee-track i { color: var(--blue); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ STATS ============ */
.stats { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.025), transparent); position: relative; overflow: hidden; }
.stat::before { content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60%; height:1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.stat strong { display: block; font-family: 'Inter', sans-serif; font-size: clamp(2.2rem, 4vw, 3.1rem); color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -.02em; }
.stat span { font-size: .9rem; color: var(--muted); }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(47,107,255,.04), transparent); }
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ============ CARDS (services) ============ */
.cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.card {
  position: relative; padding: 30px 26px 34px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--surface);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
  overflow: hidden;
}
.card::after { content:""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, var(--blue), 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 .4s; pointer-events: none; }
.card:hover { transform: translateY(-8px); background: var(--surface-2); border-color: transparent; }
.card:hover::after { opacity: 1; }
.card-num { font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 700; color: var(--blue-bright); letter-spacing: .1em; margin-bottom: 26px; opacity: .8; }
.card-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(140deg, rgba(47,107,255,.22), rgba(47,107,255,.06)); border: 1px solid var(--line-2); margin-bottom: 22px; }
.card-ico svg { width: 26px; height: 26px; color: var(--blue-bright); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .94rem; }

/* ============ CASES ============ */
.cases { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.case { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; background: var(--surface); aspect-ratio: 9/16; }
.case-feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.case img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.case:hover img { transform: scale(1.06); }
.case figcaption { position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px; background: linear-gradient(transparent, rgba(7,8,12,.92)); transform: translateY(8px); opacity: 0; transition: transform .4s var(--ease), opacity .4s; }
.case:hover figcaption { transform: translateY(0); opacity: 1; }
.case-tag { display: inline-block; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--blue-bright); margin-bottom: 6px; }
.case figcaption strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.05rem; }
.case figcaption em { font-style: normal; font-size: .82rem; color: var(--muted); }
.case-feature figcaption { transform: none; opacity: 1; background: linear-gradient(transparent, rgba(7,8,12,.95)); padding: 60px 24px 22px; }
.case-feature figcaption strong { font-size: 1.5rem; }

/* ============ WORK ============ */
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.work { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; aspect-ratio: 4/5; transition: transform .4s var(--ease); }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work:hover { transform: translateY(-6px); }
.work:hover img { transform: scale(1.05); }
.work-play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: rgba(47,107,255,.85); backdrop-filter: blur(6px); box-shadow: 0 10px 30px -6px var(--blue-glow); opacity: 0; transform: scale(.8); transition: opacity .35s, transform .35s var(--ease); }
.work-play svg { width: 26px; height: 26px; color: #fff; margin-left: 3px; }
.work:hover .work-play { opacity: 1; transform: scale(1); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 50px rgba(14,20,34,.18)); }
.about-badge { position: absolute; right: -14px; bottom: 26px; background: rgba(10,12,18,.85); backdrop-filter: blur(12px); border: 1px solid var(--line-2); border-radius: 16px; padding: 14px 22px; box-shadow: 0 16px 40px -12px rgba(0,0,0,.7); }
.about-badge strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.1rem; }
.about-badge span { font-size: .8rem; color: var(--blue-bright); }
.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 22px; }
.about-copy > p { color: var(--muted); margin-bottom: 26px; font-size: 1.04rem; }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-points li { display: flex; align-items: center; gap: 13px; font-weight: 500; }
.about-points svg { width: 22px; height: 22px; color: var(--blue-bright); flex-shrink: 0; background: rgba(47,107,255,.12); border-radius: 50%; padding: 3px; }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 32px 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); transition: transform .4s var(--ease), border-color .4s; }
.step:hover { transform: translateY(-6px); border-color: var(--blue); }
.step-num { font-family: 'Inter', sans-serif; font-size: 2.6rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.4px var(--blue); margin-bottom: 16px; line-height: 1; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ============ CTA ============ */
.cta-section { padding: 60px 0 110px; }
.cta-box { position: relative; text-align: center; padding: 76px 30px; border: 1px solid var(--line-2); border-radius: 32px; background: radial-gradient(ellipse at 50% 0%, rgba(47,107,255,.16), var(--surface) 70%); overflow: hidden; }
.cta-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 80%; background: radial-gradient(circle, var(--blue-glow), transparent 65%); filter: blur(60px); opacity: .6; }
.cta-box h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 18px; position: relative; }
.cta-box > p { color: var(--muted); max-width: 540px; margin: 0 auto 34px; font-size: 1.06rem; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-mail { margin-top: 26px; font-size: .92rem; color: var(--muted); position: relative; }
.cta-mail a { color: var(--blue-bright); font-weight: 600; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.footer-col a, .footer-col span { display: block; color: var(--muted); font-size: .94rem; margin-bottom: 11px; transition: color .25s; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; padding-top: 24px; font-size: .84rem; color: var(--muted-2); flex-wrap: wrap; }

/* ============ LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(4,5,8,.92); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 14px; border: 1px solid var(--line-2); box-shadow: 0 40px 100px -20px rgba(0,0,0,.9); transform: scale(.94); transition: transform .4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lb-close { position: absolute; top: 24px; right: 30px; font-size: 2.4rem; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; opacity: .7; transition: opacity .25s, transform .25s; }
.lb-close:hover { opacity: 1; transform: rotate(90deg); }

/* ============ REVEAL ANIM ============ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
[data-reveal].in { opacity: 1; transform: none; }
.hero-title .line[data-reveal] { transform: translateY(100%); }
.hero-title .line[data-reveal].in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .blob, .bars i, .marquee-track, .card-float-a, .card-float-b, .pulse-dot, .live-dot, .scroll-cue span { animation: none !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 440px; max-width: 480px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .cards { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .cases { grid-template-columns: repeat(2,1fr); }
  .case-feature { grid-column: span 2; grid-row: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 380px; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 130px 0 70px; }
  .hero-visual { height: 400px; margin: 0 auto; }
  .card-float-a { width: 180px; }
  .stats { padding: 50px 0; }
  .section { padding: 70px 0; }
  .cases { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .case-feature { grid-column: auto; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  /* Lange Buttons dürfen umbrechen statt zu überlaufen */
  .btn-lg { white-space: normal; max-width: 100%; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; max-width: 100%; justify-content: center; padding: 15px 20px; }
  /* CTA-Section-Buttons volle Breite */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  /* About-Foto + Badge passen in den Viewport */
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .about-visual { max-width: 100%; }
  .about-badge { right: 0; left: auto; }
}

/* ============================================================
   v3 — Intro-Video · Hero-Center · Pin-Sektionen · Reels · FAQ
   ============================================================ */

/* ---------- Erklärvideo-Platzhalter ---------- */
.intro-video { padding: 104px 0 24px; }
.vid-placeholder {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  border: 1px solid var(--line-2); overflow: hidden; cursor: pointer;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(47,107,255,.28), transparent 60%),
    linear-gradient(160deg, #0c1120, #07080c 70%);
  display: grid; place-items: center; box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
}
.vp-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%,#000,transparent 75%); mask-image: radial-gradient(ellipse 70% 70% at 50% 50%,#000,transparent 75%); opacity:.6; }
.vp-play { position: relative; z-index:2; width: 88px; height: 88px; border-radius: 50%; border: 0; cursor: pointer; display:grid; place-items:center; background: linear-gradient(120deg,var(--blue),var(--blue-deep)); box-shadow: 0 14px 44px -8px var(--blue-glow); transition: transform .3s var(--ease); }
.vp-play::after { content:""; position:absolute; inset:-10px; border-radius:50%; border:1px solid var(--blue-bright); opacity:.5; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0%{transform:scale(.9);opacity:.6} 100%{transform:scale(1.5);opacity:0} }
.vp-play svg { width: 34px; height: 34px; color:#fff; margin-left: 4px; }
.vid-placeholder:hover .vp-play { transform: scale(1.08); }
.vp-label { position:absolute; left:0; right:0; bottom: 22px; z-index:2; text-align:center; }
.vp-tag { display:inline-block; font-size:.7rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--blue-bright); border:1px solid var(--line-2); padding:5px 12px; border-radius:999px; margin-bottom:12px; background:rgba(7,8,12,.5); }
.vp-label strong { display:block; font-family:'Inter', sans-serif; font-size:1.1rem; }
.vp-label em { font-style:normal; font-size:.85rem; color:var(--muted); }

/* ---------- Hero zentriert ---------- */
.hero-center { padding: 124px 0 72px; min-height: 94vh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; }
.hero-inner-center { position: relative; z-index: 3; display:flex; flex-direction:column; align-items:center; max-width: 880px; }
.hero-center .hero-sub { margin-left:auto; margin-right:auto; max-width: 600px; }
.hero-center .hero-actions { justify-content:center; }
.hero-center .hero-trust { justify-content:center; }
.hero-center .hero-title { font-size: clamp(2.7rem, 7vw, 5.2rem); }

/* fliegende Insight-Cards */
.hero-floats { position:absolute; inset:0; z-index:1; pointer-events:none; }
.float-card { position:absolute; width: 168px; border-radius: 20px; overflow:hidden; border:1px solid var(--line-2); box-shadow: 0 30px 60px -25px rgba(0,0,0,.85); background:var(--surface); will-change: transform; }
.float-card img { width:100%; display:block; }
.float-card::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); border-radius:inherit; }
.fc-1 { top: 17%; left: 3%;  transform: rotate(-7deg); animation: fly1 9s ease-in-out infinite; }
.fc-2 { top: 15%; right: 5%; width:150px; transform: rotate(6deg); animation: fly2 11s ease-in-out infinite; }
.fc-3 { bottom: 6%; left: 7%; width:150px; transform: rotate(5deg); animation: fly3 10s ease-in-out infinite; }
.fc-4 { bottom: 5%; right: 4%; transform: rotate(-6deg); animation: fly2 12s ease-in-out infinite; }
.fc-5 { top: 44%; right: 13%; width:120px; opacity:.85; transform: rotate(8deg); animation: fly1 13s ease-in-out infinite; }
@keyframes fly1 { 0%,100%{translate:0 0} 50%{translate:0 -22px} }
@keyframes fly2 { 0%,100%{translate:0 0} 50%{translate:0 20px} }
@keyframes fly3 { 0%,100%{translate:0 0} 50%{translate:0 -16px} }

/* ---------- Pin / Sticky Scroll-Sektionen ---------- */
.pin-wrap { position: relative; height: 360vh; }
.pin-stage { position: sticky; top: 0; min-height: 100vh; display:flex; align-items:center; padding: 90px 0; }
.pin-stage .section-head { margin-bottom: 36px; }
.pin-progress { width: min(420px, 70%); height: 3px; border-radius: 3px; background: var(--line-2); margin: 0 auto 46px; overflow:hidden; }
.pin-progress span { display:block; height:100%; width:0; background: linear-gradient(90deg,var(--blue),var(--blue-bright)); border-radius:3px; transition: width .15s linear; }
.pin-item { opacity: 0; transform: translateY(48px) scale(.94); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.pin-item.active { opacity: 1; transform: none; }

/* Insights-Reihe (Telefon-Screenshots) */
.insights-row { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items:start; }
.insight-card { position:relative; border-radius: 18px; overflow:hidden; border:1px solid var(--line-2); background:#fff; cursor: zoom-in; box-shadow: 0 24px 50px -24px rgba(0,0,0,.7); }
.insight-card img { width:100%; display:block; }
.insight-card figcaption { position:absolute; left:0; right:0; bottom:0; padding: 30px 16px 14px; background: linear-gradient(transparent, rgba(7,8,12,.92)); }
.insight-card figcaption strong { display:block; font-family:'Inter', sans-serif; font-size:1.5rem; color:#fff; line-height:1; }
.insight-card figcaption span { font-size:.78rem; color: var(--blue-soft); }

/* ---------- Kundenprofile Marquee ---------- */
.profiles { padding: 80px 0 90px; overflow:hidden; }
.profiles .section-head { margin-bottom: 40px; }
.profile-marquee { -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.profile-track { display:flex; gap: 18px; width:max-content; animation: marquee 60s linear infinite; }
.profiles:hover .profile-track { animation-play-state: paused; }
.profile-track img { width: 184px; aspect-ratio: 9/19; object-fit: cover; object-position: top center; border-radius: 16px; border:1px solid var(--line-2); background:#fff; box-shadow: 0 18px 40px -22px rgba(0,0,0,.7); transition: transform .35s var(--ease); }
.profile-track img:hover { transform: translateY(-8px); }

/* ---------- Content-Reels (Video) ---------- */
.reels-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.reel { position:relative; aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); cursor:pointer; background:var(--surface); transition: transform .4s var(--ease); }
.reel video { width:100%; height:100%; object-fit:cover; display:block; }
.reel:hover { transform: translateY(-6px); border-color: var(--blue); }
.reel-play { position:absolute; inset:0; margin:auto; width:62px; height:62px; border-radius:50%; display:grid; place-items:center; background:rgba(47,107,255,.85); backdrop-filter:blur(6px); box-shadow:0 10px 30px -6px var(--blue-glow); transition: opacity .3s, transform .3s var(--ease); }
.reel-play svg { width:24px; height:24px; color:#fff; margin-left:3px; }
.reel.playing .reel-play { opacity:0; transform: scale(.8); }
.reel figcaption { position:absolute; left:14px; bottom:14px; z-index:2; font-family:'Inter', sans-serif; font-size:.85rem; font-weight:600; padding:6px 12px; border-radius:999px; background:rgba(7,8,12,.6); backdrop-filter:blur(8px); border:1px solid var(--line-2); }

/* ---------- FAQ ---------- */
.faq-grid { display:grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items:start; }
.faq-head { text-align:left; margin:0; max-width:none; position:sticky; top:110px; }
.faq-head .btn { margin-top: 8px; }
.faq-list { display:flex; flex-direction:column; gap: 12px; }
.faq-item { border:1px solid var(--line); border-radius: 16px; background:var(--surface); overflow:hidden; transition: border-color .3s, background .3s; }
.faq-item[open] { border-color: var(--blue); background: var(--surface-2); }
.faq-item summary { list-style:none; cursor:pointer; padding: 20px 22px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-family:'Inter', sans-serif; font-weight:600; font-size:1.05rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-ico { position:relative; flex-shrink:0; width:20px; height:20px; }
.faq-ico::before, .faq-ico::after { content:""; position:absolute; top:50%; left:50%; width:13px; height:2px; background:var(--blue-bright); border-radius:2px; transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-ico::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-ico::after { transform: translate(-50%,-50%) rotate(0); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { color: var(--muted); font-size:.96rem; }

/* ---------- Lightbox Video ---------- */
.lightbox video { max-width: 420px; max-height: 86vh; border-radius:14px; border:1px solid var(--line-2); box-shadow:0 40px 100px -20px rgba(0,0,0,.9); }

/* ---------- Responsive v3 ---------- */
@media (max-width: 1024px) {
  .insights-row { grid-template-columns: repeat(2,1fr); }
  .reels-grid { grid-template-columns: repeat(3,1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position:static; }
  .fc-5 { display:none; }
  .float-card { width: 130px; }
  .fc-2,.fc-3 { width: 120px; }
}
@media (max-width: 760px) {
  .intro-video { padding: 92px 0 14px; }
  .vp-play { width:66px; height:66px; } .vp-play svg { width:26px; height:26px; }
  .hero-center { min-height: auto; padding: 40px 0 60px; }
  /* fliegende Cards dezenter auf Mobile */
  .float-card { width: 96px; opacity:.5; }
  .fc-1{top:1%;left:-2%} .fc-2{top:0;right:-2%} .fc-3{bottom:2%;left:-3%} .fc-4{bottom:1%;right:-3%}
  /* Pin-Sektionen auf Mobile NICHT pinnen — normal stapeln */
  .pin-wrap { height: auto !important; }
  .pin-stage { position: static; min-height: 0; padding: 64px 0; }
  .pin-item { opacity:1; transform:none; }
  .pin-progress { display:none; }
  .insights-row { grid-template-columns: 1fr 1fr; gap:12px; }
  .reels-grid { grid-template-columns: 1fr 1fr; gap:14px; }
  .profile-track img { width: 140px; }
  .lightbox video { max-width: 88vw; }
}
@media (max-width: 460px) {
  .reels-grid { grid-template-columns: 1fr 1fr; }
  .insights-row { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .float-card, .vp-play::after { animation: none !important; }
  .pin-wrap { height: auto !important; }
  .pin-stage { position: static; min-height:0; }
  .pin-item { opacity:1 !important; transform:none !important; }
  .profile-track { animation: none !important; }
}

/* ============================================================
   v4 — Preloader · No-Glow BG · Showcase-Video · Hero-Refresh
   ============================================================ */

/* ---------- Hintergrund: Glow raus, cleane Vignette ---------- */
.bg-vignette {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(135% 105% at 50% -5%, transparent 52%, rgba(0,0,0,.55) 100%),
    radial-gradient(80% 60% at 50% 8%, rgba(47,107,255,.05), transparent 60%);
}
body:has(#preloader:not(.done)) { overflow: hidden; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999; background: #06070b;
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.pl-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pl-logo-wrap { position: relative; width: 92px; height: 92px; display: grid; place-items: center; }
.pl-logo { width: 56px; height: 56px; border-radius: 13px; animation: plPulse 1.5s ease-in-out infinite; }
.pl-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,255,255,.08); border-top-color: var(--blue-bright); animation: plSpin 1s linear infinite; }
@keyframes plSpin { to { transform: rotate(360deg); } }
@keyframes plPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.88); opacity: .85; } }
.pl-name { font-family: 'Inter', sans-serif; letter-spacing: .36em; font-size: .82rem; font-weight: 600; color: var(--text); text-indent: .36em; }
.pl-name span { color: var(--blue-bright); }
.pl-bar { width: 210px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.1); overflow: hidden; }
.pl-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transition: width .2s linear; }
.pl-count { font-family: 'Inter', sans-serif; font-size: .78rem; color: var(--muted-2); }

/* ---------- Showcase-Video (unter dem Hero) ---------- */
.showcase { padding: 24px 0 100px; }
.showcase .section-head { margin-bottom: 38px; }
.showcase-frame {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-2); background: #05060a;
  box-shadow: 0 50px 110px -45px rgba(0,0,0,.95), 0 0 0 1px rgba(47,107,255,.06);
}
.showcase-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; transition: opacity .4s;
  background: radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(5,6,10,.45));
}
.showcase-frame.playing::after { opacity: 0; }
.showcase-play {
  position: absolute; inset: 0; margin: auto; width: 96px; height: 96px; border-radius: 50%;
  border: 0; cursor: pointer; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 55px -8px var(--blue-glow); transition: transform .35s var(--ease), opacity .35s;
}
.showcase-play svg { width: 34px; height: 34px; color: #fff; margin-left: 5px; }
.sp-ring { position: absolute; inset: -12px; border-radius: 50%; border: 1px solid rgba(91,156,255,.5); animation: ring 2.4s ease-out infinite; }
.showcase-frame:hover .showcase-play { transform: scale(1.07); }
.showcase-frame.playing .showcase-play { opacity: 0; pointer-events: none; transform: scale(.8); }

/* ---------- Hero-Refresh ---------- */
.word-underline { position: relative; }
.word-underline::after {
  content: ""; position: absolute; left: 0; bottom: -.06em; height: .085em; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 3px; transform: scaleX(0); transform-origin: left;
  animation: underlineDraw 1s var(--ease) forwards; animation-delay: .85s;
}
@keyframes underlineDraw { to { transform: scaleX(1); } }

.hero-trust-text {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
}
.htt-line { width: 46px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-bright)); }

/* fliegende Cards: Badges */
.float-card .fc-badge {
  position: absolute; top: 9px; left: 9px; display: inline-flex; align-items: center; gap: 5px;
  font-size: .6rem; font-weight: 700; padding: 4px 8px; border-radius: 999px;
  backdrop-filter: blur(8px); letter-spacing: .02em;
}
.fc-up { color: #41e08c; background: rgba(8,16,11,.78); border: 1px solid rgba(65,224,140,.4); }
.fc-live { color: #fff; background: rgba(7,8,12,.72); border: 1px solid var(--line-2); }
.fc-live i { width: 6px; height: 6px; border-radius: 50%; background: #ff4d4d; animation: pulse-red 1.6s infinite; }

@media (prefers-reduced-motion: reduce) {
  .pl-ring, .pl-logo, .sp-ring, .fc-live i { animation: none !important; }
  .word-underline::after { animation: none !important; transform: scaleX(1); }
}
@media (max-width: 760px) {
  .showcase-play { width: 68px; height: 68px; } .showcase-play svg { width: 26px; height: 26px; }
  .hero-trust-text { font-size: .68rem; letter-spacing: .1em; }
}

/* ============================================================
   v5 — LIGHT / WHITE MODE  ·  Hero-Collage · Testimonials · Scrollbar
   ============================================================ */

/* ---------- Helle Tokens ---------- */
:root {
  --bg:        #f6f7fb;
  --bg-2:      #eceff6;
  --surface:   #ffffff;
  --surface-2: #f3f5fb;
  --line:      rgba(14,20,34,.10);
  --line-2:    rgba(14,20,34,.16);
  --text:      #0c1222;
  --muted:     #56607a;
  --muted-2:   #8a93a8;
  --blue:        #2f6bff;
  --blue-bright: #2f6bff;
  --blue-soft:   #6f9bff;
  --blue-deep:   #163fb0;
  --blue-glow:   rgba(47,107,255,.30);
}
body { background: var(--bg); color: var(--text); }

/* Hintergrund-Layer für hell anpassen */
.bg-vignette { background: radial-gradient(120% 80% at 50% 0%, rgba(47,107,255,.05), transparent 55%); }
.bg-noise { opacity: .02; }
.bg-grid { opacity: .6; }

.grad { background: linear-gradient(100deg, var(--blue), var(--blue-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- NAV: weiß über dunklem Hero, dunkel auf hellem Body ---------- */
.nav .brand { color: #fff; }
.nav .brand-dot { color: var(--blue-soft); }
.nav .nav-links a { color: rgba(255,255,255,.82); }
.nav .nav-links a:hover { color: #fff; }
.nav .nav-toggle span { background: #fff; }
.nav.scrolled { background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(160%); border-bottom-color: var(--line); }
.nav.scrolled .brand { color: var(--text); }
.nav.scrolled .brand-dot { color: var(--blue); }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav.scrolled .nav-toggle span { background: var(--text); }

.btn-ghost { background: rgba(14,20,34,.04); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(14,20,34,.08); border-color: var(--blue); }

.mobile-menu { background: rgba(255,255,255,.97); border-left-color: var(--line); }
.mobile-menu a { color: var(--text); border-bottom-color: var(--line); }

.trust { background: transparent; border-color: var(--line); }

/* ---------- Stats hell ---------- */
.stat { background: linear-gradient(180deg, rgba(47,107,255,.05), transparent); }
.stat strong { color: var(--text); }

/* ---------- Service-Boxen: blauer Farbverlauf ---------- */
.card.service {
  background: linear-gradient(162deg, #e9f1ff 0%, #ffffff 58%);
  border-color: rgba(47,107,255,.18);
}
.card.service:hover { background: linear-gradient(162deg, #dde9ff 0%, #f3f8ff 60%); border-color: rgba(47,107,255,.32); }
.card.service .card-ico { background: linear-gradient(140deg, rgba(47,107,255,.16), rgba(47,107,255,.04)); border-color: rgba(47,107,255,.22); }

/* ---------- About / Prozess / FAQ hell ---------- */
.about-badge { background: rgba(255,255,255,.94); border-color: var(--line-2); box-shadow: 0 16px 40px -14px rgba(14,20,34,.25); }
.about-badge span { color: var(--blue); }
.about-points svg { background: rgba(47,107,255,.1); }
.step:hover { box-shadow: 0 18px 40px -22px rgba(14,20,34,.25); }
.faq-item { box-shadow: 0 1px 0 rgba(14,20,34,.02); }

/* ---------- CTA hell ---------- */
.cta-box { background: radial-gradient(ellipse at 50% 0%, rgba(47,107,255,.14), #ffffff 72%); }

/* ---------- Showcase (Video-Frame bleibt dunkel) ---------- */
.showcase-frame { box-shadow: 0 40px 90px -45px rgba(14,20,34,.4), 0 0 0 1px rgba(47,107,255,.06); }

/* ============================================================
   HERO-COLLAGE (dunkel, 1:1 brandium-media.de)
   ============================================================ */
.hero-collage {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 130px 0 96px; background: #070a12;
}
.collage { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr 1fr; }
.collage span { overflow: hidden; display: block; }
.collage img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.74) saturate(1.05);
  transform: scale(1.06); opacity: 0; animation: colIn 1.1s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * .08s);
}
@keyframes colIn { to { opacity: 1; transform: scale(1); } }
.collage-veil { position: absolute; inset: 0;
  background:
    radial-gradient(115% 90% at 50% 42%, transparent 26%, rgba(5,7,13,.72) 100%),
    linear-gradient(180deg, rgba(7,10,18,.78), rgba(7,10,18,.55) 42%, rgba(7,10,18,.9));
}
.hero-collage-inner { position: relative; z-index: 3; max-width: 1010px; color: #fff; }
.hero-h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.9rem); line-height: 1.12; color: #fff;
  letter-spacing: -.02em; margin: 0 auto 24px; max-width: 18ch;
}
.u-underline { text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 7px; text-decoration-thickness: 3px; }
.u-highlight {
  display: inline-block; background: linear-gradient(120deg, #3d77ff, var(--blue-deep));
  color: #fff; padding: 0 .28em; border-radius: 12px; box-shadow: 0 10px 34px -8px rgba(47,107,255,.6);
}
.hero-lead { color: rgba(255,255,255,.72); font-style: italic; max-width: 640px; margin: 0 auto 32px; font-size: clamp(1rem, 1.3vw, 1.16rem); }
.hero-founder { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.hf-photo { width: 66px; height: 66px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.7); flex-shrink: 0; background: #1a2233; }
.hf-photo img { width: 100%; height: 100%; object-fit: cover; }
.hf-meta { text-align: left; }
.hf-meta strong { display: block; color: #fff; font-family: 'Inter', sans-serif; font-size: 1rem; }
.hf-meta span { color: rgba(255,255,255,.62); font-size: .85rem; }
.hero-collage .scroll-cue { border-color: rgba(255,255,255,.32); }
.hero-collage .scroll-cue span { background: #fff; }

/* ============================================================
   TESTIMONIALS / SWIPE
   ============================================================ */
.testimonials { overflow: hidden; }
.swiper { position: relative; margin-top: 8px; }
.swiper-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.swiper-track { display: flex; transition: transform .55s var(--ease); will-change: transform; cursor: grab; }
.swiper-track:active { cursor: grabbing; }
.t-slide {
  flex: 0 0 100%; box-sizing: border-box; display: grid; grid-template-columns: 300px 1fr; gap: 46px;
  align-items: center; padding: 46px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.t-phone { display: flex; justify-content: center; }
.t-phone img { width: 230px; filter: drop-shadow(0 26px 46px rgba(14,20,34,.22)); pointer-events: none; }
.t-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.t-logo { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-family: 'Inter', sans-serif; font-weight: 700; color: #fff; background: linear-gradient(135deg, #3d77ff, var(--blue-deep)); font-size: 1.05rem; }
.t-brand-meta strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.18rem; }
.t-brand-meta em { font-style: normal; color: var(--muted); font-size: .86rem; }
.t-headline { margin-bottom: 18px; }
.t-headline b { display: block; font-family: 'Inter', sans-serif; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; background: linear-gradient(120deg, var(--blue), var(--blue-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.t-headline span { color: var(--muted); font-size: .9rem; }
.t-baf { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.t-baf svg { color: var(--muted-2); flex-shrink: 0; }
.t-chip { font-size: .8rem; font-weight: 600; padding: 7px 13px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); }
.t-chip.up { color: #0a8a4e; background: rgba(16,170,90,.1); border-color: rgba(16,170,90,.32); }
.t-quote { font-size: 1.12rem; line-height: 1.6; color: var(--text); font-style: italic; }
.swiper-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 26px -10px rgba(14,20,34,.3); transition: transform .25s var(--ease), background .25s, color .25s; z-index: 4; }
.swiper-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-50%) scale(1.06); }
.swiper-btn.prev { left: -14px; } .swiper-btn.next { right: -14px; }
.swiper-dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.swiper-dots button { width: 8px; height: 8px; padding: 0; border-radius: 999px; border: 0; background: var(--line-2); cursor: pointer; transition: width .3s var(--ease), background .3s; }
.swiper-dots button.active { width: 28px; background: var(--blue); }

/* ============================================================
   SCROLL-FORTSCHRITTSBALKEN
   ============================================================ */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-soft)); box-shadow: 0 0 10px var(--blue-glow); }

/* ---------- Responsive v5 ---------- */
@media (max-width: 860px) {
  .t-slide { grid-template-columns: 1fr; gap: 26px; padding: 30px 24px; text-align: center; }
  .t-brand, .t-baf { justify-content: center; }
  .t-phone img { width: 180px; }
  .swiper-btn.prev { left: 4px; } .swiper-btn.next { right: 4px; }
  .swiper-btn { width: 42px; height: 42px; background: rgba(255,255,255,.9); backdrop-filter: blur(6px); }
}
@media (max-width: 760px) {
  .hero-collage { min-height: auto; padding: 116px 0 72px; }
  .collage { grid-template-columns: repeat(3, 1fr); }
  .hero-h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ============================================================
   v6 — Reel-Hover-Fix (kein Weiß) + dezente, seriöse Animationen
   ============================================================ */

/* ---------- Reels: Poster-Overlay verhindert Weiß-Flackern ---------- */
.reel { background: #0a0c12; }
.reel video { position: absolute; inset: 0; }
.reel-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: opacity .5s ease; }
.reel.ready .reel-poster { opacity: 0; }
.reel-play { z-index: 3; }
.reel figcaption { z-index: 3; }

/* ---------- Kundenstimmen (Video-Karten mit blauem Panel) ---------- */
.cv-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 30px; justify-content: center; margin-top: 44px; }
.cv-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 34px 70px -34px rgba(14,20,34,.30); transition: transform .4s var(--ease), box-shadow .4s; }
.cv-card:hover { transform: translateY(-6px); box-shadow: 0 44px 80px -34px rgba(14,20,34,.38); }
.cv-reel { border: 0; border-radius: 0; }
.cv-reel:hover { transform: none; border-color: transparent; }
.cv-panel { flex: 1; background: linear-gradient(160deg, #3d77ff, #1e49c8); color: #fff; padding: 22px 24px 24px; }
.cv-name { display: block; font-family: 'Inter', sans-serif; font-size: 1.3rem; font-weight: 700; }
.cv-role { display: inline-flex; align-items: center; gap: 7px; margin: 9px 0 13px; font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.88); }
.cv-role svg { width: 16px; height: 16px; flex: none; }
.cv-panel p { font-size: .93rem; line-height: 1.55; color: rgba(255,255,255,.92); }
@media (max-width: 600px) { .cv-grid { grid-template-columns: minmax(0, 360px); } }

/* ---------- Primary-Button: dezenter Licht-Sweep beim Hover ---------- */
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 48%; z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-primary:hover::before { animation: sheen .85s var(--ease); }
@keyframes sheen { from { left: -80%; } to { left: 135%; } }

/* ---------- "Social Media"-Highlight: sanfter Gradient-Schimmer ---------- */
.u-highlight { background-size: 220% 100%; animation: hlShift 7s ease-in-out infinite; }
@keyframes hlShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Testimonial: aktiver Slide blendet Inhalte gestaffelt ein ---------- */
.t-slide.is-active .t-brand,
.t-slide.is-active .t-headline,
.t-slide.is-active .t-baf,
.t-slide.is-active .t-quote { animation: tIn .6s var(--ease-out) both; }
.t-slide.is-active .t-headline { animation-delay: .07s; }
.t-slide.is-active .t-baf { animation-delay: .14s; }
.t-slide.is-active .t-quote { animation-delay: .21s; }
.t-slide.is-active .t-phone img { animation: tPhone .75s var(--ease-out) both; }
@keyframes tIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes tPhone { from { opacity: 0; transform: translateY(22px) scale(.96); } to { opacity: 1; transform: none; } }

/* ---------- Hero-Collage Parallax-Basis ---------- */
.collage { will-change: transform; transform: scale(1.12); }

/* ---------- Section-Heads: Kicker-Linie zeichnet sich beim Reveal ---------- */
.section-head.in .kicker::before,
.reveal.in .kicker::before { animation: lineGrow .7s var(--ease) both; }
@keyframes lineGrow { from { width: 0; } to { width: 20px; } }

/* ---------- Reveal: feiner Blur-Up nur für Überschriften ---------- */
.section-head h2 { transition: filter .8s var(--ease-out); }
[data-reveal]:not(.in) .section-head h2,
.section-head[data-reveal]:not(.in) h2 { filter: blur(7px); }

@media (prefers-reduced-motion: reduce) {
  .u-highlight, .btn-primary:hover::before,
  .t-slide.is-active .t-phone img, .t-slide.is-active .t-brand,
  .t-slide.is-active .t-headline, .t-slide.is-active .t-baf, .t-slide.is-active .t-quote,
  .kicker::before { animation: none !important; }
  .collage { transform: none !important; }
  .section-head h2 { filter: none !important; }
}

/* ============================================================
   v7 — Erstgespräch-Funnel (dunkles Overlay)
   ============================================================ */
.funnel { position: fixed; inset: 0; z-index: 1000; background: #202225; color: #fff; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.funnel.open { opacity: 1; visibility: visible; }
.funnel-close { position: fixed; top: 18px; right: 24px; z-index: 3; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background .25s, transform .3s var(--ease); }
.funnel-close:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }
.funnel-scroll { min-height: 100%; display: flex; flex-direction: column; align-items: center; padding: 60px 20px 56px; }
.funnel-card, .funnel-thanks { width: 100%; max-width: 600px; text-align: center; }
.funnel-card { opacity: 0; transform: translateY(12px); animation: fIn .5s var(--ease-out) .08s forwards; }
@keyframes fIn { to { opacity: 1; transform: none; } }
.funnel-logo { width: 58px; margin: 0 auto 26px; display: block; }

.funnel-top { margin-bottom: 34px; }
.funnel-pct { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem; margin-bottom: 10px; }
.funnel-bar { width: min(420px, 80%); height: 4px; margin: 0 auto; border-radius: 4px; background: rgba(255,255,255,.14); overflow: hidden; }
.funnel-bar span { display: block; height: 100%; width: 10%; border-radius: 4px; background: linear-gradient(90deg, #54a8ff, #2f6bff); transition: width .45s var(--ease); }

.fstep-title { font-family: 'Inter', sans-serif; font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.fstep-title i, .flabel i { color: #6aa8ff; font-style: normal; }
.fstep-sub { color: rgba(255,255,255,.6); margin-bottom: 30px; font-size: 1rem; }
.fstep-title + .ffields, .fstep-sub + .ffields { margin-top: 8px; }
.ffields { display: flex; flex-direction: column; gap: 22px; text-align: left; margin-bottom: 34px; }
.flabel { display: block; font-weight: 600; color: #fff; margin-bottom: 10px; font-size: 1rem; }

.finput { width: 100%; background: #fff; color: #10131a; border: 2px solid transparent; border-radius: 12px; padding: 15px 18px; font-size: 1rem; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s; }
.finput::placeholder { color: #9aa1ac; }
.finput:focus { border-color: #2f6bff; box-shadow: 0 0 0 4px rgba(47,107,255,.18); }
.finput.err, .fchoices.err { border-color: #ff5d5d !important; box-shadow: 0 0 0 4px rgba(255,93,93,.16); }
.ftextarea { min-height: 120px; resize: vertical; }
.fselect-wrap { position: relative; }
.fselect { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 44px; }
.fselect-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 9px; height: 9px; border-right: 2px solid #555; border-bottom: 2px solid #555; transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.ftel { display: flex; gap: 10px; }
.fcode { flex: 0 0 94px; background: #fff; color: #10131a; border: 2px solid transparent; border-radius: 12px; padding: 15px 10px; font-size: 1rem; cursor: pointer; outline: none; }
.fcode:focus { border-color: #2f6bff; }
.ftel-num { flex: 1; }

.fchoices { display: flex; flex-direction: column; gap: 12px; }
.fchoice { width: 100%; text-align: left; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); color: #fff; border-radius: 12px; padding: 17px 20px; font-size: 1rem; font-family: inherit; cursor: pointer; transition: border-color .2s, background .2s; }
.fchoice:hover { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); }
.fchoice.sel { border-color: #2f6bff; background: rgba(47,107,255,.16); box-shadow: inset 0 0 0 1px #2f6bff; }

.fcheck { display: flex; align-items: flex-start; gap: 12px; text-align: left; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 16px 18px; color: rgba(255,255,255,.8); font-size: .92rem; cursor: pointer; }
.fcheck.err { border-color: #ff5d5d; }
.fcheck input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 1px; accent-color: #2f6bff; cursor: pointer; }
.fcheck a { color: #6aa8ff; text-decoration: underline; }

.fnav { display: flex; justify-content: center; gap: 14px; }
.fbtn { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; padding: 15px 30px; border-radius: 11px; border: 0; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s, background .2s; min-width: 132px; }
.fbtn-next { background: linear-gradient(135deg, #54a8ff, #2f6bff); color: #fff; box-shadow: 0 10px 28px -8px rgba(47,107,255,.6); }
.fbtn-next:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(47,107,255,.7); }
.fbtn-next:disabled { opacity: .7; cursor: default; transform: none; }
.fbtn-back { background: rgba(255,255,255,.08); color: #fff; }
.fbtn-back:hover { background: rgba(255,255,255,.14); }
.fbtn-back span { opacity: .8; margin-right: 4px; }

.funnel-thanks { animation: fIn .5s var(--ease-out) both; }
.funnel-thanks h2 { font-family: 'Inter', sans-serif; font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin: 8px 0 14px; }
.funnel-thanks > p { color: rgba(255,255,255,.65); margin-bottom: 28px; }
.funnel-video { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 40px 90px -40px rgba(0,0,0,.9); background: #000; }
.funnel-video video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

@media (max-width: 560px) {
  .funnel-scroll { padding: 54px 16px 40px; }
  .fbtn { min-width: 0; flex: 1; padding: 15px 14px; }
}
@media (prefers-reduced-motion: reduce) { .funnel-card, .funnel-thanks { animation: none; opacity: 1; transform: none; } }

/* ============================================================
   v8 — Funnel: WEISSER Hintergrund + Step-Animationen + Konfetti
   ============================================================ */
.funnel { background: #ffffff; color: var(--text); }
.funnel-close { background: rgba(14,20,34,.06); color: var(--text); }
.funnel-close:hover { background: rgba(14,20,34,.12); }
.funnel-logo { width: 50px; border-radius: 12px; }

.funnel-pct { color: var(--text); }
.funnel-bar { background: rgba(14,20,34,.1); }

.fstep-title { color: var(--text); }
.fstep-title i, .flabel i { color: var(--blue); }
.fstep-sub { color: var(--muted); }
.flabel { color: var(--text); }

.finput { background: #f4f6fb; color: var(--text); border: 2px solid var(--line); }
.finput::placeholder { color: var(--muted-2); }
.finput:focus { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,107,255,.16); }
.fcode { background: #f4f6fb; color: var(--text); border: 2px solid var(--line); }
.fcode:focus { background: #fff; border-color: var(--blue); }

.fchoice { background: #f7f8fc; border: 1px solid var(--line); color: var(--text); }
.fchoice:hover { border-color: var(--line-2); background: #eef2fb; }
.fchoice.sel { border-color: var(--blue); background: rgba(47,107,255,.08); box-shadow: inset 0 0 0 1px var(--blue); }

.fcheck { background: #f7f8fc; border: 1px solid var(--line); color: var(--muted); }
.fcheck a { color: var(--blue); }

.fbtn-back { background: rgba(14,20,34,.06); color: var(--text); }
.fbtn-back:hover { background: rgba(14,20,34,.12); }

.funnel-thanks > p { color: var(--muted); }
.funnel-video { border-color: var(--line); box-shadow: 0 40px 90px -40px rgba(14,20,34,.4); }

/* ---------- Step-Einblende-Animation (gestaffelt) ---------- */
.fstep.anim > * { animation: fStepIn .55s var(--ease-out) both; }
.fstep.anim > .fstep-sub { animation-delay: .05s; }
.fstep.anim > .ffields   { animation-delay: .1s; }
.fstep.anim > .fnav      { animation-delay: .17s; }
@keyframes fStepIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Auswahl-Buttons: minimaler Press-Effekt */
.fchoice:active { transform: scale(.99); }
.fbtn:active { transform: translateY(1px); }

/* ---------- Konfetti-Canvas ---------- */
.funnel-confetti { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; }

@media (prefers-reduced-motion: reduce) {
  .fstep.anim > * { animation: none !important; }
}

/* ---------- Hero: einzelnes Hero-Bild statt Grid ---------- */
.collage-single { display: block; }
.collage-single .collage-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- Trust-Marquee mit Logos ---------- */
.trust { padding: 30px 0; }
.marquee-logos .marquee-track { gap: 52px; align-items: center; }
.marquee-logos .marquee-track img {
  height: 54px; width: auto; flex: 0 0 auto; object-fit: contain;
  transition: transform .3s var(--ease);
}
.marquee-logos .marquee-track img:hover { transform: scale(1.09); }
@media (max-width: 760px) {
  .marquee-logos .marquee-track { gap: 36px; }
  .marquee-logos .marquee-track img { height: 44px; }
}

/* ============================================================
   v10 — Leistungen als vertikale Scroll-Timeline
   ============================================================ */
.timeline-section { overflow: hidden; }
.timeline { position: relative; max-width: 1000px; margin: 56px auto 0; }

/* Mittlerer Balken + Auflade-Füllung */
.tl-line { position: absolute; left: 50%; top: 12px; bottom: 12px; width: 4px; transform: translateX(-50%); background: var(--line-2); border-radius: 4px; overflow: hidden; }
.tl-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(180deg, var(--blue), var(--blue-soft)); border-radius: 4px; will-change: height; }

/* Reihen: 3 Spalten [Text | Knoten | Media] */
.tl-row { position: relative; display: grid; grid-template-columns: 1fr 88px 1fr; align-items: center; padding: 34px 0; }
.tl-text { grid-column: 1; text-align: right; padding-right: 46px; }
.tl-media { grid-column: 3; padding-left: 46px; display: flex; justify-content: flex-start; }
.tl-row.alt .tl-text { grid-column: 3; text-align: left; padding-right: 0; padding-left: 46px; }
.tl-row.alt .tl-media { grid-column: 1; padding-left: 0; padding-right: 46px; justify-content: flex-end; }

/* Knoten mit Nummer */
.tl-node { grid-column: 2; justify-self: center; z-index: 2; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 2px solid var(--line-2); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--muted-2); transition: background .45s var(--ease), border-color .45s, color .45s, box-shadow .45s, transform .45s var(--ease); }
.tl-row.active .tl-node { background: linear-gradient(135deg, #3d77ff, var(--blue-deep)); border-color: var(--blue); color: #fff; box-shadow: 0 12px 30px -8px var(--blue-glow); transform: scale(1.08); }

/* Text */
.tl-step { display: inline-block; font-family: 'Inter', sans-serif; font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.tl-text h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 12px; }
.tl-text p { color: var(--muted); font-size: 1.02rem; max-width: 420px; margin-left: auto; }
.tl-row.alt .tl-text p { margin-left: 0; margin-right: auto; }

/* Media-Karte */
.tl-media-inner { width: 100%; max-width: 320px; background: linear-gradient(165deg, #eef3ff, #ffffff 70%); border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: 0 24px 50px -28px rgba(14,20,34,.28); }
.tl-media-inner img { width: 100%; height: auto; display: block; }

/* Einblend-Animation pro Reihe (richtungsabhängig) */
.tl-text { opacity: 0; transform: translateX(-34px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.tl-media-inner { opacity: 0; transform: translateX(34px); transition: opacity .6s var(--ease-out) .08s, transform .6s var(--ease-out) .08s; }
.tl-row.alt .tl-text { transform: translateX(34px); }
.tl-row.alt .tl-media-inner { transform: translateX(-34px); }
.tl-row.active .tl-text, .tl-row.active .tl-media-inner { opacity: 1; transform: none; }

/* Mobile: Linie links, alles gestapelt */
@media (max-width: 760px) {
  .timeline { margin-top: 36px; }
  .tl-line { left: 27px; top: 8px; bottom: 8px; }
  .tl-row, .tl-row.alt { grid-template-columns: 56px 1fr; column-gap: 18px; padding: 18px 0; }
  .tl-node { grid-column: 1; grid-row: 1 / span 2; align-self: start; width: 54px; height: 54px; font-size: 1.25rem; }
  .tl-media, .tl-row.alt .tl-media { grid-column: 2; grid-row: 1; padding: 0 0 16px; justify-content: flex-start; }
  .tl-text, .tl-row.alt .tl-text { grid-column: 2; grid-row: 2; text-align: left; padding: 0; }
  .tl-text p, .tl-row.alt .tl-text p { margin: 0; }
  .tl-media-inner { max-width: 240px; padding: 18px; transform: translateY(20px); }
  .tl-text { transform: translateY(20px); }
  .tl-row.alt .tl-text, .tl-row.alt .tl-media-inner { transform: translateY(20px); }
}
@media (prefers-reduced-motion: reduce) {
  .tl-text, .tl-media-inner { opacity: 1 !important; transform: none !important; }
}

/* ---------- Leistungen: 4 Rechtecke ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 56px; }
.svc-card { display: flex; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.svc-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: 0 18px 40px -22px rgba(14,20,34,.25); }
.svc-media { position: relative; background: linear-gradient(165deg, #eef3ff, #ffffff 70%); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 18px; aspect-ratio: 4 / 3; }
.svc-media img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; max-width: calc(100% - 44px); max-height: calc(100% - 44px); object-fit: contain; display: block; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 10px; min-height: 2.6em; }
.svc-card p { color: var(--muted); font-size: .92rem; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Prozess: Timeline (flach, ohne Rahmen/Boxen) ---------- */
.timeline-process .tl-text { background: none; border: 0; box-shadow: none; }
.timeline-process .tl-text h3 { margin-bottom: 8px; }
/* Bild frei schwebend, ohne Rahmen/Hintergrund */
.timeline-process .tl-media-inner { background: none; border: 0; box-shadow: none; padding: 0; max-width: 300px; }

/* ============================================================
   v11 — Testimonial-Slides: Problem / Lösung / Häkchen
   ============================================================ */
.t-block { margin-bottom: 16px; }
.t-label { display: inline-block; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; padding: 3px 12px; border-radius: 8px; margin-bottom: 9px; }
.t-label.problem { background: #11151f; color: #6aa8ff; }
.t-label.loesung { background: linear-gradient(120deg, #3d77ff, var(--blue-deep)); color: #fff; }
.t-block p { color: var(--muted); font-size: .98rem; line-height: 1.55; }

.t-checks { list-style: none; margin: 10px 0 0; padding: 0; }
.t-checks li { display: flex; align-items: center; gap: 13px; padding: 14px 2px; border-top: 1px solid rgba(47,107,255,.28); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; color: var(--text); }
.t-checks li:last-child { border-bottom: 1px solid rgba(47,107,255,.28); }
.t-check-ico { width: 26px; height: 26px; flex: 0 0 26px; color: var(--blue); }

@media (max-width: 860px) {
  .t-checks li { font-size: .94rem; }
}

/* ---------- Testimonial-Logos statt Buchstaben ---------- */
.t-logo { width: 54px; height: 54px; background: #fff; border: 1px solid var(--line); border-radius: 50%; overflow: hidden; padding: 0; box-shadow: 0 4px 12px -6px rgba(14,20,34,.22); }
.t-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   v12 — Rechtsseiten (Impressum / Datenschutz)
   ============================================================ */
.legal-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 24px; background: rgba(255,255,255,.86); backdrop-filter: blur(14px) saturate(160%); border-bottom: 1px solid var(--line); }
.legal-nav .brand { color: var(--text); }
.legal-nav .brand-dot { color: var(--blue); }
.legal-back { font-size: .92rem; color: var(--muted); font-weight: 600; font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 6px; transition: color .25s; }
.legal-back:hover { color: var(--blue); }
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 90px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px; }
.legal .legal-intro { color: var(--muted); margin-bottom: 8px; }
.legal h2 { font-size: 1.4rem; margin: 44px 0 14px; padding-top: 26px; border-top: 1px solid var(--line); }
.legal h3 { font-size: 1.12rem; margin: 26px 0 8px; }
.legal h4 { font-family: 'Inter', sans-serif; font-size: .98rem; margin: 18px 0 6px; color: var(--text); }
.legal p { color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.legal strong { color: var(--text); }
.legal a { color: var(--blue); text-decoration: underline; word-break: break-word; }
.legal address { font-style: normal; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.legal ul { color: var(--muted); margin: 0 0 16px 22px; line-height: 1.7; }
.legal ul li { margin-bottom: 4px; }
.legal-foot { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; padding: 30px 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .9rem; }
.legal-foot a { color: var(--muted); }
.legal-foot a:hover { color: var(--blue); }

/* ============================================================
   v13 — Testimonials als gestapelte Sticky-Cards
   ============================================================ */
.testimonials { overflow: visible; }            /* sonst funktioniert sticky nicht */
.t-stack { position: relative; }
.t-stack .t-slide {
  position: sticky;
  transform-origin: center top;
  margin-bottom: 26px;
  background: var(--surface);
  box-shadow: 0 18px 44px -26px rgba(14,20,34,.4), 0 1px 0 rgba(14,20,34,.04);
  will-change: transform;
}
.t-stack .t-slide:nth-child(1) { top: 100px; }
.t-stack .t-slide:nth-child(2) { top: 116px; }
.t-stack .t-slide:nth-child(3) { top: 132px; }
.t-stack .t-slide:nth-child(4) { top: 148px; }
.t-stack .t-slide:nth-child(5) { top: 164px; }
.t-stack .t-slide:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .t-stack .t-slide:nth-child(1) { top: 80px; }
  .t-stack .t-slide:nth-child(2) { top: 92px; }
  .t-stack .t-slide:nth-child(3) { top: 104px; }
  .t-stack .t-slide:nth-child(4) { top: 116px; }
  .t-stack .t-slide:nth-child(5) { top: 128px; }
}
@media (prefers-reduced-motion: reduce) {
  .t-stack .t-slide { position: relative; top: auto !important; transform: none !important; }
}
