.process-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: var(--space-32) 0;
  margin-bottom: var(--space-16);
}

.process-hero__content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.process-hero__subtitle {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-surface-elevated);
  color: var(--color-secondary);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  border: 1px solid var(--color-border);
}

.process-hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-hero__description {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.process-timeline {
  padding: var(--space-16) 0;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  opacity: 0.3;
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-16);
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
}

.timeline__item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline__item:nth-child(odd) .timeline__content {
  text-align: right;
}

.timeline__item:nth-child(odd) .timeline__header {
  flex-direction: row-reverse;
}

.timeline__item:nth-child(odd) .timeline__list {
  align-items: flex-end;
}

.timeline__marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--color-surface-elevated);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px var(--color-primary-glow);
}

.timeline__number {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.timeline__content {
  width: calc(50% - 50px);
  padding: var(--space-8);
}

.timeline__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
  gap: var(--space-4);
}

.timeline__title {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin: 0;
  flex: 1;
}

.timeline__duration {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background-color: var(--color-surface);
  color: var(--color-secondary);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.timeline__image {
  margin-bottom: var(--space-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.timeline__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

.timeline__content:hover .timeline__image img {
  transform: scale(1.05);
}

.timeline__text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.timeline__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.timeline__list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.timeline__item:nth-child(odd) .timeline__list li {
  padding-left: 0;
  padding-right: var(--space-6);
}

.timeline__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.timeline__item:nth-child(odd) .timeline__list li::before {
  left: auto;
  right: 0;
}

.process-cta {
  padding: var(--space-16) 0 var(--space-24);
}

.process-cta__wrapper {
  padding: var(--space-12);
  text-align: center;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-elevated) 100%);
  border: 1px solid var(--color-border);
}

.process-cta__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.process-cta__text {
  max-width: 700px;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
}

.process-cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .process-hero {
    padding: var(--space-20) 0;
  }
  
  .process-hero__title {
    font-size: var(--text-4xl);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline__item {
    flex-direction: column !important;
    padding-left: 60px;
    gap: var(--space-4);
  }
  
  .timeline__marker {
    left: 20px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
  }
  
  .timeline__content {
    width: 100%;
    text-align: left !important;
  }
  
  .timeline__header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .timeline__title {
    font-size: var(--text-xl);
  }
  
  .timeline__item:nth-child(odd) .timeline__list {
    align-items: flex-start;
  }
  
  .timeline__item:nth-child(odd) .timeline__list li {
    padding-left: var(--space-6);
    padding-right: 0;
  }
  
  .timeline__item:nth-child(odd) .timeline__list li::before {
    left: 0;
    right: auto;
  }
  
  .process-cta__wrapper {
    padding: var(--space-8);
  }
  
  .process-cta__title {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 480px) {
  .process-hero__title {
    font-size: var(--text-3xl);
  }
  
  .timeline__item {
    padding-left: 50px;
  }
  
  .timeline__number {
    font-size: var(--text-base);
  }
}