/* ============================================================
   DKCOSM — Vidéo & Contenu Visuel Page
   Cinematic, dark, immersive
   ============================================================ */

.page-video {
  --accent: #6D28D9;
  --accent-light: #8B5CF6;
  --accent-glow: rgba(109, 40, 217, 0.15);
}

/* Hero cinematic */
.hero-video {
  background: linear-gradient(135deg, #0B1120 0%, #1a1040 40%, #6D28D9 70%, #EC4899 100%);
}

.hero-video::before {
  background: 
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(236, 72, 153, 0.2), transparent),
    radial-gradient(ellipse 50% 40% at 25% 70%, rgba(244, 63, 94, 0.15), transparent);
  pointer-events: none;
}

.hero-video .hero-title,
.hero-video .hero-subtitle {
  color: #fff;
}

/* Hero Base inherited from styles.css */

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  animation: float-media 6s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-illustration {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  border-radius: var(--border-radius-xl);
}

@keyframes float-media {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Video types grid */
.video-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.video-type-card {
  background: var(--dk-night-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  color: var(--dk-gray-400);
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
}

.video-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #EC4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}

.video-type-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.video-type-card:hover::before {
  transform: scaleX(1);
}

.video-type-card h3 { color: #fff; margin-bottom: 0.5em; }

.video-type-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: rgba(109, 40, 217, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.video-type-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-light);
  stroke-width: 2;
  fill: none;
}

/* Impact SEO & Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--dk-gray-200);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #EC4899);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--accent) 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-card p {
  color: var(--dk-gray-500);
  font-size: var(--fs-small);
  margin: 0;
}

/* Workflow */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.workflow-step {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  transition: all var(--duration) var(--ease-out);
}

.workflow-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.workflow-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent), #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.workflow-step h4 { color: #fff; margin-bottom: 0.5em; }
.workflow-step p { font-size: var(--fs-small); color: var(--dk-gray-400); }

/* Fuchsia / Coral accents */
.accent-fuchsia { color: #EC4899; }
.accent-coral { color: #F43F5E; }

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }
  .hero-content {
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
  }
  .hero-actions {
    justify-content: center;
  }
  .video-types-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .video-types-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
}
