/* ═══════════════════════════════════════════════════════════════════════════════
   reelity Ankaufleads — Redesign 2026
   Direction: Editorial Agentur, warm-cream base, Royal Blue accent, dark CTA
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:         #F5F6F7;   /* near-white base */
  --bg-w:       #FFFFFF;   /* pure white — cards, alternating sections */
  --bg-dark:    #080808;   /* reelity brand black — statement section */

  /* Typography */
  --ink:        #080808;   /* primary / headlines */
  --text:       #2C3A4A;   /* body text */
  --muted:      #64748B;   /* secondary text */
  --dim:        #94A3B8;   /* captions / tertiary */

  /* Accent palette — reelity neon green */
  --green:      #C8F135;   /* neon fill — buttons, backgrounds, dark-section accents */
  --green-text: #C8F135;   /* neon — on light bg always pair with dark pill or glow */
  --green-dk:   #AECF1A;
  --green-lt:   #F4FDD0;
  --green-dim:  rgba(200, 241, 53, 0.06);  /* subtle neon tint for fills */
  --green-bd:   rgba(200, 241, 53, 0.22);  /* neon border */
  --orange:     #E8450A;   /* secondary accent — use very sparingly */
  --gold:       #E8A000;   /* star ratings */

  /* Borders */
  --border:     rgba(8, 8, 8, 0.09);
  --border-lt:  rgba(8, 8, 8, 0.05);

  /* Legacy aliases — some HTML inline styles reference these */
  --black:         var(--bg);
  --black-2:       #EBEBEB;
  --black-3:       #E2E2E2;
  --black-4:       #D5D5D5;
  --white:         var(--ink);
  --accent:        var(--green);
  --accent-dim:    var(--green-dim);
  --accent-border: var(--green-bd);
  --gray-light:    var(--muted);
  --gray-mid:      var(--dim);
  --gray:          #A0A8B4;

  /* Fonts */
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-serif:   'Instrument Serif', serif;

  /* Motion */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
p, li, h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
button { cursor: none; }
strong { color: var(--ink); font-weight: 700; }

/* ─── Accessibility ──────────────────────────────────────────────────────────── */
.skip-to-main {
  position: absolute; top: -100%; left: 16px;
  padding: 10px 20px; background: var(--green); color: #080808;
  font-weight: 700; font-size: 14px; border-radius: 0 0 8px 8px;
  z-index: 10000; transition: top 0.2s;
}
.skip-to-main:focus { top: 0; }

/* ─── Film Grain ─────────────────────────────────────────────────────────────── */
.grain-layer {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9990; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.4s steps(2) infinite;
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  25%  { background-position: -6px -4px; }
  50%  { background-position: 4px 6px; }
  75%  { background-position: -2px 4px; }
  100% { background-position: 0 0; }
}

/* ─── Custom Cursor ──────────────────────────────────────────────────────────── */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease);
}
.cursor.hovered { width: 12px; height: 12px; }
.cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1.5px solid rgba(200, 241, 53, 0.35); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
}
.cursor-ring.hovered { width: 54px; height: 54px; opacity: 0.45; }

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section   { padding: 120px 0; }

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section   { padding: 80px 0; }
  .section-sub { margin-bottom: 44px; }
}

/* ─── Typography ─────────────────────────────────────────────────────────────── */
.section-label {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.015em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 20px;
}
.section-title .serif-accent {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: #C8F135;
  text-shadow: 2px 3px 0px rgba(0,0,0,0.28), 2px 4px 10px rgba(0,0,0,0.14);
  text-transform: none; font-size: 0.95em; letter-spacing: 0;
}
.section-title .serif-muted {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--muted);
  text-transform: none; font-size: 0.88em;
}
.serif-accent {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: #C8F135;
  -webkit-text-stroke: 1.3px #C8F135;
  text-shadow: 2px 3px 0px rgba(0,0,0,0.28), 2px 4px 10px rgba(0,0,0,0.14);
  text-transform: none;
}
.section-sub {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 560px; margin-bottom: 64px; font-weight: 400;
}
.accent {
  color: #C8F135;
  text-shadow: 2px 3px 0px rgba(0,0,0,0.28), 2px 4px 10px rgba(0,0,0,0.14);
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px; border: none;
  cursor: none; white-space: nowrap;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-accent { background: var(--green); color: #080808; }
.btn-accent:hover {
  background: var(--green-dk); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 241, 53, 0.35);
}
.btn-accent:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--green); color: var(--ink); }
.btn-lg  { padding: 17px 38px; font-size: 16px; border-radius: 10px; }
.btn-xl  { padding: 20px 52px; font-size: 18px; border-radius: 10px; }

