/* =========================================================================
   eleman – Design System
   Aesthetik: warmes "Papier" (Creme), Tinte-Schwarz, Coral-Akzent.
   Display: Bricolage Grotesque · Body: Hanken Grotesk · Meta: JetBrains Mono
   ========================================================================= */

:root {
  /* Farben */
  --paper:      #F6F1E7;
  --paper-2:    #EFE8DA;
  --card:       #FFFDF8;
  --ink:        #15110C;
  --ink-soft:   #4A4339;
  --line:       #E2D9C8;
  --line-strong:#D2C6B0;

  --accent:     #FF5436;   /* Coral – primärer CTA / Links */
  --accent-ink: #C8350E;
  --green:      #1E5E4E;
  --blue:       #2D4BFF;
  --amber:      #F2A900;
  --pink:       #E11D74;

  /* Schrift */
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Maße */
  --r:   14px;
  --r-lg:22px;
  --r-pill: 999px;
  --maxw: 1200px;
  --shadow:   0 1px 2px rgba(21,17,12,.05), 0 8px 24px rgba(21,17,12,.06);
  --shadow-lg:0 12px 40px rgba(21,17,12,.14);
  --ring: 0 0 0 3px rgba(255,84,54,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  /* dezente Papier-Textur */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(21,17,12,.035) 1px, transparent 0);
  background-size: 22px 22px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink);
}
.muted { color: var(--ink-soft); }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r-pill);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(255,84,54,.30); }
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,84,54,.36); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(21,17,12,.03); }
.btn-lg { font-size: 18px; padding: 18px 34px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); background: color-mix(in srgb, var(--paper) 92%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15.5px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -.03em; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); display: inline-block; }
.brand small { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--ink-soft); text-transform: uppercase; align-self: flex-start; margin-top: 4px; }

.nav-toggle { display: none; font-size: 26px; line-height: 1; padding: 6px; }

/* ============================================================
   HERO – Personen-Kreise rund um zentrierten CTA (Startseite)
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 900px);
  display: grid; place-items: center;
  overflow: hidden;
  padding: 60px 0 40px;
}
.hero::before {  /* warmer Lichtschein hinter der Mitte */
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(255,236,210,.9) 0%, rgba(246,241,231,0) 70%),
    radial-gradient(40% 40% at 80% 15%, rgba(45,75,255,.07), transparent 70%),
    radial-gradient(40% 40% at 12% 80%, rgba(30,94,78,.08), transparent 70%);
}
.hero-stage { position: absolute; inset: 0; z-index: 1; }
.hero-center { position: relative; z-index: 3; text-align: center; max-width: 640px; padding: 0 18px; }
.hero-center h1 {
  font-size: clamp(40px, 7vw, 84px);
  margin: 18px 0 0;
}
.hero-center h1 .accent { color: var(--accent); }
.hero-lead { font-size: clamp(17px, 2vw, 21px); color: var(--ink-soft); margin: 20px auto 34px; max-width: 520px; }
.hero-actions { display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-actions .sub-link { font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: var(--ink-soft); }
.hero-actions .sub-link a { color: var(--accent-ink); font-weight: 700; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }

/* Porträt-Kreise */
.bubble {
  position: absolute; border-radius: 50%;
  background: var(--paper-2) center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(21,17,12,.16);
  border: 3px solid var(--card);
  z-index: 2;
  animation: float var(--dur, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}
.bubble::after { /* farbiger Ring */
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ring-color, var(--accent));
  opacity: .85;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-16px) rotate(.5deg); }
}
@media (prefers-reduced-motion: reduce) { .bubble { animation: none; } }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; font-family: var(--mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--line-strong), transparent); }

/* ---------- Stats-Band ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.stats .wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 28px 0; text-align: center; }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(28px,4vw,44px); }
.stat .l { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Sektionen ---------- */
.section { padding: 84px 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(30px,4.4vw,50px); margin: 12px 0 14px; }

