:root{
  --bg:#f6f8ff;
  --bg2:#ffffff;
  --panel:#ffffff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --brand:#2563eb;
  --brand2:#7c3aed;
  --border:rgba(15,23,42,.10);
  --shadow: 0 18px 50px rgba(15,23,42,.10);
  --shadow-sm: 0 10px 26px rgba(15,23,42,.08);
  --shadow-xs: 0 1px 0 rgba(15,23,42,.04);
  --shadow-card: 0 4px 24px rgba(15,23,42,.06), 0 1px 0 rgba(255,255,255,.65) inset;
  --ring: 0 0 0 4px rgba(37,99,235,.14);
  --radius: 20px;
  --radius-sm: 16px;
  --radius-lg: 26px;
  --container: 1320px;
  /* Systemfonts: keine externe Font-CDN-Abhängigkeit (Firewall/offline) */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* On very wide screens, use more horizontal space */
@media (min-width: 1700px){
  :root{ --container: 1520px; }
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-sans);
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(900px 480px at 15% 0%, rgba(37,99,235,.14), transparent 60%),
    radial-gradient(800px 520px at 85% 10%, rgba(124,58,237,.12), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2) 40%, var(--bg) 120%);
}
a{color:inherit;text-decoration:none}
a:focus{outline:none}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:none;
  box-shadow: var(--shadow-sm), var(--ring);
}
.container{max-width:var(--container);margin:0 auto;padding:24px}
.container--main{padding-bottom: 12px}
.container.narrow{max-width: 920px}
.container *{scroll-margin-top: 90px;}

h1,h2,h3{letter-spacing:-.02em}
h2{font-size: 22px}
p{line-height:1.7}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

::selection{ background: rgba(37,99,235,.22); }

.hero-card h1, .hero-card p{
  text-shadow: 0 3px 14px rgba(15,23,42,.28);
}

.topbar{
  position:sticky;top:0;z-index:20;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  background: rgba(246,248,255,.86);
  border-bottom:1px solid rgba(15,23,42,.08);
  box-shadow: 0 8px 32px rgba(15,23,42,.04);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:14px}
.brand{
  display:flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:14px;
}
.brand:hover{background: rgba(15,23,42,.04); transition:.15s ease}
.brand:focus{outline:none; box-shadow: var(--ring)}
.logo{
  width:34px;height:34px;border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 26px rgba(37,99,235,.18);
}
.logo-img{
  height:30px;
  width:auto;
  display:block;
  image-rendering:auto;
}
.menu-btn{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
  cursor:pointer;
}
.menu-btn:hover{box-shadow: var(--shadow-sm); transform: translateY(-1px); transition:.15s ease}
.menu-btn:focus{outline:none; box-shadow: var(--shadow-sm), var(--ring)}
.menu-icon{
  width:18px;height:12px; display:block; position:relative; margin:0 auto;
}
.menu-icon:before, .menu-icon:after, .menu-icon span{
  content:"";
  position:absolute; left:0; right:0;
  height:2px; border-radius:99px;
  background: rgba(15,23,42,.78);
}
.menu-icon:before{top:0}
.menu-icon:after{bottom:0}
.menu-icon span{top:5px}

.nav{
  display:flex;flex-wrap:wrap;gap:6px;align-items:center;justify-content:center;
  padding:6px;
  border:1px solid transparent;
  border-radius:999px;
  background: rgba(255,255,255,.46);
}
.nav .pill{white-space:nowrap}
.nav-portals{display:inline-flex;flex-wrap:wrap;gap:6px;align-items:center}
.pill--portal{
  border-style:dashed;
  border-color: rgba(37,99,235,.22);
  background: rgba(255,255,255,.62);
}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.75);
}
.pill:hover{border-color: rgba(37,99,235,.24); box-shadow: var(--shadow-sm); transition: .15s ease}
.pill.active{border-color: rgba(37,99,235,.35); background: rgba(37,99,235,.07)}
.right{display:flex;gap:10px;align-items:center}
.lang-switch{
  display:flex;gap:6px;align-items:center;
  padding:6px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.68);
}
.lang-switch .btn{padding:8px 10px;border-radius:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 14px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.78);
  cursor:pointer;
  box-shadow: var(--shadow-xs);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow-sm)}
