@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #FAF8F5;
  --surface: #F3ECE3;
  --surface-2: #EAD9CE;
  --ink: #1C1512;
  --muted: #6E6259;
  --primary: #7A1128;
  --primary-2: #9A1830;
  --primary-dark: #430A16;
  --accent: #A9793C;
  --accent-light: #D8B77E;
  --line: #E3D5C6;
  --ok: #3E6B4F;
  --pending: #A9793C;
  --radius: 10px;
  --radius-lg: 18px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,245,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 5px;
}

.logo .accent { color: var(--primary); font-weight: 500; }

nav.main-nav {
  display: flex;
  gap: 2px;
}

nav.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all .15s ease;
}
nav.main-nav a:hover { color: var(--ink); background: var(--surface); }
nav.main-nav a.active { color: var(--primary); background: var(--surface); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { background: var(--accent-light); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { border-color: #fff; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ===== Sections ===== */
section { padding: 100px 0; }
.section-tight { padding: 68px 0; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--accent-light); }
.eyebrow.on-dark::before { background: var(--accent-light); }

/* ===== Hero ===== */
.hero { padding: 60px 0 84px; position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: 'IBM Plex Mono', monospace;
}
.badge .seal {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero p.lead { font-size: 18px; color: var(--muted); max-width: 500px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Audit log visual */
.audit-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 4px;
  position: relative;
}
.audit-card-inner {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 22px;
}
.audit-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.audit-card-head .dots { display: flex; gap: 6px; }
.audit-card-head .dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.audit-card-head .title { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

.audit-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
}
.audit-row:last-child { border-bottom: none; }
.audit-row .tc { color: rgba(255,255,255,0.4); }
.audit-row .desc { color: rgba(255,255,255,0.85); font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 500; }
.audit-row .status { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.audit-row .status .dot { width: 6px; height: 6px; border-radius: 50%; }
.audit-row .status.pass { color: #8FBF9F; }
.audit-row .status.pass .dot { background: #8FBF9F; }
.audit-row .status.pending { color: var(--accent-light); }
.audit-row .status.pending .dot { background: var(--accent-light); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-strip .cell {
  background: var(--bg);
  padding: 18px 14px;
  text-align: center;
}
.stat-strip .cell .v {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}
.stat-strip .cell .l {
  font-size: 11.5px;
  color: var(--muted);
}

/* ===== Section head ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head .link-arrow {
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

/* ===== Service cards ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.services-grid-2col { grid-template-columns: repeat(2, 1fr); }

.service-card {
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(122,17,40,0.10); }
.service-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.service-card.fill { background: var(--primary); color: #fff; border-color: var(--primary); }

.service-card .icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.service-card.dark .icon, .service-card.fill .icon { border-color: rgba(255,255,255,0.4); color: #fff; }

.service-card h3 { font-size: 21px; margin-bottom: 10px; font-weight: 600; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.service-card.dark p, .service-card.fill p { color: rgba(255,255,255,0.78); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary-dark);
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
}
.service-card.dark .tag, .service-card.fill .tag { background: rgba(255,255,255,0.14); color: #fff; }

/* ===== Why us ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.why-panel {
  border-radius: var(--radius-lg);
  background: var(--ink);
  padding: 36px;
  position: relative;
  color: #fff;
}
.why-panel .seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--accent-light);
  margin-bottom: 26px;
}
.why-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-facts .fact { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; }
.why-facts .fact .v { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.why-facts .fact .l { font-size: 12.5px; color: rgba(255,255,255,0.55); }

.why-content h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 20px; }
.why-content p.lead { color: var(--muted); font-size: 16.5px; margin-bottom: 32px; max-width: 480px; }

.check-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.check-item { display: flex; gap: 16px; align-items: flex-start; }
.check-item .icon-circle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.check-item strong { display: block; font-size: 15.5px; margin-bottom: 2px; }
.check-item span { font-size: 13.5px; color: var(--muted); }

/* ===== CTA band ===== */
.cta-band {
  background: var(--primary-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 68px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(217,183,126,0.14), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(154,24,48,0.5), transparent 45%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; }
.cta-band .highlight { color: var(--accent-light); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; font-size: 16.5px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
footer { background: var(--ink); color: rgba(255,255,255,0.68); padding: 76px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; color: #fff;
  margin-bottom: 16px;
}
.footer-grid p.desc { font-size: 14px; max-width: 320px; margin-bottom: 24px; }

.footer-contact { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: 13.5px; }
.footer-contact .ic {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent-light);
}

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 18px; font-weight: 500;
}
.footer-col a { display: block; font-size: 14px; margin-bottom: 12px; color: rgba(255,255,255,0.7); transition: color .15s; }
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12.5px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .made { display: flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; }
.footer-bottom .made .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); }

/* ===== Page header (sub-pages) ===== */
.page-hero { padding: 64px 0 56px; background: var(--surface); }
.page-hero h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 18px; }
.page-hero p.lead { font-size: 16.5px; color: var(--muted); max-width: 640px; }

/* Mission / vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.mv-card { border-left: 3px solid var(--primary); padding-left: 28px; }
.mv-card.alt { border-left-color: var(--accent); }
.mv-card .eyebrow { margin-bottom: 8px; }
.mv-card h3 { font-size: 26px; margin-bottom: 14px; }
.mv-card p { color: var(--muted); }
.mv-card.dark-ctx p { color: rgba(255,255,255,0.7); }
.mv-card.dark-ctx h3 { color: #fff; }

.dark-section { background: var(--primary-dark); color: #fff; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--surface); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.value-card .icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--ink); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--muted); }

/* Timeline */
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.timeline-item .year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px; font-weight: 600; color: var(--primary);
  margin-bottom: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.timeline-item p { color: var(--muted); font-size: 14.5px; }

/* Highlights */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.highlights-grid .icon { width: 52px; height: 52px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.highlights-grid h3 { font-size: 19px; color: #fff; margin-bottom: 8px; }
.highlights-grid p { color: rgba(255,255,255,0.78); font-size: 13.5px; }
.fill-section { background: var(--primary); color: #fff; }

/* Platforms */
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.platform-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 24px; text-align: center; background: #fff; }
.platform-card .icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: var(--ink); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.platform-card h3 { font-size: 19px; margin-bottom: 6px; }
.platform-card span { font-size: 13.5px; color: var(--muted); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-item .index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600; color: var(--accent-light);
  margin-bottom: 10px; letter-spacing: 0.05em;
}
.process-item h3 { font-size: 18px; color: #fff; margin-bottom: 6px; }
.process-item p { font-size: 13.5px; color: rgba(255,255,255,0.65); }

/* Karriere */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { background: var(--surface); border-radius: var(--radius); padding: 28px; }
.benefit-card .icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--surface-2); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.benefit-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.benefit-card p { font-size: 13.5px; color: var(--muted); }

.job-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; margin-bottom: 20px; background: #fff; }
.job-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.job-head h3 { font-size: 23px; margin-bottom: 10px; }
.job-meta { display: flex; gap: 18px; font-size: 13.5px; color: var(--muted); flex-wrap: wrap; font-family: 'IBM Plex Mono', monospace; }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-card > p.desc { color: var(--muted); margin-bottom: 18px; }
.job-card .req-title { font-weight: 700; margin-bottom: 12px; font-size: 14px; }
.req-list { display: flex; flex-direction: column; gap: 10px; }
.req-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); list-style: none; }
.req-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Forms */
.form-card { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; }
.form-card h3 { font-size: 25px; margin-bottom: 8px; }
.form-card p.sub { color: var(--muted); margin-bottom: 28px; font-size: 14.5px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); }
.field-hint { font-size: 12px; color: var(--muted); margin-top: -2px; }
.field input.error { border-color: #b3261e; }
.field-hint.error { color: #b3261e; font-weight: 600; }
.field textarea { resize: vertical; min-height: 110px; }
.form-card button.btn { width: 100%; justify-content: center; margin-top: 8px; padding: 15px; font-size: 14.5px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { font-size: 21px; margin-bottom: 24px; color: #fff; }
.contact-info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-row .ic {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-row strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.contact-info-row span, .contact-info-row a { font-size: 13.5px; color: rgba(255,255,255,0.65); }

.legal-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.9;
}
.legal-strip strong { color: var(--ink); }

/* Impressum */
.impressum-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
.impressum-block { margin-bottom: 36px; }
.impressum-block h2 { font-size: 21px; margin-bottom: 16px; }
.impressum-block p { color: var(--muted); margin-bottom: 6px; font-size: 14.5px; }
.impressum-block strong { color: var(--ink); }
.notice-box { background: var(--surface-2); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; font-size: 14.5px; }
.quick-contact { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 28px; }
.quick-contact h3 { font-size: 15px; margin-bottom: 16px; color: #fff; }
.quick-contact p { font-size: 13.5px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; font-size: 14px; margin-top: 24px; }

/* Datenschutz */
.privacy-hero { text-align: center; padding: 64px 0 56px; background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%); }
.privacy-hero .shield-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--primary); background: #fff;
}
.privacy-hero h1 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 16px; }
.privacy-hero p.lead { max-width: 600px; margin: 0 auto; }

.privacy-section { background: var(--surface); border-radius: var(--radius); padding: 32px; margin-bottom: 24px; }
.privacy-section h2 { font-size: 24px; display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.privacy-section h2 svg { color: var(--primary); flex-shrink: 0; }
.privacy-section h3 { font-size: 16.5px; margin: 20px 0 10px; }
.privacy-section h3:first-of-type { margin-top: 0; }
.privacy-section p { color: var(--muted); margin-bottom: 12px; font-size: 14.5px; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section .info-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 16px 0; }
.privacy-section .info-box p { color: var(--ink); margin-bottom: 4px; }
.privacy-section .info-box strong { display: block; margin-bottom: 8px; font-size: 16.5px; }

.rights-box { background: var(--surface-2); border-radius: var(--radius); padding: 24px; margin-top: 16px; }
.rights-box .right-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.rights-box .right-item:last-child { margin-bottom: 0; }
.rights-box .right-item svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.rights-box .right-item p { margin-bottom: 0; color: var(--muted); }
.rights-box .right-item strong { color: var(--ink); }

.privacy-contact-box { background: var(--surface-2); border-radius: var(--radius); padding: 24px; }
.privacy-contact-box strong { display: block; margin-bottom: 8px; font-size: 16.5px; color: var(--ink); }
.privacy-contact-box p { color: var(--muted); margin-bottom: 4px; }

/* Thank you page */
.thanks-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--primary-dark); color: #fff; text-align: center; padding: 24px;
}
.thanks-box { max-width: 560px; }
.thanks-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 32px;
}
.thanks-box h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 18px; }
.thanks-box p { color: rgba(255,255,255,0.7); font-size: 16.5px; margin-bottom: 36px; }
.thanks-channels { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.channel-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 20px 28px;
  display: flex; align-items: center; gap: 14px; text-align: left;
}
.channel-card .ic {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--accent-light); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.channel-card strong { display: block; font-size: 14px; }
.channel-card span, .channel-card a { font-size: 12.5px; color: rgba(255,255,255,0.65); }
.thanks-footer-note { font-size: 12.5px; color: rgba(255,255,255,0.45); }

/* Mobile nav drawer */
.mobile-nav { display: none; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px 24px 20px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--primary); }

/* Responsive */
@media (max-width: 980px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .why-grid, .mv-grid, .contact-grid, .impressum-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .services-grid-2col, .values-grid, .timeline-grid, .highlights-grid, .process-grid, .platform-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .why-facts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .services-grid, .services-grid-2col, .values-grid, .timeline-grid, .highlights-grid, .process-grid, .platform-grid, .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .form-card, .contact-info-card { padding: 28px; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .service-card[style*="grid-column"] { grid-column: span 1 !important; }
  .job-card { padding: 20px; }
  .job-head .btn { width: 100%; justify-content: center; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
}

/* Keep the full company name readable on narrow screens. */
.logo { white-space: nowrap; }
@media (max-width: 1180px) { nav.main-nav { display: none; } .menu-toggle { display: block; } }
@media (max-width: 640px) { .site-header .wrap > .btn { display: none; } .logo { font-size: 18px; gap: 7px; } }
