  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: calc(var(--nav-height) + 12vh);
    background-image: url('../img/digital-user-story-wall.webp');
    background-size: cover;
    background-position: top center;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.5) 70%,
      rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
  }

  .hero-text-area {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
  }

  /* Hero Badges (rechts neben dem Text) */
  .hero-badges {
    position: absolute;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-badges__img {
    width: 160px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
  }

  .hero h1 {
    font-family: var(--font-body);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  }

  .hero-word {
    display: inline-block;
    opacity: 0;
    animation: wordPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .hero-word:nth-child(1) { animation-delay: 0.1s; }
  .hero-word:nth-child(2) { animation-delay: 0.2s; }
  .hero-word:nth-child(3) { animation-delay: 0.3s; }
  .hero-word:nth-child(4) { animation-delay: 0.4s; }

  .hero-word.accent {
    color: #2af598;
    transition: all 0.5s ease;
  }

  /* Homepage: "Next Level" / "Produktentwicklung" immer auf eigener Zeile */
  .hero-home .hero-word {
    display: block;
  }

  @keyframes wordPop {
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.4;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
  }


  /* Proof Points */
  .hero-proof {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .hero-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon svg {
    width: 10px;
    height: 10px;
  }

  /* ── Tablet ── */
  @media (max-width: 1024px) {
    .hero {
      padding-top: calc(var(--nav-height) + 4rem);
      padding-bottom: 3rem;
    }

    .hero-proof {
      gap: 1rem;
    }

    .hero-badges {
      position: static;
      transform: none;
      flex-direction: row;
      justify-content: center;
      margin-top: 2rem;
    }

    .hero-badges__img {
      width: 120px;
    }
  }

  /* ── Mobile ── */
  @media (max-width: 768px) {
    .hero {
      padding-top: calc(var(--nav-height) + 3rem);
      padding-bottom: 2.5rem;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero-proof {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-proof-item {
      font-size: 0.78rem;
    }

    .hero-badges {
      gap: 1rem;
    }

    .hero-badges__img {
      width: 100px;
    }
  }
