.hero {
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__media {
  order: 1;
}

.hero__content {
  order: 2;
}

.hero__video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 28, 64, 0.3);
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

.hero__video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  animation: playPulse 2s ease-in-out infinite;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.hero__play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__play-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero__play-btn:hover {
  animation-play-state: paused;
}

.hero__play-btn:hover svg {
  opacity: 0.9;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero__bullets {
  margin-bottom: 32px;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
}

.hero__bullet-icon {
  color: var(--gold-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__media {
    order: 1;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .hero__content {
    order: 2;
    text-align: center;
  }

  .hero__bullets li {
    justify-content: flex-start;
    text-align: left;
  }

  .hero__content .btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 40px;
  }

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

  .hero__play-btn svg {
    width: 60px;
    height: 60px;
  }
}
