/* =========================================================
   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;
  --white:       #FFFFFF;
  --muted:       #5B6670;
  --border:      #D3DCD6;

  --radius:     22px;
  --radius-sm:  14px;
  --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-dark);
  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);
}

/* ---------- CTA ---------- */
.cta {
  appearance: none;
  border: none;
  background: var(--green);
  color: var(--white);
  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-dark); 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: #F5B400; 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 ---------- */
.pitch { background: var(--white); }
.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(--light-2); }
.workplace-lead { max-width: 58ch; color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

/* Video embed (privacy-friendly click-to-play) */
.video-embed {
  position: relative;
  display: block;
  margin: 0 0 2rem;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  background: var(--dark);
  outline: none;
}
.video-embed:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease), filter .3s var(--ease);
}
.video-embed:hover .video-thumb { transform: scale(1.03); filter: brightness(.88); }
.video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 62px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
  transition: transform .25s var(--ease);
}
.video-embed:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-label {
  position: absolute;
  left: 1rem; bottom: 1rem;
  padding: .45rem .85rem;
  background: rgba(33,33,33,.72);
  color: var(--white);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* 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-2);
  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 {
  font-size: 1.8rem;
  margin-bottom: .6rem;
  line-height: 1;
}
.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 { font-size: 1.6rem; line-height: 1; }
.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 ---------- */
.step-section { background: var(--light); }
.step-section.step-alt,
#step-2 { background: var(--white); }
#step-3 { background: var(--light); }
#step-contact { background: var(--white); }

.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%);
  font-size: 1.1rem;
  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: .2rem; width: 18px; height: 18px; accent-color: var(--green); 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(--light) !important; }
.thank-you .container { max-width: 640px; }
.thanks-icon { font-size: 4rem; 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;
}
.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) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
  .hero-media { max-width: none; }
  .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: #FFF4E5;
  color: #8A4B00;
  border: 1px solid #FFD8A8;
  border-radius: 999px;
  padding: .55rem 1.15rem;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  margin-bottom: 1.25rem;
  animation: badgePulse 2.4s var(--ease) infinite;
}
.urgency-badge strong { color: #B54708; font-weight: 700; }
@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 {
  font-size: 1.7rem;
  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(255,255,255,0) 0%, rgba(255,255,255,.95) 25%, var(--white) 100%);
  z-index: 60;
  display: none;
  justify-content: center;
  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 { font-size: 2.5rem; margin-bottom: .5rem; }
.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 {
  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; }
}
