/* ============================================================
   BUTHI Personalvermittlung — Design System v4
   Dark Neumorphism (Soft UI) — pillowed matte ceramic, dark cool clay
   Single monochromatic surface — elements extrude or press in.
   NO purple. NO hard white cards. SAME surface as page.
   ============================================================ */

/* ============================================================
   FONTS — Plus Jakarta Sans (display) + DM Sans (body)
   Self-hosted variable WOFF2 (latin + latin-ext), declared in
   /assets/fonts/fonts.css and linked from base.html. No Google CDN.
   ============================================================ */


/* ============================================================
   DESIGN TOKENS — Dark Neumorphism single source of truth
   Base surface: #2A2D33 — EVERYTHING is molded from this one clay.
   Cards = same colour as page (same-surface illusion).
   ============================================================ */
:root {
  /* --- Base surface (the clay everything is carved from) --- */
  --neu-bg:        #2A2D33;   /* page background AND card background — same surface */
  --neu-bg-dark:   #232529;   /* slightly darker variant for alternate sections */
  --neu-bg-deep:   #1e2024;   /* deepest sink — apply bg */

  /* --- Neumorphic shadows (dark dual-shadow system) ---
     Light shadow: top-left, subtle lighter cool grey — NOT white.
     Dark shadow: bottom-right, darker than bg.
     Geometry: extruded 9/9/16, hover 12/12/20, small 5/5/10.
     Inset 6/6/10, inset-deep 10/10/20, inset-small 3/3/6.
  */
  --sh-light:         rgba(255,255,255,0.055);  /* top-left light source on dark */
  --sh-dark:          rgba(0,0,0,0.55);         /* bottom-right shadow on dark */
  --sh-light-inset:   rgba(255,255,255,0.04);   /* inset light — even subtler */
  --sh-dark-inset:    rgba(0,0,0,0.60);         /* inset dark — deeper cut */

  /* Extruded (default resting) */
  --shadow-extruded:
    -9px -9px 16px var(--sh-light),
     9px  9px 16px var(--sh-dark);

  /* Extruded Hover (lifted — deeper dual shadow) */
  --shadow-extruded-hover:
    -12px -12px 20px var(--sh-light),
      12px  12px 20px var(--sh-dark);

  /* Extruded Small (badges, eyebrows, tags) */
  --shadow-extruded-sm:
    -5px -5px 10px var(--sh-light),
      5px  5px 10px var(--sh-dark);

  /* Inset (pressed — carved-in state) */
  --shadow-inset:
    inset 6px 6px 10px var(--sh-dark-inset),
    inset -6px -6px 10px var(--sh-light-inset);

  /* Inset Deep (inputs, wells, icon troughs) */
  --shadow-inset-deep:
    inset 10px 10px 20px var(--sh-dark-inset),
    inset -10px -10px 20px var(--sh-light-inset);

  /* Inset Small (range tracks, pill slots) */
  --shadow-inset-sm:
    inset 3px 3px 6px var(--sh-dark-inset),
    inset -3px -3px 6px var(--sh-light-inset);

  /* Orange-tuned extruded for CTA buttons (still pressable) */
  --shadow-orange:
    -9px -9px 16px rgba(255,255,255,0.05),
      9px  9px 16px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,160,80,0.30);

  --shadow-orange-hover:
    -12px -12px 20px rgba(255,255,255,0.06),
      12px  12px 20px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,160,80,0.35),
    0 0 24px rgba(242,106,33,0.28);

  /* --- Text --- */
  --ink:           #E4E8EF;   /* primary text — ~8.1:1 on --neu-bg  */
  --ink-secondary: #9AA3B2;   /* secondary text — ~4.6:1 on --neu-bg (WCAG AA) */
  --ink-tertiary:  #6B7280;   /* tertiary / metadata */
  --paper:         #E4E8EF;   /* alias for --ink */
  --paper-soft:    #9AA3B2;   /* alias for --ink-secondary */

  /* --- Borders (very subtle on same-surface) --- */
  --border:        rgba(255,255,255,0.05);
  --border-strong: rgba(255,255,255,0.09);
  --border-rim:    rgba(255,255,255,0.13);

  /* --- Radius scale — hyper-rounded, pillowed --- */
  --radius-xs:   6px;
  --radius-sm:   12px;
  --radius-md:   16px;     /* buttons */
  --radius-lg:   24px;     /* inner panels */
  --radius-xl:   32px;     /* cards / containers */
  --radius-full: 999px;

  /* --- Spacing --- */
  --container:    min(1640px, 90vw);
  --gutter:       clamp(20px, 5vw, 60px);
  --section-pad:  clamp(96px, 13vw, 160px);

  /* --- Typography --- */
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --font-text:    "DM Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;

  /* --- CTA / Accent — BUTHI delivery orange --- */
  --cta:          #F26A21;
  --cta-hover:    #FF7E3A;
  --cta-dark:     #D45A14;
  --cta-glow:     rgba(242,106,33,0.32);
  --cta-rim:      rgba(255,130,60,0.45);
  --accent:       #F26A21;   /* used in job-card highlights dot */

  /* --- Success / positive indicators --- */
  --success:      #38B2AC;

  /* --- Motion --- */
  --ease:         cubic-bezier(.22, .61, .36, 1);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);
  --ease-in-out:  cubic-bezier(.65, 0, .35, 1);
}


/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9000;
  padding: 10px 20px;
  background: var(--cta);
  color: #140600;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: top 0.15s var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-extruded);
}
.skip-link:focus {
  top: 16px;
}


/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--neu-bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Focus ring — 2px orange, 2px offset, on ALL interactive elements */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}
::selection { background: var(--cta); color: #140600; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute !important; clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px; overflow: hidden; white-space: nowrap;
}


/* ============================================================
   REVEAL ANIMATION SYSTEM
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}


/* ============================================================
   HEADER — neumorphic frosted bar, extruded from the clay
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 36px);
  background: var(--neu-bg);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.45),
    0 -2px 0 rgba(255,255,255,0.045) inset,
    0 1px 0 rgba(0,0,0,0.35);
  transition: box-shadow .3s var(--ease);
}

.logo-link {
  display: inline-flex;
  height: 37px;
  flex-shrink: 0;
}
.logo { height: 37px; width: auto; filter: invert(1); transition: opacity .3s var(--ease); }
.logo:hover { opacity: 0.8; }
@media (max-width: 480px) {
  .logo-link { height: 30px; }
  .logo { height: 30px; }
}

/* Centered nav links */
.header-nav {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 4px;
}
@media (min-width: 640px) { .header-nav { display: flex; } }
.header-nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-secondary);
  padding: 9px 16px;
  border-radius: var(--radius-full);
  transition: color .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.header-nav-link:hover {
  color: var(--ink);
  box-shadow: var(--shadow-extruded-sm);
}

/* Right-side: lang + CTA */
.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-flag { font-size: 16px; line-height: 1; margin-right: 5px; }
@media (max-width: 480px) { .lang-short { display: none; } .lang-flag { margin-right: 0; font-size: 18px; } }
.lang-link {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 10px; border-radius: var(--radius-sm);
  color: var(--ink-secondary);
  transition: color .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.lang-link:hover { color: var(--ink); box-shadow: var(--shadow-extruded-sm); }
.lang-link.lang-active { color: var(--ink); box-shadow: var(--shadow-inset-sm); }
@media (max-width: 480px) { .lang-link { font-size: 10px; padding: 6px 7px; } }

/* Header CTA pill — solid orange, extruded */
.header-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  background: var(--cta);
  color: #140600;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.header-cta:hover {
  transform: translateY(-1px);
  background: var(--cta-hover);
  box-shadow: var(--shadow-orange-hover);
}
.header-cta:active {
  transform: translateY(0.5px);
  box-shadow: var(--shadow-inset-sm), inset 0 1px 0 rgba(255,160,80,0.20);
}
@media (max-width: 480px) { .header-cta { padding: 9px 15px; font-size: 13px; } }


/* ============================================================
   BUTTONS — neumorphic, rounded, extruded / inset on press
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  will-change: transform;
  background: var(--neu-bg);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-extruded);
  min-height: 44px;
}

/* Primary CTA — solid orange, extruded with orange-tuned shadows */
.btn-primary {
  background: var(--cta);
  color: #140600;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--cta-hover);
  box-shadow: var(--shadow-orange-hover);
}
.btn-primary:active {
  transform: translateY(0.5px);
  box-shadow: var(--shadow-inset-sm),
              inset 0 1px 0 rgba(255,160,80,0.15);
}

/* Light — same as primary on dark */
.btn-light {
  background: var(--cta);
  color: #140600;
  box-shadow: var(--shadow-orange);
}
.btn-light:hover { transform: translateY(-1px); background: var(--cta-hover); box-shadow: var(--shadow-orange-hover); }
.btn-light:active { transform: translateY(0.5px); box-shadow: var(--shadow-inset-sm); }

/* Dark / secondary — neumorphic grey */
.btn-dark {
  background: var(--neu-bg);
  color: var(--ink);
  box-shadow: var(--shadow-extruded);
}
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-extruded-hover); }
.btn-dark:active { transform: translateY(0.5px); box-shadow: var(--shadow-inset); }

/* Ghost — lighter extruded, muted text */
.btn-ghost {
  background: var(--neu-bg);
  color: var(--ink-secondary);
  box-shadow: var(--shadow-extruded);
}
.btn-ghost:hover { color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-extruded-hover); }
.btn-ghost:active { transform: translateY(0.5px); box-shadow: var(--shadow-inset); }
.btn-ghost-light { color: var(--ink); }
.btn-ghost-light:hover { color: var(--ink); }

/* Discord — official blurple branding (#5865F2, hover #4752C4, active #3C45A5) */
.btn-discord {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 6px 18px rgba(88,101,242,0.34);
}
.btn-discord:hover {
  background: #4752C4;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.45);
}
.btn-discord:active {
  background: #3C45A5;
  color: #fff;
  transform: translateY(0.5px);
  box-shadow: 0 4px 12px rgba(88,101,242,0.30);
}
.btn-discord svg { flex-shrink: 0; }

