/* ============================================
   NOW CONSULTING — RECRUITING LANDINGPAGE
   Marketing Managerin (m/w/d)
   Dark & Premium Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C97A;
  --gold-dark: #A07830;
  --black: #0e0c0a;
  --surface: #181410;
  --surface-2: #211d18;
  --border: rgba(201, 168, 76, 0.28);
  --text: #f2efe9;
  --text-muted: #9e9a94;
  --text-dim: #6a6560;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1140px;
  --section-pad: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* WebGL background shader canvas */
#bgShader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

.section {
  padding: var(--section-pad) 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.28), 0 4px 16px rgba(201, 168, 76, 0.18);
  position: relative;
  transition: all var(--transition), transform 0.15s ease-out;
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(201, 168, 76, 0.55), 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1rem;
  min-height: 56px;
}

.btn--full {
  width: 100%;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Section Headers --- */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section__subtitle {
  margin: 0 auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
}

.hero__matrix {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201, 168, 76, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 80% 30% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite alternate;
}

@keyframes heroShimmer {
  0%   { opacity: 0.4; transform: scale(1) translateY(0); }
  50%  { opacity: 0.9; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 0.5; transform: scale(1) translateY(0); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  margin-bottom: 24px;
}

.hero__date-icon {
  font-size: 0.85rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__subline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__date-info {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.hero__video {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.hero__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Video Replay Overlay */
.hero__video-replay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero__video-replay.visible {
  opacity: 1;
  pointer-events: auto;
}

.hero__video-replay-btn {
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero__video-replay-btn:hover {
  transform: scale(1.12);
  color: var(--gold-light);
}

.hero__video-replay-btn svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   UNTERNEHMEN
   ============================================ */
.unternehmen {
  background:
    radial-gradient(ellipse 65% 55% at 95% 5%,  rgba(201, 168, 76, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 5%  95%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    var(--surface);
  position: relative;
}

.unternehmen::before,
.unternehmen::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.unternehmen::before { top: 0; }
.unternehmen::after  { bottom: 0; }

.unternehmen.section-divider-visible::before,
.unternehmen.section-divider-visible::after {
  opacity: 1;
}

.unternehmen__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Team-Mini: 4 runde Portraits oben in der Section */
.unternehmen__team-mini {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 20px auto 48px;
  flex-wrap: nowrap;
}

.team-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.18), 0 4px 12px rgba(0, 0, 0, 0.4);
  background: var(--surface-2);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  cursor: default;
}

.team-circle:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.55), 0 6px 18px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.team-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

@media (max-width: 480px) {
  .team-circle {
    width: 48px;
    height: 48px;
  }
  .unternehmen__team-mini {
    gap: 12px;
    margin: 16px auto 36px;
  }
}

.unternehmen__content {
  margin-bottom: 48px;
}

.unternehmen__text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: center;
}

.unternehmen__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin: 32px 0 36px;
}

.unternehmen__stat {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.unternehmen__stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.unternehmen__stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ============================================
   TEAM
   ============================================ */
.team-section {
  background:
    radial-gradient(ellipse 55% 40% at 5% 95%, rgba(201, 168, 76, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 65% 55% at 95% 5%, rgba(201, 168, 76, 0.10) 0%, transparent 55%),
    var(--surface);
  position: relative;
}

.team-section::before,
.team-section::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.team-section::before { top: 0; }
.team-section::after  { bottom: 0; }

.team-section.section-divider-visible::before,
.team-section.section-divider-visible::after {
  opacity: 1;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: linear-gradient(160deg, #1a1510 0%, #0e0c0a 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-card__body {
  padding: 16px 14px 20px;
}

.team-card__text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dim);
  margin-top: 10px;
  text-align: center;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.9);
  transition: filter 0.5s ease;
}

.team-card:hover .team-card__photo img {
  filter: grayscale(0%) brightness(1);
}

.team-card__initial {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
}

.team-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-card__role {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

/* ============================================
   EVENTS
   ============================================ */
.events-section {
  background:
    radial-gradient(ellipse 65% 55% at 95% 5%, rgba(201, 168, 76, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 5% 95%, rgba(201, 168, 76, 0.10) 0%, transparent 50%),
    var(--surface);
  position: relative;
}

.events-section::before,
.events-section::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.events-section::before { top: 0; }
.events-section::after  { bottom: 0; }

.events-section.section-divider-visible::before,
.events-section.section-divider-visible::after {
  opacity: 1;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background: linear-gradient(160deg, #1a1510 0%, #0e0c0a 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.event-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.event-card__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}

.event-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.event-card__body {
  padding: 24px 20px;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.event-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.event-card__highlight {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background:
    radial-gradient(ellipse 65% 55% at 95% 5%, rgba(201, 168, 76, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 5% 95%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    var(--black);
  position: relative;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.testimonials::before { top: 0; }
.testimonials::after  { bottom: 0; }

.testimonials.section-divider-visible::before,
.testimonials.section-divider-visible::after {
  opacity: 1;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testi-card {
  background: linear-gradient(160deg, #1a1510 0%, #0e0c0a 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testi-card__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}

.testi-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Replay overlay for testimonial videos */
.video-replay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-replay.visible {
  opacity: 1;
  pointer-events: auto;
}

.video-replay-btn {
  width: 56px;
  height: 56px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.video-replay-btn:hover {
  transform: scale(1.12);
  color: var(--gold-light);
}

.video-replay-btn svg {
  width: 100%;
  height: 100%;
}

.testi-card__name {
  padding: 14px 16px 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.testi-card__role {
  padding: 0 16px 14px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-align: center;
}

/* Testimonial reveal animation */
.reveal-testi {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-testi.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BEWERBUNGSFUNNEL (Fullscreen Overlay)
   ============================================ */
.funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background:
    radial-gradient(ellipse 75% 75% at 50% 50%, rgba(201, 168, 76, 0.10) 0%, transparent 65%),
    rgba(10, 8, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.funnel-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.funnel-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
  z-index: 2;
}

.funnel-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: color var(--transition);
  z-index: 3;
}

.funnel-close:hover {
  color: var(--gold);
}

.funnel-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.funnel-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.funnel-step.exit-left {
  opacity: 0;
  transform: translateX(-60px);
  pointer-events: none;
}

.funnel-step__inner {
  text-align: center;
  max-width: 640px;
  width: 100%;
  padding: 24px;
}

.funnel-step__count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.funnel-step__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 40px;
}

.funnel-step__title em {
  font-style: italic;
  color: var(--gold);
}

.funnel-step__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Funnel Option Buttons */
.funnel-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.funnel-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
}

.funnel-option:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateX(6px);
}

.funnel-option.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.funnel-option__icon {
  color: var(--gold);
  opacity: 0.3;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease, text-shadow 0.3s ease;
}

.funnel-option:hover .funnel-option__icon,
.funnel-option.selected .funnel-option__icon {
  opacity: 1;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.7);
}

.bewerbung__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.form__input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  min-height: 52px;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--text-dim);
}

.form__input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 1px var(--gold), 0 0 16px rgba(201, 168, 76, 0.2), 0 0 40px rgba(201, 168, 76, 0.08);
}

.form__input.error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.05);
}

.form__phone-wrap.error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.05);
}

.form__error-msg {
  display: none;
  font-size: 0.78rem;
  color: #e05555;
  margin-top: -8px;
  padding-left: 4px;
}

.form__error-msg.visible {
  display: block;
}

.form__note {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.form__phone-wrap {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition);
}

.form__phone-wrap:focus-within {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 1px var(--gold), 0 0 16px rgba(201, 168, 76, 0.2), 0 0 40px rgba(201, 168, 76, 0.08);
}

.form__select {
  width: 80px;
  flex-shrink: 0;
  padding: 16px 6px;
  text-align: center;
  background: rgba(201, 168, 76, 0.06);
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
}

.form__select option {
  background: var(--surface);
  color: var(--text);
}

.form__input--tel {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  min-width: 0;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Alter Input (Funnel Step 3) */
.funnel-age-input {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  padding-top: 8px;
}

.form__input--age {
  width: 100%;
  text-align: center;
  -moz-appearance: textfield;
}

.form__input--age::-webkit-outer-spin-button,
.form__input--age::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn--age-next {
  width: 100%;
}

/* Success State */
/* Shared CTA spacing */
.section__cta,
.unternehmen__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   FAQ (Häufige Fragen)
   ============================================ */
.faq-section {
  padding: 80px 0 60px;
  position: relative;
}

.faq-section::before,
.faq-section::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.faq-section::before { top: 0; }
.faq-section::after  { bottom: 0; }

.faq-section.section-divider-visible::before,
.faq-section.section-divider-visible::after {
  opacity: 1;
}

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}

.faq-item {
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  transition: background 0.3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.faq-item.is-open {
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.03), transparent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s ease;
  min-height: 64px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-item.is-open .faq-question {
  color: var(--gold);
}

.faq-question > span:first-child {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 8px 24px;
}

.faq-answer__inner p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 60px 0 40px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 20px 4px;
  }
  .faq-answer__inner {
    padding: 0 4px 20px;
  }
  .faq-answer__inner p {
    font-size: 0.95rem;
  }
}

/* ============================================
   STATEMENT (Abschluss-Block)
   ============================================ */
.statement-section {
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(201, 168, 76, 0.14) 0%, rgba(201, 168, 76, 0.04) 45%, transparent 65%),
    var(--black);
}

/* Animated gold glow orbs — multiple small elements like camouflage */
.statement__glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Orb 1 — oben links, flache Wolke */
.statement__glow--1 {
  width: 180px;
  height: 100px;
  top: 8%;
  left: 2%;
  border-radius: 60% 40% 50% 45% / 50% 35% 60% 45%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.16) 0%, rgba(201, 168, 76, 0.04) 50%, transparent 70%);
  filter: blur(20px);
  animation: glowFloat1 7s ease-in-out infinite;
}

/* Orb 2 — rechts mitte, schmal */
.statement__glow--2 {
  width: 120px;
  height: 140px;
  top: 50%;
  right: 3%;
  border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
  background: radial-gradient(ellipse at center, rgba(230, 210, 140, 0.14) 0%, rgba(230, 210, 140, 0.03) 55%, transparent 75%);
  filter: blur(18px);
  animation: glowFloat2 9s ease-in-out infinite;
}

/* Orb 3 — center, breit, subtil */
.statement__glow--3 {
  width: 220px;
  height: 110px;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50% 40% 55% 45% / 40% 55% 35% 50%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.03) 50%, transparent 70%);
  filter: blur(24px);
  animation: glowFloat3 6s ease-in-out infinite;
}

