/* ─── How We Work Section ─────────────────────────────────────────── */
.how-we-work {
  padding: 8rem 0;
  background-color: #fdf5f6; /* Very light pink background */
}

.how-we-work__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: stretch;
}

.how-we-work__content {
  max-width: 600px;
}

.how-we-work__title {
  font-size: clamp(2.50rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: #111;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.how-we-work__desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 4rem;
}

.how-we-work__steps {
  display: flex;
  flex-direction: column;
}

.work-step {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.work-step:first-child {
  padding-top: 0;
}

.work-step:last-child {
  border-bottom: none;
}

.work-step__number {
  font-size: 3rem;
  font-weight: 300;
  color: #ddd; /* Light gray for numbers */
  line-height: 1;
}

.work-step__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #111;
}

.work-step__text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.how-we-work__card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  height: 100%;
}

.how-we-work__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-we-work__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  color: #fff;
}

.how-we-work__cta-text {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.how-we-work__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.how-we-work__icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.how-we-work__icon svg {
  width: 20px;
  height: 20px;
}

.how-we-work__phone {
  font-size: 1.125rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .how-we-work__wrapper {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
  
  .how-we-work__content {
    padding: 0 var(--container-padding);
  }

  .how-we-work__card {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .how-we-work__title {
    font-size: 2.5rem;
  }
  
  .work-step {
    gap: 1.5rem;
  }
  
  .work-step__number {
    font-size: 2rem;
  }
}
