/* ═══════════════════════════════════════════════
   CYBAIRBAG.DE — Main Stylesheet
   Dark Threat Design System
═══════════════════════════════════════════════ */

:root {
  /* Warme Schwärzen — identisch zur Startseite, kein Kalt-Blau */
  --black:       #0C0C0C;
  --dark:        #111111;
  --dark-2:      #141414;
  --dark-3:      #181818;
  --border:      #2A2A2A;

  /* Brand = Rot (einheitlich überall) */
  --brand:       #E8001A;
  --brand-dark:  #B80015;
  --brand-glow:  rgba(232, 0, 26, 0.14);

  /* Alarm: Rot = Bedrohung / Gefahr */
  --red:         #E8001A;
  --red-dark:    #B80015;

  /* Terminal: Matrix-Grün */
  --green:       #00FF41;

  /* Info-Akzente (Magazin Tipp-Boxen, ToC) */
  --blue:        #4D9FFF;
  --blue-dark:   #2B7FE0;

  /* Typografie — warm-weiß statt kalt-bläulich */
  --white:       #F2F2F0;
  --grey:        #999999;
  --grey-light:  #B8B8B6;
  --mono:        'JetBrains Mono', monospace;
  --sans:        'Inter', sans-serif;
}

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

a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }

/* Content-Links in Fließtext — erkennbar als Link */
p a, dd a, td a {
  color: var(--blue, #4D9FFF);
  text-decoration: underline;
  text-underline-offset: 3px;
}
p a:visited, dd a:visited, td a:visited { color: var(--blue, #4D9FFF); }
p a:hover, dd a:hover, td a:hover { color: var(--white, #F2F2F0); }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   PHASE 0: FAKE WEBSITE
═══════════════════════════════════════════════ */
/* ── Fake Praxissoftware ──────────────────────────── */
#fake-website {
  position: fixed;
  inset: 0;
  background: #f0f4f8;
  color: #1a2233;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* App chrome / window titlebar */
.pv-chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 1rem;
  background: #1e2a3a;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  user-select: none;
}
.pv-chrome-dots { display: flex; gap: 6px; }
.pv-chrome-dots .dot { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }
.pv-chrome-title { flex: 1; text-align: center; color: #a0b0c0; font-size: 12px; }
.pv-chrome-actions { display: flex; gap: 1rem; align-items: center; }
.pv-status { font-size: 12px; }
.pv-status.online { color: #28C840; }
.pv-user { font-size: 12px; color: #a0b0c0; }

/* App layout */
.pv-app {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Sidebar */
.pv-sidebar {
  width: 200px;
  background: #1a2233;
  color: #8899aa;
  padding: 1rem 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  font-size: 14px;
}
.pv-nav-group { margin-bottom: 1rem; padding: 0 0.75rem; }
.pv-nav-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #445566;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  padding: 0 0.25rem;
}
.pv-nav-item {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  color: #8899aa;
  margin-bottom: 1px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.pv-nav-item:hover { background: rgba(255,255,255,0.05); color: #c0d0e0; }
.pv-nav-item.active { background: rgba(0,102,255,0.15); color: #4D9FFF; }

/* Main content */
.pv-main {
  flex: 1;
  padding: 1.5rem 2rem;
  overflow-y: auto;
  background: #f0f4f8;
}
.pv-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.pv-page-title { font-size: 20px; font-weight: 700; color: #1a2233; }
.pv-page-sub   { font-size: 14px; color: #667788; margin-top: 0.2rem; }
.pv-header-actions { display: flex; gap: 0.5rem; }
.pv-btn-primary {
  background: #0066FF; color: white; border: none;
  padding: 0.45rem 1rem; border-radius: 6px; cursor: pointer;
  font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 600;
}
.pv-btn-secondary {
  background: white; color: #445566; border: 1px solid #d0dae8;
  padding: 0.45rem 1rem; border-radius: 6px; cursor: pointer;
  font-size: 14px; font-family: 'Inter', sans-serif;
}

/* Stats row */
.pv-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.pv-stat-card {
  background: white;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  padding: 0.9rem 1rem;
}
.pv-stat-card--green .pv-stat-num { color: #00aa44; }
.pv-stat-num { font-size: 20px; font-weight: 800; color: #1a2233; line-height: 1; }
.pv-stat-label { font-size: 12px; color: #667788; margin-top: 0.25rem; }

/* Table */
.pv-table-wrap {
  background: white;
  border: 1px solid #d8e2ef;
  border-radius: 10px;
  overflow: hidden;
}
.pv-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pv-table th {
  background: #f7fafd;
  padding: 0.65rem 0.9rem;
  text-align: left;
  font-size: 12px;
  color: #667788;
  font-weight: 600;
  border-bottom: 1px solid #d8e2ef;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pv-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid #eef2f8;
  color: #1a2233;
  vertical-align: middle;
}
.pv-table tr:last-child td { border-bottom: none; }
.pv-table tr:hover td { background: #f7fafd; }
.pv-row-active td { background: #f0f6ff; }
.pv-row-done td { opacity: 0.6; }
.pv-time { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: #445566; white-space: nowrap; }
.pv-pid  { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #99aabb; }

/* Badges */
.pv-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: #eef2f8;
  color: #667788;
}
.pv-badge.active  { background: #ddeeff; color: #0066FF; }
.pv-badge.waiting { background: #fff3dd; color: #cc7700; }
.pv-badge.done    { background: #e8f8ee; color: #009944; }

.pv-row-btn {
  background: #f0f4f8; color: #445566; border: 1px solid #d0dae8;
  padding: 0.3rem 0.7rem; border-radius: 5px; cursor: pointer;
  font-size: 12px; font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.pv-row-btn--blue { background: #0066FF; color: white; border-color: #0066FF; }

/* ═══════════════════════════════════════════════
   PHASE 1: ATTACK OVERLAY
═══════════════════════════════════════════════ */
#attack-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
}

/* Glitch-Schicht */
#glitch-layer {
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Terminal */
#terminal {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: min(500px, 90vw);
  background: rgba(0,0,0,0.95);
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  font-family: var(--mono);
  font-size: 14px;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
#terminal.visible { opacity: 1; transform: translateY(0); }

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: #2a2a2a;
  border-radius: 8px 8px 0 0;
}
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }
.terminal-title { color: #888; font-size: 12px; margin-left: 0.5rem; }

.terminal-body {
  padding: 0.75rem;
  min-height: 180px;
  max-height: 260px;
  overflow-y: auto;
  line-height: 1.5;
}
.terminal-body::-webkit-scrollbar { width: 4px; }
.terminal-body::-webkit-scrollbar-track { background: transparent; }
.terminal-body::-webkit-scrollbar-thumb { background: #333; }

.t-line { display: block; margin-bottom: 2px; }
.t-prompt { color: var(--green); }
.t-cmd    { color: var(--white); }
.t-out    { color: #aaa; }
.t-err    { color: var(--red); }
.t-warn   { color: #ffaa00; }
.t-cursor { display: inline-block; width: 8px; height: 1em; background: var(--green); vertical-align: text-bottom; animation: blink 0.7s step-end infinite; }

/* Encrypt Box */
#encrypt-box {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 85vw);
  background: rgba(0,0,0,0.92);
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s;
  font-family: var(--mono);
}
#encrypt-box.visible { opacity: 1; }

#encrypt-label {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
#encrypt-bar-outer {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  height: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
#encrypt-bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--red);
}
#encrypt-percent {
  color: var(--red);
  font-size: 14px;
}

/* Ransom Screen */
#ransom-screen {
  position: absolute;
  inset: 0;
  background: #0a0000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.6s;
}
#ransom-screen.visible { opacity: 1; }

#ransom-skull {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1rem;
  animation: shake 0.4s ease-in-out infinite;
}
#ransom-title {
  font-family: var(--mono);
  font-size: clamp(1rem, 3vw, 2rem);
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px var(--red);
}
#ransom-body p {
  color: #ccc;
  font-family: var(--mono);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
#ransom-amount {
  font-family: var(--mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  margin: 1.5rem 0;
  font-weight: 700;
}
#ransom-amount span { color: var(--red); }
#ransom-timer {
  font-family: var(--mono);
  font-size: 14px;
  color: #888;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
#countdown { color: var(--red); font-size: 1rem; font-weight: 700; }
#bitcoin-address {
  font-family: var(--mono);
  font-size: 12px;
  color: #444;
  word-break: break-all;
  max-width: 400px;
  margin: 0 auto;
}
#cursor-blink { animation: blink 0.7s step-end infinite; }

/* ═══════════════════════════════════════════════
   PHASE 2: FREEZE SCREEN
═══════════════════════════════════════════════ */
#freeze-screen {
  position: fixed;
  inset: 0;
  background: #0a0000;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* ═══════════════════════════════════════════════
   PHASE 3: REVEAL — ECHTE SEITE
═══════════════════════════════════════════════ */
#reveal-screen {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  min-height: 100vh;
}
#reveal-screen.visible { opacity: 1; transform: translateY(0); }

/* NAV */
#real-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
#real-logo { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; }
.logo-cyber   { color: var(--white); }
.logo-airbag  { color: var(--red); }
.logo-dot     { color: var(--grey); font-size: 14px; }

#real-nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
#real-nav-links a {
  color: var(--grey-light);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
#real-nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 5px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; }

/* HERO */
#real-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
}
#hero-stat-line {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.stat-pill {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 14px;
  color: var(--grey-light);
  font-family: var(--mono);
}
.stat-pill strong { color: var(--red); }

#hero-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.headline-red  { color: var(--red); }
.headline-thin { color: var(--grey-light); font-weight: 300; }

#hero-sub {
  font-size: 1rem;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
#hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 var(--brand-glow);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--brand-glow);
}
.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--grey-light);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--grey); color: var(--white); }

/* SECTION BASICS */
section { padding: 5rem 2rem; }
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

/* BERUFSGRUPPEN */
#berufsgruppen {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 16px;
  padding: 4rem 3rem;
}
.berufs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.berufs-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.berufs-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  background: var(--dark-3);
}
.berufs-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.berufs-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.berufs-trigger {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  margin-bottom: 0.75rem;
  font-style: italic;
  line-height: 1.4;
}
.berufs-facts {
  list-style: none;
  margin-bottom: 1rem;
}
.berufs-facts li {
  font-size: 14px;
  color: var(--grey-light);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.25rem;
}
.berufs-facts li::before { content: '–'; position: absolute; left: 0; color: var(--grey); }
.berufs-link {
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
}

/* SCHMERZ STATS */
#schmerz-section {
  max-width: 1100px;
  margin: 0 auto;
}
.schmerz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.schmerz-stat {
  background: var(--dark);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--red);
  font-family: var(--mono);
  margin-bottom: 0.5rem;
}
.stat-desc { font-size: 14px; color: var(--grey-light); line-height: 1.5; }

/* LEISTUNGEN */
#leistungen {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 16px;
  padding: 4rem 3rem;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.leistung-item {
  padding: 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.leistung-icon { font-size: 24px; margin-bottom: 0.75rem; }
.leistung-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.leistung-item p { font-size: 14px; color: var(--grey-light); line-height: 1.6; }

/* BLOG */
#blog { max-width: 1100px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  display: block;
  padding: 1.75rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.blog-tag {
  display: inline-block;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 12px;
  color: var(--grey);
  font-family: var(--mono);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: 1rem; }
.blog-read { font-size: 14px; color: var(--blue); font-weight: 600; }

/* KONTAKT */
#kontakt {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kontakt-inner { max-width: 640px; margin: 0 auto; }
.kontakt-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.kontakt-sub { color: var(--grey-light); line-height: 1.7; margin-bottom: 2.5rem; }

#kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--grey-light); letter-spacing: 0.02em; }
.form-group input,
.form-group select {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.75rem 0.875rem;
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
}
/* ═══════════════════════════════════════════════
   ACCESSIBILITY — Focus & Skip-Link
   WCAG 2.1 AA: 2.4.7 Focus Visible, 2.4.1 Bypass Blocks
═══════════════════════════════════════════════ */

/* Skip-Link: komplett versteckt bis erste Tab-Taste (WCAG 2.4.1) */
.skip-link {
  display: none;
}
.skip-link.keyboard-ready {
  display: block;
  position: fixed;
  top: -200px;
  left: 1rem;
  z-index: 99999;
  background: var(--red);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  outline: none;
  pointer-events: none;
}
.skip-link.keyboard-ready:focus {
  top: 0.75rem;
  pointer-events: auto;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Focus-Ring: alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Formular-Inputs extra: Rahmen UND Outline */
.form-group input:focus,
.form-group select:focus { border-color: var(--red); }
.form-group input::placeholder { color: #333; }
.form-group select option { background: var(--dark-2); }

.form-field-error {
  font-size: 12px;
  color: var(--red);
  min-height: 1rem;
  display: block;
}

.form-dsgvo {
  font-size: 12px;
  color: var(--grey);
  text-align: center;
  margin-top: 0.75rem;
}
.form-dsgvo a { color: var(--grey); text-decoration: underline; }

/* Formular-Button: exakt wie Startseite — kein Transform, kein Box-Shadow */
#kontakt .btn-primary {
  border-radius: 5px;
  padding: 0.9rem;
  letter-spacing: -0.01em;
  transition: background 0.15s;
  box-shadow: none;
}
#kontakt .btn-primary:hover {
  transform: none;
  box-shadow: none;
  background: var(--red-dark);
}

.kontakt-trust {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trust-item { font-size: 14px; color: var(--grey-light); line-height: 1.6; }
.trust-item strong { color: var(--white); }
.trust-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 12px;
  color: var(--grey-light);
  font-family: var(--mono);
}

/* TRUST ROW (Startseiten-Stil, auch auf Branchenseiten) */
.trust-row {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.trust-name { font-size: 14px; font-weight: 600; color: var(--white); }
.trust-sub  { font-size: 14px; color: var(--grey); margin-top: 2px; }
.trust-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.trust-pill {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.04em;
}

/* FOOTER */
#real-footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo p { font-size: 14px; color: var(--grey); margin-top: 0.25rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   ANIMATIONEN
═══════════════════════════════════════════════ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 50%, 90% { transform: translateX(-4px); }
  30%, 70% { transform: translateX(4px); }
}
@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes glitch-h {
  0%   { clip-path: inset(80% 0 0 0); transform: translate(-4px, 0); }
  20%  { clip-path: inset(10% 0 60% 0); transform: translate(4px, 0); }
  40%  { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 0); }
  60%  { clip-path: inset(30% 0 50% 0); transform: translate(3px, 0); }
  80%  { clip-path: inset(5% 0 80% 0); transform: translate(-1px, 0); }
  100% { clip-path: inset(80% 0 0 0); transform: translate(0, 0); }
}

/* GLITCH EFFECT auf fake-website */
#fake-website.glitching::before,
#fake-website.glitching::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  animation: glitch-h 0.15s infinite;
}
#fake-website.glitching::before {
  left: -3px;
  background-color: rgba(255, 0, 0, 0.05);
  animation-delay: 0.05s;
}
#fake-website.glitching::after {
  left: 3px;
  background-color: rgba(0, 255, 65, 0.05);
}

/* SCANLINE */
#fake-website.glitching .scanline {
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(0, 255, 65, 0.08);
  animation: scanline 1.5s linear infinite;
  pointer-events: none;
}

/* ── Hamburger Button ── */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  z-index: 33;
}
#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white, #F2F2F0);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 56px 0 0;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(20px);
  z-index: 32;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border, #222);
  pointer-events: all;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.25rem 2rem;
  color: var(--white, #F2F2F0);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border, #222);
  transition: color 0.15s, background 0.15s;
}
#mobile-menu a:hover { color: var(--off-white, #F2F2F0); background: var(--ink-2, #1a1a1a); }
#mobile-menu .mob-menu-cta {
  background: var(--red, #E8001A);
  color: #fff !important;
  margin: 1.5rem 2rem;
  width: calc(100% - 4rem);
  border-radius: 6px;
  border-bottom: none;
  font-size: 1rem;
}
#mobile-menu .mob-menu-cta:hover { background: var(--red-2, #c00016); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .fake-cards { grid-template-columns: 1fr; }
  .fake-nav ul { display: none; }
  #real-nav-links { display: none; }
  #hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  #berufsgruppen, #leistungen { padding: 2rem 1.25rem; }
  .berufs-grid, .leistungen-grid { grid-template-columns: 1fr; }
  .schmerz-grid { grid-template-columns: repeat(2, 1fr); }
  #terminal { width: calc(100vw - 2rem); left: 1rem; }
}
