/*
  Gemeinsames Stylesheet für alle Seiten der Agentur-Homepage
  (index.html, zanshin.html, impressum.html, datenschutz.html).

  Design-Grundwahrheit (Briefing v2, Abschnitt 1): Farben, Fonts, Radien,
  Schatten und Card-/Button-Sprache sind aus dem echten HTML/CSS-Export
  "website/Neue Saatio Website/Website - alte Local WP.html" (+ _files/style.css)
  extrahiert — nicht mehr aus dem Cockpit-Mockup. Variablennamen (--brand1,
  --ink, --slate, --line, --radius-btn, --font-sans, --font-accent, ...)
  bleiben aus v1 erhalten, damit impressum.html/datenschutz.html ohne
  Änderungen mitziehen; nur die Werte + Komponenten wurden aktualisiert.

  Dashboard-/Cockpit-Mockups (.mockup-*, .mv-*) sind reine CSS/HTML-Bausteine
  aus dem Export — der Export selbst enthält keine echten Screenshots,
  sondern genau diese Art gebauter UI-Visuals. Sie ersetzen die leeren
  Gradient-Boxen aus v1.
*/

:root {
  /* Marke / Akzent — 1:1 aus dem Export */
  --brand1: #4F46E5;
  --brand2: #9333EA;
  --brand-grad: linear-gradient(135deg, var(--brand1) 0%, var(--brand2) 100%);

  /* Flächen & Text */
  --bg: #F8F7FF;
  --bg-panel: #F5F5F7;
  --panel: #ffffff;
  --ink: #1A1A2A;
  --slate: #4B5563;
  --muted: #6B7280;
  --line: #E5E7EB;
  --line-light: #F3F4F6;

  /* Status-Farben (Badges/Hinweise) */
  --green: #16a34a;
  --green-bg: #dcfce7;
  --red: #dc2626;
  --red-bg: #fee2e2;
  --amber: #d97706;
  --amber-bg: #fef3c7;
  --blue: #2563eb;

  /* Schatten — violett getönt, aus dem Export */
  --shadow-sm: 0 2px 8px rgba(79,70,229,0.08);
  --shadow: 0 4px 24px rgba(79,70,229,0.12);
  --shadow-lg: 0 12px 40px rgba(79,70,229,0.18);
  --shadow-hover: 0 20px 60px rgba(79,70,229,0.22);

  /* Typografie */
  --font-sans: 'Inter', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Radien & Abstände */
  --radius-card: 16px;
  --radius-card-lg: 24px;
  --radius-btn: 50px;
  --nav-height: 76px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
  font-family: var(--font-sans);
  color: var(--ink);
}

p { margin: 0; }

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

.section {
  padding: 96px 0;
}

.section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,70,229,0.08);
  color: var(--brand1);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
}

.section .lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
}

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

/* Sektion mit hellem Panel-Hintergrund */
.section.on-panel { background: var(--bg-panel); }

/* ============================================
   BUTTONS — Pill-Form, Gradient mit Glow (aus Export)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  padding: 15px 30px;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1), color .2s, border-color .2s, background .2s;
}

.btn svg { width: 18px; height: 18px; }

.btn.primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79,70,229,.38);
}

.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(79,70,229,.5); }

.btn.outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn.outline:hover { border-color: var(--brand1); color: var(--brand1); transform: translateY(-2px); }

.btn.on-dark {
  background: #fff;
  color: var(--brand1);
}

.btn.on-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }

.btn.on-dark.outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.btn.on-dark.outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* Cards */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--line-light);
}

.site-header .bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  min-height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  color: var(--ink);
}

.logo img { width: 32px; height: 32px; border-radius: 9px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  padding: 9px 15px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: all .2s;
}

.site-nav a:hover { color: var(--brand1); background: rgba(79,70,229,.07); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  /* Rollback 2.7. auf den Stand vor den Dunkel-Iterationen (Commit
     514de3b): Hero-Hintergrund ist wieder der Indigo/Violet-Gradient
     als Vollfläche, kein separates Dunkel-/Aurora-/Grid-Layer-System.
     Whitespace-Werte (padding hier + Badge/Lead/CTA-Row-Abstände unten)
     bleiben auf dem erhöhten Stand der letzten Iterationen. */
  background: var(--brand-grad);
  padding-top: calc(var(--nav-height) + 180px);
  padding-bottom: 260px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -6%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.95);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a3e635;
  box-shadow: 0 0 10px #a3e635;
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 620px;
}

.hero .lead {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 500px;
}

.hero .cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.hero .cta-row .link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

.hero .cta-row .link-secondary svg { width: 16px; height: 16px; }

/* ============================================
   MOCKUP — geteiltes Dashboard/Cockpit-Bauteil
   (aus dem Export übernommen: reine CSS/HTML-UI, kein Foto)
   ============================================ */
