/* --- HERO GRID --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* --- TEXT LINKS --- */
.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* --- BUTTON --- */
.hero-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* --- ANIMATION RECHTS --- */
.hero-animation {
  display: flex;
  justify-content: center;
}

.hero-animation lottie-player {
  width: 100%;
  max-width: 420px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-animation {
    order: 2;
    margin-top: 32px;
  }

  .hero-text {
    order: 1;
  }
}