/* Orb 4 — unten links, organisch */
.statement__glow--4 {
  width: 130px;
  height: 80px;
  bottom: 12%;
  left: 12%;
  border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.04) 50%, transparent 70%);
  filter: blur(16px);
  animation: glowFloat4 8s ease-in-out infinite;
}

/* Orb 5 — oben rechts, tropfenförmig */
.statement__glow--5 {
  width: 90px;
  height: 110px;
  top: 3%;
  right: 15%;
  border-radius: 55% 45% 50% 50% / 45% 60% 40% 55%;
  background: radial-gradient(ellipse at center, rgba(230, 210, 140, 0.13) 0%, rgba(201, 168, 76, 0.03) 55%, transparent 70%);
  filter: blur(14px);
  animation: glowFloat5 10s ease-in-out infinite;
}

/* Orb 6 — unten rechts, flach breit */
.statement__glow--6 {
  width: 170px;
  height: 80px;
  bottom: 3%;
  right: 20%;
  border-radius: 45% 55% 50% 45% / 50% 40% 55% 50%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.03) 50%, transparent 70%);
  filter: blur(18px);
  animation: glowFloat6 7.5s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33%      { transform: translate(30px, -20px) scale(1.15); opacity: 0.8; }
  66%      { transform: translate(-15px, 15px) scale(0.9); opacity: 0.4; }
}

