/* Structured onward paths for calculator and checklist results. */
.result-paths{
  margin-top:58px;
  padding-top:8px;
}
.result-paths>h2{
  margin:0 0 10px;
}
.result-paths>p{
  max-width:720px;
  margin:0;
  color:#667085;
}
.result-path-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:26px 0 10px;
}
.result-path-grid>a{
  display:flex;
  min-width:0;
  min-height:156px;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding:22px;
  border:1px solid #dfe5ed;
  border-radius:15px;
  background:#fff;
  color:#101828;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(15,23,42,.045);
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.result-path-grid>a:hover,
.result-path-grid>a:focus-visible{
  border-color:#b9cae6;
  box-shadow:0 14px 32px rgba(15,23,42,.09);
  transform:translateY(-2px);
  outline:0;
}
.result-path-grid>a>span{
  display:flex;
  min-width:0;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}
.result-path-grid strong{
  display:block;
  color:#101828;
  font-size:15px;
  line-height:1.35;
  letter-spacing:-.015em;
}
.result-path-grid small{
  display:block;
  color:#667085;
  font-size:11px;
  line-height:1.55;
  font-weight:500;
}
.result-path-grid i{
  display:grid;
  width:34px;
  height:34px;
  flex:0 0 34px;
  place-items:center;
  border-radius:50%;
  background:#edf3ff;
  color:#2563eb;
  font-size:15px;
  font-style:normal;
  transition:transform .18s ease;
}
.result-path-grid>a:hover i{transform:translateX(3px)}
@media(max-width:800px){
  .result-path-grid{grid-template-columns:1fr}
  .result-path-grid>a{
    min-height:112px;
    flex-direction:row;
    align-items:center;
    padding:19px;
  }
}

/* Interactive diagnostic checklist */
.diagnostic-checklist{
  overflow:hidden;
  margin:0 0 52px;
  border:1px solid #dce3ec;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 48px rgba(15,23,42,.075);
}
.diagnostic-checklist .checklist-progress{
  display:grid;
  grid-template-columns:auto minmax(140px,1fr) auto;
  align-items:center;
  gap:22px;
  padding:22px 24px;
  border:0;
  background:#101828;
  color:#fff;
}
.checklist-progress-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.diagnostic-checklist .checklist-progress-copy>span{
  color:#9fb0c4;
  font-size:9px;
  line-height:1.3;
  font-weight:750;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.diagnostic-checklist .checklist-progress-copy>strong{
  color:#fff;
  font-size:14px;
  line-height:1.35;
}
.checklist-meter{
  height:6px;
  overflow:hidden;
  border-radius:999px;
  background:#2b394c;
}
.checklist-meter>i{
  display:block;
  width:0;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#4c8dff,#76a7ff);
  transition:width .25s ease;
}
.diagnostic-checklist .checklist-progress>button{
  margin:0;
  padding:8px 12px;
  border:1px solid #435268;
  border-radius:8px;
  background:#18263a;
  color:#e7edf5;
  font-size:10px;
  font-weight:650;
}
.diagnostic-checklist .checklist-progress>button:hover{
  border-color:#66758a;
  background:#223249;
}
.diagnostic-checklist fieldset{
  display:block;
  margin:0;
  padding:26px 28px;
  border:0;
  border-top:1px solid #e5eaf0;
}
.diagnostic-checklist legend{
  display:flex;
  width:100%;
  align-items:center;
  gap:10px;
  padding:0;
}
.diagnostic-checklist legend>b{
  display:grid;
  width:30px;
  height:30px;
  place-items:center;
  border-radius:50%;
  background:#edf3ff;
  color:#2563eb;
  font-size:11px;
}
.diagnostic-checklist legend>span{
  color:#101828;
  font-size:14px;
  line-height:1.4;
  font-weight:700;
}
.checklist-items{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
  margin-top:15px;
}
.diagnostic-checklist .checklist-items>label{
  display:flex;
  min-height:46px;
  align-items:flex-start;
  gap:11px;
  margin:0;
  padding:11px 13px;
  border:1px solid #e5eaf0;
  border-radius:10px;
  background:#f8fafc;
  color:#475467;
  font-size:11px;
  line-height:1.55;
  cursor:pointer;
  transition:border-color .16s ease,background .16s ease;
}
.diagnostic-checklist .checklist-items>label:hover{
  border-color:#c8d4e5;
  background:#fff;
}
.diagnostic-checklist .checklist-items input{
  width:18px;
  height:18px;
  flex:0 0 18px;
  margin:0;
  accent-color:#2563eb;
}
.diagnostic-checklist .checklist-items input:checked+span{
  color:#667085;
  text-decoration:line-through;
  text-decoration-color:#98a2b3;
}
@media(max-width:760px){
  .diagnostic-checklist .checklist-progress{
    grid-template-columns:1fr auto;
    gap:14px;
    padding:20px;
  }
  .checklist-meter{grid-column:1/-1;grid-row:2}
  .diagnostic-checklist fieldset{
    padding:23px 20px;
  }
  .checklist-items{grid-template-columns:1fr}
}
