/* =========================================================
   REWADI Karriere – Landingpage Styles
   ========================================================= */

:root {
  --bg: #0b1320;
  --bg-2: #0f1d2e;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --line: #e5e8ef;
  --text: #0f172a;
  --text-soft: #475569;
  --text-mute: #64748b;
  --text-on-dark: #e9eef7;

  --brand: #c8932f;        /* warm gold – "Ofen" */
  --brand-2: #e2b048;
  --brand-soft: #f6e3b6;
  --accent: #ff6a3d;
  --info: #4f8cff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 1px rgba(15,23,42,.04);
  --shadow-md: 0 10px 25px -10px rgba(15, 23, 42, .15), 0 4px 10px -2px rgba(15,23,42,.06);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, .35);

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Skip-Link */
.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  background: var(--bg);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 9999;
}
.skip-link:focus { inset-inline-start: 0; }

/* =========================================================
   Top Bar
   ========================================================= */
.topbar {
  background: linear-gradient(180deg, #0b1320 0%, #0f1d2e 100%);
  color: var(--text-on-dark);
  font-size: 13.5px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  padding-block: 10px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark);
  opacity: .9;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.topbar__item:hover { opacity: 1; color: var(--brand-2); }
.topbar__item svg { width: 16px; height: 16px; fill: currentColor; }
.topbar__item strong { color: #fff; font-weight: 600; margin-left: 2px; }
@media (max-width: 720px) {
  .topbar__item--hide-mobile { display: none; }
}

/* =========================================================
   Header / Nav
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.header.is-stuck {
  border-color: var(--line);
  background: rgba(255,255,255,.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand__logo {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform .25s var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.03); }
.brand__tag {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.brand__tag--solo {
  padding: 6px 10px;
  border-left: 2px solid var(--brand);
  color: var(--brand);
  font-weight: 600;
}
.brand--footer .brand__logo--footer {
  height: 70px;
  /* Logo ist dunkel → für dunklen Footer ins Weiß invertieren */
  filter: brightness(0) invert(1);
  opacity: .92;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-soft);
  padding-block: 6px;
}
.nav a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { white-space: nowrap; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .header__cta { display: none; }
  .hamburger { display: block; }
  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid transparent;
    flex-direction: column;
    align-items: stretch;
    padding: 0 var(--gutter);
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .3s var(--ease),
                padding-block .3s var(--ease),
                border-color .3s var(--ease),
                visibility 0s linear .3s;
  }
  .nav.is-open {
    max-height: 480px;
    padding-block: 20px;
    border-bottom-color: var(--line);
    visibility: visible;
    transition: max-height .3s var(--ease),
                padding-block .3s var(--ease),
                border-color .3s var(--ease),
                visibility 0s;
  }
  .nav a { padding-block: 10px; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #1a1207;
  box-shadow: 0 8px 22px -10px rgba(200,147,47,.7);
}
.btn--primary:hover {
  transform: translateY(-2px);
  color: #1a1207;
  box-shadow: 0 14px 28px -10px rgba(200,147,47,.85);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: #cfd5e0;
}
.btn--ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

/* =========================================================
   Eyebrow & Headings
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 16px;
}
.eyebrow--light { color: var(--brand-2); }
.eyebrow__dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,147,47,.18);
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
.lead { font-size: clamp(1.02rem, .5vw + .9rem, 1.18rem); color: var(--text-soft); }

.hl {
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #142a44 0%, transparent 60%),
              linear-gradient(180deg, #0b1320 0%, #0f1d2e 60%, #122441 100%);
  color: var(--text-on-dark);
  padding-block: clamp(60px, 9vw, 120px);
  isolation: isolate;
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero__glow--a {
  background: radial-gradient(closest-side, rgba(200,147,47,.65), transparent);
  top: -120px; left: -120px;
}
.hero__glow--b {
  background: radial-gradient(closest-side, rgba(79,140,255,.55), transparent);
  bottom: -160px; right: -120px;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__title {
  margin-bottom: 20px;
}
.hero__lead {
  font-size: clamp(1.05rem, .5vw + .95rem, 1.2rem);
  color: rgba(233,238,247,.85);
  max-width: 62ch;
  margin: 0 0 28px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__cta .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.hero__cta .btn--ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}

.hero__chips {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__chips li {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}

.hero__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.hero__card-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
.pulse {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2ee07f;
}
.pulse::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(46,224,127,.4);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero__card-list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: grid;
  gap: 14px;
}
.hero__card-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,.15);
  gap: 16px;
}
.hero__card-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hcl__label {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  flex-shrink: 0;
  padding-top: 2px;
}
.hcl__value {
  color: #fff;
  font-weight: 600;
  text-align: right;
  line-height: 1.4;
}
.hero__card-list--stack {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.hcl__value--center {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  z-index: 1;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@media (max-width: 980px) { .hero__scroll { display: none; } }

/* =========================================================
   Marquee / Marken
   ========================================================= */