.mockup {
  position: relative;
}

.mockup::before {
  content: '';
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 70%);
  border-radius: 36px;
  pointer-events: none;
}

.mockup-card {
  background: #0d0d1f;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: #1a1a30;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.mockup-chrome i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.mockup-chrome i:nth-child(1) { background: #FF5F57; }
.mockup-chrome i:nth-child(2) { background: #FFBD2E; }
.mockup-chrome i:nth-child(3) { background: #28C840; }

.mockup-chrome-bar {
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,.05);
  border-radius: 4px;
  margin: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-chrome-url { font-size: .6rem; color: rgba(255,255,255,.28); }

.mockup-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #12122a;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.mockup-head-title { font-size: .82rem; font-weight: 700; color: #fff; }

.mockup-head-status {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 600;
  color: #a78bfa;
  background: rgba(167,139,250,.12);
  padding: 3px 10px;
  border-radius: 50px;
}

.mockup-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.mockup-tile { background: #0d0d1f; padding: 15px 16px; }

.mockup-tile-label {
  font-size: .62rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 8px;
}

.mockup-tile-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: block;
  letter-spacing: -.02em;
}

.mockup-tile-change {
  margin-top: 6px;
  font-size: .62rem;
  font-weight: 600;
  color: #34d399;
  background: rgba(52,211,153,.1);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
}

.mockup-body { padding: 16px 18px 18px; }

.mockup-pipeline-label {
  font-size: .66rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
}

.mockup-pipeline {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 76px;
}

.mockup-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.mockup-stage-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--brand-grad);
}

.mockup-stage.is-muted .mockup-stage-bar { background: rgba(255,255,255,.14); }
.mockup-stage.is-warn .mockup-stage-bar { background: linear-gradient(180deg, #f59e0b, #d97706); }
.mockup-stage.is-good .mockup-stage-bar { background: linear-gradient(180deg, #34d399, #059669); }

.mockup-stage-label {
  font-size: .62rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.3;
}

.mockup-badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }

.mockup-chip {
  font-size: .62rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.mockup-chip.warn { background: rgba(245,158,11,.16); color: #fbbf24; }
.mockup-chip.good { background: rgba(52,211,153,.16); color: #34d399; }

.mockup-placeholder-note {
  margin-top: 14px;
  font-size: .68rem;
  color: rgba(255,255,255,.32);
  border-top: 1px dashed rgba(255,255,255,.14);
  padding-top: 12px;
}

/* ============================================
   PROBLEM-SEKTION
   ============================================ */
.problem-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-card .chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef0ff;
  color: var(--brand1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-card .chip svg { width: 22px; height: 22px; stroke-width: 1.75; }

.problem-card h4 { font-size: 16px; margin-bottom: 6px; }
.problem-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ============================================
   LEISTUNGEN — Feature-Cards mit echtem Mini-Visual
   ============================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.feature-card {
  background: #fff;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(0,0,0,.055), 0 0 0 1px rgba(0,0,0,.04);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.09), 0 0 0 1px rgba(0,0,0,.05);
}

.feature-card.is-flagship {
  box-shadow: 0 8px 40px rgba(79,70,229,.16), 0 0 0 1px rgba(79,70,229,.09);
}
.feature-card.is-flagship:hover {
  box-shadow: 0 24px 56px rgba(79,70,229,.24), 0 0 0 1px rgba(79,70,229,.12);
}

.feat-visual {
  background: var(--bg-panel);
  height: 168px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.feat-text { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }

.feat-text .flagship-tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand1);
  background: rgba(79,70,229,.08);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.feat-text h3 { font-size: 17px; margin-bottom: 8px; }
.feat-text p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.feat-text .proof {
  margin-top: 10px;
  font-size: 13px;
  font-style: italic;
  color: var(--brand1);
}

/* ── Mini-Visual 1: Ads-Metrics ── */
.mv-ads { width: 100%; background: #fff; border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow-sm); }
.mv-ads-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mv-ads-title { font-size: 11px; font-weight: 700; color: var(--ink); }
.mv-ads-live { font-size: 10px; font-weight: 600; color: var(--green); }
.mv-ads-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 10px; }
.mv-ads-metric { text-align: center; }
.mv-ads-metric .v { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.mv-ads-metric .l { display: block; font-size: 9px; color: var(--muted); margin-top: 2px; }
.mv-ads-bar-row { display: flex; align-items: center; gap: 8px; }
.mv-ads-bar-row span:first-child { font-size: 9.5px; color: var(--muted); flex-shrink: 0; }
.mv-ads-bar-row span:last-child { font-size: 9.5px; font-weight: 700; color: var(--ink); flex-shrink: 0; }
.mv-ads-track { flex: 1; height: 5px; background: var(--line-light); border-radius: 3px; overflow: hidden; }
.mv-ads-fill { height: 100%; background: var(--brand-grad); border-radius: 3px; }

/* ── Mini-Visual 2: WhatsApp-Automation ── */
.mv-chat { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.mv-chat-badge {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  background: #dcfce7;
  color: #16a34a;
}
.mv-chat-bubble {
  max-width: 88%;
  font-size: 11.5px;
  line-height: 1.4;
  padding: 8px 11px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--slate);
}
.mv-chat-bubble.is-reply {
  align-self: flex-end;
  background: var(--brand-grad);
  color: #fff;
}
.mv-chat-typing { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.mv-chat-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--brand1); opacity: .5; }
.mv-chat-typing-label { font-size: 9.5px; color: var(--muted); }

/* ── Mini-Visual 3: Content/Video-Thumbnail ── */
.mv-video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1035, #2d1452);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(79,70,229,.28), transparent 55%),
              radial-gradient(circle at 75% 50%, rgba(147,51,234,.22), transparent 55%);
}
.mv-video-grid {
  position: absolute;
  inset: 8px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 4px;
  opacity: .28;
}
.mv-video-grid span { background: rgba(255,255,255,.14); border-radius: 4px; }
.mv-video-play {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.5);
}
.mv-video-play::after {
  content: '';
  border-left: 10px solid var(--brand1);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}
.mv-video-badge {
  position: absolute;
  bottom: 8px;
  left: 10px;
  z-index: 1;
  font-size: 9.5px;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.35);
  padding: 2px 8px;
  border-radius: 50px;
}

/* ── Mini-Visual 4: Web/Landing-Wireframe ── */
.mv-web { width: 100%; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.mv-web-bar { display: flex; align-items: center; gap: 4px; padding: 7px 10px; background: var(--line-light); }
.mv-web-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--line); display: block; }
.mv-web-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; }
.mv-web-block { height: 8px; border-radius: 4px; background: var(--line-light); }
.mv-web-block.is-accent { background: var(--brand-grad); width: 40%; height: 10px; }
.mv-web-block.w-70 { width: 70%; }
.mv-web-block.w-50 { width: 50%; }
.mv-web-block.w-90 { width: 90%; }

/* ── Mini-Visual 5: Kalender (Termine buchen sich selbst) ── */
.mv-cal { width: 100%; }
.mv-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mv-cal-month { font-size: 11px; font-weight: 700; color: var(--ink); }
.mv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.mv-cal-day-label { font-size: 8px; color: var(--muted); text-align: center; }
.mv-cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 9px; border-radius: 4px; color: var(--slate); background: var(--line-light); }
.mv-cal-day.is-empty { background: transparent; }
.mv-cal-day.is-booked { background: rgba(79,70,229,.14); color: var(--brand1); font-weight: 700; }
.mv-cal-day.is-today { background: var(--brand-grad); color: #fff; font-weight: 700; }

/* ── Mini-Visual 6: Follow-up-Checkliste ── */
.mv-steps { width: 100%; display: flex; flex-direction: column; gap: 9px; }
.mv-step { display: flex; align-items: center; gap: 9px; }
.mv-step-dot {
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0;
  background: var(--line-light); color: var(--muted);
}
.mv-step.is-done .mv-step-dot { background: var(--green-bg); color: var(--green); }
.mv-step.is-active .mv-step-dot { background: var(--brand-grad); color: #fff; }
.mv-step-label { font-size: 10.5px; color: var(--slate); }
.mv-step.is-active .mv-step-label { font-weight: 700; color: var(--ink); }

/* ── Mini-Visual 7: generisches Stat-Grid ── */
.mv-stats-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mv-stats-grid .mv-ads-metric { background: #fff; border-radius: 8px; padding: 10px 4px; box-shadow: var(--shadow-sm); }

/* ── Mini-Visual 8: Sparkline ── */
.mv-chart { width: 100%; height: 64px; }
.mv-chart svg { width: 100%; height: 100%; }

/* ============================================
   VERGLEICH — Ohne / Mit Saatio Cockpit
   ============================================ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.compare-col { border-radius: var(--radius-card-lg); padding: 34px; }
.compare-col.is-bad { background: #fff; border: 1px solid var(--line); }
.compare-col.is-good { background: var(--ink); color: #fff; }
.compare-head { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; margin-bottom: 22px; }
.compare-head-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.compare-col.is-bad .compare-head-icon { background: var(--red-bg); color: var(--red); }
.compare-col.is-good .compare-head-icon { background: rgba(255,255,255,.14); color: #34d399; }
.compare-list { display: flex; flex-direction: column; gap: 15px; }
.compare-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
.compare-col.is-bad .compare-item { color: var(--slate); }
.compare-col.is-good .compare-item { color: rgba(255,255,255,.85); }
.compare-icon { flex-shrink: 0; font-weight: 700; }
.compare-col.is-bad .compare-icon { color: var(--red); }
.compare-col.is-good .compare-icon { color: #34d399; }

/* Trust-Strip — echter Kunde statt Fake-Logoleiste */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  padding: 26px 0; text-align: center;
  font-size: 14px; color: var(--muted);
}
.trust-strip strong { color: var(--ink); }
.trust-strip a { color: var(--brand1); font-weight: 600; text-decoration: none; }
.trust-strip a:hover { text-decoration: underline; }

/* ============================================
   DER UNTERSCHIED (Diff-Quote / Beweis)
   ============================================ */
.diff-block { display: grid; grid-template-columns: 1fr 0.92fr; gap: 56px; align-items: center; }
.diff-copy p.lead { margin-top: 0; }
.diff-quote {
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin: 18px 0 20px;
}

/* ============================================
   REFERENZ / CASE-CARD
   ============================================ */
.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.case-card .case-copy { padding: 44px; }
.case-card .case-visual {
  background: #0d0d1f;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.case-card .tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand1);
  background: #eef0ff;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* ============================================
   PROZESS
   ============================================ */
.process-step .num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-step h3 { font-size: 16.5px; margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: 14px; }

/* ============================================
   ÜBER UNS
   ============================================ */
.team-card { display: flex; gap: 20px; align-items: center; }

.photo-placeholder {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  flex-shrink: 0;
  border: 1.5px dashed var(--line);
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
}
.photo-placeholder svg { width: 22px; height: 22px; stroke-width: 1.5; }
.photo-placeholder span { font-size: 8.5px; font-weight: 600; letter-spacing: .02em; }

.team-card h3 { font-size: 16px; margin-bottom: 4px; }
.team-card .role { color: var(--brand1); font-weight: 600; font-size: 13.5px; margin-bottom: 6px; }
.team-card p.bio { color: var(--muted); font-size: 14px; }

/* ============================================
   ABSCHLUSS-CTA
   ============================================ */
.cta-final {
  background: var(--brand-grad);
  border-radius: var(--radius-card-lg);
  color: #fff;
  padding: 68px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; }
.cta-final .contact-line {
  margin-top: 22px;
  font-size: 15px;
  opacity: .92;
}

.cta-final .contact-line a { text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 52px 0 32px;
  background: var(--ink);
  color: rgba(255,255,255,.55);
}

.site-footer .bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer .logo { color: #fff; }

.site-footer nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}

.site-footer nav a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 6px 4px;
  transition: color .2s;
}

.site-footer nav a:hover { color: #fff; }

.site-footer .copyright {
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 12.5px;
  color: rgba(255,255,255,.32);
}

/* Inline-Platzhalter-Markierung im Fließtext */
.placeholder-inline {
  background: var(--amber-bg);
  color: var(--amber);
  border-radius: 6px;
  padding: 1px 6px;
  font-style: normal;
  font-weight: 700;
  font-size: .92em;
}

/* Rechtsseiten (Impressum/Datenschutz) */
.legal-page .section { padding-top: 64px; }
.legal-page h1 { color: var(--ink); }
.legal-page h2 { font-size: 22px; margin-top: 38px; margin-bottom: 12px; }
.legal-page h2:first-of-type { margin-top: 28px; }
.legal-page p, .legal-page li { color: var(--slate); font-size: 15px; line-height: 1.7; }
.legal-page ul { padding-left: 20px; }
.legal-page .placeholder {
  background: var(--amber-bg);
  color: var(--amber);
  border-radius: 8px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 13.5px;
}

/* Zanshin-Stub */
.stub-hero { padding: 88px 0 96px; text-align: center; }
.stub-hero .eyebrow { margin-left: auto; margin-right: auto; }
.stub-hero h1 { font-size: clamp(30px, 4.5vw, 46px); max-width: 720px; margin: 0 auto; }
.stub-hero p.lead { margin: 20px auto 0; max-width: 560px; text-align: center; }
.stub-hero .cta-row { justify-content: center; margin-top: 32px; }
.stub-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero .lead, .hero h1 { max-width: 100%; }
  .hero { padding-top: calc(var(--nav-height) + 120px); padding-bottom: 180px; }
  .diff-block { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .case-card { grid-template-columns: 1fr; }
  .case-card .case-visual { min-height: 220px; order: -1; }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    gap: 6px;
  }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-final { padding: 48px 24px; }
  .team-card { flex-direction: column; text-align: center; }
  .site-footer .bar { flex-direction: column; align-items: flex-start; }
  .site-footer nav { margin-left: 0; }
  .problem-card { flex-direction: column; }
}
