/* Our Process — colorful steps */
.component--process {
  position: relative;
  background: #15202b;
  color: #fff;
  padding: 7vw 0 8vw;
  overflow: hidden;
}

.component--process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 50% at 10% 15%, rgba(255, 140, 90, 0.2), transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 75%, rgba(90, 200, 220, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 40% at 55% 100%, rgba(100, 230, 170, 0.1), transparent 50%);
  pointer-events: none;
}

.process {
  position: relative;
  z-index: 1;
}

.process__head {
  max-width: min(920px, 82%);
  margin-bottom: 4vw;
}

.process__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

.process__title {
  margin: 0 0 20px;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.process__title .shape {
  display: inline-block;
  width: 1.2em;
  height: 0.38em;
  margin-right: 0.15em;
  margin-bottom: 0.1em;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b5a, #ffb347);
  vertical-align: middle;
}

.process__lead {
  margin: 0;
  max-width: 58ch;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.72;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process__step {
  position: relative;
  min-height: 280px;
  padding: 28px 24px 32px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.process__step--coral {
  background: linear-gradient(160deg, #ff7a6a 0%, #e23b4a 55%, #c42d3d 100%);
  color: #fff;
}

.process__step--amber {
  background: linear-gradient(160deg, #ffd56a 0%, #ffb347 50%, #f08a24 100%);
  color: #1a1208;
}

.process__step--mint {
  background: linear-gradient(160deg, #7dffc2 0%, #3ecf9a 50%, #1fa87a 100%);
  color: #062418;
}

.process__step--sky {
  background: linear-gradient(160deg, #7ec8ff 0%, #4aa3ef 50%, #2b7fd4 100%);
  color: #061828;
}

.process__num {
  display: block;
  margin-bottom: 48px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.process__step h3 {
  margin: 0 0 12px;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.process__step p {
  margin: 0;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.85;
  max-width: 24ch;
}

.process__step::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

@media (max-width: 1000px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .component--process {
    padding: 16vw 0 18vw;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .process__step {
    min-height: 0;
  }

  .process__num {
    margin-bottom: 24px;
  }
}
