.tasc-wrap {
  max-width: 920px;
  margin: 32px auto;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  color: #222;
}
.tasc-hero {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border: 1px solid #d8e8f8;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}
.tasc-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0f68a8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.tasc-hero h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.35;
}
.tasc-hero p:last-child {
  margin-bottom: 0;
  line-height: 1.8;
}
.tasc-form, .tasc-result {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}
.tasc-question {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.tasc-question:first-child {
  padding-top: 0;
}
.tasc-question-title {
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.7;
}
.tasc-question-title span {
  display: inline-block;
  margin-right: 10px;
  color: #0f68a8;
}
.tasc-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.tasc-options label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  background: #fafafa;
  line-height: 1.5;
}
.tasc-options label:hover {
  border-color: #0f68a8;
  background: #f1f8ff;
}
.tasc-button, .tasc-link-button {
  display: inline-block;
  width: auto;
  margin-top: 24px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #0f68a8;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s ease;
}
.tasc-button:hover, .tasc-link-button:hover {
  opacity: .86;
}
.tasc-button:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.tasc-score-box {
  background: #0f68a8;
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  margin-bottom: 22px;
}
.tasc-score-box p {
  margin: 0 0 6px;
  font-weight: 700;
}
.tasc-score-box span {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.tasc-score-box small {
  margin-left: 8px;
}
.tasc-result h3 {
  margin: 0 0 12px;
  font-size: 24px;
}
.tasc-result p {
  line-height: 1.8;
}
.tasc-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.tasc-result-grid > div, .tasc-next-action, .tasc-lead-box {
  background: #f8fafc;
  border: 1px solid #e8eef5;
  border-radius: 16px;
  padding: 20px;
}
.tasc-result-grid h4, .tasc-next-action h4, .tasc-lead-box h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #0f4d7d;
}
.tasc-result-grid ul {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.8;
}
.tasc-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 12px 0;
}
.tasc-field-row input[type="text"], .tasc-field-row input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  font-size: 16px;
}
.tasc-check {
  display: block;
  margin: 12px 0 0;
  line-height: 1.6;
}
.tasc-sub-button {
  margin-top: 16px;
}
.tasc-form-message {
  margin: 12px 0 0;
  font-weight: 700;
}
.tasc-form-message.success {
  color: #00703c;
}
.tasc-form-message.error {
  color: #b00020;
}
@media (max-width: 700px) {
  .tasc-hero, .tasc-form, .tasc-result {
    padding: 20px;
    border-radius: 14px;
  }
  .tasc-hero h2 {
    font-size: 24px;
  }
  .tasc-options, .tasc-result-grid, .tasc-field-row {
    grid-template-columns: 1fr;
  }
  .tasc-score-box span {
    font-size: 44px;
  }
}
