/* =========================================================
   Navion Recruiting Funnel — Style
   Based on Navion Brand Guidelines (2024)
   Colors:  navion-dark #212121 · navion-blue #AAC0C9
            navion-light #E5EDE5 · navion-green #15C183
            navion-green-light #41EDAE · white #FFFFFF
   Font:    General Sans (500 Medium body, 600 SemiBold headlines)
   Mobile-first (approx. 90% of traffic).
   ========================================================= */

@font-face {
  font-family: 'General Sans';
  src: url('assets/fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('assets/fonts/GeneralSans-Medium.woff')  format('woff');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('assets/fonts/GeneralSans-Semibold.woff2') format('woff2'),
       url('assets/fonts/GeneralSans-Semibold.woff')  format('woff');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark:        #212121;
  --blue:        #AAC0C9;
  --blue-soft:   #C7D6DC;
  --light:       #E5EDE5;
  --light-2:     #F2F7F2;
  --green:       #15C183;
  --green-light: #41EDAE;
  --green-dark:  #0EA36E;
  /* Dunkles Marken-Grün für kleine Schrift und Icons: erreicht 5,5:1 auf hellgrünem Grund.
     #0EA36E kommt nur auf 2,7:1 und ist damit für Text und Strichzeichnungen zu schwach. */
  --green-deep:  #076B47;
  /* Weitere CI-Farben laut Brand Guidelines, bisher ungenutzt */
  --orange:      #FFAA84;
  --premium:     #FDCB05;
  --white:       #FFFFFF;
  /* Fließtext dunkler: 5,9:1 auf hellgrün statt 4,9:1 */
  --muted:       #4E5A63;
  /* Alle Linien der Seite stammen aus einer Farbe (navion-blue transparent) */
  --border:      rgba(170, 192, 201, .55);
  /* Zweite Bandfarbe, aus navion-blue auf Weiß abgeleitet. Keine neue Farbe, nur eine hellere Stufe. */
  --band-cool:   #DCE5E8;

  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 12px 40px -18px rgba(33, 33, 33, 0.25);
  --shadow-lg:  0 24px 60px -24px rgba(33, 33, 33, 0.35);
  --ease:       cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--light);
  color: var(--dark);
  font-family: 'General Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-weight: 600; color: var(--dark); letter-spacing: -0.01em; }
h1 { font-size: clamp(1.85rem, 6vw, 3.4rem); line-height: 1.1; margin: 0 0 1.25rem; }
h2 { font-size: clamp(1.55rem, 4.6vw, 2.4rem); line-height: 1.2; margin: 0 0 1rem; }
h3 { font-size: 1.125rem; margin: 0 0 .5rem; }

p  { margin: 0 0 1rem; }

.container { width: min(1120px, 100% - 3rem); margin-inline: auto; }

.linklike {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Progress bar ---------- */
.progress-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: rgba(33,33,33,.08);
  z-index: 100;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transition: width .45s var(--ease);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 4px;
  z-index: 90;
  background: var(--light);
  transition: background-color .2s var(--ease);
}
.site-header .logo-link {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1rem;
}
.logo { height: 30px; width: auto; }
@media (min-width: 768px) {
  .logo { height: 34px; }
  .site-header .logo-link { padding: 1rem 1.25rem; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  scroll-margin-top: 20px;
}
.step-section {
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  scroll-margin-top: 10px;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.step-section[hidden] { display: none; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(21,193,131,.12);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.step-count {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--muted);
  margin-bottom: .75rem;
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 2.25rem;
  padding-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(ellipse at center, var(--blue-soft) 0%, transparent 65%);
  opacity: .6;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  z-index: 1;
}
.hero-text .lead {
  font-size: clamp(1rem, 3.4vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.usp {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: .6rem;
}
.usp li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 500;
  font-size: 1rem;
}
.usp li::before {
  content: "";
  position: absolute;
  left: 0; top: .4em;
  width: 14px; height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
  border-radius: 2px;
}

.hero-media {
  max-width: 420px;
  margin-inline: auto;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- Hero-Video (startet automatisch und ohne Ton) ---------- */
.hero-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  /* Format des Videos: 4/5 = Hochformat (aktuell), 16/9 = Querformat */
  aspect-ratio: var(--hero-video-ratio, 4 / 5);
}
.hero-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bewusst ohne jede Bedienfläche: kein Play-Knopf, kein Ton-Knopf. Das Video läuft einfach. */

/* ---------- CTA ---------- */
.cta {
  appearance: none;
  border: none;
  background: var(--green);
  /* Dunkel auf Grün = 6,9:1. Weiß auf Grün wäre 2,3:1 und damit unlesbar in der Sonne. */
  color: var(--dark);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.05rem 1.75rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: 0 10px 24px -10px rgba(21,193,131,.6);
  transition: transform .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  width: auto;
  max-width: 100%;
}
/* Submit button stays full-width on mobile for thumb reach */
.cta-submit { width: 100%; }
.cta:hover { background: var(--green-light); transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.cta:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; }
.cta:disabled { opacity: .6; cursor: wait; }
.cta-submit { margin-top: 1rem; }

/* Pulse + Shine attention animation for primary CTAs */
.cta-pulse {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.2s var(--ease) infinite;
}
.cta-pulse::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: ctaShine 3.4s var(--ease) infinite;
  pointer-events: none;
}
.cta-pulse:hover,
.cta-pulse:focus-visible { animation-play-state: paused; }
.cta-pulse:hover::after,
.cta-pulse:focus-visible::after { animation-play-state: paused; }

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 10px 24px -10px rgba(21,193,131,.6), 0 0 0 0 rgba(21,193,131,.55);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 14px 32px -10px rgba(21,193,131,.75), 0 0 0 12px rgba(21,193,131,0);
    transform: translateY(-1px) scale(1.015);
  }
}
@keyframes ctaShine {
  0%   { left: -80%; }
  55%  { left: 120%; }
  100% { left: 120%; }
}

/* Pitch CTA wrapper — center on desktop */
.pitch-cta { margin-top: 2rem; text-align: center; }

/* rating */
.rating {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.rating.small { font-size: .9rem; }
.rating-link {
  text-decoration: none;
  color: var(--dark);
  padding: .35rem .7rem .35rem .35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
}
.rating-link:hover {
  border-color: var(--border);
  background: var(--light-2);
}
.rating-link .rating-arrow {
  font-size: .9rem;
  color: var(--muted);
  margin-left: .15rem;
}
.rating .stars { color: var(--premium); letter-spacing: 2px; font-size: 1.05rem; }

/* ---------- Scroll hint ---------- */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.arrow-down {
  width: 12px; height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(6px) rotate(45deg); } }

/* ---------- Pitch / About ---------- */
/* Weiß ist ab hier ausschließlich Objektfarbe (Karten, Felder), nie mehr Bandfarbe.
   Hero und Über Navion teilen sich eine Fläche und lesen so als ein Kapitel. */
.pitch { background: var(--light); }
.pitch-head { max-width: 62ch; margin-bottom: 2rem; }
.pitch-lead { font-size: 1.05rem; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text h3 { font-size: 1.35rem; margin-bottom: .75rem; }
.about-text p { color: var(--muted); }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pillar {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: .85rem;
}
.pillar p { color: var(--muted); margin: 0; }

/* ---------- Workplace ---------- */
.workplace { background: var(--band-cool); }
.workplace-lead { max-width: 58ch; color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

/* Video embed (privacy-friendly click-to-play) */

/* Gallery — uniform 3-col grid with overlay caption */
.workplace-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--dark);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.1rem .9rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);
}

