/* Pflegefeder Landing Page Styles */
:root {
  --teal-900: #0c4a6e;
  --teal-700: #1268a8;
  --teal-500: #2a8bc8;
  --teal-300: #6fb9d9;
  --teal-100: #d4e8f3;
  --teal-50: #eaf3f9;

  --green-700: #5a9a2c;
  --green-500: #8cc63f;
  --green-400: #a5d35d;
  --green-200: #d4e9aa;
  --green-50: #f0f8e0;

  --ink-900: #102a2e;
  --ink-700: #2c4348;
  --ink-500: #5a7077;
  --ink-300: #93a4a9;
  --ink-200: #c8d2d4;

  --paper: #fafcfb;
  --paper-warm: #f3f7f4;
  --paper-mist: #eef5f3;
  --white: #ffffff;

  --grad-hero: linear-gradient(135deg, #0c4a6e 0%, #1268a8 35%, #8cc63f 100%);
  --grad-pill: linear-gradient(135deg, #1268a8 0%, #8cc63f 100%);
  --grad-soft: linear-gradient(180deg, #eaf3f9 0%, #f0f8e0 100%);
  --grad-card: linear-gradient(135deg, rgba(18,104,168,0.06) 0%, rgba(140,198,63,0.06) 100%);

  --shadow-sm: 0 1px 2px rgba(12, 74, 110, 0.06), 0 2px 8px rgba(12, 74, 110, 0.04);
  --shadow-md: 0 8px 24px rgba(12, 74, 110, 0.08), 0 2px 6px rgba(12, 74, 110, 0.05);
  --shadow-lg: 0 24px 60px rgba(12, 74, 110, 0.14), 0 8px 20px rgba(12, 74, 110, 0.06);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --font-display: "Fraunces", "DM Serif Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-script: "Caveat", "Kalam", cursive;
  --font-brand: "Yellowtail", "Pacifico", "Caveat", cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal-500);
}
.script {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--teal-700);
  font-size: 1.4em;
  line-height: 1;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
p { margin: 0; }
.lead {
  font-size: 19px;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 56ch;
}
.accent-teal { color: var(--teal-700); }
.accent-green { color: var(--green-700); }

.gradient-text {
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal-500) 50%, var(--green-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.18em;
  line-height: 1.18;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-pill);
  color: white;
  box-shadow: 0 10px 24px rgba(14, 111, 125, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(14, 111, 125, 0.35); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost {
  color: var(--teal-700);
  background: var(--white);
  border: 1px solid rgba(14, 111, 125, 0.2);
}
.btn-ghost:hover { background: var(--teal-50); border-color: var(--teal-500); }
.btn-on-dark {
  background: white;
  color: var(--teal-700);
}
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,0.12); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250, 252, 251, 0.78);
  border-bottom: 1px solid rgba(14, 111, 125, 0.08);
}
.nav .container {
  max-width: 1320px;
  padding: 0 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.brand img { flex-shrink: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(127, 181, 57, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(14, 111, 125, 0.12), transparent 60%),
    var(--paper);
}
.hero-decor {
  position: absolute;
  pointer-events: none;
}
.hero-decor.f1 { top: 60px; right: -40px; opacity: 0.18; }
.hero-decor.f2 { bottom: -40px; left: -60px; opacity: 0.12; transform: rotate(180deg); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 { margin-top: 18px; }
.hero-text h1 .clause {
  display: block;
  padding-bottom: 0.08em;
}
.hero-text h1 .clause-2 { color: var(--ink-900); }
.hero-text .lead { margin: 24px 0 36px; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  flex-wrap: wrap;
  color: var(--ink-700);
  font-size: 14px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item svg { color: var(--green-500); flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: var(--grad-hero);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card-text { line-height: 1.3; }
.hero-card-text strong { display: block; color: var(--ink-900); font-size: 15px; }
.hero-card-text span { font-size: 13px; color: var(--ink-500); }

.hero-inner {
  padding: 60px 0 100px;
  position: relative;
}

/* Stats Strip */
.stats {
  background: white;
  border-top: 1px solid rgba(14, 111, 125, 0.06);
  border-bottom: 1px solid rgba(14, 111, 125, 0.06);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--teal-700);
}
.stat-label {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

/* Sections */
section { padding: 100px 0; position: relative; }
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { margin-top: 16px; }
.section-head .eyebrow { justify-content: center; margin-bottom: 18px; }
.section-head .eyebrow::before { display: none; }
.section-head .lead { margin: 22px auto 0; }

/* Leistungen */
.leistungen {
  background: var(--paper-warm);
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leistung-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(14, 111, 125, 0.07);
  position: relative;
  overflow: hidden;
}
.leistung-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-pill);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.leistung-card h3 { margin-bottom: 10px; font-size: 22px; }
.leistung-card p { color: var(--ink-700); font-size: 15.5px; line-height: 1.6; }

/* Werte / Über uns */
.werte {
  background: var(--paper);
}
.werte-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.werte-content h2 { margin-top: 16px; }
.werte-content .lead { margin-top: 22px; }
.werte-image {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-soft);
  border: 1px solid rgba(14, 111, 125, 0.1);
}
.werte-image-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transform: scale(1.15);
  transform-origin: center 30%;
}
.werte-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.35) 100%);
  pointer-events: none;
}
.werte-image-quote {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: white;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  font-family: var(--font-sans);
  color: var(--ink-900);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}