.btn:active{transform: translateY(0px); box-shadow: var(--shadow-xs)}
.btn:focus{outline:none; box-shadow: var(--shadow-sm), var(--ring)}
.btn-primary{
  color:#fff;
  border-color: rgba(37,99,235,.50);
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
}
.btn-primary:hover{filter:saturate(1.04)}
.btn-ghost{background: transparent}
.btn-ghost:hover{background: rgba(15,23,42,.04)}
.btn-pill{border-radius:999px}
.hero{padding:44px 0 18px}
.hero-bleed{
  position:relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 54px 0 24px;
  overflow:hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner{
  max-width:1120px;
  margin:0 auto;
  padding: 0 24px;
}
.hero-bg{
  position:absolute; inset:0;
}
.hero-bg img{
  width:100%; height:100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
}
.hero-mesh{
  position:absolute;
  inset:0;
  background: url('/assets/mesh-gradient-soft.png') center/cover no-repeat;
  opacity: 0.42;
  mix-blend-mode: soft-light;
  pointer-events:none;
}
.hero--enriched .hero-overlay{
  background:
    linear-gradient(90deg, rgba(246,248,255,.52) 0%, rgba(246,248,255,.22) 45%, rgba(246,248,255,.12) 72%, rgba(246,248,255,.06) 100%),
    radial-gradient(900px 400px at 18% 18%, rgba(37,99,235,.12), transparent 64%),
    radial-gradient(700px 320px at 50% 80%, rgba(124,58,237,.08), transparent 68%);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(246,248,255,.44) 0%, rgba(246,248,255,.20) 48%, rgba(246,248,255,.10) 78%, rgba(246,248,255,.05) 100%),
    radial-gradient(900px 400px at 18% 18%, rgba(37,99,235,.09), transparent 64%),
    radial-gradient(700px 320px at 50% 80%, rgba(124,58,237,.06), transparent 68%);
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.steps{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:10px;
}
.step{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border-radius:18px;
  padding:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.step:hover{
  border-color: rgba(37,99,235,.18);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.step-n{
  width:28px;height:28px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  color:#fff;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
}
.step-t{font-weight:600; color: var(--text); line-height:1.3}
@media (max-width: 980px){
  .steps{grid-template-columns: 1fr}
}
.hero .card{
  position:relative;
  overflow:hidden;
}
.hero .card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(900px 180px at 20% 0%, rgba(37,99,235,.22), transparent 55%),
              radial-gradient(700px 220px at 80% 20%, rgba(124,58,237,.18), transparent 55%);
  pointer-events:none;
  opacity:.9;
}
.hero .card > *{position:relative}
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.80);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:20px;
}
.hero .card.hero-card{
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 24px 60px rgba(15,23,42,.12), 0 1px 0 rgba(255,255,255,.5) inset;
}
.hero h1{font-size: clamp(30px, 3.6vw, 48px); margin:0 0 10px; letter-spacing:-.02em}
.hero p{margin:0;color:var(--muted);line-height:1.6}
.kpis{display:grid;gap:12px}
.kpi{
  padding:14px;border-radius:18px;border:1px solid rgba(15,23,42,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.74));
  box-shadow: 0 2px 14px rgba(15,23,42,.05);
}
.kpi strong{display:block;margin-bottom:6px}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}
.col-6{grid-column: span 6}
.col-12{grid-column: span 12}
.section-title{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin:26px 0 12px}
.section-title h2{margin:0;font-size:20px}
.section-title--elevated{
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 0 0 18px;
}
.section-title--elevated h2{
  position: relative;
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  padding-bottom: 12px;
}
.section-title--elevated h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}
.section-title__sub{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  max-width: 58ch;
}
.muted{color:var(--muted)}
.list{display:grid;gap:12px}
.item{
  border:1px solid var(--border);
  background: rgba(255,255,255,.74);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow-xs);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.item:hover{border-color: rgba(37,99,235,.18); box-shadow: var(--shadow-sm); transform: translateY(-1px)}