/* Quote block — portrait + quote (stacked mobile, side-by-side desktop) */
.workplace-quote {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  margin: 0 0 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid var(--green);
}
.workplace-quote .quote-portrait {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 30%;
  background: var(--blue-soft);
}
.workplace-quote .quote-body {
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workplace-quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  quotes: none;
}
.workplace-quote figcaption { font-style: normal; }
.workplace-quote strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
}
.workplace-quote figcaption span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Expect / benefits ---------- */
.expect .benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.benefit-num {
  display: inline-block;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.benefit h3 { color: var(--dark); margin-bottom: .5rem; }
.benefit p { color: var(--muted); margin: 0; font-size: .95rem; }
.benefit strong { color: var(--dark); }

/* ---------- Qualifier ---------- */
.qualifier {
  background: var(--light);
  padding: 2.5rem 0 3rem;
}
.qualifier-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.qualifier-head h2 { margin-bottom: .5rem; }
.qualifier-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.qualifier-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.qualifier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.qualifier-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: .8rem;
  border-radius: 14px;
  background: var(--light);
}
.qualifier-card h3 {
  margin-bottom: .4rem;
  font-size: 1.1rem;
}
.qualifier-card p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
  line-height: 1.5;
}
.qualifier-note {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  padding: .9rem 1.2rem;
  background: var(--white);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  font-size: .92rem;
  text-align: left;
}

/* Generic center-CTA wrapper (also used in pitch / expect / qualifier) */
.center-cta { text-align: center; margin-top: 1rem; }
.center-cta .cta { display: inline-flex; }

/* Hero CTA + rating: centered on mobile (text stays left), left-aligned on desktop (@860) */
.hero-text > .cta {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}
.hero-text > .rating {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
}

/* ---------- Legal / Thanks ---------- */
.legal-note {
  margin: .75rem 0 0;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

.thanks-choices {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0;
  text-align: left;
}
.thanks-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 2px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.thanks-card.primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 14px 32px -14px rgba(21,193,131,.6);
}
.thanks-card.primary strong,
.thanks-card.primary span { color: var(--white); }
.thanks-card:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.thanks-card-icon { display: inline-flex; align-items: center; justify-content: center; }
.thanks-card strong { display: block; font-weight: 600; margin-bottom: .15rem; }
.thanks-card span { display: block; font-size: .9rem; color: var(--muted); }
.thanks-card-arrow { font-size: 1.4rem; font-weight: 600; }

/* Button-Variante (Auf Anruf warten) */
.thanks-card-btn {
  font: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.thanks-card-btn .wc-confirmed { display: none; }
.thanks-card-btn.is-confirmed {
  background: var(--light-2);
  border-color: var(--green);
  cursor: default;
}
.thanks-card-btn.is-confirmed:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--green);
}
.thanks-card-btn.is-confirmed .wc-default { display: none; }
.thanks-card-btn.is-confirmed .wc-confirmed { display: block; }
.thanks-card-btn.is-confirmed .wc-confirmed strong { color: var(--green-dark); }

