.our-process {
  padding: 0 0 clamp(5rem, 8vw, 7rem);
  background: #fff;
}

.our-process__inner {
  width: min(72rem, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
}

.our-process__heading {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
}

.our-process__eyebrow {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #4a5565;
}

.our-process__title {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 2.9375rem);
  line-height: 1.1;
  font-weight: 400;
  color: #0a0a0a;
}

.our-process__subtitle {
  margin: 0;
  max-width: 48.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5565;
}

.our-process__rich-text {
  max-width: 62rem;
  color: #4a5565;
  font-size: 1rem;
  line-height: 1.7;
}

.our-process__rich-text p {
  margin: 0;
}

.our-process__rich-text p + p {
  margin-top: 1rem;
}

.our-process__grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding-bottom: 1.25rem;
}

.our-process__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.25rem;
  flex: 1 1 0;
  min-height: 39rem;
  height: 100%;
  max-width: 22.6875rem;
  padding: 2.25rem;
  border: 4px solid #e5e7eb;
  border-radius: 2.5rem;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.our-process__badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #0a0a0a;
  border-radius: 9999px;
  border: 2px solid var(--our-process-badge-border, #ffb6c1);
  background: #fff;
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.our-process__card--pink {
  --our-process-icon-bg: rgba(255, 182, 193, 0.3);
  --our-process-badge-border: #ffb6c1;
}

.our-process__card--green {
  --our-process-icon-bg: rgba(152, 251, 152, 0.3);
  --our-process-badge-border: #98fb98;
}

.our-process__card--blue {
  --our-process-icon-bg: rgba(173, 216, 230, 0.3);
  --our-process-badge-border: #add8e6;
}

.our-process__icon {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 1.5rem;
  background: var(--our-process-icon-bg, rgba(255, 182, 193, 0.3));
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.our-process__icon img {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  transition: transform 220ms ease;
}

.our-process__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.our-process__step {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.111;
  font-weight: 700;
  color: #0a0a0a;
}

.our-process__card-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
  color: #0a0a0a;
}

.our-process__body {
  margin: 0.75rem 0 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #364153;
}

.our-process__footer {
  display: flex;
  justify-content: center;
}

.our-process__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14.625rem;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #ffb6c1;
  color: #101828;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4286;
  font-weight: 500;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .our-process__card:hover {
    transform: translateY(-8px);
    border-color: var(--our-process-badge-border, #d9dde5);
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.12);
  }

  .our-process__card:hover .our-process__badge {
    transform: translateY(-3px) scale(1.04);
    background: #fff9fb;
    box-shadow:
      0 16px 26px rgba(15, 23, 42, 0.12),
      0 6px 12px rgba(15, 23, 42, 0.08);
  }

  .our-process__card:hover .our-process__icon {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  }

  .our-process__card:hover .our-process__icon img {
    transform: scale(1.06);
  }

  .our-process__cta:hover,
  .our-process__cta:focus-visible {
    transform: translateY(-2px);
    background: #ffc4cd;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
  }
}

@media (max-width: 1000px) {
  .our-process__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .our-process__card {
    flex: 0 0 auto;
    max-width: none;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .our-process__inner {
    width: calc(100% - 2rem);
  }

  .our-process__card {
    gap: 2rem;
    padding: 2rem;
    border-radius: 2rem;
  }

  .our-process__icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .our-process__step {
    font-size: clamp(1.875rem, 8vw, 2.25rem);
  }

  .our-process__card-title {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .our-process__body {
    font-size: 1rem;
    line-height: 1.65;
  }
}