/* ══════════════════════════════════════════════════
   OMNIBUS HERRMANN – KARRIERE
   Design: Clean, modern, editorial
   Primär: Blau #004a99  ·  Akzent: Gelb nur punktuell
   ══════════════════════════════════════════════════ */

:root {
  --blue: #004a99;
  --blue-50: #f0f5fb;
  --blue-100: #dae8f6;
  --blue-600: #003d80;
  --blue-700: #003066;
  --blue-900: #001a3d;
  --accent: #fec823;
  --accent-soft: rgba(254, 200, 35, 0.12);
  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-50: #f6f7f9;
  --gray-100: #eceef2;
  --gray-200: #dde0e6;
  --gray-300: #c1c6d0;
  --gray-400: #8b93a3;
  --gray-500: #5c6578;
  --gray-600: #3f4658;
  --gray-700: #2a303e;
  --gray-800: #171a24;
  --gray-900: #0a0c14;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(10, 20, 40, 0.04);
  --shadow-sm: 0 1px 3px rgba(10, 20, 40, 0.05), 0 1px 2px rgba(10, 20, 40, 0.03);
  --shadow: 0 4px 12px rgba(10, 20, 40, 0.06), 0 1px 3px rgba(10, 20, 40, 0.04);
  --shadow-md: 0 12px 24px rgba(10, 20, 40, 0.08), 0 2px 6px rgba(10, 20, 40, 0.04);
  --shadow-lg: 0 24px 48px rgba(10, 20, 40, 0.12), 0 4px 12px rgba(10, 20, 40, 0.06);
  --container: 1240px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--blue); color: var(--white); }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: 72px;
  transition: border-color 0.2s, background 0.2s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  border-bottom-color: var(--gray-100);
  background: rgba(255, 255, 255, 0.92);
}
.header-inner {
  max-width: var(--container); height: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.header-logo { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 38px; display: block; }
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 8px 14px; border-radius: var(--radius);
  transition: color 0.15s;
}
.header-nav a:hover, .header-nav a.active { color: var(--blue); }

.header-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  margin-left: 12px !important;
  border-radius: var(--radius) !important;
}
.header-cta:hover { background: var(--blue-600) !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: transparent; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 16px; gap: 2px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 14px 16px; border-radius: var(--radius);
}
.mobile-menu a:hover { background: var(--gray-50); color: var(--blue); }
.mobile-menu .mobile-cta { background: var(--blue); color: var(--white); margin-top: 8px; }

/* GLOBAL */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.section { padding: clamp(80px, 10vw, 140px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--gray-500); margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.eyebrow.on-dark { color: rgba(255, 255, 255, 0.7); }

h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -0.04em; color: var(--gray-900);
}
h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.035em; color: var(--gray-900);
}
h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600; line-height: 1.25;
  letter-spacing: -0.02em; color: var(--gray-900);
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--gray-500); line-height: 1.55;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 15px; font-weight: 500;
  padding: 12px 22px; border-radius: var(--radius);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-600); }
.btn-secondary { background: var(--gray-900); color: var(--white); }
.btn-secondary:hover { background: var(--gray-700); }
.btn-outline {
  background: transparent; color: var(--gray-900);
  border: 1px solid var(--gray-200);
}
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-300); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-lg { padding: 14px 28px; }

/* FOOTER */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 320px; margin-bottom: 24px;
}
.footer-contact a {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact a svg {
  width: 14px; height: 14px;
  stroke: rgba(255, 255, 255, 0.35);
  fill: none; stroke-width: 2; flex-shrink: 0;
}
.footer-col h5 {
  font-size: 12px; font-weight: 600;
  color: var(--white); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none; margin-bottom: 12px;
  transition: color 0.15s; cursor: pointer;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left { font-size: 13px; color: rgba(255, 255, 255, 0.35); }
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-right a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