.werte-image-quote .qmark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0;
  color: var(--green-500);
  position: absolute;
  top: 28px;
  left: 16px;
}
.werte-image-quote .qbody {
  display: block;
  padding-left: 29px;
}
.werte-image-quote .qauthor {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.wert-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.wert-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}
.wert-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid; place-items: center;
}
.wert-item h4 { font-family: var(--font-sans); font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--ink-900); }
.wert-item p { color: var(--ink-700); font-size: 15.5px; line-height: 1.55; }

/* Karriere */
.karriere {
  background: var(--grad-hero);
  color: white;
  position: relative;
  overflow: hidden;
}
.karriere::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.karriere-decor {
  position: absolute;
  bottom: -100px; left: -60px;
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(15deg);
}
.karriere h2 { color: white; margin-top: 16px; }
.karriere .eyebrow { color: rgba(255,255,255,0.85); }
.karriere .eyebrow::before { background: rgba(255,255,255,0.6); }
.karriere .lead { color: rgba(255,255,255,0.88); margin-top: 24px; }
.karriere-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.karriere-script {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--green-200);
  font-size: 1.2em;
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.karriere-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.karriere-actions .btn-on-dark-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.job-card {
  background: white;
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--grad-pill);
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  color: var(--green-700);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.job-card h3 { margin: 18px 0 8px; font-family: var(--font-display); font-size: 28px; }
.job-card h3 .job-mwd { color: var(--ink-500); font-weight: 400; font-size: 0.7em; }
.job-card .job-meta { color: var(--ink-500); font-size: 14px; margin-bottom: 22px; }
.job-card .job-intro { color: var(--ink-700); font-size: 15.5px; line-height: 1.6; }
.job-divider { height: 1px; background: rgba(14,111,125,0.1); margin: 26px 0 4px; }
.job-benefits-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-top: 22px;
}
.job-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 22px 0 28px;
}
.job-benefit {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink-700);
}
.job-benefit-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid; place-items: center;
}
.karriere-quote-wrap {
  padding-top: 30px;
}

/* Testimonials */
.testimonials { background: var(--paper-warm); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(14,111,125,0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stars { color: var(--green-500); display: inline-flex; gap: 2px; }
.testimonial-text { color: var(--ink-700); font-size: 16px; line-height: 1.6; flex: 1; }
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(14,111,125,0.08);
  padding-top: 20px;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-pill);
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
}
.author-name { font-weight: 700; color: var(--ink-900); font-size: 15px; }
.author-role { color: var(--ink-500); font-size: 13px; }