/* E-Mail — refined glass outline with orange envelope icon */
.btn-email {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-extruded);
}
.btn-email svg { color: var(--cta); flex-shrink: 0; transition: transform .3s var(--ease-out); }
.btn-email:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(242,106,33,0.55);
  box-shadow: var(--shadow-extruded-hover), 0 0 0 3px rgba(242,106,33,0.12);
}
.btn-email:hover svg { transform: scale(1.1); }
.btn-email:active { transform: translateY(0.5px); box-shadow: var(--shadow-inset); }

/* WhatsApp — official brand green (#25D366, hover #1EBE5D) */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,0.30);
}
.btn-whatsapp:hover {
  background: #1EBE5D;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.40);
}
.btn-whatsapp:active {
  background: #1AA851;
  color: #fff;
  transform: translateY(0.5px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.28);
}
.btn-whatsapp svg { flex-shrink: 0; }

.btn-block { width: 100%; }
.btn:active { transform: translateY(0.5px); }
.btn-meta {
  font-weight: 400;
  font-size: 12px;
  opacity: 0.6;
  padding-left: 10px;
  border-left: 1px solid currentColor;
  margin-left: 4px;
}
.btn-arrow { transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }


/* ============================================================
   EYEBROW — small extruded pill badge
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  margin: 0 0 24px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded-sm);
}
.eyebrow-light { color: var(--ink-secondary); }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-secondary);
  display: inline-block;
  flex-shrink: 0;
}
.dot-live { background: var(--success); box-shadow: 0 0 0 0 rgba(56,178,172,0.5); animation: pulseLive 2.2s infinite; }
@keyframes pulseLive {
  0%   { box-shadow: 0 0 0 0   rgba(56,178,172,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(56,178,172,0); }
  100% { box-shadow: 0 0 0 0   rgba(56,178,172,0); }
}


/* ============================================================
   SECTIONS
   ============================================================ */
section[id], div[id] { scroll-margin-top: 80px; }

.section { padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.034em;
  margin: 0 0 28px;
  max-width: 20ch;
  color: var(--ink);
}
.section-title-light { color: var(--ink); }
.section-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-secondary);
  max-width: 58ch;
  margin: 0 0 52px;
  line-height: 1.65;
}
.section-lead-light { color: var(--ink-secondary); }
.accent-line {
  padding: 0 4px;
}


/* ============================================================
   HERO — dark neumorphism:
   Photo presented inside an inset well (carved into the clay).
   The neumorphic hero card floats (extruded) above the inset frame.
   Headline uses a calmer orange-accent treatment, no sweeping glass.
   ============================================================ */
.hero {
  background: var(--neu-bg);
  color: var(--ink);
  padding: clamp(148px, 18vw, 210px) 0 clamp(88px, 10vw, 130px);
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Dot-grid — very faint on dark clay */
.hero-bg-grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: gridDrift 90s linear infinite;
}
@keyframes gridDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-40px, -40px); }
}

/* Ambient glow — very subdued, neumorphic avoids bright glows */
.hero-glow {
  position: absolute;
  bottom: 0; left: 50%;
  width: 80vw; height: 40vw;
  max-width: 900px; max-height: 480px;
  background: radial-gradient(ellipse 60% 50% at 50% 100%,
    rgba(242,106,33,0.06) 0%,
    rgba(42,45,51,0.00) 70%);
  filter: blur(60px);
  transform: translateX(-50%);
  animation: glowFloat 18s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowFloat {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

/* Job page hero — same light surface as every other section */
.hero:not(.hero-home) {
  background: var(--neu-bg);
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 60px; }
}

/* Homepage hero — the parallax photo lives in an INSET well (drilled into the clay)
   created by the ::before pseudo on .hero-home. The hero copy card is extruded above. */
.hero-home {
  /* No gradient scrim on bg — the photo frame handles depth via inset shadow */
}

/* Neumorphic INSET FRAME for the hero photo backdrop
   The parallax-bg element now represents the inset well.
   We wrap it in the absolute inset zone and give it a deep inset shadow. */
.hero-home .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neu-bg-deep);
  box-shadow: var(--shadow-inset-deep);
  border-radius: 0;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   HERO PARALLAX LAYERS
   ============================================================ */
.hero-parallax-bg {
  position: absolute;
  inset: -10% 0;
  background-image: url('/assets/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateY(0);
  pointer-events: none;
  z-index: -1;
  /* Photo desaturation + dark overlay: integrates image into neumorphic tone */
  filter: saturate(0.55) brightness(0.40);
  opacity: 0.75;
}

#hero-bg-grid {
  will-change: transform;
}
.hero-glow {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-parallax-bg {
    inset: 0;
    transform: none !important;
    will-change: auto;
  }
  #hero-bg-grid {
    transform: none !important;
    will-change: auto;
  }
  .hero-glow {
    transform: translateX(-50%) !important;
    will-change: auto;
  }
}

.hero-home .container { text-align: center; }
.hero-home-copy {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  /* Extruded hero card — the copy floats above the inset photo well */
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 80px);
  box-shadow: var(--shadow-extruded-hover);
}
.hero-home-copy .hero-title:first-child { margin-top: 0; }
.hero-home .hero-cta-row { justify-content: center; }
.hero-home .hero-sub { margin-left: auto; margin-right: auto; }

/* Trust microline */
.hero-trust-line {
  margin-top: 20px;
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--ink-secondary);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-trust-line::before,
.hero-trust-line::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink-tertiary);
  flex-shrink: 0;
}
.hero-trust-line strong { color: var(--ink-secondary); font-weight: 600; }

/* Hero title — calm, no sweeping animation on neumorphism */
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 9vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero:not(.hero-home) .hero-title { color: var(--ink); }
.hero-title .line { display: block; }
.hero-title .line-sub {
  font-weight: 500;
  font-size: 0.52em;
  letter-spacing: -0.02em;
  color: var(--ink-secondary);
  margin-top: 12px;
}

/* Homepage accent line — orange, bold */
.line-accent {
  display: block;
  color: var(--cta);
}

/* ============================================================
   HERO HEADLINE — Neumorphic treatment: calm fade-reveal.
   Static orange accent on the second line. No sweep on neumorphism —
   the pillowed tactile vibe is calm and grounded.
   prefers-reduced-motion: instant, no animation.
   ============================================================ */
@keyframes heroLineReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-home .hero-title .line {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  animation: heroLineReveal 0.8s var(--ease-out) both;
  display: block;
}
.hero-home .hero-title .line:nth-child(2) {
  animation-delay: 0.12s;
  color: var(--cta);
  -webkit-text-fill-color: var(--cta);
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-title .line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-secondary);
  margin: 0 0 40px;
  max-width: 50ch;
  line-height: 1.65;
}
.hero:not(.hero-home) .hero-sub { color: var(--ink-secondary); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
/* Mobile: unambiguous primary/secondary hierarchy — full-width stacked CTAs */
@media (max-width: 560px) {
  .hero-home .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-home .hero-cta-row .btn { width: 100%; }
}

/* Job hero — rotator */
.rotator {
  display: block;
  height: 1em;
  overflow: hidden;
  position: relative;
}
.rotator-track {
  display: flex;
  flex-direction: column;
  transition: transform .8s var(--ease-in-out);
  will-change: transform;
}
.rotator-word {
  display: block;
  height: 1em;
  line-height: 1;
  color: var(--cta);
  -webkit-text-fill-color: var(--cta);
}

/* ============================================================
   CONVERSION HERO (job landing pages) — form above the fold
   ============================================================ */
.hero-grid-job { align-items: start; }
@media (min-width: 960px) {
  .hero-grid-job { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
}
.hero-title-job {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 7.5vw, 64px); line-height: 1.03; letter-spacing: -0.035em;
  color: var(--ink); margin: 10px 0 14px;
}
.hero-title-job em, .hero-title-job .accent { color: var(--cta); font-style: normal; }
.hero-job .hero-sub { font-size: clamp(16px, 2vw, 19px); margin-bottom: 20px; max-width: 30ch; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.hero-chip {
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.01em; padding: 8px 15px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05); color: var(--ink);
  border: 1px solid rgba(255,255,255,0.10);
}
.hero-chip:first-child {
  color: var(--cta); border-color: rgba(242,106,33,0.42); background: rgba(242,106,33,0.10);
}

/* Hero form card */
.hero-form-wrap { position: relative; z-index: 2; }
.hero-form {
  background: var(--neu-bg); border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-extruded-hover), inset 0 1px 0 rgba(242,106,33,0.14);
  display: flex; flex-direction: column; gap: 14px;
}
.hero-form-title {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: -0.02em; margin: 0 0 2px; color: var(--ink);
}
.hero-field { position: relative; }
.hero-field input {
  font: inherit; font-size: 16px; line-height: 1.4; width: 100%;
  padding: 14px 16px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-md);
  background: var(--neu-bg); color: var(--ink); outline: none;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.28); min-height: 52px;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.hero-field input::placeholder { color: transparent; }
.hero-field label {
  position: absolute; left: 17px; top: 17px; color: var(--ink-secondary);
  font-size: 16px; line-height: 1.2; pointer-events: none; transition: all .18s var(--ease);
}
.hero-field input:focus {
  border-color: var(--cta);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.28), 0 0 0 3px rgba(242,106,33,0.18);
}
.hero-field input:focus + label,
.hero-field input:not(:placeholder-shown) + label {
  top: -8px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cta); padding: 0 6px; background: var(--neu-bg);
}
.hero-form-submit { width: 100%; justify-content: center; margin-top: 2px; min-height: 54px; font-size: 17px; }
/* Closed-hero card: long cross-sell labels must wrap — a nowrap button would
   force the whole hero grid wider than small phone viewports */
