/* =================================================
   P&S Solar – Karriere-Landingpage Elektriker
   Aesthetic: "Sonne auf Schwarz" – editorial recruitment
   Brand: #FEE60E sun-yellow / deep black / ivory
   ================================================= */

:root {
  /* Brand palette (aligned mit punds-zetel.de) */
  --c-sun:        #FEE60E;
  --c-sun-deep:   #E6D001;
  --c-sun-glow:   #FFF6A8;
  --c-sun-shade:  #C4A800;

  --c-ink:        #0A0A0B;   /* near-black */
  --c-ink-soft:   #1A1A1C;
  --c-ink-line:   #2A2A2D;

  --c-paper:      #F4F1EA;   /* warm ivory */
  --c-paper-2:    #EAE5DA;
  --c-paper-line: #DAD3C3;

  --c-text:       #131316;
  --c-text-soft:  #4B4B52;
  --c-text-faint: #84848C;

  --c-wa:         #25D366;
  --c-wa-deep:    #1EBE5D;

  --c-err:        #C5302C;

  /* Spacing scale */
  --s-2:  0.25rem;
  --s-3:  0.5rem;
  --s-4:  0.75rem;
  --s-5:  1rem;
  --s-6:  1.5rem;
  --s-7:  2rem;
  --s-8:  3rem;
  --s-9:  4.5rem;
  --s-10: 6.5rem;
  --s-11: 9rem;

  /* Typography */
  --font-display: 'Kanit', 'Bebas Neue', 'Inter Tight', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Radii */
  --r-1: 4px;
  --r-2: 10px;
  --r-3: 18px;
  --r-4: 28px;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 760px;

  /* Shadows */
  --sh-soft: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px rgba(10,10,11,0.06);
  --sh-lift: 0 18px 40px -12px rgba(10,10,11,0.18);
  --sh-glow: 0 0 0 4px rgba(254,230,14,0.22);

  /* Easings */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================
   Reset & base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 5rem; /* sticky mobile CTA */
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Subtle paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); letter-spacing: -0.028em; }
h3 { font-size: 1.25rem; letter-spacing: -0.018em; font-weight: 700; }

p { margin: 0 0 var(--s-5); }

::selection { background: var(--c-sun); color: var(--c-ink); }

/* Editorial eyebrow */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.section--dark .eyebrow { color: var(--c-sun); }
.section--dark .eyebrow::before { background: var(--c-sun); opacity: 0.7; }

/* Section title alignments */
.section__title { margin-bottom: var(--s-6); text-wrap: balance; max-width: 22ch; }
.section__title--center { text-align: center; margin-inline: auto; }
.section__subline { color: var(--c-text-soft); font-size: 1.06rem; max-width: 60ch; margin-bottom: var(--s-7); }
.section__title--center + .section__subline { text-align: center; margin-inline: auto; }

/* =====================================================
   Layout primitives
   ===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: var(--max-w-narrow); }

.section {
  padding: var(--s-9) 0;
  position: relative;
}
.section--alt { background: var(--c-paper-2); }
.section--dark {
  background: var(--c-ink);
  color: var(--c-paper);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--c-paper); }

@media (min-width: 768px) {
  .section { padding: var(--s-10) 0; }
}

/* Section head pattern: chapter number + title in editorial 2-col */
.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
  align-items: end;
}
.section__chapter {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.section__chapter strong {
  color: var(--c-text);
  font-weight: 700;
}
.section--dark .section__chapter { color: rgba(244,241,234,0.55); }
.section--dark .section__chapter strong { color: var(--c-sun); }

@media (min-width: 900px) {
  .section__head {
    grid-template-columns: 1fr 2fr;
    gap: var(--s-7);
  }
  .section__head .section__title { margin-bottom: 0; }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  --btn-bg: var(--c-ink);
  --btn-fg: var(--c-paper);
  --btn-bd: var(--c-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-out),
              background-color 0.2s var(--ease-out),
              color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
  position: relative;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: var(--sh-glow); }

.btn--primary {
  --btn-bg: var(--c-sun);
  --btn-fg: var(--c-ink);
  --btn-bd: var(--c-sun);
}
.btn--primary:hover {
  --btn-bg: var(--c-ink);
  --btn-fg: var(--c-sun);
  --btn-bd: var(--c-ink);
}
.section--dark .btn--primary:hover {
  --btn-bg: var(--c-paper);
  --btn-fg: var(--c-ink);
  --btn-bd: var(--c-paper);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-ink);
  --btn-bd: var(--c-ink);
}
.btn--ghost:hover {
  --btn-bg: var(--c-ink);
  --btn-fg: var(--c-paper);
}
.section--dark .btn--ghost,
.hero .btn--ghost {
  --btn-fg: var(--c-paper);
  --btn-bd: rgba(244,241,234,0.55);
}
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover {
  --btn-bg: var(--c-paper);
  --btn-fg: var(--c-ink);
  --btn-bd: var(--c-paper);
}

