.process-hero {
  background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-background) 100%);
  padding: var(--space-24) 0 var(--space-16);
  text-align: center;
}

.process-hero__title {
  font-size: var(--text-5xl);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-neutral-600);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-relaxed);
}

.process-steps {
  padding: var(--space-24) 0;
  background-color: var(--color-background);
}

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

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary-200), var(--color-success-200), var(--color-accent-200));
  z-index: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-20);
  position: relative;
  z-index: 1;
}

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

.process-step--reverse {
  direction: rtl;
}

.process-step--reverse > * {
  direction: ltr;
}

.process-step__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 400px;
}

.process-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-in-out);
}

.process-step__image:hover img {
  transform: scale(1.05);
}

.process-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--color-primary-50);
  border-radius: var(--radius-full);
  color: var(--color-primary-500);
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.process-step__icon--lavender {
  background: var(--color-accent-50);
  color: var(--color-accent-500);
}

.process-step__icon--mint {
  background: var(--color-success-50);
  color: var(--color-success-500);
}

.process-step__content {
  padding: var(--space-8);
}

.process-step__number {
  font-size: var(--text-6xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-100);
  line-height: var(--leading-none);
  margin-bottom: var(--space-4);
}

.process-step__title {
  font-size: var(--text-2xl);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-4);
}

.process-step__description {
  color: var(--color-neutral-600);
  line-height: var(--leading-relaxed);
}

.satisfaction-promise {
  padding: var(--space-16) 0;
  background-color: var(--color-background-warm);
}

.promise-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12);
}

.promise-card__title {
  font-size: var(--text-3xl);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-4);
}

.promise-card__text {
  font-size: var(--text-lg);
  color: var(--color-neutral-600);
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.promise-card__badge {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promise-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: var(--color-primary-500);
  color: white;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-xl);
  line-height: var(--leading-tight);
  text-align: center;
  box-shadow: var(--shadow-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-cta {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-success-50) 0%, var(--color-primary-50) 100%);
  text-align: center;
}

.process-cta__title {
  font-size: var(--text-4xl);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-4);
}

.process-cta__text {
  font-size: var(--text-xl);
  color: var(--color-neutral-600);
  margin-bottom: var(--space-8);
}

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

@media (max-width: 968px) {
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-left: 80px;
  }
  
  .process-step--reverse {
    direction: ltr;
  }
  
  .process-step__image {
    height: 300px;
    order: -1;
  }
  
  .process-step__icon {
    width: 80px;
    height: 80px;
    position: absolute;
    left: -10px;
    top: 0;
  }
  
  .process-step__icon svg {
    width: 40px;
    height: 40px;
  }
  
  .process-step__content {
    padding: var(--space-4);
  }
  
  .process-hero__title {
    font-size: var(--text-4xl);
  }
  
  .promise-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .promise-card__text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .process-hero {
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .process-hero__title {
    font-size: var(--text-3xl);
  }
  
  .process-step {
    padding-left: 60px;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step__icon {
    width: 60px;
    height: 60px;
    left: -10px;
  }
  
  .process-step__icon svg {
    width: 30px;
    height: 30px;
  }
  
  .process-step__number {
    font-size: var(--text-4xl);
  }
  
  .promise-badge {
    width: 120px;
    height: 120px;
    font-size: var(--text-lg);
  }
}

.process-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out), 
              transform var(--duration-slow) var(--ease-out);
}

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

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }
.process-step:nth-child(6) { transition-delay: 0.6s; }
.process-step:nth-child(7) { transition-delay: 0.7s; }