/* ===== Our Process (exact layout) ===== */
.process { background:#fff; padding: 60px 16px; }
.process__container { max-width:1200px; margin:0 auto; }

.process__title{
  text-align:center;
  font-weight:800;
  font-size: clamp(28px, 3.5vw, 36px);
  letter-spacing:-0.02em;
  color: var(--text-color-dark);
  margin:0 0 34px;
}

/* 3 steps with arrow columns between them */
.process__grid{
  display:grid;
  grid-template-columns: 1fr 140px 1fr 140px 1fr;
  align-items: start;
  justify-items: center;
  column-gap: clamp(12px, 2vw, 24px);
}

/* Step */
.process__item{ text-align:center; padding: 0 8px; }
.process__icon{
  position:relative;
  display:grid; place-items:center;
  width:64px; height:64px;
  border:2px solid var(--color1);
  border-radius:999px;
  background:#fff;
  color: var(--color1);
  margin: 0 auto 14px;
}
.process__icon svg{ stroke: currentColor; }

.process__badge{
  position:absolute;
  top:-6px; right:-6px;
  width:22px; height:22px;
  border-radius:50%;
  background:#111; color:#fff;
  font-size:12px; font-weight:700;
  display:grid; place-items:center;
  box-shadow:0 2px 6px rgba(0,0,0,.18);
}

.process__heading{
  margin: 6px 0 8px;
  font-size: clamp(18px, 2vw, 22px);
  line-height:1.2;
  color: var(--text-color-dark);
  font-weight:700;
}

.process__desc{
  color:#9aa1a8;
  font-size: 15px;
  line-height:1.6;
  max-width: 360px;
  margin:0 auto;
}

/* Arrows */
.process__arrow{ display:grid; place-items:center; align-self:center; }
.arrow-svg{ width: 150px; height: 48px; color: #b9b9b9; }

/* CTAs under the middle card */
.process__cta{
  display:flex; justify-content:center; gap:12px;
  margin-top: 18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration:none;
  border: 2px solid transparent;
  transition: background .2s ease, box-shadow .2s ease, transform .15s ease, border-color .2s ease;
}
.btn--primary{
  background: var(--color5);
  color:#fff;
  box-shadow: 0 10px 20px rgba(29,110,147,.18);
}
.btn--primary:hover{ background: var(--primary-color-dark); transform: translateY(-1px); }
.btn--ghost{
  background:#fff; color: var(--color5); border-color: var(--color5);
}
.btn--ghost:hover{ background: rgba(29,110,147,.06); }

/* ===== Mobile: stack + arrows point DOWN ===== */
@media (max-width: 900px){
  .process__grid{
    grid-template-columns: 1fr;
    row-gap: 12px;
    justify-items: center;
  }
  .process__arrow{ height: 72px; }
  .process__arrow .arrow-svg{
    transform: rotate(90deg);
    width: 32px; height: 120px;
  }
  .process__cta{ flex-direction: column; }
}