/* ─── Badge / Tag / Stat helpers ────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 7px 16px; font-size: 13px; color: var(--muted);
  background: var(--bg-w); margin-bottom: 28px; font-weight: 500;
}
.tag-mini {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; display: block; margin-bottom: 6px;
}
.tag-mini.accent-color { color: #C8F135; text-shadow: 2px 3px 0px rgba(0,0,0,0.28), 2px 4px 10px rgba(0,0,0,0.14); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 900; line-height: 1; color: var(--ink);
}
.stat-num .accent { color: #C8F135; text-shadow: 2px 3px 0px rgba(0,0,0,0.28), 2px 4px 10px rgba(0,0,0,0.14); }
.stat-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 8px; display: block;
}
hr.divider { border: none; border-top: 1px solid var(--border); }

/* ─── Card system ────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-w);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  box-shadow: 0 2px 6px rgba(11,18,32,0.05), 0 10px 28px rgba(11,18,32,0.06);
}
/* glass-card is now a clean white card (glassmorphism removed) */
.glass-card {
  background: var(--bg-w);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  box-shadow: 0 2px 6px rgba(11,18,32,0.05), 0 10px 28px rgba(11,18,32,0.06);
  position: relative; overflow: hidden;
  transition:
    transform 0.42s cubic-bezier(0.22,1,0.36,1),
    border-color 0.3s ease,
    box-shadow 0.42s cubic-bezier(0.22,1,0.36,1);
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-bd);
  box-shadow: 0 4px 12px rgba(11,18,32,0.06), 0 20px 48px rgba(200,241,53,0.10);
}
.glass-card.reveal {
  opacity: 0;
  transform: translateY(48px) rotate(var(--tilt, 0deg));
  transition:
    opacity 0.88s cubic-bezier(0.22,1,0.36,1),
    transform 0.88s cubic-bezier(0.22,1,0.36,1),
    border-color 0.3s ease, box-shadow 0.42s ease;
  transition-delay: var(--delay, 0s);
}
.glass-card.reveal.visible {
  opacity: 1; transform: translateY(0) rotate(var(--tilt, 0deg));
}
.glass-card.reveal.visible:hover {
  transform: translateY(-6px) rotate(0deg);
  border-color: var(--green-bd);
  box-shadow: 0 4px 12px rgba(11,18,32,0.06), 0 20px 48px rgba(200,241,53,0.10);
}

/* dark-card = elevated white card (stand out from cream bg) */
.dark-card {
  background: var(--bg-w);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(11,18,32,0.07), 0 24px 64px rgba(11,18,32,0.07);
}

/* ─── Nav ────────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--trans), padding var(--trans), border-color var(--trans), box-shadow var(--trans);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(248, 249, 250, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0; border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(11,18,32,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 900; letter-spacing: 0.02em; color: var(--ink);
}
.nav-logo span { color: #C8F135; text-shadow: 0 0 1px rgba(8,8,8,0.45), 0 1px 1px rgba(8,8,8,0.12); }
.nav-logo sup { font-size: 0.42em; font-weight: 700; color: var(--ink); vertical-align: super; margin-left: 1px; }
.nav-links { display: flex; gap: 32px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 10px 22px; font-size: 14px; }

/* ─── Hamburger ──────────────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; padding: 4px; z-index: 1001;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ────────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(243,244,246,0.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 36px;
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--ink); transition: color 0.2s;
}
.mobile-menu a:hover { color: #C8F135; text-shadow: 0 0 28px rgba(200,241,53,0.95); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-inner { padding: 0 20px; }
}

/* ─── WhatsApp Float ─────────────────────────────────────────────────────────── */
.float-wa-btn {
  position: fixed; right: 32px; bottom: 32px; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.float-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   01 HERO
   ═══════════════════════════════════════════════════════════════════════════════ */
#hero {
  padding: 152px 0 100px; text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(200,241,53,0.08) 0%, transparent 60%),
    var(--bg);
}
/* Large decorative background text */
#hero::before {
  content: '20+';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(200px, 30vw, 420px);
  color: rgba(11,18,32,0.03);
  pointer-events: none; user-select: none;
  letter-spacing: -0.04em; white-space: nowrap;
  line-height: 1;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 900; line-height: 1.0;
  text-transform: uppercase; letter-spacing: -0.02em;
  max-width: 1100px; margin: 0 auto 32px;
  color: var(--ink); position: relative; z-index: 1;
}
.hero-headline .serif-accent {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--green-text);
  text-transform: none; font-size: 0.9em; letter-spacing: 0;
}
.hero-headline .serif-muted {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--muted);
  text-transform: none; font-size: 0.82em;
}
.hero-sub {
  max-width: 620px; margin: 0 auto 48px;
  font-size: 18px; color: var(--muted); line-height: 1.7;
  position: relative; z-index: 1;
}
.hero-cta-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; margin-bottom: 56px;
  position: relative; z-index: 1;
}
.hero-note { font-size: 13px; color: var(--dim); }
.trust-bar {
  display: inline-flex; align-items: center; gap: 20px;
  background: var(--bg-w);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 24px; position: relative; z-index: 1;
  box-shadow: 0 2px 12px rgba(11,18,32,0.06);
  margin-left: auto; margin-right: auto;
}
.trust-logos { display: flex; align-items: center; gap: 14px; }
.trust-logo-img {
  height: 26px; width: auto; max-width: 64px;
  object-fit: contain; flex-shrink: 0;
}
.trust-text { text-align: left; }
.trust-label { font-size: 14px; font-weight: 500; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════════════════════
   02 LOGOS
   ═══════════════════════════════════════════════════════════════════════════════ */
#logos {
  padding: 48px 0;
  background: var(--bg-w);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-intro {
  text-align: center; margin-bottom: 28px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dim); font-weight: 700;
}
.marquee-outer { overflow: hidden; }
.marquee-track {
  display: flex; gap: 64px;
  animation: marqueeScroll 40s linear infinite; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  flex-shrink: 0; display: flex; align-items: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: rgba(11,18,32,0.25); letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap; transition: color 0.2s;
}
.marquee-item:hover { color: rgba(11,18,32,0.55); }
.marquee-dot {
  display: inline-block; width: 4px; height: 4px;
  background: rgba(11,18,32,0.15); border-radius: 50%;
  margin: 0 32px; flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   03 PROBLEM — Editorial numbered list
   ═══════════════════════════════════════════════════════════════════════════════ */
#problem {
  padding: 120px 0;
  background: var(--bg);
}
/* Legacy grid kept for fallback, new layout uses .problem-list */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px;
}
.problem-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.problem-card h3 {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 12px; color: var(--ink);
}
.problem-card p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* NEW Editorial problem list */
.problem-list {
  margin-top: 64px; display: flex; flex-direction: column;
}
.problem-row {
  display: grid; grid-template-columns: 80px 1fr 48px;
  gap: 32px; align-items: start;
  padding: 36px 0; border-top: 1px solid var(--border);
}
.problem-row:last-child { border-bottom: 1px solid var(--border); }
.problem-row-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 900;
  color: rgba(11,18,32,0.12); letter-spacing: -0.03em; line-height: 1;
  padding-top: 4px;
}
.problem-row-body h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--ink); margin-bottom: 10px; line-height: 1.15;
}
.problem-row-body p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.problem-row-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #080808;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   04 LÖSUNG
   ═══════════════════════════════════════════════════════════════════════════════ */