.hero-form--closed { min-width: 0; }
.hero-form--closed .btn { white-space: normal; text-align: center; line-height: 1.3; padding-top: 12px; padding-bottom: 12px; }
.hero-form-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; min-height: 50px; border-radius: var(--radius-full);
  background: #25d366; color: #07331a; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 18px rgba(37,211,102,0.28);
  transition: transform .2s var(--ease);
}
.hero-form-wa:hover { transform: translateY(-1px); }
.hero-form-wa:active { transform: translateY(1px); }
/* Discord (blurple) — replaces the WhatsApp green */
.hero-form-discord { background: #5865F2; color: #fff; box-shadow: 0 6px 18px rgba(88,101,242,0.34); }
.sticky-bar-discord { background: #5865F2; color: #fff; box-shadow: 0 6px 20px rgba(88,101,242,0.36); }
.hero-form-micro { margin: 2px 0 0; font-size: 13px; color: var(--ink-secondary); line-height: 1.5; }
.hero-form-upcoming-note { margin: 0 0 4px; font-size: 13px; color: var(--ink-secondary); line-height: 1.55; }
.hero-form-consent { margin: 0; font-size: 11.5px; color: var(--ink-tertiary); line-height: 1.5; }
.hero-form-consent a { color: var(--ink-secondary); text-decoration: underline; }
.hero-form .form-status { font-size: 14px; }
.hero-form .form-status.ok { color: var(--success); }
.hero-form .form-status.err { color: #ff453a; }

/* ===== Benefits grid ===== */
.benefits-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 8px; }
.benefits-grid .benefit-card { flex: 1 1 300px; max-width: 380px; }
.benefit-card {
  background: var(--neu-bg); border-radius: var(--radius-xl);
  padding: clamp(22px, 2.5vw, 28px); box-shadow: var(--shadow-extruded-sm);
}
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 14px;
  color: var(--cta); background: rgba(242,106,33,0.10); box-shadow: var(--shadow-extruded-sm);
}
.benefit-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 6px; color: var(--ink); letter-spacing: -0.01em; }
.benefit-text { margin: 0; color: var(--ink-secondary); font-size: 14.5px; line-height: 1.55; }

/* Hero social-proof ribbon */
.hero-ribbon { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 18px; }
.hero-ribbon-stars { display: inline-flex; gap: 1px; color: #ffce5c; }
.hero-ribbon-text { font-size: 14px; color: var(--ink-secondary); }
.hero-ribbon-text strong { color: var(--ink); font-weight: 700; }

/* Hero partner-logo badge */
.hero-partner { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 22px; }
.hero-partner-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-tertiary); }
.hero-partner-logo { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 11px; padding: 8px 13px; box-shadow: var(--shadow-extruded-sm); }
.hero-partner-logo img { height: 26px; width: auto; max-width: 132px; display: block; }

/* Hero form risk-reversal badge */
.hero-form-badge { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--success); margin: 0; }

/* Review star rating */
.review-stars { display: flex; gap: 2px; color: #ffce5c; margin-bottom: 14px; }

/* Stats + reviews side by side */
/* full-bleed: two equal halves, content centered within each half */
.section-stats-reviews .stats-reviews-grid { max-width: 100%; }
.stats-reviews-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 48px); align-items: start; }
@media (min-width: 1000px) {
  .stats-reviews-grid, .stats-reviews-grid--rev { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .stats-reviews-grid .reviews-col, .stats-reviews-grid .stats-col {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
  }
  .stats-reviews-grid .reviews-col > * { width: 100%; max-width: 720px; }
  .stats-reviews-grid .stats-col > * { width: 100%; max-width: 620px; }
}
.stats-col .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
.reviews-col .reviews-grid { grid-template-columns: 1fr; }
.reviews-col .stats-reviews-divider { margin-top: 0; }

/* Job landing pages: reviews | stats | faq as three equal columns.
   Every column shares the same anatomy: eyebrow → title → content,
   with title sizes scaled down for the 3-up rhythm. */
@media (min-width: 1200px) {
  .stats-reviews-grid--triple { grid-template-columns: 1fr 1fr 1fr; gap: clamp(32px, 3vw, 56px); }
  .stats-reviews-grid--triple .reviews-col,
  .stats-reviews-grid--triple .stats-col,
  .stats-reviews-grid--triple .faq-col {
    display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
  }
  .stats-reviews-grid--triple .reviews-col > *,
  .stats-reviews-grid--triple .stats-col > *,
  .stats-reviews-grid--triple .faq-col > * { width: 100%; max-width: 560px; }
  /* Smaller, consistent titles: full-bleed hero sizes overwhelm a 3-up grid */
  .stats-reviews-grid--triple .section-title {
    font-size: clamp(26px, 2.2vw, 36px);
    margin-bottom: 28px;
    min-height: 2.4em; /* keeps the three content blocks starting on one line */
  }
  /* Stat tiles stack vertically so the column carries real visual weight —
     content centered in the tile, type scaled up to fill the row layout */
  .stats-reviews-grid--triple .stats-col .stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .stats-reviews-grid--triple .stat-item {
    flex-direction: row; justify-content: center; align-items: center;
    text-align: left; gap: 26px; padding: 26px 28px;
  }
  .stats-reviews-grid--triple .stat-num {
    font-size: clamp(48px, 3.8vw, 68px); line-height: 1; flex-shrink: 0;
  }
  .stats-reviews-grid--triple .stat-label {
    text-align: left; font-size: clamp(16px, 1.2vw, 19px); line-height: 1.4;
    max-width: 16ch;
  }
}
.faq-col .stats-reviews-divider { margin-top: 0; }
.faq-col .faq-list { max-width: 100%; }

/* Tablet step (900–1199px): reviews left, stats + FAQ stacked right —
   avoids one endless single column before the 3-up layout kicks in */
@media (min-width: 900px) and (max-width: 1199px) {
  .stats-reviews-grid--triple {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "reviews stats"
      "reviews faq";
    align-items: start;
  }
  .stats-reviews-grid--triple .reviews-col { grid-area: reviews; justify-content: flex-start; }
  .stats-reviews-grid--triple .stats-col { grid-area: stats; justify-content: flex-start; }
  .stats-reviews-grid--triple .faq-col { grid-area: faq; }
}
/* Desktop balance: stat tiles share the full column height so the middle
   column doesn't leave a hole next to the taller reviews column */
@media (min-width: 1200px) {
  .stats-reviews-grid--triple .stats-col .stats-grid { flex: 1 1 auto; grid-auto-rows: 1fr; }
}

/* FAQ centered */
.section-faq .eyebrow, .section-faq .section-title { text-align: center; }
.section-faq .faq-list { max-width: 820px; margin-left: auto; margin-right: auto; }

/* Prozess + BUTHI-Paket side by side */
.prozess-paket-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 56px); align-items: start; }
@media (min-width: 1000px) { .prozess-paket-grid { grid-template-columns: 1fr 1fr; gap: clamp(56px, 6vw, 96px); } }
.prozess-paket-grid > .prozess-col, .prozess-paket-grid > .paket-col { align-self: start; }
.prozess-paket-grid .eyebrow { vertical-align: top; margin-top: 0; }
/* keep both headlines the same height so the content below lines up */
@media (min-width: 1000px) { .prozess-paket-grid .section-title { min-height: 3.2em; } }
.process-steps--vertical { grid-template-columns: 1fr !important; gap: 0 !important; margin-top: 28px; }
.process-steps--vertical::before { display: none !important; }
.process-steps--vertical .process-step { flex-direction: row; text-align: left; align-items: flex-start; padding: 18px 0; gap: 18px; transform: none !important; }
.process-steps--vertical .process-step + .process-step { border-top: 1px solid var(--border); }
.process-steps--vertical .process-step-body { align-items: flex-start; }
.paket-col .usp-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .paket-col .usp-grid { grid-template-columns: 1fr; } }
.paket-col .section-lead { margin-bottom: 24px; }

/* Trust block inside the apply section (side by side with the form) */
.apply-copy .trust-photo--apply { width: clamp(264px, 32vw, 380px); justify-self: center; margin: 0 0 22px; }
.apply-copy .trust-cta-row { margin-top: 24px; }
.section-trust .trust-photo--apply { width: min(100%, 440px); }

/* Vorteile + Karte side by side */
.vorteile-karte-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 56px); align-items: start; }
@media (min-width: 1000px) { .vorteile-karte-grid { grid-template-columns: 1fr 1fr; gap: clamp(48px, 5vw, 72px); } }
.vorteile-col .benefits-grid { margin-top: 18px; }
.vorteile-col .benefit-card { flex: 1 1 240px; max-width: none; }
.karte-col .map { height: clamp(320px, 38vw, 520px); }
@media (min-width: 1000px) { .karte-col { position: sticky; top: 96px; } }

/* ===== Stellenanzeige (formal job ad) ===== */
.posting-intro { color: var(--ink-secondary); font-size: clamp(16px, 1.8vw, 18px); line-height: 1.6; max-width: 70ch; margin: 0 0 32px; }
.posting-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .posting-grid { grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; } }
.posting-facts {
  margin: 0; background: var(--neu-bg); border-radius: var(--radius-xl);
  padding: clamp(20px, 2.5vw, 28px); box-shadow: var(--shadow-extruded-sm);
}
.posting-fact { display: flex; flex-direction: column; gap: 3px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.posting-fact:first-child { padding-top: 0; }
.posting-fact:last-child { border-bottom: none; padding-bottom: 0; }
.posting-fact dt { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-tertiary); }
.posting-fact dd { margin: 0; font-size: 16px; font-weight: 600; color: var(--ink); }
.posting-cols { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 560px) { .posting-cols { grid-template-columns: 1fr 1fr; } }
.posting-col h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 16px; color: var(--ink); letter-spacing: -0.01em; }
.posting-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.posting-list li { position: relative; padding-left: 26px; color: var(--ink-secondary); font-size: 15px; line-height: 1.5; }
.posting-list li::before { position: absolute; left: 0; top: 0; font-weight: 800; color: var(--cta); }
.posting-list--check li::before { content: "✓"; }
.posting-list--dot li::before { content: "→"; }
.posting-cta { margin-top: 32px; }

/* Stellenanzeige + Die Zahlen side by side */
.stelle-zahlen-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); align-items: start; }
@media (min-width: 1000px) { .stelle-zahlen-grid { grid-template-columns: 1.55fr 1fr; gap: 60px; } }
.zahlen-col { align-self: start; }
@media (min-width: 1000px) { .zahlen-col { position: sticky; top: 96px; } }
.zahlen-col .pay-grid { grid-template-columns: 1fr; gap: 14px; }
.zahlen-col .pay-summary { margin-top: 20px; }

