/* ===== Video section ===== */
.video-section {
  background: var(--black);
  color: var(--text-inverse);
  text-align: center;
  padding: 56px 0;
}

.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-frame img,
.video-frame video {
  width: 100%;
  display: block;
  transition: opacity 0.2s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button svg {
  width: 26px;
  height: 26px;
  color: var(--primary-dark);
}

.video-watermark {
  position: absolute;
  bottom: 18px;
  right: 24px;
}

.video-watermark img {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

.video-frame.is-playing .video-poster,
.video-frame.is-playing .play-button,
.video-frame.is-playing .video-watermark {
  display: none;
}

.video-frame video {
  display: none;
}

.video-frame.is-playing video {
  display: block;
}