#loesung {
  padding: 120px 0;
  background: var(--bg-w);
}
#loesung .section-label,
#loesung .section-title { text-align: center; }
#loesung .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.loesung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mockup-frame {
  background: var(--bg-w); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(11,18,32,0.07), 0 16px 48px rgba(11,18,32,0.06);
}
.mockup-header {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  background: var(--bg);
}
.mockup-body { padding: 20px; background: var(--bg); }
.mockup-ad-card {
  background: var(--bg-w); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px;
  box-shadow: 0 2px 8px rgba(11,18,32,0.05);
}
.mockup-ad-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.mockup-ad-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mockup-ad-title { font-weight: 800; font-size: 16px; line-height: 1.4; margin-bottom: 10px; color: var(--ink); }
.mockup-ad-text { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.mockup-cta-pill {
  display: inline-flex; background: var(--green); color: #080808;
  font-weight: 700; font-size: 13px; padding: 9px 18px; border-radius: 7px;
}
.mockup-meta {
  margin-top: 12px; display: flex;
  justify-content: space-between; font-size: 12px; color: var(--dim);
}
.mockup-anfrage {
  display: flex; align-items: center; gap: 13px;
  background: var(--bg-w); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 15px;
  box-shadow: 0 1px 4px rgba(11,18,32,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mockup-anfrage:hover {
  transform: translateY(-2px); border-color: var(--green-bd);
  box-shadow: 0 6px 18px rgba(11,18,32,0.08);
}
.mockup-anfrage-avatar {
  width: 42px; height: 42px; border-radius: 12px; background: #080808;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.mockup-anfrage-info { min-width: 0; }
.anfrage-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #C8F135; margin-right: 6px; vertical-align: 1px;
}
/* Live-Indikator im Panel-Header (rechts) */
.mockup-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.mockup-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #C8F135;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,241,53,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(200,241,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,241,53,0); }
}
/* Live-Feed Füll-Element — füllt die Resthöhe sinnvoll (Echtzeit-Feel) */
.mockup-feed-live {
  flex: 1 1 auto; min-height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
}
.feed-dots { display: inline-flex; gap: 5px; }
.feed-dots i {
  width: 7px; height: 7px; border-radius: 50%; background: #C8F135; opacity: .35;
  animation: feedBlink 1.4s infinite;
}
.feed-dots i:nth-child(2) { animation-delay: .2s; }
.feed-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes feedBlink {
  0%, 60%, 100% { opacity: .25; transform: translateY(0); }
  30%           { opacity: 1;  transform: translateY(-2px); }
}
.feed-live-text { font-size: 12px; color: var(--dim); letter-spacing: 0.02em; }
.mockup-anfrage:last-child { margin-bottom: 0; }
.mockup-anfrage-time { font-size: 11px; color: var(--dim); margin-bottom: 5px; }
.mockup-anfrage-title { font-weight: 700; font-size: 14px; margin-bottom: 3px; color: var(--ink); }
.mockup-anfrage-meta { font-size: 12px; color: var(--muted); }
.mockup-anfrage-cta {
  background: #080808;
  border-radius: 12px; padding: 14px;
  text-align: center; font-size: 13px; font-weight: 700; color: #C8F135;
}
/* ── Lösung: linke Karte als echte IG/FB Video-Ad ─────────────────────── */
.mockup-ad-acct { display: flex; flex-direction: column; line-height: 1.25; }
.mockup-ad-name { font-weight: 700; font-size: 13px; color: var(--ink); }
.mockup-ad-spon { font-size: 11px; color: var(--dim); }
.mockup-ad-more { margin-left: auto; display: flex; align-items: center; }
.mockup-ad-media {
  position: relative; margin: 0 -18px 12px;
  aspect-ratio: 1 / 1; overflow: hidden; background: #0d0d0d;
}
.mockup-ad-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Simple Grafik-Creative statt Foto */
.mockup-ad-media--graphic {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(82% 72% at 50% 40%, rgba(200,241,53,0.16), rgba(200,241,53,0) 62%),
    linear-gradient(160deg, #16180f 0%, #0c0d08 58%, #0a0a0a 100%);
}
.mockup-ad-carart {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -52%);
  width: 58%; height: auto; opacity: 0.16;
}
.mockup-ad-dur {
  position: absolute; top: 10px; right: 10px;
  background: rgba(8,8,8,0.62); color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.mockup-ad-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; padding-left: 3px;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.38);
}
.mockup-ad-views {
  position: absolute; left: 10px; bottom: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(8,8,8,0.55); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.mockup-ad-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.mockup-ad-actions .mockup-ad-bookmark { margin-left: auto; }
.mockup-ad-likes { font-size: 13px; color: var(--ink); margin-bottom: 5px; }
.mockup-ad-likes strong { font-weight: 800; }
.mockup-ad-caption { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.mockup-ad-caption strong { color: var(--ink); font-weight: 700; margin-right: 4px; }
.mockup-cta-full { display: flex; width: 100%; justify-content: center; }

/* ── Orphan-Schutz: kein einzelnes Wort allein in der letzten Zeile ────── */
.hero-headline, .section-title, .badge { text-wrap: balance; }
.hero-sub, .section-sub, .prozess-step p, .feature-body p,
.problem-row-body p, .mockup-ad-caption { text-wrap: pretty; }

/* Mockup box shadow upgrade in lösung */
#loesung .mockup-frame {
  box-shadow:
    0 6px 18px rgba(11,18,32,0.10),
    0 20px 48px rgba(11,18,32,0.16),
    0 44px 96px rgba(11,18,32,0.14);
}
/* rechte Box (Anfragen-Feed): CTA-Leiste an den unteren Rand pinnen → füllt Resthöhe */
#loesung .loesung-grid > .mockup-frame:last-child { display: flex; flex-direction: column; }
#loesung .loesung-grid > .mockup-frame:last-child .mockup-body { flex: 1 1 auto; }
#loesung .loesung-grid > .mockup-frame:last-child .mockup-anfrage-cta { margin-top: auto; }

/* ═══════════════════════════════════════════════════════════════════════════════
   05 FALLSTUDIE
   ═══════════════════════════════════════════════════════════════════════════════ */
#fallstudie { padding: 120px 0; background: var(--bg); }
.fallstudie-card {
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.fallstudie-left {
  padding: 48px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
}
.fallstudie-placeholder {
  border-radius: 14px; background: var(--black-2); border: 1px solid var(--border);
  height: 200px; display: flex; align-items: center; justify-content: center;
}
.play-btn {
  width: 60px; height: 60px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.fallstudie-right { padding: 48px; }
.fallstudie-right h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.01em;
  line-height: 1.15; margin-bottom: 28px; color: var(--ink);
}
.fallstudie-block { padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 0 !important; }
.fallstudie-block:last-of-type { border-bottom: none; }
.fallstudie-block p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.fallstudie-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.f-stat {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: 14px; padding: 20px;
  text-align: left;
}
.fallstudie-tag {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 10px;
}
.fallstudie-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
  border: 1.5px solid rgba(11,18,32,0.20);
  border-radius: 999px; padding: 6px 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   06 VORTEILE — Feature Rows
   ═══════════════════════════════════════════════════════════════════════════════ */
#vorteile {
  padding: 120px 0;
  background: var(--bg-w);
}
/* Legacy grid (fallback) */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.benefit-icon-wrap {
  height: 90px; border-radius: 14px 14px 0 0;
  background: linear-gradient(135deg, rgba(200,241,53,0.07) 0%, rgba(255,255,255,0.0) 100%);
  border-bottom: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  margin: -36px -36px 24px;
}
.benefit-num { font-size: 11px; letter-spacing: 0.22em; margin-bottom: 8px; color: var(--ink); font-weight: 800; }
.benefit-card h3 {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; color: var(--ink);
}
.benefit-card p { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* NEW Feature Rows */
.feature-list { margin-top: 64px; }
.feature-row {
  display: grid; grid-template-columns: 160px 72px 1fr;
  gap: 40px; align-items: center;
  padding: 36px 0; border-top: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: 1px solid var(--border); }
.feature-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feature-icon-wrap {
  width: 60px; height: 60px; border-radius: 14px;
  background: #080808;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-body h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--ink); margin-bottom: 10px;
}
.feature-body p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════════════════════
   05 SO LÄUFT'S AB / PROZESS  (dark band — signature mechanism)
   ═══════════════════════════════════════════════════════════════════════════════ */
#prozess {
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
#prozess::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 52% at 50% 40%, rgba(200,241,53,0.07), rgba(200,241,53,0) 70%);
}
#prozess .container { position: relative; z-index: 1; }
#prozess .section-label { color: var(--green-text); }
#prozess .section-title { color: #fff; }
#prozess .section-title .serif-accent {
  color: #C8F135; -webkit-text-stroke: 0;
  text-shadow: 0 0 26px rgba(200,241,53,0.45);
}
#prozess .section-sub { color: rgba(255,255,255,0.6); }

.prozess-track {
  margin-top: 76px; position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
/* connecting line through the icon nodes */
.prozess-track::before {
  content: ""; position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 2px; z-index: 0;
  background: linear-gradient(90deg,
    rgba(200,241,53,0.05), rgba(200,241,53,0.34) 22%,
    rgba(200,241,53,0.34) 78%, rgba(200,241,53,0.05));
}
.prozess-step { position: relative; z-index: 1; text-align: center; padding: 0 4px; }
.prozess-icon {
  width: 66px; height: 66px; margin: 0 auto 22px;
  border-radius: 50%; background: #101010;
  border: 1px solid rgba(200,241,53,0.30);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    inset 0 0 18px rgba(200,241,53,0.08),
    0 0 0 7px var(--bg-dark),
    0 10px 24px rgba(0,0,0,0.5);
}
.prozess-num {
  display: block; font-family: var(--font-display);
  font-size: 13px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--green-text); margin-bottom: 10px;
}
.prozess-step h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.16;
  color: #fff; margin-bottom: 10px;
}
.prozess-step p {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6);
  max-width: 232px; margin: 0 auto;
}
.prozess-cta {
  margin-top: 64px; display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
.prozess-cta-note { font-size: 13px; color: rgba(255,255,255,0.45); }

@media (max-width: 1024px) {
  .prozess-track { grid-template-columns: 1fr 1fr; gap: 52px 24px; }
  .prozess-track::before { display: none; }
}
@media (max-width: 560px) {
  .prozess-track { grid-template-columns: 1fr; gap: 0; margin-top: 44px; }
  .prozess-step {
    text-align: left; padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,0.09);
  }
  .prozess-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.09); }
  .prozess-icon {
    width: 50px; height: 50px; margin: 0 0 14px;
    box-shadow: inset 0 0 14px rgba(200,241,53,0.08), 0 6px 16px rgba(0,0,0,0.5);
  }
  .prozess-step p { max-width: none; margin: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   07 GARANTIE
   ═══════════════════════════════════════════════════════════════════════════════ */
#garantie { padding: 120px 0; background: var(--bg); }
.garantie-card {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden;
}
.garantie-left { padding: 56px; border-right: 1px solid var(--border); min-width: 0; }
.garantie-left h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 900; text-transform: uppercase; margin-bottom: 24px; color: var(--ink);
  line-height: 1.05;
}
.garantie-left h2 .serif-accent {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--green-text); text-transform: none;
}
.garantie-left p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.garantie-right { padding: 56px; display: flex; justify-content: center; align-items: center; min-width: 0; }
.check-list { list-style: none; padding: 0; margin: 20px 0 36px; }
.check-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; line-height: 1.65; color: var(--text);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.check-item:last-child { border-bottom: none; padding-bottom: 0; }
.check-icon { color: #C8F135; flex-shrink: 0; margin-top: 2px; font-size: 15px; font-weight: 700; text-shadow: 2px 3px 0px rgba(0,0,0,0.28), 2px 4px 10px rgba(0,0,0,0.14); }
.angebot-mockup { position: relative; width: 260px; height: 320px; }
.angebot-shadow {
  position: absolute; top: 28px; left: 28px;
  width: 220px; height: 280px;
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 14px; transform: rotate(5deg);
}
.angebot-card {
  position: absolute; top: 0; left: 0;
  width: 220px; height: 280px; background: var(--bg-w);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 4px 20px rgba(11,18,32,0.10);
}
.angebot-line { height: 8px; background: var(--black-2); border-radius: 4px; }
.angebot-highlight {
  margin-top: 14px; padding: 12px;
  background: #080808;
  border-radius: 8px; font-size: 12px; font-weight: 700;
  color: #C8F135; line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   08 REFERENZEN
   ═══════════════════════════════════════════════════════════════════════════════ */
#referenzen { padding: 120px 0; background: var(--bg-w); }
.referenzen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.ref-name { font-weight: 800; font-size: 17px; margin-bottom: 4px; color: var(--ink); }
.ref-ort { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.ref-stat-box {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.ref-stat-box .stat-num {
  font-size: clamp(36px, 4vw, 54px); margin-top: 8px; display: block;
}
.ref-quote {
  font-size: 13px; color: var(--muted); font-style: italic; line-height: 1.6;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: 20px;
}
.trust-banner {
  margin-top: 40px; padding: 28px 36px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 24px;
}
.trust-banner-left { display: flex; align-items: center; gap: 20px; }
.trust-banner-stars { font-size: 14px; color: var(--gold); margin-bottom: 4px; }
.trust-banner-right { font-size: 14px; color: var(--muted); }

/* ─── Referenzen: Auto-Case Bild-Cards + Bridge-Card (21.06.2026) ───────────── */
.case-ref-card { padding: 0; display: flex; flex-direction: column; }
.case-ref-img {
  height: 200px; background-size: cover; background-position: center;
  border-bottom: 1px solid var(--border);
}
.case-ref-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.case-ref-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 14px;
}
.case-ref-metric {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: 17px; letter-spacing: 0.01em; color: var(--ink);
  display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px;
}
.case-ref-metric .num {
  font-size: 46px; line-height: 1; color: #C8F135;
  text-shadow: 2px 3px 0px rgba(0,0,0,0.28), 2px 4px 10px rgba(0,0,0,0.14);
}
.case-ref-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.case-ref-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.case-ref-pills span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.03em; color: var(--ink);
  background: var(--green-dim); border: 1px solid var(--green-bd);
  border-radius: 999px; padding: 5px 11px;
}

.bridge-card {
  background: #080808; border-radius: 20px; padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 4px 16px rgba(11,18,32,0.10), 0 24px 64px rgba(11,18,32,0.12);
  position: relative; overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1), box-shadow 0.42s cubic-bezier(0.22,1,0.36,1);
}
.bridge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20), 0 28px 72px rgba(200,241,53,0.18);
}
.bridge-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #C8F135; margin-bottom: 16px;
}
.bridge-headline {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: 34px; line-height: 1.02; letter-spacing: -0.01em; color: #fff; margin-bottom: 16px;
}
.bridge-desc { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 26px; }
.bridge-cta {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: #C8F135; color: #080808; font-weight: 800; font-size: 14px;
  letter-spacing: 0.01em; padding: 13px 22px; border-radius: 999px;
  text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bridge-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,241,53,0.34); }

