/* ============================================
   half-work.com — Bot-Portal
   Hybrid Workforce — Menschen & Agents
   ============================================ */

:root {
  /* --- Surface & Text --- */
  --bg: #07070c;
  --bg-2: #0c0c14;
  --bg-card: #13131d;
  --bg-card-hover: #191925;
  --text: #ecedf1;
  --text-soft: #b3b4c4;   /* Mikrotypo <0.85rem — höher als -dim, damit auf OLED lesbar */
  --text-dim: #8b8ca0;
  --text-mute: #5b5c70;

  /* --- Brand --- */
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --accent-soft: rgba(0, 229, 160, 0.06);
  --accent-glow: rgba(0, 229, 160, 0.35);

  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --warn: #ffb347;
  --danger: #ff6b6b;

  /* --- Radius --- */
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* --- Spacing-Scale (4pt-basis) --- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 100px;

  /* --- Content widths --- */
  --max-w: 1180px;
  --max-w-prose: 820px;
  --max-w-form: 640px;

  /* --- Type --- */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --shadow-lift: 0 20px 60px -20px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.3);

  /* --- Motion --- */
  --dur-fast: 0.2s;
  --dur-base: 0.3s;
  --dur-slow: 0.6s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* --- Global focus ring (keyboard only) --- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible, summary:focus-visible,
.bot-card:focus-visible, .cat-btn:focus-visible, .mobile-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* --- Skip link --- */
.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 0.9rem;
  z-index: 1000; transition: top 0.2s;
}
.skip-link:focus {
  top: 0; opacity: 1;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 80% -10%, rgba(0, 229, 160, 0.06), transparent 60%),
    radial-gradient(ellipse 700px 400px at 10% 30%, rgba(0, 229, 160, 0.04), transparent 60%);
  z-index: 0;
}

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

a { color: var(--accent); text-decoration: none; transition: opacity 0.2s, color 0.2s; }
a:hover { opacity: 0.85; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

::selection { background: var(--accent); color: var(--bg); }

/* --- NAV --- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 7, 12, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.logo {
  font-size: 1.125rem; font-weight: 800; letter-spacing: -0.015em;
  color: var(--text); font-variation-settings: 'opsz' 32;
}
.logo a { color: inherit; display: flex; align-items: center; gap: 10px; }
.logo-dot {
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.9); }
}
.logo span { color: var(--accent); }

nav ul { list-style: none; display: flex; align-items: center; gap: 28px; }
nav ul li a {
  color: var(--text-dim); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
nav ul li a:hover, nav ul li a.active { color: var(--text); opacity: 1; }
.nav-cta {
  background: var(--accent); color: var(--bg) !important;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 700; font-size: 0.875rem !important;
}
.nav-cta:hover { opacity: 0.9 !important; box-shadow: 0 0 22px var(--accent-glow); }
.mobile-toggle {
  display: none; color: var(--text); font-size: 1.5rem;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--border);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; transition: all 0.2s;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 30px var(--accent-glow); opacity: 1; }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* --- HERO --- */
.hero {
  padding: 80px 24px 100px;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.18; pointer-events: none;
}
.hero-inner { max-width: 940px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: 100px;
  background: var(--accent-dim); border: 1px solid rgba(0, 229, 160, 0.22);
  color: var(--accent); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 28px;
  text-transform: uppercase;
}
.hero .badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: dot-pulse 1.8s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.4rem);
  font-weight: 800; letter-spacing: -0.028em;
  line-height: 1.05; margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  background: linear-gradient(180deg, var(--accent) 0%, #7cffd1 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim); max-width: 640px;
  margin: 0 auto 36px; line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex; gap: 40px; justify-content: center;
  flex-wrap: wrap; padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 700px; margin: 0 auto;
}
.hero-trust-item {
  text-align: center;
}
.hero-trust-item .num {
  font-size: 1.9rem; font-weight: 900; color: var(--accent); line-height: 1;
}
.hero-trust-item .label {
  font-size: 0.78rem; color: var(--text-mute); text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 6px;
}