/* Full-width subsections (Vorteile, So startest du) under the two columns */
.posting-col--full { grid-column: 1 / -1; margin-top: 8px; }
.posting-col--full h3 { padding-top: 20px; border-top: 1px solid var(--border); }
@media (min-width: 560px) {
  .posting-list--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
}
/* Numbered onboarding steps */
.posting-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.posting-steps li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink-secondary); font-size: 15px; line-height: 1.55; }
.posting-step-num {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--cta); color: #140600; font-family: var(--font-display);
  font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center;
}

/* Hero visual (legacy homepage decoration) */
.hero-visual { display: none; position: relative; }
@media (min-width: 960px) { .hero-visual { display: block; } }
.hero-svg { width: 100%; height: auto; max-width: 560px; }
.pulse-rings circle { animation: ringPulse 6s ease-in-out infinite; transform-origin: 300px 300px; }
.pulse-rings circle:nth-child(2) { animation-delay: -2s; }
.pulse-rings circle:nth-child(3) { animation-delay: -4s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50%       { transform: scale(1.05); opacity: 1; }
}
.hero-van { animation: vanBob 4s ease-in-out infinite; transform-origin: center; }
@keyframes vanBob {
  0%, 100% { transform: translate(220px, 220px); }
  50%       { transform: translate(220px, 215px); }
}
.hero-pin .ping { animation: ping 2.2s ease-out infinite; transform-origin: center; }
@keyframes ping {
  0%   { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.5); opacity: 0; }
}


/* ============================================================
   URGENCY — neumorphic inset well
   ============================================================ */
.urgency {
  display: inline-flex;
  align-items: stretch;
  gap: 24px;
  padding: 18px 26px;
  border-radius: var(--radius-lg);
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset);
  margin: 0 0 36px;
  max-width: 100%;
  flex-wrap: wrap;
}
.urgency-item { display: flex; flex-direction: column; gap: 4px; min-width: 130px; }
.urgency-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-tertiary);
}
.urgency-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(16px, 1.4vw, 19px); color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.urgency-bar {
  display: block; height: 3px;
  background: var(--neu-bg-deep);
  box-shadow: var(--shadow-inset-sm);
  border-radius: var(--radius-full);
  margin-top: 6px; overflow: hidden;
}
.urgency-bar-fill {
  display: block; height: 100%; width: var(--fill, 30%);
  background: var(--cta);
  border-radius: var(--radius-full);
  animation: barShimmer 3s ease-in-out infinite;
}
@keyframes barShimmer { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; } }
.urgency-divider { width: 1px; background: var(--border-strong); align-self: stretch; }
.urgency-countdown { position: relative; padding-right: 14px; }
.urgency-countdown::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff453a; transform: translateY(-50%);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%       { opacity: 0.5; transform: translateY(-50%) scale(1.4); }
}
@media (max-width: 520px) { .urgency-divider { display: none; } .urgency { gap: 18px; } }


/* ============================================================
   MARQUEE — neumorphic inset band
   ============================================================ */
.marquee {
  background: var(--neu-bg);
  color: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-inset-sm);
  padding: 18px 0;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  animation: marquee 40s linear infinite;
  padding-left: 24px;
  color: var(--ink-secondary);
}
.marquee-track span { display: inline-block; }
.marquee-track i { display: inline-block; color: var(--ink-tertiary); font-style: normal; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ============================================================
   STATS — neumorphic extruded tiles
   Nested depth: section (neutral) → card (extruded) → no icon-well needed
   ============================================================ */
.section-stats {
  background: var(--neu-bg);
  padding: clamp(72px, 10vw, 120px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin: 0 0 56px;
}
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Neumorphic stat card — extruded, same clay as bg, hover lifts */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(28px, 3.5vw, 48px) clamp(16px, 2vw, 28px);
  border-radius: var(--radius-xl);
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded);
  text-align: center;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.stat-item::before { display: none; }
.stat-item::after { display: none; }
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-extruded-hover);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.stat-label {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--ink-secondary);
  line-height: 1.4;
  max-width: 14ch;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

.stats-note {
  font-size: 13px;
  color: var(--ink-tertiary);
  margin: 0;
  max-width: 70ch;
  text-align: center;
}


/* ============================================================
   USP — neumorphic extruded cards with NESTED DEPTH
   Card: extruded → icon well: inset deep → icon
   ============================================================ */
.section-usp { background: var(--neu-bg); }
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 4px;
}
@media (min-width: 640px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
}

/* USP card — extruded, same bg color, hyper-rounded */
.usp-card {
  display: flex; flex-direction: column; gap: 20px;
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--radius-xl);
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.usp-card::before { display: none; }
.usp-card::after { display: none; }
.usp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-extruded-hover);
}

/* Icon well — INSET DEEP (drilled into the card surface) */
.usp-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset-deep);
  color: var(--cta);
  flex-shrink: 0;
  /* Float animation on icon — subtle, neumorphic ambient */
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) { .usp-icon { animation: none; } }

.usp-card-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.02em; margin: 0;
  color: var(--ink);
}
.usp-card-text {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65; color: var(--ink-secondary); margin: 0;
}


/* ============================================================
   JOBS — neumorphic cards with nested depth
   Card: extruded → map/image: inset well → badge: extruded small pill
   ============================================================ */
.section-jobs { background: var(--neu-bg); }
.section-jobs .container > .eyebrow,
.section-jobs .container > .section-title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* ---- Jobs toolbar: search + location filter chips ---- */
.job-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin: 28px 0 18px;
}
.job-search {
  position: relative; display: flex; align-items: center;
  flex: 1 1 240px; min-width: 0;
}
.job-search-icon {
  position: absolute; left: 16px; color: var(--ink-tertiary); pointer-events: none;
}
.job-search-input {
  font: inherit; font-size: 15px; width: 100%;
  padding: 13px 16px 13px 44px;
  border: none; border-radius: var(--radius-full);
  background: var(--neu-bg); color: var(--ink); outline: none;
  box-shadow: var(--shadow-inset);
  transition: box-shadow .25s var(--ease);
  min-height: 46px;
}
.job-search-input:focus { box-shadow: var(--shadow-inset-deep), 0 0 0 2px var(--cta); }
.job-search-input::placeholder { color: var(--ink-tertiary); }
.job-search-input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.job-chips {
  display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 auto;
}
.job-chip {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em; white-space: nowrap;
  padding: 9px 16px; border-radius: var(--radius-full);
  border: none; cursor: pointer;
  background: var(--neu-bg); color: var(--ink-secondary);
  box-shadow: var(--shadow-extruded-sm);
  transition: box-shadow .2s var(--ease), color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
  min-height: 40px;
}
.job-chip:hover { color: var(--ink); transform: translateY(-1px); }
.job-chip:active { box-shadow: var(--shadow-inset-sm); transform: none; }
.job-chip.is-active {
  background: var(--cta); color: #140600;
  box-shadow: var(--shadow-orange);
}
.job-chip:focus-visible { outline: 2px solid var(--cta); outline-offset: 2px; }

.job-results-count {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--ink-tertiary);
  margin: 0 0 18px;
}

.job-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .job-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .job-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* No-results state + reset */
.job-no-results {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; color: var(--ink-secondary);
  font-size: 16px; padding: 48px 20px; margin: 0;
}
.job-reset-btn {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  padding: 11px 22px; border-radius: var(--radius-full);
  border: none; cursor: pointer;
  background: var(--neu-bg); color: var(--ink);
  box-shadow: var(--shadow-extruded-sm);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
  min-height: 44px;
}
.job-reset-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-extruded); }
.job-reset-btn:active { box-shadow: var(--shadow-inset-sm); transform: none; }

/* "Mehr anzeigen" pagination */
.job-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.job-more-btn[hidden] { display: none; }

/* ---- Lead-magnet band (Bewerbungs-Check) ---- */
.section-leadmagnet { padding-top: 0; }
.leadmagnet-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px, 4vw, 48px); flex-wrap: wrap;
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-extruded), inset 0 1px 0 rgba(242,106,33,0.16);
}
.leadmagnet-copy { flex: 1 1 320px; }
.leadmagnet-copy .eyebrow { color: var(--cta); }
.leadmagnet-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.025em;
  margin: 8px 0 10px; color: var(--ink);
}
.leadmagnet-text { color: var(--ink-secondary); font-size: 16px; line-height: 1.6; margin: 0; max-width: 56ch; }
.leadmagnet-btn {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 16px 26px; border-radius: var(--radius-full);
  background: var(--cta); color: #140600; text-decoration: none;
  box-shadow: var(--shadow-orange);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
  min-height: 52px;
}
.leadmagnet-btn:hover { transform: translateY(-2px); background: var(--cta-hover); box-shadow: var(--shadow-orange-hover); }
.leadmagnet-btn:active { transform: translateY(0); box-shadow: var(--shadow-inset-sm); }

/* Post-submit reward link under the apply form */
.apply-reward {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--cta); text-decoration: none;
  border-bottom: 2px solid transparent; transition: border-color .2s var(--ease);
}
.apply-reward:hover { border-color: var(--cta); }

.job-card {
  display: flex;
  flex-direction: column;
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-extruded);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.job-card::before { display: none; }
.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-extruded-hover);
}

/* Job card image/map slot — INSET well (photo drilled into card surface) */
.job-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--neu-bg-deep);
  box-shadow: var(--shadow-inset);
}
.job-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: saturate(0.7) brightness(0.9);
}
.job-card:hover .job-card-image img { transform: scale(1.03); filter: saturate(0.9) brightness(0.95); }

.job-card-body {
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(22px, 2.5vw, 32px);
  flex: 1;
}
.job-card-company {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}
.job-card-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.job-card-employment {
  font-family: var(--font-display); font-size: 11px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-secondary);
}