@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  40%      { transform: translate(-25px, 20px) scale(1.1); opacity: 0.75; }
  70%      { transform: translate(15px, -10px) scale(0.85); opacity: 0.35; }
}

@keyframes glowFloat3 {
  0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); opacity: 0.4; }
  30%      { transform: translateX(-50%) translate(20px, 15px) scale(1.2); opacity: 0.7; }
  60%      { transform: translateX(-50%) translate(-25px, -10px) scale(0.85); opacity: 0.3; }
}

@keyframes glowFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50%      { transform: translate(20px, -25px) scale(1.2); opacity: 0.8; }
}

@keyframes glowFloat5 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25%      { transform: translate(-20px, 15px) scale(1.05); opacity: 0.7; }
  50%      { transform: translate(10px, 25px) scale(0.9); opacity: 0.45; }
  75%      { transform: translate(15px, -10px) scale(1.1); opacity: 0.75; }
}

@keyframes glowFloat6 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  35%      { transform: translate(-18px, -20px) scale(1.1); opacity: 0.7; }
  65%      { transform: translate(22px, 12px) scale(0.85); opacity: 0.4; }
}

.statement__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.statement__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
}

.statement__title em {
  font-style: italic;
  color: var(--gold);
}

.statement__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    var(--black);
  padding: 56px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.45) 30%, rgba(201, 168, 76, 0.45) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3), 0 0 24px rgba(201, 168, 76, 0.12);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.footer.section-divider-visible::before {
  opacity: 1;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--transition);
  font-family: var(--font-body);
}