/* Kategorien-Grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 16px; }
.cat-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px; transition: transform .15s, box-shadow .2s, border-color .2s;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.cat-ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--paper-2); color: var(--accent-ink); }
.cat-ico svg { width: 22px; height: 22px; }
.cat-card .t { font-weight: 700; font-size: 15.5px; line-height: 1.2; }
.cat-card .c { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }

/* ---------- Job-Karten (Marktplatz + Featured) ---------- */
.job-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 18px; }
.job-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px; transition: transform .15s, box-shadow .2s, border-color .2s;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.job-card.feat { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.job-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.logo {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 800; font-size: 17px;
}
.job-co { font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.job-co .demo-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--amber); border: 1px solid var(--amber); border-radius: 5px; padding: 1px 5px; margin-left: 6px; text-transform: uppercase; }
.job-card h3 { font-size: 21px; margin-bottom: 8px; }
.job-card .lead { color: var(--ink-soft); font-size: 15px; flex: 1; }
.feat-flag { position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: color-mix(in srgb, var(--accent) 12%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: var(--r-pill); padding: 3px 9px; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em;
  background: var(--paper-2); color: var(--ink-soft);
  border-radius: var(--r-pill); padding: 5px 11px; white-space: nowrap;
}
.tag.salary { background: color-mix(in srgb, var(--green) 12%, transparent); color: var(--green); font-weight: 600; }

/* ============================================================
   MARKTPLATZ (jobs.html)
   ============================================================ */
.market-hero { background: var(--ink); color: var(--paper); padding: 64px 0 110px; position: relative; }
.market-hero h1 { font-size: clamp(34px,5vw,58px); color: var(--paper); }
.market-hero p { color: color-mix(in srgb, var(--paper) 70%, transparent); max-width: 560px; margin-top: 14px; }
.market-hero .eyebrow { color: var(--accent); }

/* Suchleiste schwebt über dem dunklen Hero */
.searchbar {
  position: relative; z-index: 5; margin-top: -64px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 14px; display: flex; gap: 10px; flex-wrap: wrap;
}
.searchbar .field { flex: 1 1 220px; display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 12px 14px; }
.searchbar .field svg { width: 18px; height: 18px; color: var(--ink-soft); flex: none; }
.searchbar input, .searchbar select { border: none; background: none; font: inherit; font-size: 15px; color: var(--ink); width: 100%; outline: none; }
.searchbar select { cursor: pointer; }

.market-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; padding: 40px 0 90px; }
.filters { position: sticky; top: 90px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.filters h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin: 18px 0 10px; }
.filters h4:first-child { margin-top: 0; }
.fopt { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14.5px; cursor: pointer; }
.fopt input { accent-color: var(--accent); width: 16px; height: 16px; }
.fopt .cnt { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
.filters .reset { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--accent-ink); }

.results-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.results-head .count { font-family: var(--display); font-weight: 800; font-size: 22px; }
.sort { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.sort select { font: inherit; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 7px 14px; background: var(--card); cursor: pointer; }

.empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); border: 1px dashed var(--line-strong); border-radius: var(--r-lg); }

/* ============================================================
   KI-SUCHFELD (jobs.html – Signature-Element)
   ============================================================ */
.market-hero.ai-hero { padding: 60px 0 56px; }
.ai-hero h1 { max-width: 16ch; }
.ai-hero > .wrap > p { color: color-mix(in srgb, var(--paper) 72%, transparent); }

.ai-search {
  margin-top: 26px; max-width: 720px;
  display: flex; align-items: flex-end; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 12px 12px 12px 18px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.ai-search:focus-within { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); box-shadow: var(--shadow-lg), var(--ring); }
.ai-spark { flex: none; color: var(--accent); padding-bottom: 9px; }
.ai-spark svg { width: 22px; height: 22px; }
.ai-search textarea {
  flex: 1; min-width: 0; border: none; background: none; resize: none; outline: none;
  font: inherit; font-size: 17px; line-height: 1.45; color: var(--ink);
  padding: 8px 0; max-height: 180px; overflow-y: auto;
}
.ai-search textarea::placeholder { color: color-mix(in srgb, var(--ink-soft) 78%, transparent); }
.ai-send {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  transition: background .18s ease, transform .12s ease;
}
.ai-send:hover { background: var(--accent-ink); transform: translateY(-1px); }
.ai-send:active { transform: translateY(0) scale(.97); }
.ai-send svg { width: 20px; height: 20px; }

.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; max-width: 720px; }
.ai-chips .chip {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .01em;
  color: color-mix(in srgb, var(--paper) 86%, transparent);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill); padding: 7px 14px;
  transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.ai-chips .chip:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.42); color: #fff; transform: translateY(-1px); }

.ai-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .03em; color: color-mix(in srgb, var(--paper) 56%, transparent); }
.ai-note svg { width: 14px; height: 14px; color: var(--accent); }

/* „KI verstanden"-Banner über der Liste */
.ai-result { display: flex; align-items: center; flex-wrap: wrap; gap: 9px 12px; margin-bottom: 22px; padding: 13px 16px; background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--r); }
.ai-result .lbl { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); }
.ai-result .lbl svg { width: 14px; height: 14px; }
.ai-result .q { font-weight: 600; }
.ai-result .pill { font-family: var(--mono); font-size: 12px; background: var(--paper-2); color: var(--ink-soft); border-radius: var(--r-pill); padding: 4px 11px; }
.ai-result button { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--accent-ink); }
.ai-result button:hover { text-decoration: underline; }

/* ============================================================
   STELLENLISTE (jobs.html – Zeilen statt Karten)
   ============================================================ */