/* Kontakt */
.kontakt {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: "";
  position: absolute;
  top: 50%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(127,181,57,0.08) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.kontakt .section-head { text-align: left; margin: 0 0 50px; }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.kontakt-info {
  position: sticky;
  top: 100px;
}
.kontakt-info .script {
  display: block;
  margin: 14px 0;
  font-size: 38px;
}
.kontakt-channels {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.kontakt-channel {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(14,111,125,0.08);
  text-decoration: none;
  color: inherit;
  transition: all .2s ease;
  min-width: 0;
}
.kontakt-channel:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.kontakt-channel-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-pill);
  color: white;
  display: grid; place-items: center;
}
.kontakt-channel-icon.whatsapp { background: linear-gradient(135deg,#25D366,#128C7E); }
.kontakt-channel-label { font-size: 12px; color: var(--ink-500); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.kontakt-channel-value { font-family: var(--font-display); font-size: 22px; color: var(--ink-900); margin-top: 2px; }
.kontakt-channel-arrow { color: var(--teal-500); }

.kontakt-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(14,111,125,0.08);
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color .2s, background .2s;
  outline: none;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(29, 139, 151, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.form-radio {
  position: relative;
  cursor: pointer;
}
.form-radio input { position: absolute; opacity: 0; }
.form-radio-label {
  display: block;
  padding: 14px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  background: var(--paper);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  transition: all .2s;
}
.form-radio input:checked + .form-radio-label {
  border-color: var(--teal-500);
  background: var(--teal-50);
  color: var(--teal-700);
  box-shadow: 0 0 0 4px rgba(29,139,151,0.1);
}
.form-checkbox {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.5;
  margin-bottom: 22px;
  cursor: pointer;
}
.form-checkbox input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--teal-700);
  flex-shrink: 0;
}
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 18px 28px;
}
.form-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-500);
}

.form-success {
  text-align: center;
  padding: 30px 10px;
  display: none;
}
.form-success.is-active { display: block; }
.kontakt-form.is-sent .form-fields { display: none; }
.form-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: grid; place-items: center;
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--ink-700); margin-top: 10px; }
.form-success .btn-ghost { margin-top: 26px; }

/* Footer */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-bottom: 50px;
}
.footer h5 {
  color: white;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
.footer a:hover { color: white; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 32ch; }
.footer-logo {
  display: block;
  width: 80px;
  height: auto;
}
.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-row .footer-wordmark {
  display: block;
  object-fit: contain;
  height: 52px;
  width: 203px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-tagline {
  font-family: var(--font-script);
  font-size: 22px;
  color: rgba(255,255,255,0.85);
}

/* Sticky mobile call bar */
.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--grad-pill);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  z-index: 40;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
body.scrolled-past-hero .sticky-call {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-call .sticky-call-sub { font-size: 13px; opacity: 0.85; }
.sticky-call-main { display: inline-flex; align-items: center; gap: 10px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 540px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .werte-grid, .karriere-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  section { padding: 70px 0; }
  .hero-inner { padding: 40px 0 70px; }
  .kontakt-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .job-benefits { grid-template-columns: 1fr; }
  .form-radio-group { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  h1 { font-size: clamp(34px, 8vw, 48px); line-height: 1.08; }
  h2 { font-size: clamp(28px, 6vw, 36px); }
  h3 { font-size: 22px; }
  .lead, .hero-text .lead { font-size: 17px; line-height: 1.55; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  section { padding: 56px 0; }
  .hero-inner { padding: 24px 0 56px; }
  .container { padding: 0 18px; }
  .sticky-call { display: flex; }
}
@media (max-width: 720px) {
  .nav .container { padding: 0 16px; }
  .nav-inner { padding: 14px 0; min-height: 64px; gap: 10px; flex-wrap: nowrap; }
  .nav .brand { gap: 8px; }
  .nav .brand img:first-child { height: 30px !important; }
  .nav .brand img:nth-child(2) { height: 20px !important; }
  .nav-cta { gap: 8px; flex-shrink: 0; }
  .nav-phone { display: none; }
  .nav-cta .btn-primary { padding: 9px 14px !important; font-size: 13px !important; white-space: nowrap; }
}
@media (max-width: 540px) {
  h1 { font-size: clamp(32px, 9vw, 40px); }
  h2 { font-size: 26px; }
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .kontakt-form, .job-card { padding: 24px 18px; }
  .kontakt-channel { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 12px; padding: 14px 14px; }
  .kontakt-channel-icon { width: 44px; height: 44px; border-radius: 12px; }
  .kontakt-channel-value { font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .kontakt-channel-label { font-size: 11px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-brand-row { gap: 12px; }
  .footer-brand-row .footer-logo { width: 56px; }
  .footer-brand-row .footer-wordmark { height: 38px; width: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 400px) {
  h1 { font-size: 30px; }
  .nav .brand img:nth-child(2) { display: none; }
  .nav-cta .btn-primary { padding: 8px 12px !important; font-size: 12px !important; }
}
