
/* JAY-P Phase 300 Sales + Production Automation */
.phase300-request-box{
  max-width:1180px;
  margin:30px auto;
  background:#fff;
  border:1px solid #e5edf7;
  border-radius:28px;
  box-shadow:0 18px 48px rgba(15,23,42,.10);
  padding:26px;
}
.phase300-request-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.phase300-request-head h2{
  margin:0;
  color:#073b91;
  font-size:30px;
}
.phase300-request-head p{
  margin:6px 0 0;
  color:#52647a;
  font-weight:700;
}
.phase300-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.phase300-form .full{grid-column:1/-1}
.phase300-form label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  font-weight:950;
  color:#475569;
  margin-bottom:6px;
}
.phase300-form input,.phase300-form select,.phase300-form textarea{
  width:100%;
  border:1px solid #dbe3ef;
  border-radius:14px;
  padding:12px 13px;
  font-size:14px;
  font-family:Arial,Helvetica,sans-serif;
  background:#fff;
}
.phase300-form textarea{min-height:82px;resize:vertical}
.phase300-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:15px}
.phase300-btn{
  border:0;
  border-radius:15px;
  padding:13px 18px;
  font-weight:950;
  color:#fff;
  background:#ff6a00;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.phase300-btn.blue{background:#073b91}
.phase300-btn.pink{background:#ec1b73}
.phase300-result{
  display:none;
  margin-top:16px;
  border-radius:18px;
  background:#ecfdf5;
  border:1px solid #22c55e;
  color:#166534;
  padding:16px;
  font-weight:900;
}
.phase300-track-box{
  max-width:900px;
  margin:30px auto;
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 48px rgba(15,23,42,.10);
  border:1px solid #e5edf7;
}
.phase300-stages{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(130px,1fr));
  gap:10px;
  margin-top:18px;
}
.phase300-stage{
  border-radius:16px;
  padding:13px 10px;
  background:#f1f5f9;
  color:#64748b;
  text-align:center;
  font-weight:950;
  font-size:13px;
}
.phase300-stage.active{
  background:linear-gradient(90deg,#ff6a00,#ec1b73);
  color:#fff;
}
@media(max-width:760px){
  .phase300-form{grid-template-columns:1fr}
}