/* ---------- Step sections ---------- */
/* Alle Funnel-Schritte teilen eine Fläche: sie sind ein Vorgang, kein neues Thema */
.step-section,
.step-section.step-alt,
#step-2,
#step-3,
#step-contact { background: var(--band-cool); }
/* Danke-Seite bleibt die Ausnahme, sie belohnt in Signalgrün */

.step-inner h2 { max-width: 22ch; }
.subhead { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* options grids — mobile-first: 2 columns */
.options {
  display: grid;
  gap: .75rem;
  margin-top: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
.options.options-quad { grid-template-columns: 1fr 1fr; }

.option {
  appearance: none;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  position: relative;
  box-shadow: var(--shadow);
}
.option:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.option:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; }
.option.is-selected {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.option.is-selected .option-label { color: var(--white); }

.option-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.option-card .option-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.option-card .option-label {
  padding: .85rem 1rem 1rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.3;
}

/* textarea */
textarea, input[type=text], input[type=email], input[type=tel] {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  padding: .95rem 1.1rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
textarea { resize: vertical; min-height: 150px; margin-bottom: 1.25rem; }
textarea:focus, input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(21,193,131,.15); }
::placeholder { color: #8A939B; }

/* lead form */
.lead-form { display: grid; gap: 1rem; }

/* Submit erfolgreich — Felder & Hinweise ausblenden, Button als Erfolgs-Pille */
.lead-form.is-sent .field,
.lead-form.is-sent .file-row,
.lead-form.is-sent .checkbox-row,
.lead-form.is-sent .legal-note,
.lead-form.is-sent .personal-note,
.lead-form.is-sent .hp-field {
  display: none;
}
.lead-form.is-sent .cta-submit {
  background: var(--green);
  color: var(--white);
  cursor: default;
  opacity: 1;
  animation: none;
  font-size: 1rem;
  padding: 1.1rem 1.5rem;
}
.lead-form.is-sent .cta-submit::after { display: none; }

.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}

.input-row {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input-row:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(21,193,131,.15);
}
.input-row input {
  border-radius: 0;
  border: none;
  padding-left: 3rem;
  background: transparent;
  box-shadow: none;
}
.input-row input:focus { box-shadow: none; border-color: transparent; }
.input-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  pointer-events: none;
  z-index: 1;
}

.file-row {
  position: relative;
  display: block;
  background: var(--white);
  border: 2px dashed var(--blue);
  border-radius: var(--radius-sm);
  padding: .95rem 1.1rem;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.file-row:hover { border-color: var(--green); background: #F5FBF7; }
.file-row input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-label {
  display: flex;
  gap: .85rem;
  align-items: center;
}
.file-label .input-icon { position: static; transform: none; }
.file-label strong { display: block; font-weight: 600; }
.file-label em { display: block; font-style: normal; color: var(--muted); font-size: .82rem; font-weight: 500; margin-top: .15rem; }

.checkbox-row {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: .9rem;
  padding: .25rem 0;
}
.checkbox-row input { margin-top: 0; flex-shrink: 0; }
.checkbox-row a { color: var(--dark); }

.personal-note {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--blue-soft);
  border-radius: var(--radius);
  color: var(--dark);
  font-size: .95rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.personal-note .note-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--white);
}
.personal-note p { margin: 0 0 .3rem; }
.personal-note p:last-child { margin-bottom: 0; color: var(--muted); }

/* Thank you */
.thank-you { text-align: center; background: var(--green) !important; color: var(--dark); }
.thank-you .container { max-width: 640px; }
.thanks-icon { display: flex; justify-content: center; margin-bottom: 1rem; }

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  background: var(--dark);
  color: var(--blue);
  font-size: .88rem;
}
.footer-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer a,
.site-footer .linklike { color: var(--white); opacity: .85; }
.site-footer a:hover,
.site-footer .linklike:hover { opacity: 1; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 120;
  padding: 1rem;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 -20px 50px -20px rgba(0,0,0,.4);
  animation: slideUp .4s var(--ease);
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  display: grid;
  gap: .9rem;
  width: min(980px, 100% - 0rem);
  margin-inline: auto;
}
.cookie-text h3 {
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 .25rem;
}
.cookie-text p {
  font-size: .85rem;
  color: var(--blue);
  margin: 0;
}
/* Links sind seitenweit dunkel, im dunklen Banner wären sie unsichtbar */
.cookie-text p a { color: var(--white); }
.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.cookie-btn {
  appearance: none;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: .75rem 1rem;
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.cookie-btn.primary { background: var(--green); border-color: var(--green); }
.cookie-btn.primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.cookie-btn.secondary:hover { background: rgba(255,255,255,.1); }
.cookie-link {
  color: var(--blue) !important;
  font-size: .8rem;
  text-align: center;
  display: block;
}

/* ---------- Tablet (>=640) ---------- */
@media (min-width: 640px) {
  body { font-size: 17px; }
  .usp li { font-size: 1rem; }
  .options.options-quad { grid-template-columns: 1fr 1fr; }
  .option-card .option-label { font-size: 1rem; padding: 1rem 1.2rem; }
  .cookie-inner { grid-template-columns: 1fr auto; align-items: center; }
  .cookie-actions { grid-template-columns: auto auto; }
  .cookie-link { grid-column: 1 / -1; text-align: left; }
  .personal-note .note-avatar { width: 52px; height: 52px; }
}

/* ---------- Desktop (>=860) ---------- */
@media (min-width: 860px) {
  /* Hochformat-Video: schmal halten, sonst wird der Hero zu hoch. Text braucht die Breite. */
  .hero-inner { grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 3rem); }
  .hero-media { max-width: 400px; }
  .hero-media img { aspect-ratio: 4/5; object-position: center; }
  .hero-text > .cta { margin-inline: 0; }
  .hero-text > .rating { justify-content: flex-start; margin-inline: 0; }
  .cta { width: auto; min-width: 280px; }
  .options { gap: 1rem; }
  .options.options-quad { grid-template-columns: repeat(4, 1fr); }
  .options-media { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .expect .benefits { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .qualifier { padding: 4rem 0 4.5rem; }
  .qualifier-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .thanks-choices { grid-template-columns: 1fr 1fr; }

  .workplace-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .gallery-item img { aspect-ratio: 4/5; }

  .workplace-quote {
    grid-template-columns: minmax(260px, 320px) 1fr;
    align-items: stretch;
  }
  .workplace-quote .quote-portrait {
    height: 100%;
    aspect-ratio: auto;
    min-height: 320px;
  }
  .workplace-quote .quote-body { padding: 2.2rem 2.4rem; }
  .workplace-quote blockquote { font-size: 1.15rem; }

  .step-inner h2 { max-width: 26ch; }
  h1 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
}

@media (min-width: 1024px) {
  .expect .benefits { grid-template-columns: repeat(4, 1fr); }
  .qualifier-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-num { font-size: 1.8rem; }
  .pillar { padding: 1.75rem; }
}

/* ---------- Honeypot (Anti-Bot) ---------- */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Urgency badge ---------- */
.urgency-badge {
  display: inline-block;
  background: var(--white);
  color: var(--green-deep);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .55rem 1.15rem;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.35;
  /* nowrap schnitt auf dem Handy das Wort "Schweinfurt" ab, also genau die Ortsangabe */
  white-space: normal;
  max-width: 32ch;
  margin-bottom: 1.25rem;
}
.urgency-badge strong { color: var(--dark); font-weight: 600; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 159, 28, .18); }
}

