/*=====================================
PROCESS
=====================================*/
.process {
  padding: 110px 0;
  background: #fff;
}
.process-container {
  width: min(92%, 1320px);
  margin: auto;
}
.process-heading {
  margin: 0 auto 60px;
  text-align: center;
}
.process-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  background: #eef2ff;
  color: #4264f5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.65px;
}
.process-heading h2 {
  margin: 14px 0 11px;
  color: #0f172a;
  font-size: clamp(33px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.process-heading h2 span {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-heading p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.55;
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  margin-bottom: 60px;
}
.process-line {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #06b6d4);
}
.process-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
  transition: transform 0.25s;
}
.process-marker:hover {
  transform: translateY(-5px) scale(1.08);
}
.process-marker--blue,
.process-card--blue {
  --process: #2563eb;
  --process-soft: #eff6ff;
}
.process-marker--purple,
.process-card--purple {
  --process: #7c3aed;
  --process-soft: #f5f3ff;
}
.process-marker--cyan,
.process-card--cyan {
  --process: #06b6d4;
  --process-soft: #ecfeff;
}
.process-marker--green,
.process-card--green {
  --process: #10b981;
  --process-soft: #ecfdf5;
}
.process-marker--orange,
.process-card--orange {
  --process: #f59e0b;
  --process-soft: #fffbeb;
}
.process-marker--red,
.process-card--red {
  --process: #f43f5e;
  --process-soft: #fff1f2;
}
.process-marker--violet,
.process-card--violet {
  --process: #8b5cf6;
  --process-soft: #f5f3ff;
}
.process-marker {
  background: var(--process);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 11px;
}
.process-card {
  min-height: 220px;
  padding: 15px 12px 13px;
  border: 1px solid #eaf0f7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.04);
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.process-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
}
.process-number {
  display: block;
  color: var(--process);
  font-size: 10px;
  font-weight: 800;
}
.process-card h3 {
  margin: 10px 0 9px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
}
.process-card p {
  min-height: 81px;
  margin: 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.55;
}
.process-duration {
  display: block;
  margin-top: 8px;
  padding: 5px 4px;
  border-radius: 999px;
  background: var(--process-soft);
  color: var(--process);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}
.process-card small {
  display: block;
  margin-top: 7px;
  color: #94a3b8;
  font-size: 8px;
}
@media (max-width: 1020px) {
  .process {
    padding: 90px 0;
  }
  .process-timeline {
    display: none;
  }
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .process-card {
    min-height: 205px;
    padding: 18px;
  }
  .process-card p {
    min-height: 68px;
    font-size: 11px;
  }
  .process-card h3 {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .process {
    padding: 76px 0;
  }
  .process-container {
    width: min(90%, 470px);
  }
  .process-heading {
    margin-bottom: 38px;
  }
  .process-heading p {
    font-size: 14px;
  }
  .process-heading-break {
    display: none;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .process-card {
    position: relative;
    min-height: 0;
    padding: 18px 18px 18px 52px;
    text-align: left;
  }
  .process-card::before {
    position: absolute;
    top: 25px;
    left: 21px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--process);
    content: "";
    box-shadow: 0 0 0 5px var(--process-soft);
  }
  .process-card h3 {
    margin: 5px 0 7px;
  }
  .process-card p {
    min-height: 0;
  }
  .process-duration {
    display: inline-block;
    min-width: 112px;
    text-align: center;
  }
  .process-card small {
    margin-top: 6px;
  }
}
