.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;
  }
}
.wizard-step{
  display:none;
}

.wizard-step.active{
  display:block;
}

.wizard-actions{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.documents-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
  margin-top:26px;
}

.document-upload-card{
  display:flex;
  flex-direction:column;
  gap:10px;

  min-height:190px;
  padding:24px;

  border:1px dashed rgba(0,224,164,.32);
  border-radius:20px;

  background:rgba(0,224,164,.035);
  cursor:pointer;
  transition:.25s ease;
}

.document-upload-card:hover{
  border-color:rgba(0,224,164,.7);
  background:rgba(0,224,164,.07);
  transform:translateY(-3px);
}

.document-title{
  color:#fff;
  font-size:17px;
  font-weight:800;
}

.document-upload-card input[type="file"]{
  margin-top:auto;
  width:100%;
  padding:12px;

  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;

  background:rgba(0,0,0,.22);
  color:rgba(255,255,255,.72);
}

@media(max-width:768px){
  .documents-grid{
    grid-template-columns:1fr;
  }
}
/* ---------- AI REVIEW ---------- */

.ai-review-card{

    margin-top:30px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(0,229,176,.15);

    border-radius:28px;

    padding:36px;

}

.ai-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.ai-header h2{

    margin:0;

    font-size:32px;

}

.ai-badge{

    background:#00e5b0;

    color:#001510;

    padding:8px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:800;

}

.ai-score-circle{

    width:170px;

    height:170px;

    margin:20px auto 40px;

    border-radius:50%;

    border:8px solid #00e5b0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.ai-score-circle span{

    font-size:52px;

    font-weight:900;

}

.ai-score-circle small{

    color:rgba(255,255,255,.65);

}

.ai-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:35px;

}

.ai-box{

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

}

.ai-box h4{

    margin:0 0 12px;

    color:#00e5b0;

}

.ai-box p{

    margin:0;

    font-size:20px;

    font-weight:700;

}

.ai-suggestions{

    margin-top:40px;

    padding:28px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

}

.ai-suggestions ul{

    padding-left:20px;

}

.ai-suggestions li{

    margin-bottom:12px;

}

@media(max-width:768px){

.ai-grid{

grid-template-columns:1fr;

}

.ai-score-circle{

width:140px;

height:140px;

}

}