.footer__legal-btn:hover { color: var(--gold); }

.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

/* --- Legal Modals --- */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.legal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.legal-modal {
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.legal-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}

.legal-modal__close:hover { color: var(--gold); }

.legal-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}

.legal-modal__body h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0 8px;
}

.legal-modal__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-modal__body a {
  color: var(--gold);
  text-decoration: none;
}

.legal-modal__body a:hover {
  text-decoration: underline;
}

/* Logo Transition Overlay */
.logo-transition {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease, background 0.5s ease;
}

.logo-transition.active {
  opacity: 1;
  pointer-events: all;
}

.logo-transition__img {
  width: 100vmax;
  transform: scale(0.09);
  transition: transform 1.5s cubic-bezier(0.15, 0, 0.05, 1);
  image-rendering: high-quality;
}

.logo-transition.active:not(.expand) .logo-transition__img {
  animation: logo-glow 1s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  from { filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4)); }
  to   { filter: drop-shadow(0 0 60px rgba(201, 168, 76, 1)) brightness(1.15); }
}

.logo-transition.expand .logo-transition__img {
  transform: scale(1.1);
  animation: none;
  filter: drop-shadow(0 0 80px rgba(201, 168, 76, 0.8));
}

.logo-transition.gold {
  background: var(--gold);
}

.logo-transition.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* --- Cookie Modal --- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cookie-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.cookie-modal__icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.cookie-modal__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
  font-style: italic;
}
.cookie-modal__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cookie-modal__btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-modal__btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(201, 168, 76, 0.55);
}

/* ============================================
   HIGH-END ANIMATIONS
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6), 0 0 20px rgba(201, 168, 76, 0.3);
  z-index: 10000;
  transition: none;
  pointer-events: none;
}

/* --- Letter Assemble --- */
.letter-assemble {
  visibility: hidden;
}
.letter-assemble.la-ready {
  visibility: visible;
}
.letter-assemble .la-word {
  display: inline-block;
  white-space: nowrap;
}
.letter-assemble .la-char {
  display: inline-block;
  opacity: 0;
  animation: letterFlyIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
@keyframes letterFlyIn {
  0% {
    opacity: 0;
    transform: translate(var(--la-x), var(--la-y)) scale(0.5) rotate(var(--la-r));
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

/* --- Gold Particle Burst --- */
.btn-particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  border-radius: inherit;
}
.btn-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  opacity: 0;
}

/* --- Ambient Sparks --- */
.btn-spark-container {
  position: absolute;
  inset: -12px;
  pointer-events: none;
  overflow: visible;
  z-index: -1;
}

.btn-spark {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes sparkDrift {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  15%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* --- Counting Numbers --- */
.unternehmen__stat-num[data-count] {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   RESPONSIVE — TABLET (900px)
   ============================================ */
@media (max-width: 900px) {
  :root {
    --section-pad: 64px;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .unternehmen__stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__headline {
    font-size: clamp(2.2rem, 7.5vw, 3.6rem);
  }

  .btn--large {
    padding: 16px 28px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 380px;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .unternehmen__stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* --- Funnel Mobile --- */
  .funnel-step__title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .funnel-option {
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .funnel-close {
    top: 16px;
    right: 16px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .btn-particle,
  .btn-spark { display: none; }
  .letter-assemble .la-char { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
}