/* ═══════════════════════════════════════════════════════════════════════════════
   09 ÜBER UNS
   ═══════════════════════════════════════════════════════════════════════════════ */
#ueber-uns { padding: 120px 0; background: var(--bg); }
.ueber-uns-card {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden;
}
.ueber-uns-visual {
  height: 100%; min-height: 340px;
  background: linear-gradient(135deg, var(--black-2), var(--black-3));
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
}
.ueber-visual-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 40px; padding: 48px 40px;
  width: 100%; height: 100%;
}
.ueber-visual-stat { text-align: center; }
.ueber-visual-stat .num {
  font-family: var(--font-display); font-weight: 900; font-size: 52px;
  line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.ueber-visual-stat .lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 6px; display: block;
}
.ueber-visual-divider { width: 1px; height: 48px; background: var(--border); }
.ueber-uns-visual.ueber-photo {
  background-size: cover; background-position: center 26%;
  min-height: 460px; padding: 0;
}
.ueber-uns-right { padding: 56px; }
.ueber-uns-right h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 900; text-transform: uppercase; margin-bottom: 20px; color: var(--ink);
}
.ueber-uns-right h2 .serif-accent {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--green-text); text-transform: none;
}
.ueber-uns-right p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.ueber-uns-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.u-stat {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 20px; text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10 FAQ
   ═══════════════════════════════════════════════════════════════════════════════ */
#faq { padding: 120px 0; background: var(--bg-w); }
.faq-list { max-width: 820px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; background: none; border: none;
  color: var(--ink); font-family: var(--font-body);
  font-size: 17px; font-weight: 600;
  cursor: none; text-align: left; gap: 24px; transition: color 0.2s;
}
.faq-q:hover { color: #C8F135; text-shadow: 0 0 20px rgba(200,241,53,0.7); }
.faq-icon {
  font-size: 22px; font-weight: 300; color: #C8F135;
  text-shadow: 0 0 16px rgba(200,241,53,0.85);
  flex-shrink: 0; transition: transform 0.35s var(--ease); line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 26px; }
#faq .section-sub-center {
  text-align: center; margin: 0 auto;
  font-size: 17px; color: var(--muted); line-height: 1.65;
  max-width: 540px; margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11 FINAL CTA — Dark Statement Section
   ═══════════════════════════════════════════════════════════════════════════════ */
#cta {
  padding: 140px 0; position: relative; overflow: hidden;
  background: var(--bg-dark);
}
/* Decorative bg text */
.cta-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(80px, 18vw, 260px);
  font-weight: 900; color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: 0.04em;
}
.cta-inner { position: relative; z-index: 1; }
/* Remove old card-style cta-card on dark section */
#cta .cta-card {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  background: transparent;
  border: none; box-shadow: none;
  border-radius: 0;
  gap: 80px;
}
.cta-left { padding: 0; }
#cta .cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.06; margin-bottom: 28px; color: #ffffff;
}
#cta .cta-left h2 .serif-accent {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.55); background: transparent; text-transform: none; font-size: 0.92em;
}
#cta .cta-left h2 .serif-muted {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.40); text-transform: none; font-size: 0.82em;
}
.cta-bullets { margin-bottom: 36px; list-style: none; }
.cta-bullets li {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.65);
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 12px;
}
.cta-bullets li:last-child { border-bottom: none; }
.cta-bullets li::before { content: '→'; color: var(--green); font-weight: 700; flex-shrink: 0; }
/* Trust strip in dark section */
.cta-trust-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px 28px;
  padding-top: 28px; margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.cta-strip-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.50);
}
.cta-strip-dot { color: var(--green); font-size: 14px; }
/* Right side in dark section */
.cta-right {
  height: 100%; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.cta-right-text {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(24px, 3.5vw, 52px);
  color: rgba(255,255,255,0.08); text-align: center;
  text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1.2;
}
.cta-trust { display: flex; align-items: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cta-trust-stars { font-size: 14px; color: var(--gold); }
.cta-trust-text { font-size: 14px; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px; background: var(--bg);
}
.footer-top {
  display: flex; flex-wrap: wrap;
  align-items: flex-start; justify-content: space-between;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; letter-spacing: 0.02em; color: var(--ink);
}
.footer-logo span { color: #C8F135; text-shadow: 0 0 1px rgba(8,8,8,0.45), 0 1px 1px rgba(8,8,8,0.12); }
.footer-logo sup { font-size: 0.42em; font-weight: 700; color: var(--ink); vertical-align: super; margin-left: 2px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col-title {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); font-weight: 700; margin-bottom: 16px; display: block;
}
.footer-col a, .footer-col p {
  display: block; font-size: 15px;
  color: var(--muted); line-height: 2.2; transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--muted); }

/* ─── Cookie Banner ──────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(140px);
  z-index: 8000; width: min(560px, calc(100vw - 48px));
  background: rgba(243,244,246,0.97); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
  box-shadow: 0 8px 32px rgba(11,18,32,0.12);
}
.cookie-banner.visible {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.cookie-text { flex: 1; font-size: 13px; color: var(--muted); line-height: 1.6; }
.cookie-text strong { color: var(--ink); font-weight: 600; }
.cookie-text a { color: #C8F135; text-decoration: underline; text-shadow: 0 0 14px rgba(200,241,53,0.7); }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--green); color: #080808; font-weight: 700; font-size: 13px;
  border: none; border-radius: 8px; padding: 10px 18px;
  cursor: none; white-space: nowrap; transition: background 0.2s;
}
.cookie-accept:hover { background: var(--green-dk); }
.cookie-decline {
  background: none; border: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
  border-radius: 8px; padding: 10px 18px; cursor: none;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: var(--border); color: var(--ink); }

/* ─── Reveal Utility ─────────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .problem-row { grid-template-columns: 60px 1fr 44px; gap: 24px; }
  .feature-row { grid-template-columns: 120px 60px 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .loesung-grid, .fallstudie-card, .garantie-card,
  .ueber-uns-card { grid-template-columns: 1fr; }
  .fallstudie-left { border-right: none; border-bottom: 1px solid var(--border); }
  .garantie-left   { border-right: none; border-bottom: 1px solid var(--border); }
  .garantie-right  { padding: 40px; }
  .ueber-uns-visual:not(.ueber-photo) { display: none; }
  .ueber-uns-visual.ueber-photo { min-height: 260px; }
  #cta .cta-card { grid-template-columns: 1fr; gap: 40px; }
  .cta-right { display: none; }
  .referenzen-grid { grid-template-columns: 1fr; }
  .trust-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  #hero { padding: 120px 0 80px; }
  #hero::before { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-row { grid-template-columns: 48px 1fr; }
  .problem-row-icon { display: none; }
  .problem-row-num { font-size: 36px; }
  .feature-row { grid-template-columns: 1fr; gap: 16px; }
  .feature-tag { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .fallstudie-stats, .ueber-uns-stats { grid-template-columns: 1fr 1fr; }
  .cta-left { padding: 0; }
  .float-wa-btn { right: 16px; bottom: 20px; width: 48px; height: 48px; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 40px; }
}

@media (max-width: 480px) {
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 18px; }
  .garantie-left, .fallstudie-left, .fallstudie-right, .ueber-uns-right { padding: 32px 24px; }
  .cookie-banner { flex-direction: column; }
  .cookie-actions { flex-direction: row; }
  .problem-row { grid-template-columns: 1fr; gap: 12px; }
  .problem-row-num { font-size: 28px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .glass-card.reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .grain-layer { animation: none; }
  .marquee-track { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION — 320 / 375 / 390 / 430px
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── Sticky Mobile CTA Bar (desktop: hidden) ─────────────────────────────────── */
.mobile-cta-bar { display: none; }

/* ─── Safe area for fixed nav (notch / dynamic island) ──────────────────────── */
@supports (padding-top: env(safe-area-inset-top)) {
  #nav { padding-top: max(20px, env(safe-area-inset-top)); }
  #nav.scrolled { padding-top: max(12px, env(safe-area-inset-top)); }
}

/* ─── 640px — core mobile pass ───────────────────────────────────────────────── */
@media (max-width: 640px) {

  /* Global */
  .container { padding: 0 20px; }
  .section   { padding: 72px 0; }
  .section-title { font-size: clamp(26px, 7vw, 36px); margin-bottom: 12px; }
  .section-sub   { font-size: 15px; margin-bottom: 40px; }
  .section-label { font-size: 10px; }

  /* Sticky bottom CTA */
  .mobile-cta-bar {
    display: flex; align-items: center;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: rgba(243,244,246,0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 20px rgba(11,18,32,0.08);
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }
  .mobile-cta-bar .btn {
    flex: 1; justify-content: center; text-align: center;
    min-height: 50px; font-size: 15px; border-radius: 10px;
  }
  .mobile-cta-bar.hidden {
    transform: translateY(110%); opacity: 0; pointer-events: none;
  }

  /* Body padding so footer isn't hidden by sticky bar */
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }

  /* WhatsApp: lift above sticky bar */
  .float-wa-btn {
    bottom: calc(76px + env(safe-area-inset-bottom)) !important;
    right: 14px !important; width: 44px !important; height: 44px !important;
  }

  /* Cookie banner: lift above sticky bar */
  .cookie-banner {
    bottom: calc(80px + env(safe-area-inset-bottom));
    width: calc(100vw - 32px);
    transform: translateX(-50%) translateY(120px);
  }
  .cookie-banner.visible { transform: translateX(-50%) translateY(0); }

  /* Nav */
  .nav-inner { padding: 0 16px; }
  .nav-logo  { font-size: 18px; }
  .nav-hamburger { width: 44px; height: 44px; padding: 8px; }

  /* Hero */
  #hero { padding: 100px 0 56px; text-align: left; }
  #hero::before { display: none; }
  .badge { font-size: 11px; padding: 6px 12px; margin-bottom: 20px; }
  .hero-headline {
    font-size: clamp(30px, 8.5vw, 42px); margin-bottom: 18px; text-align: left;
    overflow-wrap: break-word; hyphens: none; -webkit-hyphens: none;
  }
  .hero-sub { font-size: 15px; text-align: left; max-width: 100%; margin-bottom: 28px; }
  .hero-cta-wrap { align-items: flex-start; gap: 10px; margin-bottom: 32px; }
  .hero-cta-wrap .btn { width: 100%; justify-content: center; min-height: 50px; }
  .hero-note { font-size: 12px; }
  .trust-bar { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; padding: 14px 16px; }
  .trust-logo-img { height: 22px; max-width: 52px; }
  .trust-label { font-size: 13px; }
  .trust-stars { font-size: 12px; }

  /* Logos */
  #logos { padding: 32px 0; }
  .logos-intro { font-size: 9px; margin-bottom: 18px; }
  .marquee-track { gap: 40px; }
  .marquee-item { font-size: 12px; }
  .marquee-dot { margin: 0 20px; }

  /* Problem */
  #problem { padding: 72px 0; }
  .problem-row { grid-template-columns: 40px 1fr; gap: 14px; padding: 24px 0; }
  .problem-row-icon { display: none !important; }
  .problem-row-num  { font-size: 30px; padding-top: 2px; }
  .problem-row-body h3 { font-size: 17px; margin-bottom: 8px; }
  .problem-row-body p  { font-size: 14px; line-height: 1.7; }

  /* Lösung */
  #loesung { padding: 72px 0; }
  .loesung-grid { gap: 16px; }
  .mockup-frame { border-radius: 12px; }
  .mockup-header { padding: 10px 14px; }
  .mockup-body   { padding: 14px; }
  .mockup-ad-card { padding: 14px; }
  .mockup-ad-title { font-size: 14px; }
  .mockup-ad-text  { font-size: 12px; }
  .mockup-cta-pill { font-size: 12px; padding: 7px 14px; }

  /* Fallstudie */
  #fallstudie { padding: 72px 0; }
  .fallstudie-left  { padding: 28px 20px; }
  .fallstudie-right { padding: 28px 20px; }
  .fallstudie-right h3 { font-size: 17px; }
  .fallstudie-placeholder { height: 150px; }
  .play-btn { width: 50px; height: 50px; }
  .fallstudie-stats { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .f-stat { padding: 16px; }
  .fallstudie-badge { font-size: 10px; }

  /* Vorteile (feature rows → flex column) */
  #vorteile { padding: 72px 0; }
  .feature-row { display: flex; flex-direction: column; gap: 14px; padding: 28px 0; }
  .feature-tag { display: none !important; }
  .feature-icon-wrap { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; }
  .feature-body h3 { font-size: 17px; margin-bottom: 8px; }
  .feature-body p  { font-size: 14px; line-height: 1.7; }

  /* Buttons: lange CTAs umbrechen statt über den Viewport laufen + volle Breite */
  .btn { white-space: normal; text-align: center; }
  .hero-cta-wrap .btn, .prozess-cta .btn { width: 100%; justify-content: center; }

  /* Garantie */
  #garantie { padding: 72px 0; }
  .garantie-left  { padding: 28px 20px; }
  .garantie-right { padding: 28px 20px; }
  .garantie-left h2 { font-size: clamp(22px, 6vw, 30px); }
  .garantie-left p  { font-size: 14px; }
  .garantie-left .btn { width: 100%; justify-content: center; min-height: 50px; }
  .check-item { font-size: 14px; gap: 10px; padding: 12px 0; }
  .angebot-mockup { width: 200px; height: 260px; margin: 0 auto; }
  .angebot-shadow { width: 170px; height: 220px; }
  .angebot-card   { width: 170px; height: 220px; padding: 18px; gap: 8px; }
  .angebot-highlight { font-size: 11px; padding: 10px; }

  /* Referenzen */
  #referenzen { padding: 72px 0; }
  .ref-name { font-size: 15px; }
  .ref-stat-box { padding: 16px; }
  .ref-stat-box .stat-num { font-size: 36px; }
  .ref-quote { font-size: 12px; }
  .trust-banner { padding: 20px; border-radius: 14px; }
  .trust-banner-left { flex-direction: column; gap: 10px; }
  .trust-banner-right { font-size: 13px; }

  /* Über uns */
  #ueber-uns { padding: 72px 0; }
  .ueber-uns-visual:not(.ueber-photo) { display: none !important; }
  .ueber-uns-visual.ueber-photo { min-height: 230px; }
  .ueber-uns-right { padding: 28px 20px; }
  .ueber-uns-right h2 { font-size: clamp(22px, 6vw, 28px); }
  .ueber-uns-right p  { font-size: 14px; }
  .ueber-uns-stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
  .u-stat { padding: 16px; }

  /* FAQ */
  #faq { padding: 72px 0; }
  .faq-list { margin-top: 36px; }
  .faq-q { font-size: 15px; padding: 20px 0; gap: 16px; }
  .faq-a { font-size: 14px; }
  .faq-item.open .faq-a { padding-bottom: 20px; }

  /* CTA dark section */
  #cta { padding: 80px 0; }
  .cta-bg-text { font-size: clamp(48px, 15vw, 90px); white-space: normal; text-align: center; }
  #cta .cta-card { gap: 28px; }
  #cta .cta-left h2 { font-size: clamp(22px, 6.5vw, 34px); margin-bottom: 20px; }
  .cta-bullets { margin-bottom: 28px; }
  .cta-bullets li { font-size: 14px; gap: 10px; padding: 9px 0; }
  #cta .btn-xl { width: 100%; justify-content: center; min-height: 52px; font-size: 16px; padding: 16px 24px; }
  .cta-trust-strip { gap: 10px 20px; padding-top: 20px; margin-top: 20px; }
  .cta-strip-item { font-size: 12px; }

  /* Footer */
  footer { padding: 48px 0 28px; }
  .footer-top  { gap: 32px; }
  .footer-logo { font-size: 20px; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .footer-col p { font-size: 14px; line-height: 2.0; }
  .footer-col a { font-size: 14px; display: inline-block; padding: 7px 0; }
  .footer-col-title { margin-bottom: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-copy { font-size: 12px; }
  .footer-legal { gap: 8px 18px; flex-wrap: wrap; }
  .footer-legal a { font-size: 14px; display: inline-flex; align-items: center; min-height: 44px; }
  hr.divider { margin-bottom: 24px !important; }

  /* Animations: lighter + no stagger delay on mobile */
  .reveal-up {
    transform: translateY(20px); transition-duration: 0.5s;
    transition-delay: 0s !important;
  }
  .glass-card.reveal {
    transform: translateY(28px) rotate(0deg) !important;
    transition-duration: 0.55s; transition-delay: 0s !important;
  }
}

/* ─── 390px — standard iPhone ───────────────────────────────────────────────── */
@media (max-width: 390px) {
  .hero-headline { font-size: clamp(28px, 8vw, 36px); }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─── 320px — extreme small ──────────────────────────────────────────────────── */
@media (max-width: 340px) {
  .container { padding: 0 14px; }
  .hero-headline { font-size: 26px; }
  .section-title { font-size: 22px; }
  .hero-cta-wrap .btn { font-size: 14px; }
  .mobile-cta-bar .btn { font-size: 13px; padding: 14px 12px; }
  .nav-logo { font-size: 16px; }
}