/* Badges — extruded small pills */
.job-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 11.5px;
  font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--radius-full);
  background: var(--neu-bg);
  border: 1px solid transparent;
  box-shadow: var(--shadow-extruded-sm);
  color: var(--ink-secondary);
  white-space: nowrap;
}
/* Leading status dot for at-a-glance scanning */
.job-card-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}
.job-card-badge-open {
  background: rgba(48,209,88,0.14);
  color: #4ade80;
  border-color: rgba(74,222,128,0.45);
  box-shadow: 0 0 0 1px rgba(74,222,128,0.12), 0 2px 8px rgba(48,209,88,0.18);
}
.job-card-badge-warn {
  background: rgba(255,200,80,0.16);
  color: #ffce5c;
  border-color: rgba(255,206,92,0.45);
  box-shadow: 0 0 0 1px rgba(255,206,92,0.12), 0 2px 8px rgba(255,200,80,0.18);
}
.job-card-badge-closed {
  background: rgba(255,255,255,0.04);
  color: var(--ink-tertiary);
  border-color: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-inset-sm);
}
.job-card-badge-closed::before { box-shadow: none; opacity: 0.6; }
.job-card-badge-upcoming {
  background: rgba(100,165,255,0.16);
  color: #74b4ff;
  border-color: rgba(116,180,255,0.45);
  box-shadow: 0 0 0 1px rgba(116,180,255,0.12), 0 2px 8px rgba(100,165,255,0.18);
}
.job-card-role {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15; letter-spacing: -0.025em; margin: 4px 0 0;
  color: var(--ink);
}
.job-card-location {
  display: flex; align-items: center; gap: 8px; margin: 0;
  font-size: 15px; color: var(--ink-secondary);
}
.job-card-pin {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-tertiary); flex: 0 0 7px;
}
.job-card-teaser {
  margin: 0; font-size: 15px; line-height: 1.6;
  color: var(--ink-secondary); flex-grow: 1;
}

.job-card-highlights {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-grow: 1;
}
.job-card-highlights li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-secondary);
}
.job-card-highlights li::before {
  content: '';
  display: inline-block;
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta);
  margin-top: 5px;
}

.job-card-foot {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-top: 4px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.job-card-pay {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(14px, 1.3vw, 16px); letter-spacing: -0.01em;
  color: var(--ink);
}
.job-card-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded-sm);
  flex: 0 0 40px;
  color: var(--ink-secondary);
  transition: box-shadow .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.job-card:hover .job-card-arrow {
  box-shadow: var(--shadow-inset-sm);
  color: var(--cta);
  transform: translateX(2px);
}
.jobs-empty {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-secondary); max-width: 52ch; margin: 0;
}

/* Featured card — orange-tuned extruded */
.job-card--featured {
  box-shadow:
    -9px -9px 16px rgba(255,255,255,0.055),
     9px  9px 16px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(242,106,33,0.18);
}
.job-card--featured::before { display: none; }
.job-card--featured .job-card-company {
  color: var(--cta);
}
@media (min-width: 768px) {
  .job-card--featured {
    transform: scale(1.045);
    z-index: 1;
  }
  .job-card--featured:hover {
    transform: scale(1.045) translateY(-3px);
    box-shadow:
      -12px -12px 20px rgba(255,255,255,0.06),
        12px  12px 20px rgba(0,0,0,0.60),
      inset 0 1px 0 rgba(242,106,33,0.22),
      0 0 32px rgba(242,106,33,0.12);
  }
}
@media (min-width: 768px) {
  .job-grid { overflow: visible; }
}


/* ============================================================
   NO-MATCH CTA — neumorphic extruded bar
   ============================================================ */
.no-match-cta {
  margin-top: clamp(32px, 4vw, 52px);
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-xl);
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 20px;
}
/* Newsletter signup (replaces the WhatsApp CTA) */
.newsletter-form { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; flex: 1 1 360px; justify-content: flex-end; }
.newsletter-field { position: relative; display: flex; align-items: center; flex: 1 1 220px; min-width: 0; }
.newsletter-icon { position: absolute; left: 15px; color: var(--ink-tertiary); pointer-events: none; }
.newsletter-form input {
  font: inherit; font-size: 15px; width: 100%;
  padding: 13px 16px 13px 42px; border: none; border-radius: var(--radius-full);
  background: var(--neu-bg); color: var(--ink); outline: none;
  box-shadow: var(--shadow-inset); min-height: 48px;
}
.newsletter-form input:focus { box-shadow: var(--shadow-inset-deep), 0 0 0 2px var(--cta); }
.newsletter-form input::placeholder { color: var(--ink-tertiary); }
.newsletter-submit { flex: 0 0 auto; min-height: 48px; white-space: nowrap; }
.newsletter-status { flex-basis: 100%; font-size: 14px; text-align: right; min-height: 0; }
.newsletter-status.ok { color: var(--success); }
.newsletter-status.err { color: #ff453a; }
@media (max-width: 600px) {
  .newsletter-form { justify-content: stretch; }
  .newsletter-submit { width: 100%; }
  .newsletter-status { text-align: left; }
}
.no-match-text { margin: 0; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.5; color: var(--ink); }
.no-match-text span { display: block; font-size: 0.88em; color: var(--ink-secondary); margin-top: 4px; }


/* ============================================================
   PAY — neumorphic extruded tiles with inset track
   ============================================================ */
.section-pay { background: var(--neu-bg); }
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin: 0 0 48px;
}
.pay-tile {
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 2.5vw, 36px);
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-extruded);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.pay-tile::before { display: none; }
.pay-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-extruded-hover); }
.pay-figure {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(52px, 7vw, 90px); line-height: 1;
  letter-spacing: -0.04em; font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; color: var(--ink);
}
.pay-unit { font-size: 0.5em; font-weight: 600; margin-left: 6px; color: var(--ink-secondary); }
.pay-plus { font-size: 0.7em; font-weight: 600; color: var(--ink-secondary); margin-right: 2px; }
.pay-caption { font-family: var(--font-display); font-size: clamp(15px, 1.2vw, 18px); font-weight: 600; color: var(--ink); }
.pay-hint { font-size: 14px; color: var(--ink-secondary); margin-top: 6px; }

.pay-summary {
  margin-top: 36px;
  padding: 28px clamp(18px, 2.5vw, 36px);
  border-radius: var(--radius-xl);
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset);
}
.pay-summary-track {
  position: relative; height: 4px;
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset-sm);
  border-radius: var(--radius-full);
  margin: 28px 0 24px;
}
.pay-summary-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--cta);
  border-radius: var(--radius-full);
  transition: width 1.6s var(--ease-out);
}
.pay-summary.is-visible .pay-summary-fill { width: 100%; }
.pay-summary-mark {
  position: absolute; top: -26px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  font-variant-numeric: tabular-nums; white-space: nowrap;
  color: var(--ink);
}
.pay-summary-mark-right { transform: translateX(-100%); }
.pay-summary-text { margin: 0; font-size: clamp(14px, 1.1vw, 16px); color: var(--ink-secondary); }
.pay-summary-text strong { color: var(--ink); }


/* ============================================================
   MAP — neumorphic inset frame (drilled into the clay)
   ============================================================ */
.section-map { background: var(--neu-bg); color: var(--ink); }
.map-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-inset-deep);
  background: var(--neu-bg-deep);
}
.map { height: clamp(360px, 52vw, 560px); width: 100%; }
.map .leaflet-container { font-family: var(--font-text); background: #1e2024; }
.map .leaflet-control-attribution {
  background: rgba(30,32,36,0.85); color: var(--ink-tertiary); font-size: 10px;
}
.map .leaflet-control-attribution a { color: var(--ink-secondary); }
.map .leaflet-control-zoom a {
  background: var(--neu-bg) !important;
  color: var(--ink) !important;
  border: none !important;
  box-shadow: var(--shadow-extruded-sm) !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
}
.map .leaflet-control-attribution a {
  padding: 4px 6px;
  margin: -4px -6px;
  display: inline-block;
}
.map-stats {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; gap: 18px; flex-wrap: wrap;
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded);
  border-radius: var(--radius-lg); padding: 14px 20px;
  pointer-events: none;
}
.map-stat { display: flex; flex-direction: column; gap: 2px; }
.map-stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px); color: var(--ink); letter-spacing: -0.02em;
}
.map-stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-tertiary); }
.buthi-pin-wrap { background: transparent !important; border: none !important; }
.buthi-pin { position: relative; width: 22px; height: 22px; }
.buthi-pin::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--cta); box-shadow: 0 0 0 3px rgba(242,106,33,0.25), 0 4px 12px rgba(0,0,0,0.5);
}
.buthi-pin::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--cta); opacity: 0.35;
  animation: pinPing 2.4s ease-out infinite;
}
@keyframes pinPing { 0% { transform: scale(0.7); opacity: 0.7; } 100% { transform: scale(1.8); opacity: 0; } }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-lg);
  background: var(--neu-bg);
  color: var(--ink);
  box-shadow: var(--shadow-extruded-hover);
  border: none;
}
.leaflet-popup-tip { background: var(--neu-bg); }
.leaflet-popup-content { font-family: var(--font-text); font-size: 14px; line-height: 1.45; margin: 14px 18px; color: var(--ink-secondary); }
.leaflet-popup-content strong { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; color: var(--ink); }
.leaflet-popup-content em { font-style: normal; color: var(--ink-tertiary); font-size: 12px; }

.map-legend { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .map-legend { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.map-legend li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.map-legend li:hover { box-shadow: var(--shadow-extruded); transform: translateY(-1px); }
.map-legend strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: 14px; }
.map-legend div { font-size: 13px; color: var(--ink-secondary); line-height: 1.5; }
.pin-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--cta); flex: 0 0 9px; margin-top: 5px; }


/* ============================================================
   TRUST / CONTACT — neumorphic section
   Portrait in inset-well frame; badge extruded
   ============================================================ */
.section-trust { background: var(--neu-bg); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 900px) {
  .trust-grid {
    /* photo column wide enough for the large portrait, text gets the rest */
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 96px);
    max-width: 1200px; margin-left: auto; margin-right: auto;
  }
}
.trust-photo { margin: 0; position: relative; justify-self: center; width: clamp(240px, 42vw, 360px); }

