/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

/* ── Homepage Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  display: none;
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 40%,
    rgba(175, 130, 72, 0.05) 0%,
    transparent 70%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  margin-left: -0.04em;
}

.hero__title span {
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--lh-relaxed);
}

/* ── Hero linksbündig ── */
.hero__content--left {
  text-align: left;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 var(--container-padding);
  padding-left: var(--container-padding);
  max-width: var(--container-xl);
  margin: 0 auto;
  transform: none;
  align-self: flex-end;
  padding-bottom: var(--space-3xl);
}

.hero__content--left .hero__subtitle {
  margin-left: 0;
  margin-right: auto;
}

/* ── Subtitle gold ── */
.hero__subtitle--gold {
  color: var(--color-accent-light);
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__content--left .hero__cta {
  justify-content: flex-start;
  align-items: center;
}

/* ── Hero Audio Play Button ── */
.hero__play-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-accent-light);
  background: rgba(175, 130, 72, 0.1);
  color: var(--color-accent-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.hero__play-btn:hover {
  background: rgba(175, 130, 72, 0.25);
  transform: scale(1.08);
}

.hero__play-icon,
.hero__pause-icon {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__play-icon {
  margin-left: 3px;
}

.hero__pause-icon {
  opacity: 0;
}

.hero__play-btn.is-playing .hero__play-icon {
  opacity: 0;
}

.hero__play-btn.is-playing .hero__pause-icon {
  opacity: 1;
}

/* ── Golden Pulse Waves (3D) ── */
.hero__play-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--color-accent-light);
  box-shadow: 0 0 12px rgba(175, 130, 72, 0.4),
              0 0 30px rgba(175, 130, 72, 0.15),
              inset 0 0 8px rgba(175, 130, 72, 0.2);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}

.hero__play-btn.is-playing .hero__play-wave {
  animation: heroPlayWave 3s ease-out infinite;
}

.hero__play-btn.is-playing .hero__play-wave:nth-child(3) {
  animation-delay: 0s;
}

.hero__play-btn.is-playing .hero__play-wave:nth-child(4) {
  animation-delay: 1s;
}

.hero__play-btn.is-playing .hero__play-wave:nth-child(5) {
  animation-delay: 2s;
}

@keyframes heroPlayWave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
    border-width: 3px;
    box-shadow: 0 0 16px rgba(175, 130, 72, 0.5),
                0 0 40px rgba(175, 130, 72, 0.25),
                inset 0 0 10px rgba(175, 130, 72, 0.3);
  }
  50% {
    opacity: 0.35;
  }
  100% {
    transform: translate(-50%, -50%) scale(4.5);
    opacity: 0;
    border-width: 1px;
    box-shadow: 0 0 4px rgba(175, 130, 72, 0.05),
                0 0 8px rgba(175, 130, 72, 0.02);
  }
}

.hero__badge {
  position: absolute;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  z-index: 3;
  width: 100px;
  height: auto;
  opacity: 0.9;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__badge:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .hero__badge {
    width: 70px;
    bottom: var(--space-lg);
    right: var(--space-lg);
  }

  .hero__content--left {
    transform: none;
    padding-bottom: var(--space-2xl);
  }

  .hero__play-btn {
    width: 46px;
    height: 46px;
  }

  .hero__play-icon,
  .hero__pause-icon {
    width: 18px;
    height: 18px;
  }
}


/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-light);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ── Subpage Hero ── */
.hero--sub {
  height: 40vh;
  min-height: 320px;
  max-height: 450px;
}

.hero--sub .hero__content {
  padding-top: var(--header-height);
}

.hero--sub .hero__title {
  font-size: var(--fs-h1);
}

/* ── Trust Bar (below hero) ── */
.trust-bar {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-bar__logo {
  height: 30px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(0.8);
  flex-shrink: 0;
  pointer-events: none;
}

.trust-bar__logo-text {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.5;
  white-space: nowrap;
  flex-shrink: 0;
  pointer-events: none;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Trust bar with label */
.trust-bar--labeled {
  display: flex;
  align-items: center;
}

.trust-bar__label {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding: 0 var(--container-padding);
  flex-shrink: 0;
}

.trust-bar__track {
  overflow: hidden;
  flex: 1;
}
