.approach-hero {
  padding: var(--space-24) 0 var(--space-16);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
  position: relative;
  overflow: hidden;
}

.approach-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--color-primary-subtle) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}



.approach-hero__title {
  font-size: var(--font-size-4xl);
  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;
}

.approach-hero__lead {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
}

.philosophy-section {
  padding: var(--space-24) 0;
  background-color: var(--color-bg);
}

.philosophy-content {
  padding-right: var(--space-8);
}

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-6);
  color: var(--color-primary);
}

.section-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.philosophy-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.philosophy-image:hover img {
  transform: scale(1.05);
}

.process-section {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-elevated);
  position: relative;
}

.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(180deg, var(--color-primary) 0%, var(--color-neutral-700) 100%);
  opacity: 0.3;
}

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

.process-step:nth-child(odd) {
  direction: rtl;
}

.process-step:nth-child(odd) > * {
  direction: ltr;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-size: var(--font-size-xl);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-glow);
}

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

.process-step__text {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
}

.process-step--featured {
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-neutral-700);
  box-shadow: var(--shadow-lg);
  margin: var(--space-16) 0;
}

.process-step--featured .process-step__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.process-step--featured .process-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step:nth-child(even) .process-step__image {
  order: -1;
}

.approach-cta {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-surface) 100%);
  position: relative;
  overflow: hidden;
}

.approach-cta::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, var(--color-primary-subtle) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-content {
  padding-right: var(--space-8);
}

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

.cta-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--line-height-relaxed);
}

.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: transform var(--transition-slow);
}

.cta-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2col {
  grid-template-columns: 1fr 1fr;
}

.align-center {
  align-items: center;
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
}

@media (max-width: 968px) {
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step,
  .process-step:nth-child(odd) {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding-left: 80px;
  }
  
  .process-step:nth-child(odd) > * {
    direction: ltr;
  }
  
  .process-step--featured {
    padding: var(--space-6);
  }
  
  .process-step--featured .process-step__image {
    order: 1;
    min-height: 200px;
  }
  
  .grid--2col {
    grid-template-columns: 1fr;
  }
  
  .philosophy-content,
  .cta-content {
    padding-right: 0;
  }
  
  .philosophy-image,
  .cta-image {
    order: -1;
    margin-bottom: var(--space-8);
  }
  
  .approach-hero__title {
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 640px) {
  .process-step {
    padding-left: 0;
    padding-top: 80px;
  }
  
  .process-timeline::before {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  
  .process-step__number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}