/* --- SECTION WRAPPER --- */
section { padding: 80px 0; }
.section-head { margin-bottom: 48px; max-width: 680px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-label {
  font-family: var(--mono);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); font-weight: 500; margin-bottom: 14px;
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 14px; line-height: 1.15;
}
.section-head p {
  color: var(--text-dim); font-size: 1.05rem; line-height: 1.7;
}

/* --- VALUE PROPS --- */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.value-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: rgba(0, 229, 160, 0.25); transform: translateY(-2px); }
.value-card .num {
  font-family: var(--mono); color: var(--accent); font-size: 0.75rem;
  letter-spacing: 0.12em; margin-bottom: 18px; display: block;
}
.value-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { color: var(--text-dim); font-size: 0.95rem; }

/* --- BOT GRID --- */
.bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.bot-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.bot-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--bot-color, var(--accent));
  opacity: 0.7;
}
.bot-card:hover {
  border-color: var(--bot-color, var(--accent));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  opacity: 1;
}
.bot-card-head {
  padding: 24px 24px 16px; display: flex; align-items: flex-start;
  gap: 16px;
}
.bot-avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  background: color-mix(in srgb, var(--bot-color, var(--accent)) 14%, var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--bot-color, var(--accent)) 30%, transparent);
}
.bot-card-head-text { flex: 1; min-width: 0; }
.bot-name {
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.bot-status {
  font-family: var(--mono); font-size: 0.7rem; padding: 2px 8px;
  border-radius: 100px; letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 600;
  border: 1px solid transparent;
}
.bot-status[data-status="verfügbar"] {
  background: rgba(0, 229, 160, 0.12); color: var(--accent);
  border-color: rgba(0, 229, 160, 0.2);
}
.bot-status[data-status="limitiert"] {
  background: rgba(255, 179, 71, 0.12); color: var(--warn);
  border-color: rgba(255, 179, 71, 0.2);
}
.bot-status[data-status="ausgebucht"] {
  background: rgba(255, 107, 107, 0.12); color: var(--danger);
  border-color: rgba(255, 107, 107, 0.2);
}
.bot-handle {
  font-family: var(--mono); font-size: 0.78rem; color: var(--text-mute);
}
.bot-card-body { padding: 0 24px 18px; flex: 1; }
.bot-role {
  font-size: 0.92rem; color: var(--text-dim); margin-bottom: 10px;
  font-weight: 500;
}
.bot-tagline {
  font-size: 0.95rem; color: var(--text); margin-bottom: 16px;
  line-height: 1.5;
}
.bot-skills {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.skill-tag {
  font-family: var(--mono); font-size: 0.7rem; padding: 3px 8px;
  border-radius: 6px; background: var(--accent-soft);
  color: var(--text-dim); border: 1px solid var(--border);
}
.bot-card-foot {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; background: rgba(0, 0, 0, 0.2);
}
.bot-pate-mini {
  display: flex; align-items: center; gap: 10px; min-width: 0;
}
.pate-mini-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  background: var(--bg-card-hover); border: 1px solid var(--border);
}
.pate-mini-text { min-width: 0; }
.pate-mini-label {
  font-size: 0.68rem; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pate-mini-name {
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bot-price {
  font-family: var(--mono); font-size: 0.85rem; color: var(--accent);
  font-weight: 700; white-space: nowrap;
}

/* --- CATEGORY FILTER --- */
.category-filter {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.cat-btn {
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-dim); border: 1px solid var(--border);
  background: var(--bg-card); transition: all 0.2s;
}
.cat-btn:hover { border-color: var(--border-strong); color: var(--text); }
.cat-btn.active {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}

/* --- BOT DETAIL PAGE --- */
.bot-detail {
  padding: 40px 0 80px; position: relative;
}
.breadcrumb {
  font-family: var(--mono); font-size: 0.8rem; color: var(--text-mute);
  margin-bottom: 28px; display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.4; }

.bot-detail-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px;
  align-items: center; margin-bottom: 40px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.bot-detail-head .bot-avatar {
  width: 96px; height: 96px; font-size: 3.2rem; border-radius: 22px;
}
.bot-detail-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.bot-detail-head .bot-role {
  font-size: 1.05rem; color: var(--text-dim); margin: 0;
}
.bot-detail-head .bot-handle { font-size: 0.88rem; display: block; margin-top: 6px; }

.bot-detail-body {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
}
.bot-detail-body h2 {
  font-size: 1.3rem; font-weight: 700; margin-top: 32px; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.bot-detail-body h2:first-child { margin-top: 0; }
.bot-detail-body p { color: var(--text-dim); margin-bottom: 14px; font-size: 1rem; line-height: 1.7; }
.bot-detail-body ul { list-style: none; margin-bottom: 20px; }
.bot-detail-body ul li {
  padding: 10px 0 10px 28px; position: relative;
  color: var(--text-dim); border-bottom: 1px solid var(--border);
}
.bot-detail-body ul li::before {
  content: '›'; color: var(--accent); font-weight: 700; font-size: 1.2rem;
  position: absolute; left: 6px; top: 8px;
}
.bot-detail-body ul li:last-child { border-bottom: none; }

.bot-detail-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bot-detail-skills .skill-tag { font-size: 0.82rem; padding: 6px 12px; }

.bot-sidebar > * + * { margin-top: 20px; }
.sidebar-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.sidebar-box h3 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-mute); font-weight: 600; margin-bottom: 16px;
  font-family: var(--mono);
}
.price-box .amount {
  font-size: 2.2rem; font-weight: 900; color: var(--accent);
  line-height: 1; letter-spacing: -0.02em;
}
.price-box .unit { color: var(--text-dim); font-size: 0.9rem; margin-top: 4px; }
.price-box .setup {
  font-size: 0.85rem; color: var(--text-dim); margin-top: 14px;
  padding-top: 14px; border-top: 1px dashed var(--border);
}

.pate-card { position: relative; }
.pate-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pate-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: var(--accent-dim); border: 1px solid rgba(0, 229, 160, 0.2);
}
.pate-name { font-weight: 700; font-size: 1.05rem; }
.pate-role { font-size: 0.82rem; color: var(--text-dim); }
.pate-bio { font-size: 0.9rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 16px; }
.pate-rate {
  font-family: var(--mono); font-size: 0.82rem; color: var(--accent);
  padding: 8px 12px; background: var(--accent-soft);
  border-radius: 6px; margin-bottom: 14px;
  text-align: center; border: 1px solid rgba(0, 229, 160, 0.15);
}

/* --- HOW IT WORKS --- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; margin-top: 32px;
}
.step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; z-index: 1;
}
.step-num {
  font-family: var(--mono); color: var(--accent);
  font-size: 0.85rem; margin-bottom: 12px; font-weight: 600;
  letter-spacing: 0.08em;
}
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; }

/* --- GUARANTEE --- */
.guarantee-section {
  padding: 100px 0; text-align: center;
}
.guarantee-box {
  max-width: 780px; margin: 0 auto; padding: 56px 40px;
  border-radius: var(--radius-xl); border: 1px solid rgba(0, 229, 160, 0.35);
  background: linear-gradient(135deg, var(--accent-dim), rgba(0, 229, 160, 0.02) 70%);
  position: relative; overflow: hidden;
}
.guarantee-box::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 60%);
  opacity: 0.3; pointer-events: none; z-index: 0;
}
.guarantee-box > * { position: relative; z-index: 1; }
.guarantee-box .shield {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 24px; font-weight: 700;
  box-shadow: 0 0 40px var(--accent-glow);
}
.guarantee-box h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 14px; }
.guarantee-box p {
  color: var(--text-dim); font-size: 1.05rem; line-height: 1.7;
  max-width: 560px; margin: 0 auto 24px;
}
.guarantee-box strong { color: var(--text); }