.item h3{margin:0 0 6px;font-size:16px}
.item--feature{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.76));
  border-color: rgba(15,23,42,.08);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.item--feature::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: .88;
  pointer-events: none;
}
.item--steps{
  padding: 18px;
  border-color: rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow-card);
}
.home-panel{
  margin: 20px 0 10px;
  padding: 28px 24px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.74));
  box-shadow: 0 10px 42px rgba(15,23,42,.045), 0 1px 0 rgba(255,255,255,.85) inset;
}
.home-panel--audience{ margin-top: 30px; }
.home-panel--process{ margin-bottom: 14px; }
.home-panel__grid{ margin-top: 4px; }
.meta{display:flex;flex-wrap:wrap;gap:10px;color:var(--muted);font-size:14px}
.tag{padding:4px 10px;border-radius:999px;border:1px solid var(--border);background:rgba(15,23,42,.04)}
.tag--salary{
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.24);
  color: rgba(5,150,105,1);
  font-weight: 700;
}
.tag--new{
  background: rgba(37,99,235,.10);
  border-color: rgba(37,99,235,.24);
  color: rgba(37,99,235,1);
  font-weight: 750;
}
.tag--featured{
  background: rgba(124,58,237,.10);
  border-color: rgba(124,58,237,.26);
  color: rgba(124,58,237,1);
  font-weight: 750;
}
.tag--hot{
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.28);
  color: rgba(220,38,38,1);
  font-weight: 800;
}

/* Job-Detailseite */
.job-hero{
  margin: 0 0 14px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow);
}
.job-hero__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.job-hero__tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items:center;
}
.job-hero__title{
  margin: 12px 0 10px;
  font-size: clamp(26px, 3.0vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.job-hero__meta{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.job-meta-item{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  padding: 10px 12px;
}
.job-meta-label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.job-meta-value{
  margin-top: 6px;
  font-weight: 750;
  color: var(--text);
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.job-id{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,.04);
}
.job-hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.job-detail-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  align-items:start;
}
.job-detail-main h2.job-detail-h{
  margin: 0 0 10px;
  font-size: 16px;
}
.job-detail-side{
  position: sticky;
  top: 92px;
}
.job-side-h{
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.job-qr-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items:start;
}
.job-qr{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  padding: 10px;
  text-align:center;
}
.job-qr__img{
  width: 100%;
  height: auto;
  max-width: 180px;
  border-radius: 12px;
  margin-top: 8px;
  background: #fff;
}

@media (max-width: 980px){
  .job-detail-grid{
    grid-template-columns: 1fr;
  }
  .job-detail-side{
    position: relative;
    top: auto;
  }
  .job-hero__meta{
    grid-template-columns: 1fr;
  }
}
.form{display:grid;gap:10px}
.label{display:grid;gap:6px;color:var(--muted);font-size:14px}
.input, .textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.92);
  color:var(--text);
}
.input:focus, .textarea:focus, select:focus{outline:none; box-shadow: var(--ring); border-color: rgba(37,99,235,.35)}
.textarea{min-height: 140px; resize: vertical}
.alert{padding:12px 12px;border-radius:16px;border:1px solid var(--border);background:rgba(255,255,255,.78)}
.alert-error{border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.08)}
.alert-success{border-color: rgba(34,197,94,.32); background: rgba(34,197,94,.10)}
.divider{height:1px;background:var(--border);margin:14px 0}
.footer{
  margin-top: 36px;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid rgba(15,23,42,.09);
  background: linear-gradient(180deg, transparent, rgba(37,99,235,.03));
}