.marquee {
  background: #0a1220;
  color: rgba(255,255,255,.55);
  border-block: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding-block: 22px;
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: .2em;
  font-size: 14px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track span:not(:nth-child(2n)) { color: rgba(255,255,255,.85); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding-block: clamp(64px, 8vw, 120px);
}
.section--alt { background: var(--surface-2); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section__head .eyebrow { justify-content: center; }
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.section__intro p:not(.lead) { color: var(--text-soft); }

/* Logo-Banner unter dem Über-uns-Text */
.brand-banner {
  margin: 36px 0 0;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.brand-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(200,147,47,.08), transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(255,106,61,.06), transparent 40%);
  pointer-events: none;
}
.brand-banner img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 520px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .section__grid { grid-template-columns: 1fr; }
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0; margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), transparent);
}
.timeline li {
  position: relative;
  padding: 4px 0 28px 56px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--brand-soft);
}
.timeline__year {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--brand);
  margin-bottom: 6px;
}
.timeline h3 { margin-bottom: 6px; }
.timeline p { color: var(--text-soft); margin: 0; }
.timeline p a { color: var(--brand); font-weight: 600; }
.timeline p a:hover { text-decoration: underline; }

/* 2026 / Call-to-Action Eintrag */
.timeline__item--cta::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(255,106,61,.35), 0 0 0 12px rgba(255,106,61,.18);
  animation: ctaPulse 2.2s ease-out infinite;
}
.timeline__item--cta .timeline__year {
  color: var(--accent);
}
.timeline__item--cta h3 {
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(255,106,61,.35), 0 0 0 12px rgba(255,106,61,.18); }
  50%      { box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(255,106,61,.55), 0 0 0 16px rgba(255,106,61,.05); }
}
@media (prefers-reduced-motion: reduce) {
  .timeline__item--cta::before { animation: none; }
}

/* =========================================================
   Stats
   ========================================================= */
.stats {
  background: linear-gradient(135deg, #0b1320 0%, #122441 100%);
  color: #fff;
  padding-block: 60px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat {
  padding: 16px;
}
.stat__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.6rem);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  color: var(--brand-2);
}
.stat__label {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Benefit Cards
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  opacity: 0;
  z-index: -1;
  transition: opacity .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::after { opacity: 1; }
.card:hover { background: #fff; }
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  color: var(--brand);
  margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-soft); margin: 0; font-size: 15px; }

/* =========================================================
   Features (Warum)
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.feature:hover { border-color: var(--brand-soft); transform: translateY(-3px); }
.feature__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.feature p { color: var(--text-soft); margin: 0; }

/* =========================================================
   Job Cards (Offene Stellen)
   ========================================================= */
.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.job-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s var(--ease),
              border-color .25s var(--ease),
              box-shadow .25s var(--ease);
}
/* Goldener Akzentstrich oben */
.job-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  opacity: .75;
  transition: opacity .25s var(--ease), height .25s var(--ease);
}
.job-card:hover,
.job-card:focus-within {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.job-card:hover::before,
.job-card:focus-within::before {
  opacity: 1;
  height: 6px;
}

.job-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.job-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1;
}
.job-card__badge--accent {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
.job-card__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  color: var(--brand);
  flex-shrink: 0;
}
.job-card__icon svg { width: 22px; height: 22px; }

.job-card__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--text);
  line-height: 1.2;
}

.job-card__subtitle {
  margin: -6px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
  font-style: italic;
}

.job-card__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 14.5px;
  margin: 0;
}
.job-card__location svg {
  width: 16px; height: 16px;
  fill: var(--brand);
  flex-shrink: 0;
}

