.process {
  background: linear-gradient(180deg, #031c2d 0%, #020b16 100%);
  padding: 100px 0;
  text-align: center;
}

.process h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.process h2 span {
  color: #00d2b9;
}

.process-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  position: relative;
  align-items: start;
}

/* connector line sits exactly at center of icons */
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 210, 185, 0.4) 10%,
    rgba(0, 210, 185, 0.4) 90%,
    transparent
  );
  z-index: 0;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.process-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  flex-shrink: 0;
}

.process-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(2, 20, 38, 0.95);
  border: 1px solid rgba(0, 210, 185, 0.25);
  z-index: 1;
}

.process-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(0, 210, 185, 0.07);
  border: 1px solid rgba(0, 210, 185, 0.35);
  z-index: 1;
}

.process-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #00d2b9;
  color: #020b16;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.process-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
  opacity: 0.6;
}

.process-card:hover .process-icon-wrap::before {
  border-color: rgba(0, 210, 185, 0.5);
  background: rgba(0, 210, 185, 0.08);
}

.process-card:hover .process-icon {
  opacity: 1;
}

.process-card h3 {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin: 0 0 6px;
  line-height: 1.4;
}

.process-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}