/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/Inter-Variable.woff2') format('woff2');
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #0057B8;
  --primary-dark: #003F8A;
  --accent:    #60A5FA;
  --accent-light: #DBEAFE;
  --bg:        #F8FAFC;
  --bg-card:   #FFFFFF;
  --text:      #1E293B;
  --text-light:#64748B;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --transition: .3s ease;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
svg { width: 24px; height: 24px; flex-shrink: 0; }
a   { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

.container { width: min(1140px, 92%); margin-inline: auto; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 500;}
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: .5em; }
h3 { font-size: 1.25rem; }

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

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

.btn-accent    { background: var(--accent); color: #fff; }
.btn-accent:hover  { background: #3B82F6; color: #fff; }

.btn-outline   { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: .75rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: inline-flex; align-items: center;
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  letter-spacing: -.5px;
}
.nav-brand span { color: var(--accent); }
.nav-brand img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
}
@media (max-width: 480px) {
  .nav-brand img { height: 34px; }
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-weight: 500; color: var(--text);
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle span + span { margin-top: 5px; }

/* ===== NAV SUBMENU (Jobs) ===== */
.has-submenu { position: relative; }
.submenu-toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem;
  font-weight: 500; color: var(--text);
  padding: 0 0 4px; position: relative;
}
.submenu-toggle::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.submenu-toggle:hover::after,
.submenu-toggle.active::after { width: 100%; }
.submenu-toggle svg { width: 14px; height: 14px; min-width: 14px; transition: transform var(--transition); }
.has-submenu.open .submenu-toggle svg { transform: rotate(180deg); }

.submenu {
  list-style: none;
  position: absolute; top: 100%; left: 0;
  min-width: 300px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
  padding: .5rem;
  display: none;
  z-index: 110;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.open .submenu { display: block; }
.submenu a {
  display: block;
  padding: .6rem .9rem;
  border-radius: 8px;
  font-size: .95rem;
  white-space: nowrap;
}
.submenu a::after { display: none; }
.submenu a:hover { background: var(--accent-light); color: var(--primary); }
.submenu a.active { background: var(--accent-light); color: var(--primary); font-weight: 600; }

/* ===== HERO ===== */
.hero {
  padding: 5rem 0 5rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #E0F2FE 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,184,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-text .badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary-dark);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 1rem;
}
.hero-text h1 { margin-bottom: 1rem; }
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary), #2563EB);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-decoration: underline;
}
.hero-text p {
  font-size: 1.15rem; color: var(--text-light);
  margin-bottom: 2rem; max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
  position: relative;
}
.hero-image .placeholder-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #DBEAFE, #E0E7FF);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem; font-weight: 500;
  border: 2px dashed rgba(0,87,184,.25);
}
.hero-image .placeholder-img svg {
  width: 48px; height: 48px; margin-bottom: .5rem; opacity: .5;
}

/* ===== HERO HIGHLIGHTS ===== */
.hero-highlights {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
  align-items: stretch;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  min-height: 78px;
  box-sizing: border-box;
  background: #fff;
  border-radius: var(--radius);
  padding: .85rem 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 1px solid rgba(0,87,184,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
a.highlight-item { color: inherit; }
a.highlight-item:hover { color: inherit; }
.highlight-item svg {
  width: 28px;
  min-width: 28px;
  height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}
.highlight-item div {
  display: flex;
  flex-direction: column;
}
.highlight-item strong {
  font-size: .7rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--primary);
  white-space: nowrap;
}
.highlight-item span {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 2.5rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.trust-items {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  text-align: center;
}
.trust-item {
  display: flex; align-items: center; gap: .75rem;
  font-weight: 600; color: var(--text-light);
}
.trust-item svg { width: 28px; min-width: 28px; height: 28px; color: var(--primary); flex-shrink: 0; }

/* ===== CARDS / FEATURES ===== */
.section { padding: 5rem 0; }
.section-light { background: #fff; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.04);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.card .icon {
  width: 52px; height: 52px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card .icon svg { width: 26px; height: 26px; color: var(--primary); }
.card h3 { margin-bottom: .5rem; }
.card p  { color: var(--text-light); font-size: .95rem; }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step {
  text-align: center; padding: 2rem 1.5rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--primary); color: #fff;
  border-radius: 50%; font-weight: 700; font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.step h3 { margin-bottom: .5rem; }
.step p  { color: var(--text-light); font-size: .9rem; }

/* ===== PHOTO GALLERY (Home) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #DBEAFE, #E0E7FF);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--primary); font-weight: 500;
  gap: .5rem;
}
.gallery-item svg { width: 40px; height: 40px; opacity: .4; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2563EB 100%);
  color: #fff; text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p  { color: rgba(255,255,255,.85); max-width: 560px; margin: .75rem auto 2rem; font-size: 1.1rem; }

/* ===== KARRIERE PAGE ===== */
.karriere-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
}
.karriere-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: center;
}
.karriere-hero-text .badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary-dark);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 1rem;
}
.karriere-hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 1rem 0 .75rem;
  max-width: 540px;
}
.job-date {
  color: var(--text-light);
  font-size: .9rem;
  margin: 0 0 2rem;
}