.job-card__cta {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
  border-top: 1px dashed var(--line);
  position: relative;
  z-index: 2;
}
.job-card__cta svg {
  width: 18px; height: 18px;
  transition: transform .2s var(--ease);
}
.job-card:hover .job-card__cta svg,
.job-card:focus-within .job-card__cta svg {
  transform: translateX(4px);
}

/* Initiativbewerbungs-Karte */
.job-card--initiative {
  background: linear-gradient(160deg, #0b1320 0%, #16304d 100%);
  color: #fff;
  border-color: transparent;
}
.job-card--initiative .job-card__title { color: #fff; }
.job-card--initiative .job-card__location { color: rgba(255,255,255,.75); }
.job-card--initiative .job-card__location svg { fill: var(--brand-2); }
.job-card--initiative .job-card__icon {
  background: rgba(255,255,255,.08);
  color: var(--brand-2);
}
.job-card--initiative .job-card__cta {
  color: var(--brand-2);
  border-top-color: rgba(255,255,255,.15);
}
.job-card--initiative::before {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 1;
}

/* =========================================================
   Steps
   ========================================================= */
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: stepCnt;
}
.step {
  position: relative;
  padding: 32px 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute;
  top: -18px; left: 24px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1a1207;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 18px -6px rgba(200,147,47,.6);
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-soft); margin: 0; font-size: 15px; }
.step a { color: var(--brand); font-weight: 600; }

/* =========================================================
   CTA Section
   ========================================================= */