/* Combined About-me + Contact block (one block, side by side) */
.trust-contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px); align-items: center;
}
@media (min-width: 960px) {
  .trust-contact-grid { grid-template-columns: 1fr 1fr; gap: clamp(40px, 4vw, 72px); }
}
.trust-about { display: flex; flex-direction: column; gap: 26px; align-items: center; text-align: center; }
.trust-about .trust-cta-row { justify-content: center; }
/* same size as the job-page apply portrait */
.trust-about .trust-photo { justify-self: center; width: clamp(264px, 32vw, 380px); }
.trust-contact-grid .contact-form-card,
.apply-grid .contact-form-card { max-width: none; margin: 0; width: 100%; }

/* Portrait frame — INSET well (face drilled into the clay surface) */
.trust-photo-frame {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-inset-deep);
  position: relative;
  background: var(--neu-bg-deep);
}
.trust-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 1.2s var(--ease-out); }
.trust-photo:hover .trust-photo-frame img { transform: scale(1.03); }

/* Badge — EXTRUDED above the inset frame */
.trust-photo-badge {
  position: absolute; bottom: 14px; right: -10px;
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded);
  color: var(--ink);
  padding: 12px 18px; border-radius: var(--radius-lg);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  display: flex; flex-direction: column; gap: 3px;
}
.trust-photo-badge::before { display: none; }
.trust-photo-badge small { font-size: 11px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--cta); }
.trust-title { font-size: clamp(32px, 4.5vw, 56px); margin-bottom: 24px; color: var(--ink); }
.trust-text { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-secondary); margin: 0 0 24px; max-width: 54ch; line-height: 1.65; }
.trust-text strong { color: var(--ink); }
.signature { width: clamp(160px, 28vw, 240px); height: auto; margin: 14px 0 24px; color: var(--ink); }
.signature [data-signature] { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 2.4s var(--ease-out); }
.signature.is-visible [data-signature] { stroke-dashoffset: 0; }
.trust-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Contact form — neumorphic inset card */
.contact-form-wrap { padding-top: clamp(48px, 7vw, 72px); }
.contact-form-card {
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-extruded);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  position: relative; overflow: hidden;
}
.contact-form-card::before { display: none; }
.contact-form-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -0.025em; margin: 0 0 28px; color: var(--ink);
}
.contact-form { display: grid; gap: 12px; }
.contact-form-row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field-optional { font-weight: 400; color: var(--ink-tertiary); text-transform: none; letter-spacing: 0; }
.contact-field label {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--ink-secondary);
}

/* Inputs — INSET DEFAULT, inset-deep + orange focus ring on focus */
.contact-field input,
.contact-field textarea {
  width: 100%; font: inherit; font-size: 16px;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--neu-bg);
  color: var(--ink); outline: none;
  box-shadow: var(--shadow-inset);
  transition: box-shadow .3s var(--ease);
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  box-shadow: var(--shadow-inset-deep),
              0 0 0 2px var(--cta);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--ink-tertiary); opacity: 1; }
.contact-form-submit { margin-top: 8px; align-self: start; }
.contact-form-status { font-size: 14px; min-height: 1.4em; margin-top: 6px; }
.contact-form-status.ok { color: var(--success); }
.contact-form-status.err { color: #ff453a; }


/* ============================================================
   TESTIMONIALS — neumorphic extruded cards
   ============================================================ */
.section-testimonials { background: var(--neu-bg); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--neu-bg);
  border-radius: var(--radius-xl); padding: clamp(24px, 2.5vw, 32px);
  box-shadow: var(--shadow-extruded);
}
.testimonial-quote { margin: 0 0 16px; }
.testimonial-quote p { margin: 0; font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65; color: var(--ink); font-style: italic; }
.testimonial-author strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.testimonial-role, .testimonial-source { display: block; font-size: 13px; color: var(--ink-secondary); margin-top: 2px; }


/* ============================================================
   FAQ — neumorphic inset items (accordion drilled into surface)
   ============================================================ */
.section-faq { background: var(--neu-bg); }
.faq-list { max-width: 880px; }
.faq-item {
  border-radius: var(--radius-lg);
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq-item[open] {
  box-shadow: var(--shadow-inset);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 28px;
  transition: color .25s var(--ease); color: var(--ink);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--ink-secondary); }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  transition: transform .35s var(--ease-out), opacity .35s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item p { margin: 0 0 20px; padding: 0 28px 0; color: var(--ink-secondary); font-size: clamp(15px, 1.2vw, 17px); max-width: 70ch; padding-right: 56px; }
.faq-item p strong { color: var(--ink); }
.faq-item[open] summary { padding-bottom: 8px; }


/* ============================================================
   FORM — neumorphic apply form (job pages)
   ============================================================ */
.section-apply { background: var(--neu-bg); color: var(--ink); position: relative; }
.apply-bg { position: absolute; inset: 0; opacity: 0.15; pointer-events: none; }
.apply-bg svg { width: 100%; height: 100%; }
.apply-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 72px);
  align-items: center; position: relative; z-index: 1;
}
/* Copy column fully centered — portrait, eyebrow, title, text, buttons */
.apply-copy {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.apply-copy .trust-cta-row { justify-content: center; }
.apply-copy .apply-lead { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) { .apply-grid { grid-template-columns: 1fr 1fr; } }
.big-number {
  display: inline-block;
  color: var(--cta);
  -webkit-text-fill-color: var(--cta);
}
.apply-lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-secondary); margin: 0 0 28px; max-width: 50ch; }
.apply-promise { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.apply-promise li {
  padding-left: 28px; position: relative; color: var(--ink-secondary); font-size: clamp(14px, 1.1vw, 16px);
  display: flex; align-items: baseline; gap: 10px; padding-left: 0;
}
.apply-promise li::before {
  content: '';
  display: inline-block;
  flex: 0 0 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset-sm);
  background-image: radial-gradient(circle 4px at center, var(--success) 100%, transparent 100%);
}

/* Apply form card — extruded above the deep background */
.apply-form {
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 44px);
  display: grid; gap: 8px;
  box-shadow: var(--shadow-extruded-hover);
  position: relative; overflow: hidden;
}
.apply-form::before { display: none; }

/* Floating-label inputs — inset carved appearance */
.field { position: relative; padding-top: 26px; margin-bottom: 10px; }
.field input {
  width: 100%; font: inherit; font-size: 16px; line-height: 1.4;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  background: var(--neu-bg);
  color: var(--ink); outline: none;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.28);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder { color: transparent; }
.field input:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.28), 0 0 0 3px rgba(242,106,33,0.18);
}
.field input:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--neu-bg) inset;
  transition: background-color 9999s ease-in-out 0s;
}
.field label {
  position: absolute; top: 42px; left: 17px;
  color: var(--ink-secondary); font-size: 16px; line-height: 1.2;
  pointer-events: none; transform-origin: 0 0;
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label {
  /* 0.82 × 16px ≈ 13px — floated label must stay readable (WCAG) */
  transform: translateY(-37px) scale(0.82);
  color: var(--ink-secondary);
}
.field-line {
  position: absolute; left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: var(--cta);
  border-radius: var(--radius-full);
  transform-origin: left center; transform: scaleX(0);
  transition: transform .35s var(--ease-out);
  opacity: 0.8;
}
.field input:focus ~ .field-line { transform: scaleX(1); }
.field-error { display: block; font-size: 13px; color: #ff453a; margin-top: 3px; }

/* Textarea variant — same carved look + floating label as inputs */
.field textarea {
  width: 100%; font: inherit; font-size: 16px; line-height: 1.4;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  background: var(--neu-bg);
  color: var(--ink); outline: none;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.28);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  resize: vertical; min-height: 96px; display: block;
}
.field textarea::placeholder { color: transparent; }
.field textarea:focus {
  border-color: var(--cta);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.28), 0 0 0 3px rgba(242,106,33,0.18);
}
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-37px) scale(0.82);
  color: var(--ink-secondary);
}
.field textarea:focus ~ .field-line { transform: scaleX(1); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-meta { font-size: 13px; color: var(--ink-tertiary); margin: 10px 0 0; }
.form-meta a { color: var(--ink-secondary); text-decoration: underline; }
.form-status { font-size: 14px; min-height: 1.2em; margin: 6px 0 0; }
.form-status.ok { color: var(--success); }
.form-status.err { color: #ff453a; }

/* Discord apply fallback — stacked, button mirrors the submit width */
.wa-apply-fallback { margin-top: 14px; display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
.wa-apply-label { font-size: 13px; color: var(--ink-tertiary); text-align: center; }
.wa-apply-fallback .btn { width: 100%; }
.more-jobs-link { margin-top: clamp(20px, 3vw, 32px); }
.section-more-jobs { background: var(--neu-bg); padding: clamp(32px, 4vw, 56px) 0; }


/* ============================================================
   STICKY CTA — neumorphic orange pill
   ============================================================ */
.sticky-bar {
  /* --consent-bar-h is set by app.js while the cookie banner is open so the
     two fixed-bottom bars never overlap */
  position: fixed; bottom: calc(16px + var(--consent-bar-h, 0px)); left: 16px; right: 16px; z-index: 40;
  display: none; align-items: stretch; gap: 10px;
  transition: bottom .3s var(--ease-out);
}
.sticky-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  border-radius: var(--radius-full); text-decoration: none;
  min-height: 54px; padding: 0 20px;
}
.sticky-bar-wa {
  flex: 0 0 auto;
  background: #25d366; color: #07331a;
  box-shadow: 0 6px 20px rgba(37,211,102,0.32);
}
.sticky-bar-wa span { display: none; }
.sticky-bar-apply {
  flex: 1 1 auto;
  background: var(--cta); color: #140600;
  box-shadow: var(--shadow-orange);
  justify-content: space-between;
}
.sticky-bar-apply:active, .sticky-bar-wa:active { transform: translateY(1px); }
@media (max-width: 768px) { .sticky-bar { display: flex; } main { padding-bottom: 92px; } }
@media (min-width: 420px) { .sticky-bar-wa span { display: inline; } }


/* ============================================================
   FOOTER — neumorphic dark clay footer
   ============================================================ */
.site-footer {
  background: var(--neu-bg-deep); color: var(--ink-secondary);
  padding: clamp(56px, 8vw, 88px) 0 24px; font-size: 14px;
  box-shadow: inset 0 1px 0 var(--border-strong);
}
.site-footer a { color: var(--ink-secondary); transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--ink); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-logo { height: 34px; width: auto; filter: invert(1); margin-bottom: 14px; opacity: 0.65; }
.footer-tagline { margin: 0; color: var(--ink-tertiary); max-width: 28ch; font-size: 14px; }
.footer-legal-notice { margin: 8px 0 0; color: var(--ink-tertiary); font-size: 13px; }
.footer-block h3 {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-secondary); margin: 0 0 12px;
}
.footer-block p, .footer-block address { margin: 0; font-style: normal; line-height: 1.75; }
.footer-impressum address { font-size: 13px; color: var(--ink-tertiary); }
.footer-bottom { padding-top: 20px; color: var(--ink-tertiary); }


/* ============================================================
   COOKIE CONSENT — Ebene-1-Banner + Ebene-2-Modal
   ============================================================ */
/* Thin full-width slide-up bar — copy left, equal buttons right */
.consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 72;
  background: var(--neu-bg);
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 -8px 28px rgba(0,0,0,0.45);
  padding: 12px clamp(16px, 4vw, 40px);
  display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .35s var(--ease-out);
}
.consent-banner.is-visible { transform: translateY(0); }
.consent-copy { flex: 1 1 420px; min-width: 280px; }
.consent-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink); margin: 0 0 2px; }
.consent-text { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-secondary); }
.consent-text a { color: var(--ink-secondary); text-decoration: underline; }
.consent-text a:hover { color: var(--ink); }
/* Pflicht: „Alle ablehnen" und „Alle akzeptieren" gleichwertig — identische Buttons, kein Farb-Nudging */
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.consent-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  min-height: 38px; padding: 8px 16px; border-radius: var(--radius-md);
  background: var(--neu-bg); color: var(--ink);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow-extruded-sm);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.consent-btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.30); box-shadow: var(--shadow-extruded); }