/* Fact Pills (Hero sidebar) */
.karriere-hero-facts {
  display: flex; flex-direction: column; gap: 1rem;
}
.fact-pill {
  display: flex; align-items: center; gap: 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid rgba(0,87,184,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fact-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.fact-pill svg {
  width: 24px; min-width: 24px; height: 24px; color: var(--primary); flex-shrink: 0;
}
.fact-pill div { display: flex; flex-direction: column; }
.fact-pill strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--primary); }
.fact-pill span { font-size: .9rem; color: var(--text); }

/* Two-Column Layout (Aufgaben / Benefits) */
.karriere-two-col {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 3rem;
  align-items: start;
}

.karriere-section-block {
  margin-bottom: 3rem;
}
.karriere-section-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.karriere-icon-circle {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.karriere-icon-circle svg {
  width: 22px; height: 22px; color: var(--primary);
}
.karriere-section-header h2 { margin-bottom: 0; }

.karriere-list {
  list-style: none; padding: 0;
}
.karriere-list li {
  padding: .3rem 0 .3rem 2rem;
  position: relative;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.55;
}
.karriere-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* Benefits Sidebar */
.benefits-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,87,184,.06);
}
.karriere-sidebar {
  position: sticky;
  top: 5.5rem;
  align-self: start;
}
.benefits-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--accent-light);
}
.benefit-item {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .75rem 0;
}
.benefit-item + .benefit-item {
  border-top: 1px solid #F1F5F9;
}
.benefit-item svg {
  width: 22px; min-width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px;
}
.benefit-item div { display: flex; flex-direction: column; }
.benefit-item strong { font-size: .9rem; color: var(--text); }
.benefit-item span  { font-size: .82rem; color: var(--text-light); margin-top: .15rem; }

/* Reasons Grid (Warum Stutzer?) */
.stutzer-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.reason-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(0,87,184,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.reason-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .75rem;
}
.reason-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.reason-card p  { color: var(--text-light); font-size: .88rem; }

/* Ansprechpartner Modern */
.ansprechpartner-modern {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: calc(var(--radius) * 1.5);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,87,184,.06);
}
.ansprechpartner-photo .photo-placeholder {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, #DBEAFE, #E0E7FF);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--primary); font-size: .85rem; font-weight: 500;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,87,184,.15);
}
.ansprechpartner-photo .photo-placeholder svg {
  width: 40px; height: 40px; opacity: .4; margin-bottom: .25rem;
}
.ansprechpartner-img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,87,184,.15);
}
.ansprechpartner-content .badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary-dark);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  margin-bottom: .75rem;
}
.ansprechpartner-content h2 { margin-bottom: .25rem; }
.ansprechpartner-role {
  color: var(--text-light); font-size: .95rem; margin-bottom: 1rem;
}
.ansprechpartner-text {
  font-style: italic; color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.ansprechpartner-details {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.ansprechpartner-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: .5rem 1rem;
  background: var(--bg);
  border-radius: 8px;
  transition: background var(--transition);
}
.ansprechpartner-link:hover { background: var(--accent-light); color: var(--primary); }
.ansprechpartner-link svg { width: 18px; height: 18px; color: var(--primary); }

/* ===== KONTAKT / FORM ===== */
.kontakt-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
}