.btn--whatsapp {
  --btn-bg: var(--c-wa);
  --btn-fg: #fff;
  --btn-bd: var(--c-wa);
}
.btn--whatsapp:hover {
  --btn-bg: var(--c-wa-deep);
  --btn-bd: var(--c-wa-deep);
}

.btn--lg { padding: 1.1rem 1.85rem; font-size: 1.02rem; }
.btn--sm { padding: 0.65rem 1.05rem; font-size: 0.88rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* Backwards-compatible alias */
.btn--secondary { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn--secondary:hover { background: var(--c-ink); color: var(--c-paper); }

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(244,241,234,0.08);
  color: var(--c-paper);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 68px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: var(--r-1);
  background: var(--c-sun);
  transition: transform 0.2s var(--ease-out);
}
.site-header__logo:hover { transform: scale(1.02); }
.site-header__logo img {
  max-height: 38px;
  width: auto;
  display: block;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-paper);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.site-header__phone:hover { background: rgba(244,241,234,0.07); }
.site-header__phone-text { display: none; }

@media (min-width: 640px) {
  .site-header__phone-text { display: inline; }
  .site-header__logo img { max-height: 44px; }
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
  position: relative;
  background: var(--c-ink);
  color: var(--c-paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: grayscale(0.05) contrast(1.04) saturate(1.05);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.25) 0%, rgba(10,10,11,0.45) 55%, rgba(10,10,11,0.82) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.25) 45%, rgba(10,10,11,0) 75%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(3.5rem, 9vw, 7rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  display: grid;
  gap: var(--s-7);
  max-width: 70rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.7);
  align-items: center;
}
.hero__meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-sun);
  display: inline-block;
  margin-right: 0.5rem;
  box-shadow: 0 0 14px var(--c-sun);
}
.hero h1 {
  max-width: 18ch;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(180deg, var(--c-sun) 0%, var(--c-sun-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.12em;
  background: var(--c-sun);
  opacity: 0.18;
  border-radius: 2px;
}
.hero__subline {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(244,241,234,0.88);
  max-width: 46ch;
  margin: 0;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

/* Trust bar */
.trust-bar {
  list-style: none;
  margin: 0;
  padding: var(--s-6) 0 0;
  border-top: 1px solid rgba(244,241,234,0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  max-width: 56rem;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.trust-bar__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--c-paper);
  letter-spacing: -0.01em;
}
.trust-bar__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
}

@media (min-width: 768px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
}

/* Marquee divider under hero */
.marquee {
  background: var(--c-sun);
  color: var(--c-ink);
  overflow: hidden;
  border-top: 1px solid var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  position: relative;
  z-index: 3;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  padding: 0.85rem 0;
  width: max-content;
  animation: scroll 38s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.marquee__track span::after {
  content: '✸';
  font-size: 1rem;
  margin-left: 1rem;
  color: var(--c-ink);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* =====================================================
   Pain Grid (Empathy)
   ===================================================== */
.pain-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-paper-line);
  border: 1px solid var(--c-paper-line);
  border-radius: var(--r-3);
  overflow: hidden;
}
.pain-card {
  background: var(--c-paper);
  padding: 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  position: relative;
  transition: background 0.2s ease;
}
.pain-card:hover { background: #fff; }
.pain-card::before {
  content: counter(pain-counter, decimal-leading-zero);
  counter-increment: pain-counter;
  position: absolute;
  top: 0.85rem;
  right: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--c-text-faint);
}
.pain-grid { counter-reset: pain-counter; }
.pain-card__icon {
  color: var(--c-ink);
  background: var(--c-sun);
  width: 44px; height: 44px;
  border-radius: 50%;
  padding: 10px;
  flex-shrink: 0;
}
.pain-card p {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.45;
  align-self: center;
}

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================
   Check list
   ===================================================== */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.check-list li {
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.55;
  font-size: 1.02rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--c-sun);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 0.5rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--c-ink);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.check-list--soft li::before {
  background: transparent;
  border: 1.5px solid var(--c-paper-line);
  box-shadow: none;
}
.check-list--soft li::after {
  background: var(--c-text-soft);
}
.section--dark .check-list--soft li::before { border-color: rgba(244,241,234,0.25); }
.section--dark .check-list--soft li::after { background: var(--c-paper); }

/* =====================================================
   Requirements
   ===================================================== */
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--s-5);
}
.requirements-card {
  background: var(--c-paper);
  border: 1px solid var(--c-paper-line);
  border-radius: var(--r-3);
  padding: 1.8rem 1.6rem;
  position: relative;
}
.requirements-card h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--c-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.requirements-card h3::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-sun);
}
.requirements-card:nth-child(2) h3::before { background: transparent; border: 1.5px solid var(--c-sun); }
.requirements-note {
  text-align: center;
  font-style: italic;
  color: var(--c-text-soft);
  font-size: 0.96rem;
}
@media (min-width: 768px) {
  .requirements-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   Benefits grid – editorial cards with big number prefix
   ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: benefit-counter;
}
.benefit-card {
  background: var(--c-paper);
  border: 1px solid var(--c-paper-line);
  border-radius: var(--r-3);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card::before {
  content: counter(benefit-counter, decimal-leading-zero);
  counter-increment: benefit-counter;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--c-text-faint);
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: auto -40% -40% auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c-sun-glow) 0%, var(--c-sun) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.benefit-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-ink);
  box-shadow: var(--sh-lift);
}
.benefit-card:hover::after { opacity: 0.18; }