/* Lange Texte (Impressum/Datenschutz etc.) */
.prose{
  color: var(--muted);
  line-height: 1.85;
  white-space: pre-wrap;
}
.prose--legal{
  white-space: normal;
}
.prose--legal .legal-p{
  margin: 0 0 1rem;
}
.prose--legal .legal-p:last-child{
  margin-bottom: 0;
}
.prose a{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.admin-shell{display:grid;grid-template-columns:260px 1fr;gap:14px;align-items:start}
.sidebar{position:sticky;top:78px}
.sidebar .pill{width:100%;justify-content:space-between}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid var(--border);text-align:left;vertical-align:top}
.table th{color:var(--muted);font-size:13px;font-weight:600}
.table tbody tr:hover{background: rgba(37,99,235,.04)}
.actions{display:flex;gap:8px;flex-wrap:wrap}
.small{font-size:13px}
@media (max-width: 880px){
  .hero-grid{grid-template-columns:1fr}
  .admin-shell{grid-template-columns:1fr}
  .sidebar{position:relative;top:auto}
  .topbar-inner{flex-wrap:wrap}
  .menu-btn{display:inline-flex; align-items:center; justify-content:center}
  .nav{
    display:none;
    width:100%;
    justify-content:flex-start;
    padding:10px;
    border-color: var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .pill{width:100%; justify-content:space-between; border-radius:14px}
  .right{
    width:100%;
    justify-content:space-between;
  }
}

@media (max-width: 560px){
  .container{padding:18px}
  .home-panel{padding: 20px 16px 24px}
  .lang-switch{padding:4px}
  .lang-switch .btn{padding:7px 9px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .btn, .menu-btn, .pill, .item, .step, .brand, .about-mission-card, .about-service-card{transition:none !important}
  .btn:hover, .item:hover, .step:hover, .pill:hover, .menu-btn:hover, .about-service-card:hover{transform:none !important}
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(246,248,255,.40) 0%, rgba(246,248,255,.18) 55%, rgba(246,248,255,.10) 100%),
      radial-gradient(900px 400px at 18% 18%, rgba(37,99,235,.09), transparent 64%),
      radial-gradient(700px 320px at 50% 80%, rgba(124,58,237,.06), transparent 68%);
  }
}

