html {
  min-width: 320px;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  scroll-behavior: smooth;
}

body.mk-current-service-page {
  min-width: 320px;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: #fff;
  color: #111;
  font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.mk-current-service-page #page {
  width: 100%;
  min-height: 0;
}

/* Progressive fallback for visitors and crawlers that do not run JavaScript. */
.mk-static-service-summary {
  padding: clamp(72px, 9vw, 128px) 24px;
  background: #fff;
  color: #111;
}

.mk-static-service-summary-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.mk-static-service-summary-kicker {
  color: #e51a1c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-static-service-summary h1 {
  margin: 14px 0 18px;
  color: #111;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mk-static-service-summary p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.55;
}

.mk-static-service-summary .mk-static-service-summary-lead {
  font-size: clamp(18px, 2.2vw, 24px);
}

.mk-static-service-summary-section {
  max-width: 820px;
  margin-top: 42px;
}

.mk-static-service-summary-section h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(24px, 3vw, 34px);
}

.mk-static-service-summary-section ul,
.mk-static-service-summary-section ol {
  display: grid;
  margin: 0;
  padding-left: 22px;
  gap: 10px;
  color: #374151;
  font-size: 16px;
  line-height: 1.55;
}

.mk-static-service-summary-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.mk-static-service-summary-actions a {
  display: inline-flex;
  padding: 13px 20px;
  border-radius: 8px;
  background: #e51a1c;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mk-static-service-summary-actions a:not(:first-child) {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111;
}

.mk-current-service-page .skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20000;
  padding: 10px 14px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transform: translateY(-160%);
}

.mk-current-service-page .skip-link:focus {
  transform: translateY(0);
}

.mk-social-bubble {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 9997;
  width: 56px;
  height: 56px;
  font-family: "Kanit", sans-serif;
  transform: translateY(-50%);
}

.mk-social-bubble-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: #e51a1c;
  color: #fff;
  box-shadow: 0 8px 22px rgba(229, 26, 28, 0.35);
  cursor: pointer;
}

.mk-sb-cluster {
  display: grid;
  width: 30px;
  height: 30px;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mk-sb-cluster i {
  display: block;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.mk-sb-close {
  position: absolute;
  opacity: 0;
  font-size: 28px;
  font-style: normal;
  line-height: 1;
  transform: rotate(-90deg) scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mk-social-bubble.is-open .mk-sb-cluster {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}

.mk-social-bubble.is-open .mk-sb-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.mk-social-bubble-items {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mk-social-bubble-items a {
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #ececec;
  border-radius: 50%;
  background: #fff;
  color: #111;
  opacity: 0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  pointer-events: none;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.28s ease;
}

.mk-social-bubble.is-open .mk-social-bubble-items a {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .mk-social-bubble {
    display: none;
  }
}