.form-wrapper {
  background: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-weight: 600; font-size: .9rem;
  margin-bottom: .4rem; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,184,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input[type="file"] {
  padding: .5rem 0;
  border: none;
  background: transparent;
}
.form-group input[type="file"]::file-selector-button {
  padding: .6rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 1rem;
  transition: background var(--transition), color var(--transition);
}
.form-group input[type="file"]::file-selector-button:hover {
  background: var(--primary);
  color: #fff;
}
.form-file-info {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: .25rem;
}

.form-note {
  text-align: center;
  color: var(--text-light);
  font-size: .85rem;
  margin-top: 1rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1.5rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox label {
  font-size: .9rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.5;
}
.form-checkbox label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #1E293B;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer p  { font-size: .9rem; line-height: 1.6; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #E2E8F0; padding: 1.25rem 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary h3 { font-size: 1.1rem; font-weight: 600; margin: 0; }
.faq-item p {
  color: var(--text-light);
  margin-top: .75rem;
  font-size: .95rem;
  line-height: 1.7;
  padding-right: 2rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: .75rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .85rem;
}
.breadcrumb ol {
  display: flex;
  list-style: none;
  gap: .5rem;
  align-items: center;
}
.breadcrumb li + li::before {
  content: '\203A';
  margin-right: .5rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .karriere-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .benefits-card { position: static; }
  .karriere-sidebar .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .hero { padding: 1rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: -1; }
  .hero-text p { margin-inline: auto; margin-bottom: 1rem; max-width: 520px; }
  .hero-buttons { justify-content: center; }
  .hero-highlights { flex-direction: column; gap: .6rem; }
  .highlight-item { justify-content: center; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 1rem;
  }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; }

  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .trust-items { gap: 1.5rem; }

  /* Kontakt responsive */
  .kontakt-hero {
    padding: 1rem 0 0rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
  }
  .form-wrapper {
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    max-width: 720px;
    margin: 0 auto;
  }

  /* Karriere responsive */
  .karriere-hero {
    padding: 1rem 0 4rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
  }
  .karriere-hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 1rem 0 1rem;
    max-width: 540px;
  }
  .section { padding: 1rem 0; }
  .karriere-hero-grid { grid-template-columns: 1fr; }
  .karriere-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .benefits-card { position: static; }
  .karriere-sidebar .btn { width: 100%; justify-content: center; }
  .stutzer-reasons { grid-template-columns: 1fr 1fr; }
  .ansprechpartner-modern {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .ansprechpartner-photo { display: flex; justify-content: center; }
  .ansprechpartner-details { justify-content: center; }
  .ansprechpartner-content .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stutzer-reasons { grid-template-columns: 1fr; }
}

/* ===== STICKY CONTACT SIDEBAR ===== */
.sticky-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 900;
}

.sticky-contact a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius) 0 0 var(--radius);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  width: 52px;
  transition: width .3s ease, background .3s ease;
}

.sticky-contact a:hover {
  width: 210px;
  background: var(--primary-dark);
  color: #fff;
}

.sticky-contact a svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  stroke: currentColor;
  fill: none;
}

.sticky-contact a.sticky-whatsapp { background: #25D366; }
.sticky-contact a.sticky-whatsapp:hover { background: #1DA851; }

.sticky-contact-label {
  font-size: .875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s ease;
}

.sticky-contact a:hover .sticky-contact-label {
  opacity: 1;
}

@media (max-width: 768px) {
  .sticky-contact { gap: 4px; }
  .sticky-contact a { padding: .6rem; width: 44px; }
  .sticky-contact a svg { width: 20px; height: 20px; min-width: 20px; }
  .sticky-contact a:hover { width: 190px; }
}

/* ===== SUBMENU RESPONSIVE ===== */
@media (max-width: 768px) {
  .has-submenu { width: 100%; }
  .submenu-toggle { width: 100%; justify-content: space-between; padding-bottom: 0; }
  .submenu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: none;
    padding: .25rem 0 0 1rem;
  }
  .has-submenu:hover .submenu { display: none; }
  .has-submenu.open .submenu,
  .has-submenu:focus-within .submenu { display: block; }
  .submenu a { white-space: normal; }
}
