@import url("./ventoa-ui.css");

.customer-hero {
  background:linear-gradient(135deg,#ffffff 0%, #f5f8ff 100%);
}
.progress-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
#profilePercent { font-size:28px; font-weight:900; color:#1d4ed8; }
.progress-track {
  margin-top:14px;
  height:12px;
  border-radius:999px;
  background:#dbeafe;
  overflow:hidden;
}
.progress-track span {
  display:block;
  height:100%;
  width:0%;
  border-radius:999px;
  background:linear-gradient(90deg,#315fda,#0f766e);
  transition:width .25s ease;
}
.dashboard-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.mini-status {
  background:#fff;
  border:1px solid var(--ventoa-line);
  border-radius:18px;
  padding:20px;
}
.mini-status span {
  display:block;
  color:var(--ventoa-muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.mini-status strong {
  display:block;
  margin-top:5px;
  font-size:20px;
  color:var(--ventoa-navy);
}
.mini-status p { margin:8px 0 0; color:#6b7280; font-size:14px; }
.section-title-row {
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-end;
  border-bottom:1px solid #e7edf7;
  padding-bottom:15px;
  margin-bottom:16px;
}
.file-section { margin-top:18px; padding:22px; }
.file-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.file-card {
  border:1px solid #dbe2ee;
  border-radius:16px;
  padding:16px;
  background:#fbfdff;
}
.file-card h3 {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:8px;
}
.file-card p { margin:5px 0; color:#5b6473; font-size:13px; }
.file-card input[type="text"] { margin-top:10px; }
.status-timeline {
  margin-top:20px;
  padding:24px;
}
.status-timeline ol {
  margin:0;
  padding-left:22px;
  display:grid;
  gap:10px;
}
.status-timeline li {
  padding:10px 12px;
  background:#fbfdff;
  border:1px solid #e1e8f4;
  border-radius:12px;
}
.status-timeline li.done { border-color:#99f6e4; background:#ecfdf5; }
.status-timeline li.active { border-color:#bfdbfe; background:#eff6ff; }
@media (max-width:840px) {
  .dashboard-grid, .file-grid { grid-template-columns:1fr; }
  .section-title-row { flex-direction:column; align-items:flex-start; }
}
