/* ================= PROCESS SECTION ================= */

.px {
  padding: 70px 0;
  /* background: #f8fafc; */
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.kicker {
  font-size: 12px;
  font-weight: 800;
  color: #fe5862;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lead {
  color: #64748b;
  margin-top: 8px;
}

/* Layout */
.px-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 30px;
  position: relative;
}

/* Vertical Rail */
.px-rail {
  position: relative;
  width: 4px;
  background: #e2e8f0;
  border-radius: 10px;
}

.px-railFill {
  position: absolute;
  width: 100%;
  height: 0%;
  background: #fe5862;
  border-radius: 10px;
  transition: height 0.4s ease;
}

/* Steps */
.px-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.px-step {
  margin-bottom: 40px;
  position: relative;
}

/* Card */
.px-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  cursor: pointer;
  transition: 0.3s ease;
}

.px-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Number */
.px-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fe5862;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}

/* Content */
.px-body h3 {
    text-align: left;
  margin-bottom: 10px;
  font-size: 20px;
}

.px-body p {
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  text-align: left;
}

/* Dot on rail */
.px-dot {
  position: absolute;
  left: -42px;
  top: 30px;
  width: 14px;
  height: 14px;
  background: #fe5862;
  border-radius: 50%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .px-wrap {
    grid-template-columns: 1fr;
  }

  .px-rail {
    display: none;
  }

  .px-dot {
    display: none;
  }

  .px-card {
    grid-template-columns: 1fr;
  }

  .px-num {
    margin-bottom: 10px;
  }
}
