:root {
  --teal: #0999b0;
  --teal-dark: #077a8f;
  --teal-light: #0bbdd8;
  --teal-pale: #e6f7fa;
  --black: #0d0d0d;
  --gray-900: #1a1a1a;
  --gray-700: #3d3d3d;
  --gray-500: #7a7a7a;
  --gray-200: #e8e8e8;
  --gray-100: #f4f4f4;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }

a { color: inherit; }

/* ======= NAV ======= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(9,153,176,0.1); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--black);
  text-decoration: none;
}
.nav-logo span { color: var(--teal); }
.nav-logo small {
  font-size: 0.55em; letter-spacing: 0.02em; margin-left: 3px;
  opacity: 0.7; font-weight: 600;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--gray-700);
  font-size: 0.92rem; font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 6px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }

/* ======= HERO ======= */
#home {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  padding-top: 72px;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 50%, rgba(9,153,176,0.07) 0%, transparent 70%),
    linear-gradient(135deg, #f8feff 0%, #ffffff 50%, #f0fbfd 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--gray-200) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
}

.hero-left { position: relative; z-index: 1; padding: 5% 6% 5% 8%; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-pale); color: var(--teal);
  padding: 0.4rem 1rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400; line-height: 1.0;
  letter-spacing: 2px; color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-h1 em { color: var(--teal); font-style: normal; }
.hero-h1 .underline-teal { position: relative; white-space: nowrap; }
.hero-h1 .underline-teal::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 6px; background: var(--teal); opacity: 0.2; border-radius: 2px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.05rem; color: var(--gray-500); line-height: 1.75;
  max-width: 460px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(9,153,176,0.3);
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(9,153,176,0.4); }

.btn-secondary {
  background: transparent; color: var(--black);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--gray-200); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--gray-200);
}
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--teal); }
.stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 2px; }

.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 5% 8% 5% 4%;
}
.hero-card-stack { position: relative; width: 380px; height: 460px; }
.hero-card {
  position: absolute; background: var(--white);
  border-radius: 16px; padding: 1.8rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-200);
  text-decoration: none; color: inherit; display: block;
}
.hero-card:nth-child(1) { top: 0; left: 20px; right: 0; z-index: 3; animation: float1 4s ease-in-out infinite; }
.hero-card:nth-child(2) { top: 160px; left: 0; right: 20px; z-index: 2; background: var(--teal); color: var(--white); animation: float2 4s ease-in-out infinite; }
.hero-card:nth-child(3) { top: 310px; left: 30px; right: -10px; z-index: 1; animation: float3 4s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.card-job-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  background: var(--teal-pale); padding: 0.3rem 0.7rem;
  border-radius: 4px; display: inline-block; margin-bottom: 0.75rem;
}
.hero-card:nth-child(2) .card-job-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.card-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero-card:nth-child(2) .card-title { color: var(--white); }
.card-meta { font-size: 0.82rem; color: var(--gray-500); }
.hero-card:nth-child(2) .card-meta { color: rgba(255,255,255,0.75); }
.card-badge {
  display: inline-block; margin-top: 0.75rem;
  background: var(--teal); color: var(--white);
  padding: 0.3rem 0.8rem; border-radius: 4px;
  font-size: 0.75rem; font-weight: 600;
}
.hero-card:nth-child(2) .card-badge { background: rgba(255,255,255,0.2); color: var(--white); }

/* ======= SECTION COMMON ======= */
section { padding: 100px 8%; }
.section-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
}
.section-h2 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-family: 'Bebas Neue', sans-serif;
  font-weight: 400; letter-spacing: 2px; line-height: 1.05; margin-bottom: 1.2rem;
}
.section-sub { font-size: 1rem; color: var(--gray-500); max-width: 560px; line-height: 1.75; }

