/* ============================================================
   DKCOSM — Web & Digital Page
   ============================================================ */

.page-web {
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-glow: rgba(37, 99, 235, 0.15);
}

/* Hero */
.hero-web {
  background: linear-gradient(135deg, #0F172A 0%, #1a2654 40%, #2563EB 100%);
}

.hero-web::before {
  background: 
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(6, 182, 212, 0.25), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37, 99, 235, 0.2), transparent);
  pointer-events: none;
}

.hero-web .hero-title,
.hero-web .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));
}

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

/* Methodology Timeline */
.timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--dk-cyan));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  width: 100%;
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--dk-white);
  box-shadow: 0 0 0 4px var(--accent-glow);
  z-index: 2;
}

.timeline-content {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--dk-gray-200);
  box-shadow: var(--shadow-md);
  transition: all var(--duration) var(--ease-out);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-step {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

.timeline-content h3 {
  margin-bottom: 0.5em;
}

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

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.benefit-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--dk-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-check svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
}

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

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .benefits-grid { grid-template-columns: 1fr; }
}