.benefit-card__icon {
  color: var(--c-ink);
  background: var(--c-sun);
  width: 48px; height: 48px;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}
.benefit-card h3 {
  font-size: 1.18rem;
  margin: 0;
}
.benefit-card p {
  margin: 0;
  color: var(--c-text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================
   Team
   ===================================================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.team-card {
  background: var(--c-paper);
  border: 1px solid var(--c-paper-line);
  border-radius: var(--r-3);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out);
}
.team-card:hover { transform: translateY(-3px); }
.team-card__photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--c-paper-2);
  display: block;
  border-radius: 0;
  margin: 0;
  filter: grayscale(0.15);
  transition: filter 0.4s ease;
}
.team-card:hover .team-card__photo { filter: grayscale(0); }
.team-card > h3, .team-card > p, .team-card > blockquote {
  padding-inline: 1.4rem;
}
.team-card__name {
  margin: 1.25rem 0 0.15rem;
  font-size: 1.3rem;
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-sun-shade);
  margin: 0 0 1rem;
}
.team-card__quote {
  position: relative;
  margin: 0 0 1.5rem;
  padding-top: 0.5rem;
  border: 0;
  font-size: 0.99rem;
  font-style: normal;
  color: var(--c-text-soft);
  line-height: 1.55;
}
.team-card__quote::before {
  content: '“';
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--c-sun);
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-card__photo { height: 360px; }
}

/* =====================================================
   Owner / pull-quote
   ===================================================== */
.owner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
.owner__media {
  position: relative;
}
.owner__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-3);
  filter: grayscale(0.15);
}
.owner__media::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c-sun-glow) 0%, var(--c-sun) 45%, var(--c-sun-shade) 100%);
  box-shadow: 0 0 40px rgba(254,230,14,0.4);
  z-index: -1;
}
.owner__text {
  position: relative;
}
.owner__text::before {
  content: '“';
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--c-sun);
  margin-bottom: 0.6rem;
}
.owner__text p {
  font-size: 1.12rem;
  line-height: 1.6;
}
.owner__text p:first-of-type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--c-ink);
}
.section--dark .owner__text p:first-of-type { color: var(--c-paper); }
.owner__text p:last-child { margin-bottom: 0; }