/* ======= WHY US (Unternehmen) ======= */
#unternehmen { background: var(--black); color: var(--white); }
#unternehmen .section-tag { color: var(--teal-light); }
#unternehmen .section-h2 { color: var(--white); }
#unternehmen .section-sub { color: rgba(255,255,255,0.55); }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.benefit-item { background: var(--gray-900); padding: 2.5rem 2rem; transition: background 0.3s; cursor: default; }
.benefit-item:hover { background: #222; }
.benefit-item:first-child { border-radius: 12px 0 0 12px; }
.benefit-item:last-child { border-radius: 0 12px 12px 0; }

.benefit-num { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: var(--teal); opacity: 0.3; line-height: 1; margin-bottom: 1rem; }
.benefit-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.benefit-text { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.why-cta { margin-top: 4rem; display: flex; align-items: center; gap: 2rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.why-cta p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 400px; line-height: 1.6; }

/* ======= SERVICES ======= */
#leistungen { background: var(--gray-100); }
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.service-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1px; }
.service-item {
  background: var(--white); padding: 1.8rem 2rem;
  display: flex; align-items: flex-start; gap: 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s; cursor: default;
  border-left: 3px solid transparent;
}
.service-item:hover { transform: translateX(6px); border-left-color: var(--teal); box-shadow: 4px 0 20px rgba(9,153,176,0.1); }
.service-item:first-child { border-radius: 12px 12px 0 0; }
.service-item:last-child { border-radius: 0 0 12px 12px; }

.service-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--teal-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.service-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.service-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

.services-right { position: sticky; top: 100px; }
.services-highlight { background: var(--teal); border-radius: 16px; padding: 3rem; color: var(--white); }
.services-highlight h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 1rem; letter-spacing: 2px; }
.services-highlight p { font-size: 0.95rem; opacity: 0.85; line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.contact-detail span:first-child { font-size: 1.2rem; }
.contact-detail span:last-child { font-size: 0.9rem; opacity: 0.9; }
.btn-white {
  background: var(--white); color: var(--teal);
  padding: 0.85rem 1.8rem; border-radius: 8px;
  font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700;
  text-decoration: none; display: inline-block; margin-top: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ======= JOB PORTAL ======= */
#jobs { background: var(--white); }
.jobs-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }

.jobs-search { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.search-input {
  flex: 1; min-width: 200px;
  padding: 0.85rem 1.2rem; border-radius: 8px;
  border: 1.5px solid var(--gray-200); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; outline: none; transition: border-color 0.2s; background: var(--white);
}
.search-input:focus { border-color: var(--teal); }
.search-input::placeholder { color: var(--gray-500); }

.btn-search {
  background: var(--teal); color: var(--white);
  padding: 0.85rem 1.8rem; border-radius: 8px;
  font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(9,153,176,0.3);
}
.btn-search:hover { background: var(--teal-dark); transform: translateY(-1px); }

.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.4rem 1rem; border-radius: 99px;
  border: 1.5px solid var(--gray-200); background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; color: var(--gray-700);
}
.filter-btn:hover, .filter-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

.jobs-count { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1rem; }
.jobs-count strong { color: var(--teal); }

.jobs-list { display: flex; flex-direction: column; gap: 1px; }
.job-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 0; padding: 1.6rem 2rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 1rem;
  cursor: pointer; transition: all 0.25s;
  text-decoration: none; color: inherit;
}
.job-card:first-child { border-radius: 12px 12px 0 0; }
.job-card:last-child { border-radius: 0 0 12px 12px; }
.job-card:hover { border-color: var(--teal); background: var(--teal-pale); transform: translateX(4px); box-shadow: 4px 0 0 var(--teal); }
.job-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.6rem; }
.job-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.job-meta-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; color: var(--gray-500); }
.job-meta-item .icon { font-size: 0.85rem; }
.job-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 4px;
}
.badge-vollzeit { background: #e6f7fa; color: var(--teal); }
.badge-teilzeit { background: #fff3e0; color: #e67e00; }
.badge-minijob { background: #f0f4ff; color: #3d5afe; }

.job-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1rem; flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.job-card:hover .job-arrow { background: var(--teal); color: var(--white); transform: translateX(4px); }

.jobs-empty { text-align: center; padding: 3rem; color: var(--gray-500); }

/* ======= TESTIMONIALS ======= */
#ueber-uns { background: var(--teal-pale); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--white); padding: 2rem; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(9,153,176,0.08);
  border: 1px solid rgba(9,153,176,0.1); transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: var(--teal); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 800; color: var(--white);
}
.author-name { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; }
.author-role { font-size: 0.78rem; color: var(--gray-500); }

/* ======= CONTACT ======= */
#kontakt { background: var(--black); }
#kontakt .section-tag { color: var(--teal-light); }
#kontakt .section-h2 { color: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.contact-info p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2.5rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--gray-900); padding: 1.3rem 1.5rem;
  border-radius: 12px; margin-bottom: 1rem; cursor: default;
  transition: background 0.2s; text-decoration: none;
}
.contact-card:hover { background: #222; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(9,153,176,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card-value { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.9rem 1.2rem;
  background: var(--gray-900); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 8px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--teal); }
