.project-progress{
  margin-top:30px;
  max-width:760px;
}

.progress-bar{
  height:8px;
  background:rgba(255,255,255,.10);
  border-radius:999px;
  overflow:hidden;
}

.progress-fill{
  width:20%;
  height:100%;
  background:#00e5b0;
}

.progress-steps{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  color:rgba(255,255,255,.55);
  font-size:13px;
  font-weight:700;
}

.progress-steps span.active{
  color:#00e5b0;
}

.project-editor-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(0,229,176,.14);
  border-radius:24px;
  padding:38px;
  backdrop-filter:blur(18px);
}

.project-editor-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:34px;
}

.editor-section{
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:26px;
  background:rgba(0,0,0,.18);
}

.editor-section h3{
  margin:0 0 22px;
}

.project-form input{
  width:100%;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:#111;
  color:white;
  font-size:15px;
}

.project-editor-actions{
  margin-top:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

#projectMessage{
  color:#00e5b0;
  font-weight:700;
}

@media(max-width:768px){
  .project-editor-card{
    padding:24px;
  }

  .project-editor-head,
  .project-editor-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .progress-steps{
    gap:10px;
    overflow-x:auto;
  }
}
.project-form .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 32px;
}

.project-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:700;
}

.field-help{
  font-size:13px;
  color:rgba(255,255,255,.55);
  line-height:1.5;
  font-weight:400;
  margin-top:-4px;
}

.project-form input{
  margin-top:4px;
}

@media(max-width:768px){
  .project-form .form-grid{
    grid-template-columns:1fr;
  }
}