.page-buh #single,
.page-buh #outsourcing,
.page-buh #holdings,
.page-buh #faq {
  scroll-margin-top: 110px;
}

.page-buh .buh-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.page-buh .buh-flow .node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.1;
  box-shadow: var(--shadow-sm);
}
.page-buh .buh-flow .arrow {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 900;
  user-select: none;
}

.page-buh .faq-accordion {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.page-buh .faq-accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
}
.page-buh .faq-accordion details[open] {
  background: rgba(255, 255, 255, 0.93);
}
.page-buh .faq-accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-buh .faq-accordion summary::-webkit-details-marker {
  display: none;
}
.page-buh .faq-accordion summary:after {
  content: "▾";
  color: var(--muted);
  transition: transform 0.15s ease;
}
.page-buh .faq-accordion details[open] summary:after {
  transform: rotate(180deg);
}
.page-buh .faq-accordion .details-body {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
  line-height: 1.55;
}
.page-buh .faq-accordion .details-body p {
  margin: 0 0 10px;
}
.page-buh .faq-accordion .details-body p:last-child {
  margin-bottom: 0;
}
.page-buh .faq-accordion .details-body ul {
  margin: 0;
  padding-left: 18px;
}

.page-buh .price-card .price {
  font-size: 28px;
  font-weight: 900;
  margin: 10px 0 6px;
}
.page-buh .price-card .price small {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