/* ---------- Step 3: Profile-Tiles ---------- */
.profile-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin: 0 0 1.5rem;
}
.profile-tile {
  font: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: all .18s var(--ease);
  position: relative;
  width: 100%;
}
.profile-tile:hover {
  border-color: var(--green);
  background: var(--light-2);
  transform: translateY(-1px);
}
.profile-tile-icon {
  color: var(--green-deep);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light-2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all .18s var(--ease);
}
.profile-tile-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.profile-tile-text strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.profile-tile-text span {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.3;
}
.profile-tile-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: transparent;
  background: var(--white);
  flex-shrink: 0;
  transition: all .18s var(--ease);
}

/* Selected state */
.profile-tile.is-selected {
  border-color: var(--green);
  background: var(--light-2);
  box-shadow: 0 6px 24px -12px rgba(21, 193, 131, .35);
}
.profile-tile.is-selected .profile-tile-icon {
  background: var(--white);
}
.profile-tile.is-selected .profile-tile-check {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* "Eigene Antwort" — sanft abgesetzt */
.profile-tile.chip-custom {
  border-style: dashed;
}
.profile-tile.chip-custom .profile-tile-icon {
  background: transparent;
}

/* Tablet+ : 2 Spalten */
@media (min-width: 640px) {
  .profile-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .profile-tile { padding: 1.15rem 1.25rem; }
  .profile-tile-icon { font-size: 1.85rem; width: 48px; height: 48px; }
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(229,237,229,0) 0%, rgba(229,237,229,.96) 28%, var(--light) 100%);
  border-top: 1px solid var(--border);
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  pointer-events: none;
  transform: translateY(120%);
  transition: transform .35s var(--ease);
}
.sticky-cta .cta {
  pointer-events: auto;
  width: 100%;
  max-width: 420px;
  padding: .9rem 1.5rem;
  font-size: 1rem;
}
.sticky-cta.is-visible {
  display: flex;
  transform: translateY(0);
}
@media (min-width: 860px) {
  .sticky-cta { display: none !important; }
}

/* ---------- Exit Intent Modal ---------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.exit-modal[hidden] { display: none; }
.exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 25, .55);
  backdrop-filter: blur(3px);
  animation: fadeIn .25s var(--ease);
}
.exit-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem 1.75rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalPop .35s var(--ease);
}
.exit-close {
  position: absolute;
  top: .5rem; right: .75rem;
  background: none; border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: .25rem .5rem;
}
.exit-emoji { display: flex; justify-content: center; margin-bottom: .75rem; }
.exit-card h3 { font-size: 1.4rem; margin: 0 0 .5rem; }
.exit-card p  { margin: 0 0 1.25rem; color: var(--muted); }
.exit-card .cta {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto .75rem;
  text-decoration: none;
}
.exit-dismiss {
  display: block;
  margin: 0 auto;
  font-size: .85rem;
  color: var(--muted);
  padding: .25rem;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================
   Recruiting-Wording: kleine Begleittexte und neue Bausteine
   ========================================================= */