.form-select { appearance: none; color: rgba(255,255,255,0.5); }
.form-select option { background: var(--gray-900); color: var(--white); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--teal); color: var(--white); padding: 1rem 2rem;
  border-radius: 8px; border: none; cursor: pointer; font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700; width: 100%;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(9,153,176,0.3);
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ======= FOOTER ======= */
footer {
  background: #070707; color: rgba(255,255,255,0.35);
  padding: 2rem 8%; text-align: center; font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ======= JOB DETAIL PAGE ======= */
.job-detail { padding-top: 72px; }
.job-hero {
  background: var(--black); color: var(--white);
  padding: 4rem 8% 3.5rem; position: relative; overflow: hidden;
}
.job-hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(9,153,176,0.3), transparent 70%);
  border-radius: 50%;
}
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.breadcrumb a { color: var(--teal-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }
.job-hero h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 400;
  color: var(--white); letter-spacing: 2px; line-height: 1.02; margin-bottom: 1.2rem;
  position: relative; z-index: 1; max-width: 800px;
}
.job-hero-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; position: relative; z-index: 1; }
.job-tag {
  background: rgba(9,153,176,0.3); color: rgba(255,255,255,0.92);
  padding: 0.4rem 0.95rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid rgba(9,153,176,0.4);
}

.job-body { max-width: 900px; margin: 0 auto; padding: 3.5rem 8% 5rem; }
.job-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.job-contact-note { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 2rem; }
.job-contact-note a { color: var(--teal); font-weight: 600; text-decoration: none; }
.job-contact-note a:hover { text-decoration: underline; }

/* ======= FALLBACK-PANEL (mailto ohne Mailprogramm) ======= */
.mail-fallback { margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--gray-100); border-radius: 10px; border: 1px solid var(--gray-200); }
.mail-fallback p { font-size: 0.85rem; color: var(--gray-700); margin-bottom: 0.7rem; }
.fallback-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
#kontakt .mail-fallback { background: var(--gray-900); border-color: rgba(255,255,255,0.1); }
#kontakt .mail-fallback p { color: rgba(255,255,255,0.6); }
#kontakt .fallback-actions .btn-sm { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }
#kontakt .fallback-actions .btn-sm:hover { border-color: var(--teal); color: var(--teal); }

/* ======= BEWERBER/UNTERNEHMEN-UMSCHALTER ======= */
.audience-toggle { display: flex; gap: 0.6rem; margin-bottom: 1.2rem; }
.audience-btn {
  flex: 1; padding: 0.75rem 1rem; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15); background: var(--gray-900);
  color: rgba(255,255,255,0.75); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.audience-btn:hover { border-color: var(--teal); color: var(--white); }
.audience-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.job-info-item { background: var(--gray-100); padding: 1.2rem 1.4rem; border-radius: 12px; }
.job-info-label { font-size: 0.72rem; color: var(--gray-500); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.3rem; }
.job-info-value { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--black); }