/* --- FAQ --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--accent); font-size: 1.3rem;
  transition: transform 0.2s; font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--text-dim); line-height: 1.75; }

/* --- CTA STRIP --- */
.cta-strip {
  padding: 80px 0; text-align: center;
}
.cta-strip h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); margin-bottom: 14px; font-weight: 800; }
.cta-strip p { color: var(--text-dim); max-width: 540px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-strip .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- FORMS --- */
.form-wrap {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.form-group label .hint { color: var(--text-mute); font-weight: 400; font-size: 0.8rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  border-radius: 10px; color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-status { margin-top: 14px; font-size: 0.9rem; }
.form-status.success { color: var(--accent); }
.form-status.error { color: var(--danger); }

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px; margin-top: 80px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; max-width: 320px; }
.footer-col h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-mute); font-weight: 600; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-dim); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--accent); opacity: 1; }
.footer-bottom {
  max-width: var(--max-w); margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-mute); font-size: 0.82rem; flex-wrap: wrap; gap: 14px;
}

/* --- UTILITY --- */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .value-grid, .steps { grid-template-columns: 1fr; }
  .bot-detail-body { grid-template-columns: 1fr; }
  .bot-detail-head { grid-template-columns: auto 1fr; gap: 20px; }
  .bot-detail-head .cta-col { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex; flex-direction: column; gap: 14px;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg-2); padding: 24px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-toggle { display: flex; }
  .hero { padding: 48px 20px 72px; }
  .hero-trust { gap: 24px; }
  section { padding: 60px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .bot-detail-head .bot-avatar { width: 72px; height: 72px; font-size: 2.4rem; }
  .form-wrap { padding: 28px 20px; }
}

