/* =====================
   MVP PROCESS SECTION
   ===================== */
.nb-process {
  padding: 80px 0;
  background: var(--dark);
}
.nb-process__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #fff;
  margin-bottom: 20px;
}
.nb-process__badge::before {
  content: '';
  width: 13px;
  height: 13px;
  background: var(--orange);
  border-radius: 50%;
}
.nb-process__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.nb-process__heading .gradient-text {
  background: linear-gradient(90deg, #8A38F5 30%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nb-process__sub {
  font-size: 18px;
  font-weight: 500;
  color: #CBD5E1;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Step numbers timeline */
.nb-process__steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.nb-process__step-num {
  width: 64px;
  height: 64px;
  border: 3px solid #94A3B8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.4s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.nb-process__step-num.active {
  border-color: var(--purple1);
  color: #fff;
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.nb-process__step-num.completed {
  border-color: var(--purple1);
  color: #fff;
  background: rgba(139, 92, 246, 0.25);
}

/* ===== PROGRESS BAR LINE ===== */
.nb-process__step-line {
  flex: 1;
  height: 3px;
  background: #334155;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.nb-process__step-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background:  var(--purple1);
  border-radius: 3px;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}
.nb-process__step-line.filled::before {
  width: 100% !important;
  transition: width 0.4s ease;
}

/* Content card */
.nb-process__content {
  background: var(--dark3);
 
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nb-process__week {
  display: inline-block;
  background:#0F172A;
  border: 1px solid 64748B;
  border-radius: 40px;
  padding: 4px 14px;
  font-size: 16px;
  font-weight: 500;
  color:#FFF;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.nb-process__content h3 {
  font-size:32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.nb-process__content > div > p {
  font-size: 18px; font-weight: 500;
  color:#f1f5f9;
  line-height: 1.75;
  margin-bottom: 24px;
}
.nb-process__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nb-process__list li {
  display: flex; font-weight: 500;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color:#f1f5f9;
}
.nb-process__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}
.nb-process__img {
  border-radius: 12px;
  overflow: hidden;
}
.nb-process__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .nb-process{padding:40px 0}
  .nb-process__content {
    grid-template-columns: 1fr;
  }
  .nb-process__img {
    display: none;
  }
  .nb-process__step-num {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
@media(max-width:600px) {
.nb-process{padding:30px 0}
.nb-process__sub{margin-bottom:25px}
.nb-process__content{padding:20px}
.nb-process__content h3{font-size: 26px;}
}
@media(max-width:480px) {
  .nb-process { padding: 24px 16px; }
  .nb-process__heading { font-size: 18px; }
  .nb-process__sub { font-size: 14px; margin-bottom: 20px; }
  .nb-process__content h3 { font-size: 18px; }
  .nb-process__content > div > p { font-size: 14px; margin-bottom: 16px; }
  .nb-process__list li { font-size: 14px; }
}