/* ═══ WORKFLOW VIDEO + LAPTOP SCREEN STYLES ═══════════════════════════════
   .laptop-screen-inner (laptop hero), .wf-video-container (#workflow section)
   Note: Laptop screen styles (img, fallback, lsf-*) are in hero.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Workflow Section Video Container ────────────────────────────────── */
.wf-video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #0c0c0c;
  aspect-ratio: 16/9;
}

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

/* ── Workflow Video Placeholder ──────────────────────────────────────── */
.wf-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a1a24;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.wf-video-ph-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(124, 147, 195, 0.1);
  border: 2px solid rgba(124, 147, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent, #7c93c3);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.wf-video-ph-icon:hover {
  background: rgba(124, 147, 195, 0.15);
  border-color: rgba(124, 147, 195, 0.3);
}

.wf-video-ph-text {
  font-size: 12px;
  color: #a8adc4;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.wf-video-ph-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #4f5572;
  letter-spacing: 0.03em;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .laptop-screen-inner {
    opacity: 1 !important;
  }

  .wf-video-ph-icon {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .wf-video-ph-text {
    font-size: 10px;
  }

  .wf-video-ph-hint {
    font-size: 8px;
  }
}