/* ============================================
   UTILITY CLASSES — ersetzen frühere inline style=""
   ============================================ */

/* Sections */
.section-tight { padding: var(--space-10) 0 var(--space-7); }
.section-pad-top-lg { padding-top: var(--space-10); }
.section-alt { background: var(--bg-2); }

/* Heroes */
.hero--tight { padding: 64px 24px 32px; }
.hero--mid   { padding: 64px 24px 48px; }

/* Prose / Legal-Karten — generische Content-Container mit Formular-ähnlichem Look */
.prose-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: var(--max-w-prose); margin: 0 auto;
}
.prose-card h2 {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.prose-card h3 {
  font-size: 1.15rem; font-weight: 700; margin-top: 28px; margin-bottom: 10px;
}
.prose-card p { color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.prose-card p:last-child { margin-bottom: 0; }
.prose-card .eyebrow { display: block; margin-bottom: 8px; }
.prose-card .foot-note {
  color: var(--text-soft); font-size: 0.88rem; line-height: 1.6; margin-top: 8px;
}

/* Legal/Feature-Listen: Check-Bullets in Dark */
.check-list, .arrow-list, .numbered-list {
  list-style: none; margin-bottom: 16px;
}
.check-list li, .arrow-list li, .numbered-list li {
  padding: 10px 0 10px 28px; position: relative;
  color: var(--text-dim); border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.check-list li:last-child, .arrow-list li:last-child, .numbered-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓'; color: var(--accent); font-weight: 700;
  position: absolute; left: 6px; top: 10px;
}
.arrow-list li::before {
  content: '→'; color: var(--accent); font-weight: 700;
  position: absolute; left: 6px; top: 10px;
}
.numbered-list { counter-reset: step; }
.numbered-list li { counter-increment: step; }
.numbered-list li::before {
  content: counter(step) "."; color: var(--accent); font-weight: 700;
  position: absolute; left: 6px; top: 10px;
}
.list-strong-lead strong { color: var(--text); }

/* Bot-Detail Story-Block */
.story-block {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--bot-color, var(--accent));
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.story-block .eyebrow-sm {
  font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-soft); margin-bottom: 8px;
}
.story-block p { margin: 0; color: var(--text); font-style: italic; }

/* Breadcrumb */
.breadcrumb {
  font-family: var(--mono); font-size: 0.82rem; color: var(--text-soft);
  margin: 0 auto 24px; max-width: var(--max-w-prose);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.4; }

/* Bot-Detail CTA column (responsive) */
.cta-col { display: flex; justify-content: flex-end; }

/* Value-Grid Buttons (linkbare Cards) */
.value-card-link {
  text-decoration: none; color: inherit; display: block;
}
.value-card-link:hover { opacity: 1; }

/* Inhalts-/Legal-Doc-spezifisch */
.legal-doc {
  max-width: var(--max-w-prose); margin: 0 auto;
  padding: 48px 40px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.legal-doc h1 {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px;
}
.legal-doc .subtitle { color: var(--text-dim); margin-bottom: 32px; font-size: 0.95rem; }
.legal-doc h2 {
  font-size: 1.15rem; font-weight: 700; margin-top: 32px; margin-bottom: 12px;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.legal-doc h3 { font-size: 1rem; font-weight: 700; margin-top: 20px; margin-bottom: 8px; color: var(--text); }
.legal-doc p, .legal-doc li { color: var(--text-dim); line-height: 1.75; }
.legal-doc p { margin-bottom: 14px; }
.legal-doc ul, .legal-doc ol { padding-left: 24px; margin-bottom: 14px; }
.legal-doc li { margin-bottom: 6px; }
.legal-doc .draft {
  background: rgba(255, 179, 71, 0.12); border: 1px solid rgba(255, 179, 71, 0.3);
  padding: 16px 20px; border-radius: 10px; margin-bottom: 32px;
}
.legal-doc .draft strong { color: var(--warn); }

.doc-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 24px 0 16px; justify-content: center;
}
@media print {
  nav, footer, .doc-actions, .cta-strip, body::before, .skip-link { display: none !important; }
  body { background: white; color: #111; }
  .legal-doc { background: white; border: none; max-width: none; padding: 0; color: #111; }
  .legal-doc h1, .legal-doc h2, .legal-doc h3 { color: #111; }
  .legal-doc p, .legal-doc li { color: #333; }
  .legal-doc .draft { background: #fff7e6; border-color: #ffb347; color: #000; }
  .legal-doc .draft strong { color: #b8690f; }
}

/* About — Paten-Karten (nicht klickbar) */
.person-card { cursor: default; }
.person-card .bot-tagline { color: var(--text-dim); }

/* Rechtliches — Section mit Prose-Card drin */
.section-prose { padding: 40px 0; }
.section-prose.is-alt { background: var(--bg-2); }

/* Thesis-Block für About */
.thesis-card {
  max-width: 760px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.thesis-card h2 {
  font-size: 1.4rem; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.01em;
}
.thesis-card p { color: var(--text-dim); line-height: 1.75; margin-bottom: 18px; }
.thesis-card p:last-child { margin-bottom: 0; }
.thesis-card strong { color: var(--text); }

/* Small bits */
.muted-sm { color: var(--text-soft); font-size: 0.82rem; line-height: 1.5; }
.center { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.mt-gap { margin-top: var(--space-8); }
.inline-status-pill { vertical-align: middle; margin-left: 10px; font-size: 0.55em; }
.cta-inline { padding-top: var(--space-2); }
.cta-inline .btn + .btn { margin-left: var(--space-2); }

/* Nav active state works via JS */
nav ul li a[aria-current="page"] { color: var(--text); opacity: 1; }

/* Form-status live region */
.form-status { margin-top: 14px; font-size: 0.9rem; min-height: 1.3em; }
.form-status.success { color: var(--accent); }
.form-status.error { color: var(--danger); }

/* Footer note with inline links */
.legal-doc a { color: var(--accent); }
.prose-card a { color: var(--accent); }

/* AVV-page breadcrumb layout centre — align to page */
.breadcrumb.centered { max-width: 820px; }

/* Responsive step layout for cta-col */
@media (max-width: 900px) {
  .cta-col { justify-content: flex-start; }
  .cta-col .btn { width: 100%; }
}