/* ——— Innere Seiten: Kontakt, News, Jobs ——— */
.page-hero{
  margin: 0 calc(50% - 50vw);
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(820px 240px at 10% 0%, rgba(37,99,235,.12), transparent 58%),
    radial-gradient(640px 200px at 92% 8%, rgba(124,58,237,.09), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(246,248,255,.45));
}
.page-hero-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero h1{
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: -0.02em;
}
.page-hero p{
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}
.page-hero .page-hero-lead{
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}
.page-hero .page-hero-lead .legal-p{
  margin: 0 0 0.65rem;
}
.page-hero .page-hero-lead .legal-p:last-child{
  margin-bottom: 0;
}
.page-hero-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.page-hero-cta{ flex-shrink: 0; }
.page-hero--pro{
  padding: 32px 0 26px;
}
.page-hero-kicker{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.page-hero-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
@media (min-width: 640px){
  .page-hero-actions{ align-items: flex-end; }
}

/* Sanfter Mesh-Hintergrund für innere Seiten-Heroes */
.page-hero--mesh{
  position: relative;
  overflow: hidden;
}
.page-hero--mesh::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/mesh-gradient-soft.png') center/cover no-repeat;
  opacity: 0.38;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.page-hero--mesh .page-hero-inner,
.page-hero--mesh.page-hero .page-hero-inner{
  position: relative;
  z-index: 1;
}

/* ——— Über uns ——— */
.about-hero .about-hero__company{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 650;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.about-hero__lead{
  margin: 0;
  max-width: 58ch;
  line-height: 1.65;
  color: var(--muted);
  font-size: 17px;
}
.about-hero__actions{
  align-items: stretch;
  margin-top: 16px;
}
@media (min-width: 720px){
  .about-hero__actions{ align-items: flex-start; }
}
.about-hero__layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 28px 36px;
  align-items: center;
}
.about-hero__copy{
  min-width: 0;
}
.about-hero__figure{
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(37,99,235,.15);
  background: rgba(255,255,255,.55);
  box-shadow:
    0 20px 50px rgba(15,23,42,.12),
    0 1px 0 rgba(255,255,255,.8) inset;
}
.about-hero__img{
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 900px){
  .about-hero__layout{
    grid-template-columns: 1fr;
  }
  .about-hero__figure{
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

.faq-hero__layout,
.contact-hero__layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
  gap: 24px 32px;
  align-items: center;
}
.faq-hero__art,
.contact-hero__art{
  margin: 0;
  justify-self: end;
}
.faq-hero__img,
.contact-hero__img{
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,.6);
}
@media (max-width: 760px){
  .faq-hero__layout,
  .contact-hero__layout{
    grid-template-columns: 1fr;
  }
  .faq-hero__art,
  .contact-hero__art{
    justify-self: center;
    order: -1;
  }
  .faq-hero__img,
  .contact-hero__img{
    max-width: 220px;
  }
}

.about-page{
  padding-bottom: 32px;
}
.about-band{
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
}
.about-band--intro{
  padding-top: 22px;
}
.about-band--tight{
  padding-top: 12px;
}
.about-band--faq{
  padding-bottom: 8px;
}
.about-intro-card{
  padding: 26px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37,99,235,.14);
  background:
    linear-gradient(165deg, rgba(255,255,255,.99), rgba(241,245,255,.55));
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 16px 44px rgba(15,23,42,.07);
}
.about-section-label{
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand);
}
.about-intro-card__body{
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
}
.about-intro-card--structured{
  padding-bottom: 30px;
}
.about-company-stack{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-company-name{
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--text);
  max-width: 52ch;
}
.about-mission-callout{
  margin: 0;
  padding: 20px 22px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-left-width: 4px;
  border-left-color: var(--brand);
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.07), rgba(124, 58, 237, 0.05));
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}
.about-mission-callout__label{
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.about-mission-callout__text{
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  font-weight: 650;
  color: var(--text);
  max-width: 65ch;
}
.about-capabilities__label{
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 750;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.about-capability-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-capability-list li{
  margin: 0;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 650;
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.about-band--mission{
  padding-top: 8px;
}
.about-section-head--mission{
  margin-bottom: 20px;
}
.about-section-head--mission .about-section-head__title{
  position: relative;
  padding-bottom: 12px;
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.about-section-head--mission .about-section-head__title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}
.about-mission-trio{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.about-mission-card{
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.45));
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.about-mission-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}
.about-mission-card--paths::before{
  background: linear-gradient(90deg, var(--brand), #60a5fa);
}
.about-mission-card--approach::before{
  background: linear-gradient(90deg, var(--brand2), #a78bfa);
}
.about-mission-card:hover{
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.09);
}
.about-mission-card__title{
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.about-mission-card__text{
  margin: 0;
  line-height: 1.72;
  font-size: 14px;
  color: var(--muted);
}
.about-pillar--mission-col{
  min-height: 100%;
}
@media (max-width: 980px){
  .about-mission-trio{
    grid-template-columns: 1fr;
  }
}
.about-pillars{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
}
.about-pillar{
  padding: 22px 24px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.about-pillar:hover{
  border-color: rgba(37,99,235,.18);
  box-shadow: var(--shadow-sm);
}
.about-pillar--accent{
  border-color: rgba(124,58,237,.2);
  background: linear-gradient(155deg, rgba(255,255,255,.98), rgba(245,243,255,.72));
}
.about-pillar__title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.about-pillar__body{
  margin: 0;
  line-height: 1.7;
  white-space: pre-wrap;
  font-size: 14px;
}
.about-pillar__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,.08);
}
.about-section-head{
  margin-bottom: 18px;
}
.about-section-head__title{
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 750;
  letter-spacing: -0.02em;
}
.about-service-grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}
.about-service-card{
  margin: 0;
  padding: 20px 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 32px rgba(15,23,42,.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.about-service-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  border-radius: 4px 0 0 4px;
}
.about-service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,23,42,.09);
}
.about-service-card__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--brand);
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.16);
}
.about-service-card__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.about-service-card__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.about-split{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  align-items: start;
}
.about-split__title{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.about-split__col{
 padding: 22px 24px;
 border-radius: var(--radius);
 border: 1px solid var(--border);
 background: rgba(255,255,255,.9);
}
.about-split__col--values{
  background:
    linear-gradient(175deg, rgba(255,255,255,.98), rgba(248,250,252,.9));
}
.about-step-list,
.about-value-list{
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.about-step-list{
  list-style: decimal;
}
.about-value-list{
  list-style: none;
  padding-left: 0;
}
.about-value-list li{
  position: relative;
  padding-left: 22px;
}
.about-value-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 2px 6px rgba(37,99,235,.35);
}
.about-audience-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
}
.about-audience-card{
  padding: 22px 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37,99,235,.14);
  background: linear-gradient(160deg, rgba(255,255,255,.99), rgba(237,242,255,.5));
  box-shadow: var(--shadow-sm);
}
.about-audience-card--employer{
  border-color: rgba(15,23,42,.1);
  background: linear-gradient(160deg, rgba(255,255,255,.99), rgba(248,250,252,.85));
}
.about-audience-card__title{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 750;
}
.about-audience-card__text{
  margin: 0 0 16px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 14px;
  white-space: pre-wrap;
}
.about-faq-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}
.about-faq-card{
  padding: 18px 20px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 28px rgba(15,23,42,.05);
}
.about-faq-card--cta{
  border-color: rgba(37,99,235,.22);
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(237,242,255,.65));
}
.about-faq-card__q{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.about-faq-card__a{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.about-faq-card__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 520px){
  .about-band{ padding-left: 16px; padding-right: 16px; }
  .about-intro-card{ padding: 20px 18px 22px; }
}
.btn-pill{
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  font-size: 14px;
}
.btn-minw{
  min-width: 12.5rem;
  justify-content: center;
}
.list-empty{
  margin-top: 20px;
  padding: 22px;
  text-align: center;
}
.list-section-intro{
  margin: 6px 0 14px;
  max-width: 72ch;
}
.list-section-pro{ margin-top: 26px; }
.list-section-head{
  margin-bottom: 4px;
}
.list-cards{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.list-card{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.list-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  border-radius: var(--radius) 0 0 var(--radius);
}
.list-card:hover{
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.list-card--featured{
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 255, 0.92));
}
.list-card--featured::before{ width: 6px; }
.list-card--partner::before{
  background: linear-gradient(180deg, #64748b, var(--brand));
}
.list-card__main{
  padding: 20px 22px 20px 28px;
}
.list-card__row1{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 10px;
}
.list-card__idx{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.list-card__time{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.list-card__title{
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.list-card--featured .list-card__title{
  font-size: clamp(18px, 2.2vw, 22px);
}
.list-card__title-link{
  color: var(--text);
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 2px), rgba(37, 99, 235, 0.35) 2px);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease;
}
.list-card__title-link:hover{
  background-size: 100% 100%;
}
.list-card__excerpt{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.list-card__cta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.65));
  border-left: 1px solid var(--border);
}
.tag--accent{
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.09);
  color: var(--brand);
  font-weight: 600;
  font-size: 12px;
}
.tag--soft{
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  font-size: 12px;
}
.jobs-anchor-nav--pro{
  margin: 12px 0 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 760px){
  .list-card{
    grid-template-columns: 1fr;
  }
  .list-card__cta{
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
  }
  .btn-minw{
    min-width: 10rem;
    flex: 1 1 auto;
  }
}

