.service-explorer {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.service-explorer-nav {
  position: sticky;
  top: 118px;
  max-height: calc(100vh - 145px);
  padding: 10px;
  overflow-y: auto;
  border: 1px solid #d8e2e9;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.service-explorer-label {
  padding: 8px 10px 10px;
  color: #64717d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.service-explorer-button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #44515d;
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.service-explorer-button:hover {
  background: #eef4f8;
  color: #0f4c81;
  transform: translateX(2px);
}

.service-explorer-button[aria-selected="true"] {
  background: #0a3357;
  color: #ffffff;
}

.service-explorer-button.guardance-button {
  margin-bottom: 8px;
  border: 1px solid #135ea8;
  color: #0a3357;
}

.service-explorer-button.guardance-button::after {
  content: "All-inclusive MSP";
  display: block;
  margin-top: 3px;
  color: #5f7180;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.service-explorer-button.guardance-button[aria-selected="true"] {
  color: #ffffff;
}

.service-explorer-button.guardance-button[aria-selected="true"]::after {
  color: #bcd4e5;
}

.service-explorer-stage {
  min-height: 430px;
  overflow: hidden;
}

.service-explorer-panel {
  display: none !important;
  min-height: 390px !important;
  margin: 0 !important;
  padding: clamp(30px, 5vw, 52px) !important;
  border: 0 !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .09) !important;
}

.service-explorer-panel.is-active {
  display: flex !important;
  animation: service-panel-enter .48s cubic-bezier(.22, .8, .3, 1) both;
}

.service-explorer-panel.guardance-panel {
  background: linear-gradient(145deg, #0a3357, #0f4c81) !important;
  color: #ffffff;
}

.service-explorer-panel.guardance-panel h3,
.service-explorer-panel.guardance-panel h4 {
  color: #ffffff !important;
}

.service-explorer-panel.guardance-panel p,
.service-explorer-panel.guardance-panel li {
  color: #d7e5ef;
}

.service-explorer-panel.guardance-panel .service-detail-block {
  border-color: rgba(255, 255, 255, .2);
}

.service-explorer-panel.guardance-panel .service-detail-list li::before {
  background: #8fc4ec;
}

.home-service-card.service-explorer-panel.is-active {
  display: grid !important;
}

.service-explorer-panel h2,
.service-explorer-panel h3 {
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.03em;
}

.service-explorer-panel p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.8 !important;
}

.service-detail-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dce5eb;
}

.service-detail-block h4 {
  margin: 0 0 14px;
  color: #0b3f73;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-detail-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 20px;
  color: #44515d;
  line-height: 1.55;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #135ea8;
}

.service-explorer-panel a {
  align-self: flex-start;
  margin-top: auto !important;
  padding-top: 26px !important;
  font-size: 1rem;
}

.service-explorer-progress {
  height: 3px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce5eb;
}

.service-explorer-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #135ea8;
  transform-origin: left;
  animation: service-progress 6.5s linear infinite;
}

.service-explorer.is-paused .service-explorer-progress span {
  animation-play-state: paused;
}

.service-explorer-source-hidden {
  display: none !important;
}

@keyframes service-panel-enter {
  from { opacity: 0; transform: translateX(-44px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes service-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .service-explorer-panel.is-active,
  .service-explorer-progress span { animation: none; }
}

@media (max-width: 760px) {
  .directory-titlebar { align-items: flex-start; flex-direction: column; }
  .directory-titlebar p { text-align: left; }
  .service-explorer { grid-template-columns: 1fr; }
  .service-explorer-nav { position: static; display: flex; max-height: none; overflow-x: auto; overflow-y: hidden; gap: 6px; }
  .service-explorer-label { display: none; }
  .service-explorer-button { width: auto; min-width: max-content; }
  .service-explorer-progress { display: none; }
  .service-explorer-stage { min-height: 0; }
  .service-explorer-panel { min-height: 360px !important; }
  .service-detail-list { grid-template-columns: 1fr; }
}
.directory-titlebar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d8e2e9;
}

.directory-titlebar h1,
.home-directory .directory-titlebar h1 {
  max-width: none;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.directory-titlebar p {
  max-width: 430px;
  margin: 0;
  color: #55616d;
  text-align: right;
}