.job-section { margin-bottom: 2.5rem; }
.job-section h2 {
  font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700;
  margin-bottom: 1.2rem; color: var(--black); letter-spacing: 0;
  display: flex; align-items: center; gap: 0.6rem;
}
.job-section h2::before { content: ''; width: 5px; height: 22px; background: var(--teal); border-radius: 2px; display: block; }
.job-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.job-list li { padding-left: 1.6rem; position: relative; font-size: 0.95rem; color: var(--gray-700); line-height: 1.6; }
.job-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.job-apply {
  background: var(--teal); border-radius: 16px; padding: 2.5rem;
  color: var(--white); margin-top: 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.job-apply h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; font-weight: 400; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.job-apply p { font-size: 0.92rem; opacity: 0.9; line-height: 1.6; max-width: 420px; }
.job-apply-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-apply {
  background: var(--white); color: var(--teal);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-apply:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.btn-apply-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5); box-shadow: none;
}
.btn-apply-outline:hover { border-color: var(--white); }

.back-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 2.5rem; color: var(--teal); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.back-link:hover { text-decoration: underline; }

/* related jobs */
.related { background: var(--gray-100); padding: 4rem 8%; }
.related-inner { max-width: 900px; margin: 0 auto; }
.related h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; font-weight: 400; letter-spacing: 1.5px; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 12px;
  padding: 1.4rem 1.5rem; text-decoration: none; color: inherit; transition: all 0.2s;
}
.related-card:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(9,153,176,0.12); transform: translateY(-3px); }
.related-card .rc-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.92rem; margin-bottom: 0.5rem; }
.related-card .rc-meta { font-size: 0.8rem; color: var(--gray-500); }

/* ======= BEWERBUNGSFORMULAR ======= */
.apply-form-wrap {
  margin-top: 3rem; background: var(--gray-100);
  border: 1.5px solid var(--gray-200); border-radius: 16px; padding: 2.5rem;
}
.apply-form-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; font-weight: 400;
  letter-spacing: 1.5px; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.apply-form-title::before { content: ''; width: 5px; height: 26px; background: var(--teal); border-radius: 2px; }
.apply-form-intro { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.8rem; max-width: 640px; }

.apply-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.apply-form .field { display: flex; flex-direction: column; gap: 0.4rem; }
.apply-form label { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); }
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--gray-200); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--black);
  outline: none; transition: border-color 0.2s;
}
.apply-form input:focus, .apply-form textarea:focus { border-color: var(--teal); }
.apply-form textarea { resize: vertical; min-height: 110px; }
.apply-form input[type="file"] {
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--gray-700);
  padding: 0.6rem; background: var(--white); border: 1.5px dashed var(--gray-200);
  border-radius: 8px; width: 100%;
}
.consent { flex-direction: row !important; align-items: flex-start; gap: 0.6rem; font-weight: 400 !important; font-size: 0.85rem; color: var(--gray-700); line-height: 1.5; }
.consent input { margin-top: 0.2rem; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--teal); }
.consent a { color: var(--teal); }
.apply-submit { align-self: flex-start; margin-top: 0.4rem; }

/* Honeypot – für Menschen unsichtbar */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-banner { padding: 1rem 1.2rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500; margin-bottom: 1.5rem; }
.form-banner.success { background: #e6f9ec; color: #1a7a3c; border: 1px solid #b7e6c6; }
.form-banner.error { background: #fdecec; color: #b3261e; border: 1px solid #f3c2bf; }

/* ======= SIMPLE CONTENT PAGE (Impressum/Datenschutz/404) ======= */
.content-page { max-width: 820px; margin: 0 auto; padding: 7rem 8% 5rem; }
.content-page h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 400; letter-spacing: 2px; margin-bottom: 2rem; }
.content-page h2 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.8rem; }
.content-page p, .content-page li { font-size: 0.95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 0.6rem; }
.content-page a { color: var(--teal); }
.content-page ul { padding-left: 1.4rem; margin-bottom: 1rem; }

