.process-hero {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding: var(--space-9) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.process-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 111, 78, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.breadcrumb ol {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-2);
  color: var(--color-border);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.process-hero h1 {
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.process-hero .lead {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.process-timeline {
  padding: var(--space-9) 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-accent), var(--color-primary));
  opacity: 0.3;
}

.timeline-step {
  position: relative;
  margin-bottom: var(--space-8);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-primary);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.step-card {
  width: calc(50% - 50px);
  margin-left: auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:nth-child(odd) .step-card {
  margin-left: 0;
  margin-right: auto;
}

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

.step-content {
  padding: var(--space-6);
}

.step-header {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.step-header h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.step-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 500;
}

.step-image {
  margin: var(--space-5) calc(-1 * var(--space-6));
  overflow: hidden;
  position: relative;
}

.step-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-card:hover .step-image img {
  transform: scale(1.02);
}

.step-description p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.step-description p:last-child {
  margin-bottom: 0;
}

.process-cta {
  background-color: var(--color-bg-alt);
  padding: var(--space-9) 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.cta-content p {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-6);
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 968px) {
  .timeline::before {
    left: 30px;
  }
  
  .step-marker {
    left: 30px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
  
  .step-card {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
  
  .timeline-step {
    margin-bottom: var(--space-6);
  }
}

@media (max-width: 640px) {
  .process-hero {
    padding: var(--space-7) 0 var(--space-6);
  }
  
  .step-card {
    width: 100%;
    margin-left: 60px !important;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .step-marker {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: var(--font-size-base);
  }
  
  .step-content {
    padding: var(--space-4);
  }
  
  .step-image {
    margin: var(--space-4) calc(-1 * var(--space-4));
  }
  
  .step-image img {
    height: 200px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}