@media (min-width: 900px) {
  .owner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--s-9);
  }
}

/* =====================================================
   Career Path
   ===================================================== */
.career-path {
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  counter-reset: career;
  position: relative;
}
.career-path__step {
  background: transparent;
  border: 1.5px solid var(--c-paper-line);
  border-radius: var(--r-3);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.04rem;
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.career-path__step:hover {
  border-color: var(--c-ink);
  background: var(--c-paper);
}
.career-path__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--c-sun);
  color: var(--c-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  flex-shrink: 0;
}
.career-path__intro {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  color: var(--c-text-soft);
  font-size: 1.02rem;
}

@media (min-width: 768px) {
  .career-path {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .career-path__step {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.2rem;
    gap: 0.85rem;
    border-radius: 0;
    border-right-width: 0;
  }
  .career-path__step:first-child { border-radius: var(--r-3) 0 0 var(--r-3); }
  .career-path__step:last-child  { border-radius: 0 var(--r-3) var(--r-3) 0; border-right-width: 1.5px; }
  .career-path__step::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--c-paper-2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-soft);
    font-size: 0.85rem;
    z-index: 2;
  }
  .career-path__step:last-child::after { display: none; }
}

/* =====================================================
   Process Cards
   ===================================================== */
.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: process;
}
.process-card {
  background: var(--c-paper);
  border: 1px solid var(--c-paper-line);
  border-radius: var(--r-3);
  padding: 2rem 1.6rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.process-card__num {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--c-sun);
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
  -webkit-text-stroke: 0;
}
.process-card__num::before {
  content: '/ ';
  font-size: 1.4rem;
  color: var(--c-text-faint);
  margin-right: 0.2rem;
}
.process-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}
.process-card p {
  margin: 0;
  color: var(--c-text-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.section--dark .process-card {
  background: var(--c-ink-soft);
  border-color: var(--c-ink-line);
  color: var(--c-paper);
}
.section--dark .process-card p { color: rgba(244,241,234,0.72); }

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-paper-line);
}
.faq__item {
  border-bottom: 1px solid var(--c-paper-line);
  padding: 1.4rem 0.25rem;
  transition: background 0.2s ease;
}
.faq__item[open] { background: transparent; }
.faq__item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--c-ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-sun);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: transform 0.25s var(--ease-out), background-color 0.25s ease;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--c-ink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FEE60E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.faq__item p {
  margin: 0.9rem 0 0;
  color: var(--c-text-soft);
  font-size: 1.01rem;
  max-width: 62ch;
}

/* =====================================================
   Form section
   ===================================================== */
.section--form {
  background: var(--c-ink);
  color: var(--c-paper);
  position: relative;
  overflow: hidden;
}
.section--form::before {
  content: '';
  position: absolute;
  top: -25%; left: -10%;
  width: 60vw; max-width: 700px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(254,230,14,0.16) 0%, rgba(254,230,14,0) 60%);
  pointer-events: none;
}
.section--form .section__title { color: var(--c-paper); }
.section--form .section__subline { color: rgba(244,241,234,0.72); }

#bewerbung-form {
  background: var(--c-paper);
  color: var(--c-text);
  border: 1px solid var(--c-paper-line);
  border-radius: var(--r-4);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(254,230,14,0.08);
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  #bewerbung-form { padding: 2.5rem; }
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.form-row--fieldset { border: 0; padding: 0; margin: 0 0 1.15rem; }
.form-row label,
.form-row legend {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  padding: 0;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select {
  width: 100%;
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  border: 1.5px solid var(--c-paper-line);
  border-radius: var(--r-2);
  color: var(--c-text);
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s ease;
  appearance: none;
}
.form-row select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row input:hover,
.form-row select:hover { border-color: var(--c-ink); }
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-ink);
  box-shadow: 0 0 0 3px var(--c-sun);
}
.form-row input:invalid:not(:placeholder-shown) {
  border-color: var(--c-err);
}