/* Startseite: Job-Bereich + Karten */
.home-jobs-band--visual{
  position: relative;
  overflow: hidden;
}
@media (min-width: 901px){
  .home-jobs-band--visual{
    padding-right: clamp(22px, 32vw, 360px);
  }
}
.home-jobs-band__deco{
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 340px);
  max-height: 92%;
  pointer-events: none;
  opacity: 0.92;
}
.home-jobs-band__illo{
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 18px 48px rgba(15,23,42,.1);
  object-fit: contain;
}
@media (max-width: 900px){
  .home-jobs-band__deco{
    position: static;
    transform: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 8px;
    opacity: 1;
  }
  .section-title--home-jobs{ position: relative; z-index: 1; }
}
.home-jobs-band{
  margin-top: 40px;
  padding: 28px 22px 34px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.97) 0%, rgba(241,245,255,.78) 48%, rgba(250,252,255,.95) 100%);
  border: 1px solid rgba(37,99,235,.12);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255,255,255,.85) inset,
    0 14px 40px rgba(15,23,42,.07);
}
.home-jobs-kicker{
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.home-jobs-band .section-title--home-jobs h2{
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-title--home-jobs{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 20px;
  margin-top: 0;
  margin-bottom: 22px;
}
.section-title--home-jobs .section-title__lead{
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 54ch;
  color: var(--muted);
}
.home-jobs-all-link{
  border-color: rgba(37,99,235,.2);
  background: rgba(255,255,255,.9);
  font-weight: 600;
}
.home-jobs-all-link:hover{
  border-color: rgba(37,99,235,.35);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.home-jobs-empty{
  margin-top: 0;
  padding: 28px 24px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px dashed rgba(15,23,42,.14);
  background: rgba(255,255,255,.65);
}
.list-cards--home{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  margin-top: 0;
}
.list-card--home{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  grid-template-columns: unset;
  border-radius: var(--radius);
  border-color: rgba(15,23,42,.09);
  background: rgba(255,255,255,.98);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 12px 36px rgba(15,23,42,.08);
}
.list-card--home:hover{
  border-color: rgba(37,99,235,.2);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 18px 46px rgba(37,99,235,.12);
  transform: translateY(-3px);
}
.list-card--home.list-card--featured{
  border-color: rgba(37,99,235,.22);
  background: linear-gradient(160deg, rgba(255,255,255,.99), rgba(238,242,255,.88));
}
.list-card--home .list-card__main{
  flex: 1 1 auto;
  padding: 22px 22px 16px 26px;
}
.list-card--home .list-card__row1{
  margin-bottom: 12px;
  gap: 7px 9px;
}
.list-card--home .list-card__row1 .list-card__time{
  flex-basis: 100%;
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(15,23,42,.06);
  font-size: 12px;
  font-weight: 650;
  color: #64748b;
}
.list-card--home .list-card__title{
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.28;
}
.list-card--home .list-card__excerpt{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.65;
  font-size: 14px;
}
.list-card--home .list-card__cta{
  margin-top: auto;
  flex-direction: row;
  flex-wrap: wrap;
  border-left: none;
  border-top: 1px solid rgba(15,23,42,.08);
  justify-content: stretch;
  gap: 10px;
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, rgba(248,250,252,.98), rgba(255,255,255,.92));
}
.list-card--home .list-card__cta .btn-primary{
  flex: 1 1 auto;
  min-width: 8.5rem;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
}
.list-card--home .list-card__cta .btn-pill:not(.btn-primary){
  flex: 1 1 auto;
  min-width: 8.5rem;
  border: 1px solid rgba(37,99,235,.25);
  background: rgba(255,255,255,.95);
  font-weight: 650;
}
.list-card--home .list-card__cta .btn-pill:not(.btn-primary):hover{
  border-color: rgba(37,99,235,.4);
  background: #fff;
}
@media (max-width: 520px){
  .home-jobs-band{
    margin-left: -6px;
    margin-right: -6px;
    padding: 22px 16px 28px;
    border-radius: var(--radius);
  }
  .section-title--home-jobs{
    flex-direction: column;
    align-items: stretch;
  }
  .home-jobs-all-link{ text-align: center; }
}
@media (max-width: 480px){
  .list-card--home .list-card__cta .btn{
    flex: 1 1 100%;
    min-width: unset;
  }
}
.job-details--in-card{
  margin-top: 14px;
  max-width: 100%;
}
.contact-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip{
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(15,23,42,.03);
}
.chip:hover{
  border-color: rgba(37,99,235,.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  transition: 0.15s ease;
}
.trust-list{
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.trust-list li{ margin: 0 0 8px; }
.contact-form-card .section-title h2{ font-size: 17px; }
.contact-side-card h3{ font-size: 17px; }

.jobs-anchor-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 8px;
}
.jobs-layout{
  display:grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 14px;
  align-items:start;
  margin-top: 14px;
}
.jobs-filters{
  position: sticky;
  top: 92px;
  padding: 16px;
}
.jobs-filters__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.jobs-filters__title{
  margin:0;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.jobs-filters__form{ display:grid; gap:10px; }
.jobs-filters__group{ display:grid; gap:8px; }
.jobs-filters__group-title{ font-size: 13px; color: var(--muted); font-weight: 650; }
.jobs-check{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  user-select: none;
}
.jobs-check input{ width: 16px; height: 16px; }
.jobs-filters__count{ margin-top: 6px; }
.jobs-no-results{ margin-top: 12px; }
.jobs-results .jobs-section:first-child{ margin-top: 0; }
.jobs-results .jobs-section{ margin-top: 16px; }
.jobs-section{
  margin-top: 22px;
}
.jobs-section__title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.jobs-section__sub{
  margin: 0 0 12px;
  line-height: 1.6;
  max-width: 72ch;
}
.job-details{
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  background: rgba(255,255,255,.5);
}

@media (max-width: 980px){
  .jobs-layout{
    grid-template-columns: 1fr;
  }
  .jobs-filters{
    position: relative;
    top: auto;
  }
}
.job-details summary{
  cursor: pointer;
  font-weight: 650;
  color: var(--brand);
  list-style: none;
}
.job-details summary::-webkit-details-marker{ display: none; }
.job-details[open] summary{
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.job-details__inner{
  display: grid;
  gap: 14px;
}
.job-details__block strong{
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text);
}
.job-details__text{
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* Honeypot: unsichtbar für Nutzer, nicht per display:none (Bots tappen rein) */
.hp-trap{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}

/* Barrierefreiheit: Sprung zum Inhalt */
.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  z-index:100;
  padding:12px 16px;
  background:var(--accent);
  color:#fff;
  font-weight:600;
  border-radius:0 0 8px 0;
  text-decoration:none;
}
.skip-link:focus{
  left:12px;
  top:12px;
  outline:2px solid #fff;
  outline-offset:2px;
}

/* Cookie-Hinweis (Einwilligung notwendig / optional) */
.cookie-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:50;
  padding:14px 16px;
  background:rgba(15,23,42,.92);
  color:#f8fafc;
  border-top:1px solid rgba(255,255,255,.12);
  box-shadow:0 -8px 32px rgba(15,23,42,.25);
}
.cookie-bar[hidden]{ display:none !important; }
.cookie-bar__inner{
  max-width:1120px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cookie-bar__text{
  font-size:14px;
  line-height:1.55;
  flex:1;
  min-width:min(100%, 280px);
}
.cookie-bar__btn{ flex-shrink:0; }
.cookie-bar__inner--split{
  flex-direction:column;
  align-items:stretch;
}
.cookie-bar__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
@media (min-width:720px){
  .cookie-bar__inner--split{
    flex-direction:row;
    align-items:center;
  }
}

/* FAQ <details> */
.faq-item{
  border-bottom:1px solid var(--border);
}
.faq-item:last-child{ border-bottom:0; }
.faq-item__q{
  cursor:pointer;
  list-style:none;
  padding:16px 18px;
  font-weight:650;
  font-size:16px;
  letter-spacing:-0.02em;
}
.faq-item__q::-webkit-details-marker{ display:none; }
.faq-item__q::after{
  content:'+';
  float:right;
  color:var(--brand);
  font-weight:700;
}
.faq-item[open] .faq-item__q::after{ content:'–'; }
.faq-item__a{
  padding:0 18px 16px;
  font-size:15px;
  line-height:1.65;
}