/* Mikrotext direkt unter einem Button */
.cta-note {
  margin: .65rem 0 0;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.hero-text .cta-note { text-align: center; }

/* Erklärzeile unter der Bewertung */
.rating-note {
  margin: .5rem 0 0;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  max-width: 34ch;
  margin-inline: auto;
}

/* Zeile über den wiederholten Buttons */
.cta-lead {
  margin: 0 0 .9rem;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: center;
}

/* Zusatzleistungen unter den vier Kacheln */
.extras {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.extras-head {
  margin: 0 0 .9rem;
  font-size: 1.05rem;
}
.extras-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.extras-list li {
  position: relative;
  padding-left: 1.65rem;
  font-size: .97rem;
  line-height: 1.5;
}
.extras-list li::before {
  content: "";
  position: absolute;
  left: .1rem; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* =========================================================
   Icon-Set: eine Strichstärke, ein Raster, eine Sprache
   ========================================================= */
.ic {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic-fill { fill: currentColor; stroke: none; }

/* Tap-Targets: alles Klickbare mindestens 44px hoch (Apple HIG, Material) */
.footer-links a,
.footer-links .linklike,
.thanks-note a,
.checkbox-row a {
  /* Bleibt normaler Fließtext: padding vergrößert bei inline-Elementen nur die
     Tippfläche, NICHT die Zeilenhöhe. min-height/inline-flex riss die erste
     Zeile des Satzes auseinander (Lücke zwischen Zeile 1 und 2). */
  display: inline;
  padding-block: .5rem;
}
.rating-link { min-height: 44px; }
.checkbox-row input[type="checkbox"] { width: 24px; height: 24px; }
.time-chip span { min-height: 44px; display: inline-flex; align-items: center; }
/* Verzögerungsfreies Antippen auf Touchgeräten */
button, a, label, input, textarea { touch-action: manipulation; }

/* Icon-Größen je Ort, damit das Raster stimmt */
.qualifier-icon .ic   { width: 28px; height: 28px; }
.pillar-icon .ic      { width: 26px; height: 26px; }
.profile-tile-icon .ic{ width: 24px; height: 24px; }
.input-icon .ic       { width: 20px; height: 20px; }
.thanks-card-icon .ic { width: 26px; height: 26px; }
.thanks-icon .ic      { width: 56px; height: 56px; stroke-width: 1.75; }
.exit-emoji .ic       { width: 40px; height: 40px; stroke-width: 1.75; }
.profile-tile-check .ic { width: 16px; height: 16px; stroke-width: 3; }

/* Farbgebung: Icons tragen die Markenfarbe, nicht die Textfarbe */
.qualifier-icon { color: var(--green-deep); }
.thanks-card-icon { color: var(--green-deep); }
.thanks-icon { color: var(--green); }
.exit-emoji { color: var(--green-deep); }
.input-icon { color: var(--muted); }

/* Bürovideo im Arbeitsumfeld: läuft von selbst, keine Bedienflächen */
.office-video {
  position: relative;
  margin: 0 0 1.75rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.office-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   Stimmen aus dem Team
   ========================================================= */
.voice {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.voice-portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .9rem;
}
.voice blockquote {
  margin: 0 0 .9rem;
  font-size: 1rem;
  line-height: 1.6;
}
.voice figcaption strong { display: block; font-weight: 600; }
.voice figcaption span { font-size: .88rem; color: var(--muted); }

/* Markierung für noch nicht freigegebene Beispieltexte.
   Zum Live-Gang: diese Regel und alle .platzhalter-tag im HTML entfernen. */
.platzhalter-tag {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  padding: .2rem .6rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Kleines Zitat im Über-Abschnitt */
.mini-quote {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 1.35rem 1.25rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
}
.mini-quote blockquote {
  margin: 0 0 .75rem;
  font-size: 1rem;
  line-height: 1.6;
}
.mini-quote figcaption strong { display: block; font-weight: 600; }
.mini-quote figcaption span { font-size: .88rem; color: var(--muted); }

@media (min-width: 860px) {
    .voice { padding: 1.75rem 1.6rem 1.5rem; }
  .voice-portrait { width: 112px; height: 112px; }
}

/* Harte Fakten zum Arbeitstag */
.daybox {
  display: grid;
  gap: .9rem;
  margin: 1.75rem 0 2rem;
}
.daybox-item {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.daybox-key {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: .35rem;
}
.daybox-val {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}

@media (min-width: 860px) {
  .daybox { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* Diskretionshinweis über dem Formular */
.privacy-note {
  margin: 0 0 1.4rem;
  padding: .95rem 1.1rem;
  background: var(--light-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Hilfetext unter einem Eingabefeld */
.field-hint {
  margin: .4rem 0 0;
  font-size: .84rem;
  color: var(--muted);
}

/* Wann dürfen wir anrufen */
.time-field {
  border: none;
  margin: 0 0 1.1rem;
  padding: 0;
}
.time-field legend {
  padding: 0;
  margin-bottom: .55rem;
  font-size: .95rem;
  font-weight: 600;
}
.time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.time-chip { position: relative; }
.time-chip input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.time-chip span {
  display: inline-block;
  padding: .6rem 1rem;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .15s var(--ease);
}
.time-chip span:hover { border-color: var(--green-light); }
.time-chip input:checked + span {
  border-color: var(--green);
  background: var(--light);
  font-weight: 600;
}
.time-chip input:focus-visible + span { outline: 3px solid var(--green-light); outline-offset: 2px; }

/* Ablauf auf der Danke-Seite */
.next-steps {
  counter-reset: schritt;
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  max-width: 560px;
  display: grid;
  gap: .9rem;
  text-align: left;
}
.next-steps li {
  counter-increment: schritt;
  position: relative;
  padding: .9rem 1.1rem .9rem 3.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .97rem;
  line-height: 1.5;
}
.next-steps li::before {
  content: counter(schritt);
  position: absolute;
  left: 1rem; top: .95rem;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}
.thanks-note {
  margin: 1.4rem auto 0;
  max-width: 560px;
  font-size: .88rem;
  color: var(--muted);
}

/* Sticky-Leiste auf dem Handy */
.sticky-note {
  display: block;
  margin-bottom: .35rem;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 860px) {
  .extras-list { grid-template-columns: 1fr 1fr; gap: .8rem 2rem; }
  .extras { padding: 1.75rem 1.75rem; }
  .hero-text .cta-note,
  .hero-text .rating-note { text-align: left; margin-inline: 0; }
}

/* =========================================================
   Designrunde: Bandrhythmus, dunkles Zahlenband, Stimmen
   Grundregel: Weiß ist Objektfarbe (Karten, Felder), nie Bandfarbe.
   Fünf Kapitel statt sieben Farbwechsel.
   ========================================================= */

/* ---------- Das eine kräftige Band: navion-blue, hier stehen die Zahlen ---------- */
.expect {
  background: var(--blue);
  color: var(--dark);
  /* Tokens kippen, damit jedes Bauteil im Band automatisch mitzieht */
  --muted: #3E4A52;                      /* 5,4:1 auf navion-blue */
  --border: rgba(33, 33, 33, .22);
}
.expect h2,
.expect h3,
.expect .extras-head { color: var(--dark); }
.expect .eyebrow {
  color: var(--dark);
  background: rgba(255, 255, 255, .55);
}
.expect .cta-lead { color: var(--dark); }

/* Zahlen groß und lesbar: Signalgrün auf Hellgrün war 1,96:1, dunkel auf navion-blue ist 8,4:1 */
.expect .benefit-num {
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
  margin-bottom: .6rem;
}
.expect .benefit {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(33, 33, 33, .22);
  border-radius: 0;
  box-shadow: none;
  padding: 1.4rem 0 .5rem;
}
.expect .benefit h3 { font-size: .98rem; font-weight: 600; }
.expect .benefit p  { color: var(--muted); }

/* Die Zusatzleistungen bleiben das einzige helle Objekt und ziehen den Blick */
.expect .extras {
  background: var(--white);
  border: 0;
  color: var(--dark);
}
.expect .extras .extras-head { color: var(--dark); }
.expect .extras-list li { color: var(--dark); }

/* ---------- Danke-Seite: Signalgrün, aber niemals weiße Schrift darauf ---------- */
.thank-you h2,
.thank-you p,
.thank-you .subhead,
.thank-you strong { color: var(--dark); }
.thank-you .thanks-icon { color: var(--dark); }
.thank-you .next-steps li { background: var(--white); border-color: transparent; }
.thank-you .thanks-card { background: var(--white); border-color: transparent; }
.thank-you .thanks-card.primary { background: var(--dark); color: var(--white); }
.thank-you .thanks-card.primary strong,
.thank-you .thanks-card.primary span { color: var(--white); }
.thank-you .thanks-note { color: var(--dark); }
.thank-you .rating-link { color: var(--dark); }

/* ---------- Buttons: zwei laute Anker statt sechs ---------- */
.cta-pulse { animation: none; }
.cta-pulse::after { display: none; }
/* In den Erzählabschnitten tritt der Button zurück */
.pitch .cta,
.workplace .cta,
.expect .cta {
  background: transparent;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  box-shadow: none;
}
.expect .cta { border-color: var(--dark); color: var(--dark); }
.pitch .cta:hover,
.workplace .cta:hover { background: rgba(21, 193, 131, .12); }
.expect .cta:hover { background: rgba(255, 255, 255, .4); }

/* ---------- Stimmen: redaktionelle Bänder statt Anstecknadeln ---------- */
.voice {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.voice-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 22%;
  background: var(--blue-soft);
  margin: 0 0 1.1rem;
}
.voice blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark);
  margin: 0 0 .9rem;
  text-wrap: balance;
}
.voice figcaption strong { font-size: 1rem; }
.voice figcaption span   { font-size: .98rem; }
.platzhalter-tag { top: .5rem; right: .5rem; transform: none; }

@media (min-width: 860px) {
    .voice {
    display: grid;
    grid-template-columns: 320px 1fr;
    column-gap: 2.5rem;
    align-items: center;
  }
  .voice-portrait { grid-column: 1; grid-row: 1 / 3; width: 320px; margin: 0; }
  .voice blockquote { grid-column: 2; grid-row: 1; align-self: end; max-width: 52ch; font-size: 1.2rem; }
  .voice figcaption { grid-column: 2; grid-row: 2; align-self: start; }
  /* Zweite Stimme spiegelverkehrt: das Auge bekommt einen Rhythmus */
  .voice:nth-child(even) { grid-template-columns: 1fr 320px; }
  .voice:nth-child(even) .voice-portrait { grid-column: 2; }
  .voice:nth-child(even) blockquote,
  .voice:nth-child(even) figcaption { grid-column: 1; }
}

/* ---------- Über Navion: Kraft kommt aus Luft, nicht aus Fläche ---------- */
.pitch { padding: clamp(4rem, 10vw, 7rem) 0; }
.hero + .pitch { padding-top: clamp(2.5rem, 6vw, 4rem); }
.pitch-head { max-width: 48ch; }
.pitch-lead { font-size: 1.15rem; line-height: 1.55; color: var(--dark); text-wrap: pretty; }
.pitch .pillar {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  padding: 1.25rem 0 0;
}
.mini-quote {
  background: transparent;
  border: 0;
  border-left: 0;
  padding: 0 0 0 1.5rem;
  position: relative;
}
.mini-quote::before {
  content: "";
  position: absolute;
  left: 0; top: .25rem; bottom: 2.6rem;
  width: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ---------- Material: nur was schwebt, wirft Schatten ---------- */
.about-media img,
.gallery-item img,
.workplace-quote,
.benefit,
.extras,
.office-video,
.hero-video { box-shadow: none; }
.about-media img,
.gallery-item img { border: 1px solid var(--border); }
.workplace-quote { border: 1px solid var(--border); }
.workplace-quote blockquote { font-style: normal; }
.office-video { border: 1px solid var(--border); }

/* Kein Hover-Verhalten auf Touchgeräten simulieren */
@media (hover: none) {
  .cta:hover { transform: none; }
}

/* ---------- Kopfzeile: färbt sich erst beim Scrollen ---------- */
.site-header { background: transparent; }
.site-header.is-stuck {
  background: rgba(229, 237, 229, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

/* ---------- Formular: weniger Hürde ---------- */
.file-row {
  border: none;
  background: none;
  padding: .4rem 0;
}
.file-row .file-label em { color: var(--muted); }
.step-section { min-height: calc(100svh - 60px); }
/* Vor dem ersten Schritt kündigt kein leerer Balken ein langes Verfahren an */
.progress-wrap { background: transparent; }

/* ---------- Einzelne Stimme als Beleg direkt neben der Aussage ---------- */
.voice-beleg {
  margin: 2rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.voice-beleg .voice-portrait { max-width: 260px; }

@media (min-width: 860px) {
  .voice-beleg {
    display: grid;
    grid-template-columns: 260px 1fr;
    column-gap: 2.25rem;
    align-items: center;
  }
  .voice-beleg .voice-portrait { width: 260px; max-width: none; grid-column: 1; grid-row: 1 / 3; }
  .voice-beleg blockquote { grid-column: 2; grid-row: 1; align-self: end; }
  .voice-beleg figcaption { grid-column: 2; grid-row: 2; align-self: start; }
  /* Zweite Stimme spiegelverkehrt, damit die Seite einen Rhythmus bekommt */
  .voice-spiegel { grid-template-columns: 1fr 260px; }
  .voice-spiegel .voice-portrait { grid-column: 2; }
  .voice-spiegel blockquote,
  .voice-spiegel figcaption { grid-column: 1; }
}

/* =========================================================
   Textrunde: Signal-Badge, Ehrlich-gesagt, Ausstieg, CTA-Präsenz
   ========================================================= */

/* Badge: Signalwirkung über einen pulsenden Punkt, die Pille bleibt ruhig */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--orange);
  color: var(--dark);
  border: 0;
  font-weight: 600;
}
.urgency-badge strong { color: var(--dark); font-weight: 700; }
.badge-punkt {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark);
  flex: none;
  animation: punktPuls 2s var(--ease) infinite;
}
@keyframes punktPuls {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(33,33,33,.4); }
  50%      { opacity: .5;  box-shadow: 0 0 0 5px rgba(33,33,33,0); }
}
@media (prefers-reduced-motion: reduce) { .badge-punkt { animation: none; } }

/* Voraussetzung: der Filter direkt über dem Button */
.voraussetzung {
  margin: 0 0 1.1rem;
  padding-left: .9rem;
  border-left: 2px solid var(--border);
  font-size: .92rem;
  line-height: 1.5;
  color: var(--muted);
}

/* CTA wieder präsent: das ist eine Anzeigen-Landingpage, kein Prospekt */
.cta {
  font-size: 1.12rem;
  padding: 1.15rem 2rem;
  box-shadow: 0 12px 28px -12px rgba(21, 193, 131, .75);
}
.pitch .cta,
.workplace .cta,
.expect .cta {
  background: var(--green);
  color: var(--dark);
  border: 0;
  box-shadow: 0 12px 28px -12px rgba(21, 193, 131, .75);
}
.expect .cta { border: 0; color: var(--dark); }
.pitch .cta:hover,
.workplace .cta:hover,
.expect .cta:hover { background: var(--green-light); }
.cta-sekundaer {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  box-shadow: none;
  font-size: 1rem;
  padding: .9rem 1.5rem;
}
.cta-sekundaer:hover { background: rgba(21, 193, 131, .12); }

/* Ehrlich gesagt: der Abschnitt ohne Button */
.ehrlich { background: var(--light); }
.ehrlich .container { max-width: 760px; }
.ehrlich-liste {
  counter-reset: ehrlich;
  list-style: none;
  margin: 1.5rem 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.ehrlich-liste li {
  counter-increment: ehrlich;
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 3.4rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  line-height: 1.55;
}
.ehrlich-liste li::before {
  content: counter(ehrlich);
  position: absolute;
  left: 1.1rem; top: 1.1rem;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}
.ehrlich-schluss { font-weight: 600; margin: 0; }

/* Kennzeichnung Bedingung/Wunsch auf den Qualifier-Karten */
.karten-marke {
  display: inline-block;
  margin-bottom: .6rem;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: rgba(33, 33, 33, .08);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.karten-marke-pflicht { background: var(--orange); color: var(--dark); }

/* Dritte Antwort bei Frage 1: bewusst schlicht, kein Bild */

/* Ausstiegsseite */
.stopp .container { max-width: 680px; }
.stopp .subhead { margin-bottom: 1.5rem; }
.stopp-block {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.stopp-block p { margin: .75rem 0 0; color: var(--muted); }
.stopp-gruss { margin-top: 2rem; font-weight: 600; }
.badge-text { display: inline-block; }
.urgency-badge { max-width: 42ch; }

/* ---------- Dein Dienstag als Zeitleiste ---------- */
.tagesplan {
  list-style: none;
  margin: 1.75rem 0 2rem;
  padding: 0;
  max-width: 620px;
}
.tagesplan li {
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 1.1rem;
  padding-bottom: 1.4rem;
}
.tagesplan li:last-child { padding-bottom: 0; }
.tagesplan-zeit {
  font-weight: 600;
  font-size: .92rem;
  color: var(--green-deep);
  font-variant-numeric: tabular-nums;
  padding-top: .15rem;
  text-align: right;
}
.tagesplan-text {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.55;
}
.tagesplan-text::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
}
.tagesplan li:not(:last-child) .tagesplan-text::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(.5em + 13px);
  bottom: -1.4rem;
  width: 1px;
  background: var(--border);
}

/* ---------- Formular-Feinschliff (Roberts Runde 04.08.) ---------- */
/* Lebenslauf-Feld präsenter: sichtbare Fläche statt unscheinbarer Zeile */
.file-row {
  display: block;
  border: 2px dashed var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin: .4rem 0 1.25rem;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.file-row:hover { border-color: var(--green); }
.file-row:focus-within { outline: 3px solid var(--green-light); outline-offset: 2px; }

/* Checkbox: eigene Optik statt Systemkästchen */
.checkbox-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color .15s var(--ease), border-color .15s var(--ease);
}
.checkbox-row input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.checkbox-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23212121' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 15px no-repeat;
}
.checkbox-row input[type="checkbox"]:focus-visible { outline: 3px solid var(--green-light); outline-offset: 2px; }

/* Fehlerhinweis unter einem Feld, in CI-Farben */
.field-fehler {
  display: inline-block;
  margin: .45rem 0 0;
  padding: .35rem .7rem;
  border-radius: 8px;
  background: var(--orange);
  color: var(--dark);
  font-size: .86rem;
  font-weight: 600;
}
.field-fehler[hidden] { display: none; }

/* Verhindert, dass ein Satzzeichen allein umbricht */
.kein-umbruch { white-space: nowrap; }

/* Checkbox-Zeile: am Desktop (einzeilig) mittig zueinander, am Handy erste Zeile oben */
@media (min-width: 860px) {
  .checkbox-row { align-items: center; }
}

/* ---------- iPhone-Fixes (Robert 04.08.): Karten und Uhrzeit-Chips ---------- */
/* Antwortkarten am Handy einspaltig: zweispaltig quetschte die Beschriftungen */
.options,
.options.options-quad { grid-template-columns: 1fr; }
@media (max-width: 639px) {
  /* gestapelte Karten kompakt halten: Bild als breiter Streifen */
  .option-card .option-img { aspect-ratio: 2 / 1; }
}
@media (min-width: 640px) {
  .options-media,
  .options.options-quad { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .options.options-quad { grid-template-columns: repeat(4, 1fr); }
}

/* Uhrzeit-Chips: drei gleich breite in EINER Reihe, auch auf kleinen Geräten */
@media (max-width: 479px) {
  .time-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .time-chip span {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: .6rem .3rem;
    font-size: .85rem;
  }
}

/* Bewertungs-Pille am Handy: gestapelt und zentriert statt wildem Umbruch
   (Sterne oben, Text darunter; der Pfeil entfällt, die ganze Pille ist der Link) */
@media (max-width: 639px) {
  .rating,
  .hero-text > .rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    text-align: center;
  }
  .rating-link { padding: .7rem 1rem; }
  .rating .rating-arrow { display: none; }
}