.section--cta {
  background: linear-gradient(135deg, #0f1d2e 0%, #16304d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200,147,47,.25), transparent);
  top: -200px; right: -200px;
  filter: blur(40px);
}
.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta .lead { color: rgba(255,255,255,.78); }
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
  min-width: 260px;
}
@media (max-width: 820px) {
  .cta { grid-template-columns: 1fr; }
  .cta__actions { justify-self: stretch; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #08101c;
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.brand--footer { gap: 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer__about { margin-top: 16px; max-width: 36ch; font-size: 14px; }
.footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.footer__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
}
.footer__list a:hover { color: var(--brand-2); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   To-Top Button
   ========================================================= */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1a1207;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 60;
}
.to-top svg { width: 22px; height: 22px; margin: auto; }
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================================================
   Reveal Animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee__track,
  .pulse::before,
  .hero__scroll span { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   MOBILE-OPTIMIERUNGEN
   Mobile-First-Verstärkungen für Smartphones (≤600px / ≤420px)
   ========================================================= */

/* Tablets im Hochformat & große Phones */
@media (max-width: 720px) {
  :root { --gutter: clamp(14px, 4vw, 24px); }

  /* Topbar etwas kompakter */
  .topbar { font-size: 12.5px; }
  .topbar__inner { padding-block: 8px; gap: 10px; }

  /* Header */
  .header__inner { padding-block: 10px; gap: 12px; }
  .brand { gap: 10px; }
  .brand__logo { height: 42px; }
  .brand__tag--solo {
    font-size: 10px;
    letter-spacing: .18em;
    padding: 4px 8px;
  }

  /* Hero */
  .hero { padding-block: 56px; }
  .hero__title { margin-bottom: 16px; }
  .hero__lead { margin-bottom: 24px; }

  /* Hero CTA-Buttons full-width auf Mobile */
  .hero__cta { gap: 10px; }
  .hero__cta .btn { width: 100%; }

  .hero__chips { gap: 8px; }
  .hero__chips li { font-size: 12px; padding: 6px 12px; }

  /* Hero-Card kompakter */
  .hero__card { padding: 20px; border-radius: var(--radius); }
  .hero__card-head { margin-bottom: 16px; font-size: 13px; }
  .hero__card-list { gap: 12px; margin-bottom: 20px; }
  .hero__card-list li { padding-bottom: 12px; gap: 12px; }
  .hcl__label { font-size: 12px; }
  .hcl__value { font-size: 14px; }

  /* Marquee */
  .marquee { padding-block: 16px; }
  .marquee__track { font-size: 12px; letter-spacing: .12em; gap: 24px; }

  /* Sections etwas weniger Padding */
  .section { padding-block: 56px; }
  .section__head { margin-bottom: 36px; }

  /* Cards */
  .card { padding: 22px; }
  .card__icon { width: 42px; height: 42px; margin-bottom: 12px; }
  .card__icon svg { width: 22px; height: 22px; }
  .card h3 { font-size: 1.08rem; }
  .card p { font-size: 14.5px; }

  /* Features */
  .feature { padding: 22px; }
  .feature__num { font-size: 36px; }

  /* Timeline */
  .timeline::before { left: 14px; }
  .timeline li { padding-left: 44px; padding-bottom: 22px; }
  .timeline li::before { left: 7px; width: 14px; height: 14px; }

  /* Stats */
  .stats { padding-block: 44px; }
  .stats__grid { gap: 20px 16px; }
  .stat { padding: 8px 4px; }
  .stat__label { font-size: 12px; letter-spacing: .08em; }

  /* Steps */
  .step { padding: 28px 20px 22px; }
  .step__num { width: 36px; height: 36px; top: -16px; left: 20px; }

  /* CTA-Section */
  .cta__actions { min-width: 0; width: 100%; }
  .cta__actions .btn { width: 100%; }

  /* Brand-Banner */
  .brand-banner { margin-top: 28px; padding: 14px 18px; }

  /* Portal-Frame */
  .portal-frame__bar { padding: 10px 16px; }
  .portal-frame__bar span { width: 10px; height: 10px; }
  .portal-frame__body { min-height: 360px; }

  /* Footer */
  .footer { padding-top: 48px; }
  .footer__grid { gap: 28px; padding-bottom: 32px; }
  .footer__bottom { font-size: 12px; text-align: center; justify-content: center; }

  /* To-Top etwas kleiner & weiter rechts unten */
  .to-top { width: 44px; height: 44px; right: 14px; bottom: 14px; }
}

/* Kleine Phones (~360–420 px) */
@media (max-width: 420px) {
  /* Hero noch luftiger – kein Quetschen der Region-Zeile */
  .hero__card-list li {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .hcl__label {
    padding-top: 0;
    color: rgba(255,255,255,.55);
  }
  .hcl__value,
  .hcl__value--center {
    text-align: left;
    font-size: 14.5px;
  }
  .hero__card { padding: 18px; }

  /* Topbar: Hotline darf umbrechen */
  .topbar__item { font-size: 12px; white-space: normal; }

  /* h1 etwas zähmen für kleine Displays */
  .hero__title { font-size: clamp(1.85rem, 8vw + .4rem, 2.4rem); }

  /* Buttons als bequemes Tap-Target */
  .btn { padding: 13px 18px; }
  .btn--lg { padding: 15px 22px; font-size: 15.5px; }

  /* Stats: 1 Spalte erst hier – 2 Spalten sind bei 4 Werten auf 360px noch ok */
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat__num { font-size: 2.6rem; }

  /* Sections nochmal kompakter */
  .section { padding-block: 48px; }
  .section__head { margin-bottom: 28px; }

  /* Card minmax verringern, damit nicht zu früh nur 1 Spalte */
  .cards { grid-template-columns: 1fr; gap: 14px; }
  .features { grid-template-columns: 1fr; gap: 14px; }
  .steps { grid-template-columns: 1fr; }

  /* Marquee */
  .marquee__track { font-size: 11.5px; gap: 18px; }

  /* Brand-Banner braucht keine extra Optik mehr */
  .brand-banner { padding: 12px 14px; }
}

/* Sehr kleine Phones (≤340 px) – Fallback */
@media (max-width: 340px) {
  .brand__logo { height: 36px; }
  .brand__tag--solo { display: none; }
  .topbar__item strong { display: block; }
}

/* Anti-Overflow Schutz – Standard Mobile Safety */
html, body { overflow-x: hidden; }
img, svg, video, canvas { max-width: 100%; height: auto; }
.wrap, .header__inner, .hero__inner, .section__grid { min-width: 0; }

/* Lange Wörter dürfen umbrechen, statt das Layout zu sprengen */
.hero__title, .hcl__value, h2, h3 { overflow-wrap: anywhere; }

/* Tap-Target ≥ 44px für die wirklich tappbaren Elemente */
.hamburger, .to-top { min-width: 44px; min-height: 44px; }
@media (max-width: 980px) {
  .nav a { min-height: 44px; display: flex; align-items: center; }
}