.form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.55rem;
}
.form-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.5rem;
  min-width: 7.5rem;
  justify-content: center;
  border: 2px solid var(--c-paper-line);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-text);
  background: #fff;
  transition: border-color 0.18s var(--ease-out),
              background-color 0.18s var(--ease-out),
              color 0.18s var(--ease-out),
              box-shadow 0.18s var(--ease-out);
  user-select: none;
}
.form-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.form-radio::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--c-paper-line);
  background: #fff center / 12px 12px no-repeat;
  flex-shrink: 0;
  transition: inherit;
}
.form-radio:hover {
  border-color: var(--c-ink);
}
.form-radio:hover::before {
  border-color: var(--c-ink);
}
.form-radio:has(input:checked) {
  background: var(--c-sun);
  border-color: var(--c-ink);
  color: var(--c-ink);
  box-shadow: 0 1px 0 var(--c-ink), 0 8px 18px -8px rgba(254,230,14,0.55);
}
.form-radio:has(input:checked)::before {
  background-color: var(--c-ink);
  border-color: var(--c-ink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FEE60E' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.form-radio:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px var(--c-sun), 0 0 0 5px var(--c-ink);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  margin: 1.2rem 0 0;
  text-align: center;
  line-height: 1.5;
}
.form-disclaimer a { color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }

#submit-btn { margin-top: 0.5rem; }

.alt-contact {
  margin-top: var(--s-7);
  text-align: center;
  color: var(--c-paper);
  position: relative;
  z-index: 2;
}
.alt-contact__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(244,241,234,0.7);
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: var(--s-9) 0 var(--s-7);
  font-size: 0.95rem;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--c-sun), var(--c-sun-deep), var(--c-sun));
  margin: -1px 0 var(--s-8);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
.site-footer a {
  color: var(--c-paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-footer a:hover { color: var(--c-sun); border-bottom-color: var(--c-sun); }
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.site-footer__brand::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c-sun-glow), var(--c-sun) 60%, var(--c-sun-shade));
  box-shadow: 0 0 14px rgba(254,230,14,0.5);
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
  .site-footer__links { align-items: flex-end; }
}

/* =====================================================
   Sticky mobile CTA
   ===================================================== */
.sticky-cta {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--c-sun);
  color: var(--c-ink);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(0,0,0,0.06);
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  transition: transform 0.2s var(--ease-out);
}
.sticky-cta::after {
  content: '→';
  font-size: 1.2rem;
  margin-left: 0.2rem;
  transition: transform 0.2s var(--ease-out);
}
.sticky-cta:active { transform: scale(0.98); }
.sticky-cta:hover::after { transform: translateX(3px); }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* =====================================================
   Danke page
   ===================================================== */
.thanks {
  padding-top: var(--s-10);
  padding-bottom: var(--s-10);
  background: var(--c-paper);
  position: relative;
  overflow: hidden;
}
.thanks::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--c-sun-glow), var(--c-sun) 45%, var(--c-sun-shade) 100%);
  filter: blur(2px);
  opacity: 0.6;
  pointer-events: none;
}
.thanks::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c-sun-glow), var(--c-sun) 50%, var(--c-sun-shade) 100%);
  opacity: 0.45;
  pointer-events: none;
}
.thanks__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.thanks__icon {
  color: var(--c-ink);
  margin: 0 auto var(--s-5);
  display: inline-flex;
  padding: 1.4rem;
  border-radius: 50%;
  background: var(--c-sun);
  box-shadow: 0 0 0 12px rgba(254,230,14,0.18);
}
.thanks__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
.thanks__subline {
  font-size: 1.18rem;
  color: var(--c-text-soft);
  margin-bottom: var(--s-7);
}
.thanks__steps {
  background: var(--c-ink);
  color: var(--c-paper);
  border-radius: var(--r-3);
  padding: 2rem 1.75rem;
  margin: 0 auto var(--s-7);
  text-align: left;
  max-width: 36rem;
}
.thanks__steps h2 {
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--c-sun);
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.thanks__steps .check-list li { color: var(--c-paper); }
.thanks__steps .check-list li::after { background: var(--c-ink); }
.thanks__contact-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: var(--s-5);
}
.thanks__contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* =====================================================
   Reveal animation
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Utilities & accessibility
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--c-sun);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
}
