.video-page {
  padding: 140px 0 80px;
  background: var(--bg);
  min-height: 100vh;
}

.video-header {
  text-align: center;
  margin-bottom: 48px;
}

.video-header h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin: 16px 0 12px;
}

.video-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.video-cta {
  text-align: center;
  margin-top: 40px;
}

.video-cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .video-page { padding: 120px 0 60px; }
  .video-header h1 { font-size: 2rem; }
}