.consent-btn:active { transform: translateY(0.5px); box-shadow: var(--shadow-inset-sm); }
@media (max-width: 640px) {
  .consent-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .consent-btn { padding: 8px 8px; }
}

.consent-overlay {
  position: fixed; inset: 0; z-index: 74; /* explicitly above the z-72 banner */
  background: rgba(10,10,12,0.60);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity .24s var(--ease);
}
/* Critical: display:flex above overrides the hidden attribute — restore it,
   otherwise an invisible full-screen layer swallows every click */
.consent-overlay[hidden] { display: none; }
.consent-overlay.is-visible { opacity: 1; }
.consent-card {
  background: var(--neu-bg);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow: auto;
  padding: 26px 26px 22px;
}
.consent-cat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.consent-cat:last-of-type { border-bottom: none; }
.consent-cat input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--cta); flex-shrink: 0; cursor: pointer; }
.consent-cat input:disabled { cursor: default; }
.consent-cat label { font-size: 14px; line-height: 1.55; color: var(--ink-secondary); }
.consent-cat label strong { color: var(--ink); }
.consent-card .consent-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 18px; }
.consent-card .consent-btn { min-height: 46px; font-size: 14px; }

.footer-consent-link {
  background: none; border: none; padding: 0;
  font: inherit; color: inherit; cursor: pointer; text-align: left;
}
.footer-consent-link:hover { text-decoration: underline; }


/* ============================================================
   TIMED POPUP — neumorphic extruded card with inset fields
   ============================================================ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(0,0,0,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: var(--gutter);
  opacity: 0; transition: opacity .3s var(--ease);
}
/* Critical: restore hidden behaviour */
.popup-overlay[hidden] { display: none; }
.popup-overlay:not([hidden]) { opacity: 1; }

.popup-card {
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 48px);
  max-width: 440px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-extruded-hover);
  transform: translateY(12px); transition: transform .35s var(--ease-out);
  /* Never taller than the phone viewport — card scrolls internally, so the
     dismiss X and the submit button are always reachable */
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.popup-card::before { display: none; }
.popup-overlay:not([hidden]) .popup-card { transform: translateY(0); }
.popup-dismiss-btn {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded-sm);
  cursor: pointer; color: var(--ink-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .2s var(--ease), color .2s var(--ease);
  min-width: 44px; min-height: 44px;
}
.popup-dismiss-btn:hover { box-shadow: var(--shadow-extruded); color: var(--ink); }
.popup-dismiss-btn:active { box-shadow: var(--shadow-inset-sm); }
.popup-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.5vw, 28px); letter-spacing: -0.025em; margin: 0 0 10px; color: var(--ink); padding-right: 40px; }
.popup-lead { font-size: 16px; color: var(--ink-secondary); margin: 0 0 24px; line-height: 1.6; }
.popup-form { display: flex; flex-direction: column; gap: 14px; }
.popup-field { display: flex; flex-direction: column; gap: 5px; }
.popup-field label { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-secondary); }
.popup-field input {
  font: inherit; font-size: 15px; padding: 12px 14px;
  border: none; border-radius: var(--radius-md);
  background: var(--neu-bg); color: var(--ink); outline: none;
  box-shadow: var(--shadow-inset);
  transition: box-shadow .25s var(--ease);
  min-height: 44px;
}
.popup-field input:focus {
  box-shadow: var(--shadow-inset-deep), 0 0 0 2px var(--cta);
}
.popup-field input::placeholder { color: var(--ink-tertiary); }
.popup-submit-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 14px 24px; border-radius: var(--radius-md);
  background: var(--cta);
  border: none;
  color: #140600; cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
  margin-top: 4px;
  min-height: 44px;
}
.popup-submit-btn:hover { transform: translateY(-1px); background: var(--cta-hover); box-shadow: var(--shadow-orange-hover); }
.popup-submit-btn:active { transform: translateY(0.5px); box-shadow: var(--shadow-inset-sm); }
.popup-status { font-size: 14px; min-height: 1.4em; }
.popup-status.ok { color: var(--success); }
.popup-status.err { color: #ff453a; }
.popup-no-thanks {
  width: 100%; margin-top: 10px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 14px; color: var(--ink-tertiary);
  padding: 10px; text-align: center;
  transition: color .2s var(--ease);
  min-height: 44px;
}
.popup-no-thanks:hover { color: var(--ink); }

/* Popup checkbox fields */
.popup-check-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: start;
}
.popup-checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin: 2px 0 0;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), box-shadow .2s var(--ease);
  position: relative;
}
.popup-checkbox::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: border-color .15s var(--ease);
}
.popup-checkbox:checked {
  background: var(--cta);
  box-shadow: var(--shadow-orange);
}
.popup-checkbox:checked::after {
  border-color: #ffffff;
}
.popup-checkbox:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}
.popup-check-label {
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-secondary);
  cursor: pointer;
  grid-column: 2;
  grid-row: 1;
}
.popup-check-label a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.popup-check-label a:hover { opacity: 0.8; }
.popup-check-label--required { color: var(--ink); }
.popup-check-err {
  grid-column: 2;
  grid-row: 2;
  font-size: 12px;
  color: #ff453a;
  margin-top: 3px;
}
@media (pointer: coarse) {
  /* visual box matches the 44px touch target — no tiny-target perception */
  .popup-checkbox { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
  .popup-check-field { grid-template-columns: 44px 1fr; }
}


/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 640px) {
  .section-title { letter-spacing: -0.025em; }
  .usp-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   4K / ULTRA-WIDE (≥ 2560 px)
   ============================================================ */
@media (min-width: 2560px) {
  .hero .container { --container: min(1920px, 56vw); max-width: min(1920px, 56vw); }
  .hero-home-copy { max-width: clamp(900px, 36vw, 1440px); }
  .hero-title { font-size: clamp(110px, 9.5vw, 160px); }
  .hero-sub { max-width: 56ch; }
  .section-usp .container { max-width: min(1920px, 56vw); }
  .section-stats-reviews .container,
  .section-stats .container { max-width: min(1920px, 56vw); }
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding: 140px 0 90px;
  background: var(--neu-bg);
  color: var(--ink);
}
.legal-container { max-width: 760px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.025em; margin: 0 0 24px; color: var(--ink); }
.legal-page h2 { font-size: 20px; letter-spacing: -0.01em; margin: 36px 0 8px; color: var(--ink); }
.legal-page h3 { font-size: 16px; margin: 22px 0 4px; color: var(--ink); }
.legal-page p, .legal-page li, .legal-page address { font-size: 15px; line-height: 1.7; color: var(--ink-secondary); }
.legal-page address { font-style: normal; }
.legal-page a { color: var(--ink); }
.legal-eyebrow { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-secondary); margin: 0 0 6px; }
.legal-table-wrap { overflow-x: auto; margin: 16px 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td {
  text-align: left; padding: 10px 14px; vertical-align: top;
  border: 1px solid rgba(255,255,255,0.10); color: var(--ink-secondary);
}
.legal-table th { color: var(--ink); font-weight: 700; background: rgba(255,255,255,0.04); }
.legal-updated { margin-top: 36px; font-size: 13px; color: var(--ink-tertiary); }
.form-privacy { font-size: 12px; line-height: 1.5; color: var(--ink-tertiary); margin: 10px 0 0; }
.form-privacy a { color: var(--ink-secondary); }


/* ============================================================
   JOB CARD MINI-MAP — inset well (drilled into card surface)
   ============================================================ */
.job-card-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--neu-bg-deep);
  box-shadow: var(--shadow-inset);
  position: relative;
}
.job-card-map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: var(--font-text);
  background: var(--neu-bg-deep);
  cursor: grab;
}
.job-card-map .leaflet-control-attribution {
  background: rgba(30,32,36,0.80);
  color: var(--ink-tertiary);
  font-size: 9px;
}
.job-card-map .leaflet-control-attribution a { color: var(--ink-secondary); }
.job-card-map .leaflet-control-zoom a {
  background: var(--neu-bg) !important;
  color: var(--ink) !important;
  border: none !important;
  box-shadow: var(--shadow-extruded-sm) !important;
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
  font-size: 14px !important;
}
.job-card-map * { pointer-events: auto; }
.job-card-body { pointer-events: auto; }


