
.mcbd-wrap{
  max-width:980px;
  margin:32px auto;
  padding:0 16px;
}
.mcbd-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  padding:24px;
}
.mcbd-title{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.3;
}
.mcbd-subtitle{
  margin:0 0 18px;
  color:#4b5563;
}
.mcbd-disclaimer{
  background:#fff7ed;
  border:1px solid #fdba74;
  color:#7c2d12;
  border-radius:14px;
  padding:14px 16px;
  margin:0 0 20px;
  font-size:14px;
  line-height:1.7;
}
.mcbd-progress-area{
  margin:0 0 24px;
}
.mcbd-progress-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
  font-size:14px;
  color:#374151;
}
.mcbd-progress-bar{
  width:100%;
  height:12px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
}
.mcbd-progress-fill{
  height:100%;
  border-radius:999px;
  background:#111827;
  transition:width .2s ease;
}
.mcbd-question-shell{
  min-height:320px;
}
.mcbd-question-step{
  display:none;
}
.mcbd-question-step.is-active{
  display:block;
}
.mcbd-axis-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:6px 12px;
  border-radius:999px;
  background:#f3f4f6;
  color:#111827;
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}
.mcbd-question-count{
  font-size:14px;
  color:#6b7280;
  margin-bottom:10px;
}
.mcbd-question-text{
  margin:0 0 18px;
  font-size:24px;
  line-height:1.6;
}
.mcbd-options{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.mcbd-option{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid #d1d5db;
  border-radius:16px;
  padding:14px 16px;
  cursor:pointer;
  transition:.15s ease;
}
.mcbd-option:hover{
  border-color:#111827;
  transform:translateY(-1px);
}
.mcbd-option input{
  margin-top:3px;
}
.mcbd-nav{
  display:flex;
  gap:12px;
  justify-content:space-between;
  margin-top:18px;
  flex-wrap:wrap;
}
.mcbd-btn{
  appearance:none;
  border:none;
  border-radius:14px;
  min-height:48px;
  padding:12px 20px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}
.mcbd-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}
.mcbd-btn-secondary{
  background:#e5e7eb;
  color:#111827;
}
.mcbd-btn-primary,.mcbd-btn-submit{
  background:#111827;
  color:#fff;
}
.mcbd-result{
  margin-top:28px;
  border-top:1px solid #e5e7eb;
  padding-top:24px;
}
.mcbd-result-title{
  margin:0 0 16px;
  font-size:24px;
}
.mcbd-summary-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:16px;
}
.mcbd-summary-box{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  background:#f9fafb;
}
.mcbd-summary-label{
  color:#6b7280;
  font-size:14px;
  margin-bottom:8px;
}
.mcbd-summary-value{
  font-size:26px;
  font-weight:800;
  line-height:1.3;
}
.mcbd-comment{
  background:#f3f4f6;
  border-radius:16px;
  padding:16px;
  margin-bottom:18px;
  line-height:1.8;
}
.mcbd-chart-wrap{
  position:relative;
  min-height:480px;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:16px;
  margin-bottom:18px;
}
.mcbd-table-wrap{
  overflow:auto;
  margin-bottom:18px;
}
.mcbd-table{
  width:100%;
  border-collapse:collapse;
  min-width:520px;
}
.mcbd-table th,
.mcbd-table td{
  border-bottom:1px solid #e5e7eb;
  padding:12px;
  text-align:left;
  vertical-align:top;
}
.mcbd-table th{
  background:#f9fafb;
}
.mcbd-advice-wrap{
  margin-bottom:18px;
}
.mcbd-advice-item{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:14px 16px;
  margin-bottom:12px;
  background:#fff;
}
.mcbd-advice-item p{
  margin:.5em 0 0;
  line-height:1.8;
}
@media (max-width: 767px){
  .mcbd-card{
    padding:18px 14px;
    border-radius:16px;
  }
  .mcbd-title{
    font-size:22px;
  }
  .mcbd-question-text{
    font-size:20px;
  }
  .mcbd-summary-grid{
    grid-template-columns:1fr;
  }
  .mcbd-chart-wrap{
    min-height:360px;
  }
  .mcbd-nav{
    flex-direction:column;
  }
  .mcbd-btn{
    width:100%;
  }
}