/* ======= ADMIN ======= */
.admin-body { background: var(--gray-100); min-height: 100vh; }
.admin-nav {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--black); color: var(--white); padding: 0 5%; height: 64px;
}
.admin-nav .brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; text-decoration: none; color: var(--white); }
.admin-nav .brand span { color: var(--teal); }
.admin-nav-links { display: flex; align-items: center; gap: 1.5rem; }
.admin-nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.admin-nav-links a:hover, .admin-nav-links a.active { color: var(--white); }
.admin-logout { background: rgba(255,255,255,0.1); border: none; color: var(--white); padding: 0.5rem 1rem; border-radius: 6px; font-family: 'DM Sans'; font-size: 0.85rem; cursor: pointer; }
.admin-logout:hover { background: rgba(255,255,255,0.2); }

.admin-main { max-width: 1000px; margin: 0 auto; padding: 2.5rem 5% 4rem; }
.admin-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; flex-wrap: wrap; gap: 1rem; }
.admin-head h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; font-weight: 400; letter-spacing: 1.5px; }
.admin-stats { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.admin-stat { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 1.2rem 1.6rem; min-width: 150px; }
.admin-stat .n { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--teal); }
.admin-stat .l { font-size: 0.8rem; color: var(--gray-500); }

.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-200); }
.admin-table th { text-align: left; font-family: 'Syne', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); padding: 0.9rem 1rem; border-bottom: 1px solid var(--gray-200); }
.admin-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-100); }
.admin-table .ttl { font-family: 'Syne', sans-serif; font-weight: 700; }
.pill { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 99px; }
.pill.on { background: #e6f9ec; color: #1a7a3c; }
.pill.off { background: var(--gray-200); color: var(--gray-700); }
.admin-actions { display: flex; gap: 0.5rem; }
.btn-sm { font-size: 0.8rem; padding: 0.4rem 0.8rem; border-radius: 6px; text-decoration: none; border: 1px solid var(--gray-200); background: var(--white); color: var(--gray-700); cursor: pointer; font-family: 'DM Sans'; }
.btn-sm:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm.danger:hover { border-color: #b3261e; color: #b3261e; }

.admin-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.admin-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.admin-form .field { display: flex; flex-direction: column; gap: 0.4rem; }
.admin-form label { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); }
.admin-form input[type="text"], .admin-form input[type="date"], .admin-form textarea, .admin-form select {
  padding: 0.7rem 0.9rem; border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: 'DM Sans'; font-size: 0.9rem; outline: none; background: var(--white); width: 100%;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: var(--teal); }
.admin-form textarea { resize: vertical; min-height: 90px; }
.admin-form .hint { font-size: 0.76rem; color: var(--gray-500); }
.admin-form .check { flex-direction: row; align-items: center; gap: 0.6rem; }
.admin-form .check input { width: 18px; height: 18px; accent-color: var(--teal); }
.admin-form-actions { display: flex; gap: 0.8rem; align-items: center; }

.admin-login-wrap { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 2rem; }
.admin-login { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 380px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.admin-login h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; font-weight: 400; letter-spacing: 1.5px; margin-bottom: 0.4rem; }
.admin-login p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.admin-login .field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.admin-login input { padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: 8px; font-family: 'DM Sans'; font-size: 0.9rem; outline: none; }
.admin-login input:focus { border-color: var(--teal); }

@media (max-width: 768px) {
  .admin-form .row2 { grid-template-columns: 1fr; }
  .admin-table { display: block; overflow-x: auto; }
}

/* ======= ANIMATIONS ======= */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  #home { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { border-radius: 0 !important; }
  .benefit-item:first-child { border-radius: 12px 12px 0 0 !important; }
  .benefit-item:last-child { border-radius: 0 0 12px 12px !important; }
  .services-layout { grid-template-columns: 1fr; }
  .services-right { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .job-info-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 5%; }
  #navbar { padding: 0 5%; }
  .nav-links { display: none; }
  .hero-left { padding: 5%; }
  .form-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .apply-form-wrap { padding: 1.6rem; }
  .jobs-header { flex-direction: column; align-items: flex-start; }
  .job-info-grid { grid-template-columns: 1fr; }
  .job-body { padding: 2.5rem 5% 4rem; }
  .job-hero { padding: 3rem 5% 2.5rem; }
}