/* ============================================================
   REVIEWS SECTION — neumorphic extruded cards
   Avatar: inset-well (drilled) → name: elevated
   ============================================================ */
.section-reviews {
  background: var(--neu-bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 2.5vw, 36px);
  box-shadow: var(--shadow-extruded);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card::before { display: none; }
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-extruded-hover);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar — INSET well (face carved into the review card surface) */
.review-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset);
  display: flex; align-items: center; justify-content: center;
}
.review-avatar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.review-avatar-initials {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-secondary);
  letter-spacing: 0.02em;
}
.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.review-company {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-tertiary);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.review-text { margin: 0; flex: 1; }
.review-text p {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--ink-secondary);
  font-style: italic;
}
.review-text p::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
  color: var(--cta);
  opacity: 0.8;
}
.review-text p::after {
  content: '\201D';
  font-family: var(--font-display);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 2px;
  color: var(--cta);
  opacity: 0.8;
}
.review-source {
  display: block;
  font-size: 12px;
  color: var(--ink-tertiary);
  margin-top: 4px;
}


/* ============================================================
   STATS + REVIEWS unified section
   ============================================================ */
.section-stats-reviews {
  background: var(--neu-bg);
  padding: clamp(72px, 10vw, 120px) 0;
}
.section-stats-reviews .stats-grid {
  margin: 0 0 clamp(40px, 6vw, 72px);
}
.stats-reviews-divider {
  margin-top: 0;
  margin-bottom: 20px;
}
.section-stats-reviews .section-title {
  margin-bottom: 40px;
}
.section-stats-reviews .reviews-grid {
  margin-top: 0;
}


/* ============================================================
   UPCOMING NOTICE
   ============================================================ */
.section-apply--upcoming { min-height: 0; }
.upcoming-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}
/* Inside the apply grid the notice becomes a card — same treatment as the
   apply form on open jobs, so all landing pages share one layout */
.apply-grid .upcoming-notice {
  width: 100%; max-width: none; margin: 0;
  background: var(--neu-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-extruded-hover);
  padding: clamp(36px, 4vw, 64px) clamp(24px, 3vw, 44px);
}
.upcoming-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--neu-bg);
  box-shadow: var(--shadow-inset-deep);
  color: rgba(100,165,255,0.8);
  flex-shrink: 0;
}
.upcoming-notice-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.upcoming-notice-text {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-secondary);
  margin: 0;
  max-width: 46ch;
}
.upcoming-notice-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--ink-tertiary);
  margin: 0;
}


/* ============================================================
   SEO TEXT BLOCK
   ============================================================ */
.section-seo {
  background: var(--neu-bg);
  padding: clamp(56px, 7vw, 96px) 0;
}
.seo-block { max-width: 820px; }
.seo-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.25;
}
.seo-block p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  color: var(--ink-secondary);
  margin: 0 0 16px;
}
.seo-block p:last-child { margin-bottom: 0; }
.seo-block strong { color: var(--ink); }


/* ============================================================
   SECTION DIVIDERS — subtle on neumorphic dark clay
   ============================================================ */
.section-divider {
  height: 1px;
  background: var(--border);
  position: relative;
}
.section-divider::after {
  content: '';
  display: block;
  height: 60px;
  margin-top: -30px;
  background: radial-gradient(ellipse 50% 100% at 50% 0%,
    rgba(255,255,255,0.025) 0%, transparent 70%);
  pointer-events: none;
}


/* ============================================================
   PROCESS TIMELINE — neumorphic steps
   Step number: extruded circle → active: orange extruded
   ============================================================ */
.section-process {
  background: var(--neu-bg);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); gap: 0; }
}
/* Connecting line */
@media (min-width: 768px) {
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 2px;
    background: var(--neu-bg);
    box-shadow: var(--shadow-inset-sm);
    border-radius: var(--radius-full);
    z-index: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 28px);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .process-step {
    flex-direction: row;
    text-align: left;
    padding: 20px 0;
    gap: 20px;
  }
  .process-step + .process-step {
    border-top: 1px solid var(--border);
  }
}

/* Step number bubble — EXTRUDED */
.process-step-num {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--neu-bg);
  box-shadow: var(--shadow-extruded);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-secondary);
  position: relative;
  transition: box-shadow .3s var(--ease), color .3s var(--ease);
  min-width: 44px; min-height: 44px;
}
.process-step:hover .process-step-num {
  box-shadow: var(--shadow-extruded-hover);
  color: var(--ink);
}
/* Active step — orange extruded */
.process-step--active .process-step-num {
  background: var(--cta);
  box-shadow: var(--shadow-orange);
  color: #ffffff;
  font-weight: 800;
}
/* icon inside the step bubble + small numbered badge */
.process-step-svg { color: var(--cta); transition: color .3s var(--ease); }
.process-step--active .process-step-svg { color: #ffffff; }
.process-step-index {
  position: absolute; top: -3px; right: -3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--neu-bg); color: var(--ink-secondary);
  box-shadow: var(--shadow-extruded-sm);
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.process-step--active .process-step-index { background: #ffffff; color: var(--cta); }

/* ===== Jobs dropdown (all open positions) ===== */
.jobs-dropdown-wrap { margin-top: 32px; max-width: 460px; }
.jobs-dropdown-label {
  display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-tertiary); margin-bottom: 10px;
}
.jobs-dropdown-field { position: relative; }
.jobs-dropdown {
  -webkit-appearance: none; appearance: none;
  font: inherit; font-size: 15px; font-weight: 600; width: 100%;
  padding: 15px 46px 15px 18px; border: none; border-radius: var(--radius-full);
  background: var(--neu-bg); color: var(--ink); cursor: pointer; outline: none;
  box-shadow: var(--shadow-extruded-sm); min-height: 52px;
  transition: box-shadow .2s var(--ease);
}
.jobs-dropdown:hover { box-shadow: var(--shadow-extruded); }
.jobs-dropdown:focus-visible { box-shadow: var(--shadow-inset-sm), 0 0 0 2px var(--cta); }
.jobs-dropdown-caret { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--cta); pointer-events: none; }

/* Hero headline amount — gradient pop */
.hero-title-job em, .hero-title-job .accent {
  font-style: normal;
  background: linear-gradient(135deg, #ff9a4d 0%, var(--cta) 55%, #e2550f 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   PHOTO HERO (Option A) — used on job pages + homepage
   ============================================================ */
.hero-photo .hero-photo-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('/assets/hero-banner.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
.hero-photo .hero-photo-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(10,10,12,.94) 0%, rgba(10,10,12,.86) 42%, rgba(10,10,12,.55) 100%);
}
@media (max-width: 900px) {
  .hero-photo .hero-photo-scrim { background: linear-gradient(180deg, rgba(10,10,12,.86) 0%, rgba(10,10,12,.93) 100%); }
}
.hero-photo .hero-glow { z-index: 1; }
.hero-photo .container { position: relative; z-index: 2; }
.hero-photo .hero-title, .hero-photo .hero-title-job { color: #fff; }
.hero-photo .hero-sub, .hero-photo .hero-ribbon-text { color: rgba(255,255,255,.80); }
.hero-photo .hero-ribbon-text strong { color: #fff; }
.hero-photo .hero-chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; }
.hero-photo .hero-chip:first-child { color: var(--cta); background: rgba(242,106,33,.16); border-color: rgba(242,106,33,.5); }
/* glassy form on the photo */
.hero-photo .hero-form {
  background: rgba(28,30,34,.74);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(242,106,33,.18);
}
.hero-photo .hero-field input { background: rgba(255,255,255,.06); box-shadow: none; border: 1px solid rgba(255,255,255,.14); color: #fff; }
.hero-photo .hero-field label { color: rgba(255,255,255,.74); }
.hero-photo .hero-field input:focus { box-shadow: 0 0 0 2px var(--cta); border-color: transparent; }
.hero-photo .hero-form-title { color: #fff; }
/* homepage centered hero: balanced veil so centered text stays readable */
.hero-home.hero-photo .hero-photo-scrim {
  background: linear-gradient(180deg, rgba(7,7,9,.74) 0%, rgba(7,7,9,.70) 45%, rgba(7,7,9,.88) 100%);
}
.hero-home.hero-photo .hero-sub { color: rgba(255,255,255,.82); }

.process-step-body { display: flex; flex-direction: column; gap: 6px; }
.process-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.process-step-text {
  font-size: clamp(13px, 1.0vw, 15px);
  color: var(--ink-secondary);
  line-height: 1.55;
  margin: 0;
}
.process-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  margin-top: 4px;
}
.process-step--active .process-step-tag { color: var(--cta); }


/* ============================================================
   REVIEW MONOGRAM AVATAR — inset well with orange initial
   ============================================================ */
.review-avatar-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--cta);
  background: var(--neu-bg);
  border-radius: 50%;
}


/* ============================================================
   SCROLL-REVEAL HOVER LIFT — cards on desktop
   ============================================================ */
@media (min-width: 768px) {
  .job-card:hover, .usp-card:hover {
    transform: translateY(-3px);
  }
}


/* ============================================================
   MOTION REFINEMENTS — stagger + timing
   ============================================================ */
[data-reveal]:nth-child(1) { --delay: 0ms; }
[data-reveal]:nth-child(2) { --delay: 80ms; }
[data-reveal]:nth-child(3) { --delay: 160ms; }
[data-reveal]:nth-child(4) { --delay: 240ms; }
[data-reveal]:nth-child(5) { --delay: 320ms; }
[data-reveal]:nth-child(6) { --delay: 400ms; }

/* Button: snappy */
.btn {
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
/* Card: smooth lift */
.job-card, .usp-card, .stat-item, .review-card, .pay-tile {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}


/* ============================================================
   BODY NOISE GRAIN OVERLAY — kills banding on deep dark bg
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  /* below all overlays (sticky 40, popup 70, consent 72/74) — at 9999 the
     grain would composite over modals and break entirely without blend-mode */
  z-index: 39;
  opacity: 0.30;
  mix-blend-mode: overlay;
}
