.hero-fg-video {
  display: flex;
  align-items: center;
  min-height: 80vh;
  background: var(--color-text-primary);
  color: #ffffff;
  overflow: hidden;
}

.hero-fg-video__content {
  flex: 0 0 45%;
  padding: 64px var(--container-padding) 64px calc(var(--container-padding) + 40px);
}

.hero-fg-video__inner {
  max-width: 500px;
}

.hero-fg-video__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 24px;
}

.hero-fg-video__description {
  max-width: 480px;
  margin: 0 0 40px;
  color: rgba(229, 231, 235, 0.95);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-fg-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-fg-video__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-fg-video__button--primary {
  background: var(--color-brand-green);
  color: #ffffff;
}

.hero-fg-video__button--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-fg-video__player {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 40px 0;
}

.hero-fg-video__wrapper {
  position: relative;
  width: 100%;
}

.hero-fg-video__wrapper video {
  width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  background: #000;
  cursor: pointer;
}

.hero-fg-video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-fg-video__play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.hero-fg-video__play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-fg-video__play-btn--hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-fg-video {
    flex-direction: column;
    min-height: auto;
  }

  .hero-fg-video__content {
    flex: none;
    width: 100%;
    padding: 64px var(--container-padding) 32px;
  }

  .hero-fg-video__inner {
    max-width: 100%;
  }

  .hero-fg-video__title {
    font-size: 48px;
  }

  .hero-fg-video__player {
    flex: none;
    width: 100%;
    padding: 0 var(--container-padding) 48px;
  }
}

@media (max-width: 767px) {
  .hero-fg-video__content {
    padding: 48px var(--container-padding) 24px;
  }

  .hero-fg-video__title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-fg-video__description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-fg-video__player {
    padding: 0 var(--container-padding) 40px;
  }
}
