.hero-lead-compact {
  margin: 8px auto 0;
  max-width: 760px;
  font-size: 13px;
  line-height: 1.8;
  color: #5b6472;
  text-align: center;
}

.hero-primary-links {
  margin: 10px auto 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #e6e8ef;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.hero-primary-link:hover,
.hero-primary-link:focus-visible {
  transform: translateY(-1px);
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  outline: none;
}

.hero-primary-link.is-kpi {
  background: linear-gradient(180deg, #fff7f7 0%, #fff 100%);
  border-color: #ffcfcf;
  color: #e25b5b;
}

.selected-pref-wrap {
  margin-top: 10px;
}

.compact-section-gap {
  margin-bottom: 8px;
}

.fold-card {
  margin: 12px 0 12px;
  border: 1px solid #e7e9f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.fold-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 800;
  color: #1f2937;
  user-select: none;
}

.fold-card summary::-webkit-details-marker {
  display: none;
}

.fold-card summary::after {
  content: "＋";
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  color: #6b7280;
  transition: transform .18s ease;
}

.fold-card[open] summary::after {
  content: "−";
}

.fold-card-body {
  padding: 0 16px 16px;
  border-top: 1px solid #f0f2f7;
}

.fold-card-body p {
  margin: 12px 0 0;
  color: #4b5563;
  line-height: 1.9;
  font-size: 14px;
}

.fold-links {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fold-links a {
  display: block;
  padding: 12px 12px;
  border: 1px solid #e7e9f0;
  border-radius: 14px;
  background: #fafbff;
  text-decoration: none;
  color: #1f2937;
}

.fold-links strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.fold-links span {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: #6b7280;
}

.section-anchor-row {
  margin: 0 0 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.section-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e6e8ef;
  background: #fff;
  color: #374151;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.section-anchor:hover,
.section-anchor:focus-visible {
  background: #f8fbff;
  outline: none;
}

.kpi-priority-note {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.7;
  color: #6b7280;
}

@media (max-width: 720px) {
  .hero-lead-compact {
    font-size: 12px;
    line-height: 1.75;
  }

  .hero-primary-links {
    gap: 7px;
  }

  .hero-primary-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .fold-links {
    grid-template-columns: 1fr;
  }

  .fold-card summary {
    padding: 13px 14px;
    font-size: 14px;
  }

  .fold-card-body {
    padding: 0 14px 14px;
  }

  .fold-card-body p {
    font-size: 13px;
  }
}