.job-list { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.job-row {
  display: grid; grid-template-columns: 46px minmax(0,1fr) auto 22px;
  align-items: center; gap: 18px; padding: 17px 22px;
  border-bottom: 1px solid var(--line); transition: background .15s ease;
}
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--paper); }
.job-row .logo { width: 46px; height: 46px; border-radius: 12px; font-size: 16px; }

.row-main { min-width: 0; }
.row-title { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 18px; line-height: 1.15; letter-spacing: -.01em; }
.feat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.row-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 9px; margin-top: 6px; font-size: 14px; color: var(--ink-soft); }
.row-meta b { font-weight: 600; color: var(--ink); }
.row-meta svg { width: 14px; height: 14px; vertical-align: -2px; }
.row-meta .sep { opacity: .4; }

.row-side { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; white-space: nowrap; }
.row-salary { font-family: var(--mono); font-size: 13.5px; font-weight: 600; color: var(--green); }
.row-posted { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); }
.row-go { color: var(--line-strong); transition: transform .15s ease, color .15s ease; }
.row-go svg { width: 20px; height: 20px; }
.job-row:hover .row-go { transform: translateX(3px); color: var(--accent); }

/* Türkei-Bezug-Badge (Karte + Liste + Detail) */
.tr-badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 11px; letter-spacing: .01em; color: var(--accent-ink); background: color-mix(in srgb, var(--accent) 10%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent); border-radius: var(--r-pill); padding: 2px 9px; white-space: nowrap; }
.tr-badge svg { width: 12px; height: 12px; }

/* ============================================================
   MINIMAL-MARKTPLATZ (jobs.html – Suchfeld zuoberst, zentriert)
   ============================================================ */
.market-min { width: min(100% - 40px, 760px); margin-inline: auto; padding: 64px 0 96px; }
.market-min .ai-search { max-width: 100%; margin-top: 0; }
.market-min .ai-note { display: flex; justify-content: center; gap: 8px; margin-top: 14px; color: var(--ink-soft); }
.market-min .ai-note svg { color: var(--accent); }
.market-min .ai-result { margin-top: 28px; }
.list-head { margin: 30px 0 14px; text-align: center; }
.list-head .count { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 600px) { .market-min { padding-top: 40px; } }

@media (max-width: 640px) {
  .job-row { grid-template-columns: 42px 1fr; gap: 6px 14px; padding: 15px 16px; }
  .job-row .logo { width: 42px; height: 42px; }
  .row-side { grid-column: 2; flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; margin-top: 4px; }
  .row-go { display: none; }
}

/* CTA-Band für Arbeitgeber */
.employer-band { background: var(--green); color: #fff; border-radius: var(--r-lg); padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.employer-band h2 { color: #fff; font-size: clamp(26px,3.4vw,40px); }
.employer-band p { color: rgba(255,255,255,.8); margin-top: 8px; max-width: 460px; }
.employer-band .btn-primary { background: #fff; color: var(--green); box-shadow: none; }
.employer-band .btn-primary:hover { background: var(--paper); }

/* ============================================================
   JOB-DETAIL (job.html)
   ============================================================ */
.detail-head { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 34px 0; }
.crumbs { font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft); margin-bottom: 18px; }
.crumbs a:hover { color: var(--accent-ink); }
.detail-title { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.detail-title h1 { font-size: clamp(30px,4.4vw,48px); }
.detail-co { font-weight: 600; color: var(--ink-soft); }
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; padding: 48px 0 90px; }
.prose h2 { font-size: 24px; margin: 32px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose ul { display: grid; gap: 10px; }
.prose li { position: relative; padding-left: 28px; }
.prose li::before { content: ''; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.aside-card { position: sticky; top: 90px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.aside-card .row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.aside-card .row:last-of-type { border-bottom: none; }
.aside-card .row .k { color: var(--ink-soft); }
.aside-card .row .v { font-weight: 600; text-align: right; }

/* ============================================================
   FORMULAR (inserieren.html)
   ============================================================ */
.form-wrap { max-width: 720px; margin-inline: auto; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow); }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 7px; }
.fg .hint { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); font-weight: 400; }
.fg input, .fg select, .fg textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--r); padding: 13px 15px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); box-shadow: var(--ring); }
.fg textarea { min-height: 120px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.steps { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-soft); }
.step .num { width: 28px; height: 28px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; font-family: var(--mono); font-size: 13px; font-weight: 700; }
.step.on .num { background: var(--accent); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--paper) 72%, transparent); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand { color: var(--paper); }
.site-footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.site-footer a { display: block; padding: 5px 0; font-size: 14.5px; transition: color .15s; }
.site-footer a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 24px; font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.45); }

/* ---------- Reveal on load/scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .market-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 10px 20px 18px; }
  .nav.open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 22px 10px; }
  .fg-row { grid-template-columns: 1fr; }
  .employer-band { padding: 30px; }
  /* kleinere Kreise auf Mobile, einige ausblenden */
  .bubble.hide-sm { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
