html {
  scroll-behavior: smooth;
}

body.mh-body {
  margin: 0;
}

.mh-site-frame,
.mh-site-frame * {
  box-sizing: border-box;
  min-width: 0;
}

.mh-site-frame {
  --mh-ink: #0f172a;
  --mh-muted: #5b6475;
  --mh-line: #e5eaf3;
  --mh-soft: #f6f8fc;
  --mh-blue: #2563eb;
  --mh-blue2: #1d4ed8;
  --mh-dark: #0b1020;
  --mh-dark2: #111a33;
  --mh-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);

  width: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--mh-ink);
  background: #ffffff;
}

.mh-site-frame a {
  color: inherit;
  text-decoration: none;
}

.mh-global-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.mh-builder-main,
.mh-builder-page,
.mh-builder-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.mh-builder-content > *:first-child {
  margin-top: 0;
}

.mh-builder-content > *:last-child {
  margin-bottom: 0;
}

/* =========================
   Header
========================= */

.mh-site-header-v2 {
  position: sticky;
  top: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.mh-header-inner-v2 {
  min-height: 78px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 22px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mh-brand-v2 {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  max-width: 330px;
}

.mh-brand-mark-v2 {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mh-blue), #0f172a);
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.045em;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
  flex: 0 0 auto;
}

.mh-brand-text-v2 strong {
  display: block;
  font-size: 17px;
  line-height: 1.05;
  color: var(--mh-ink);
  letter-spacing: -0.025em;
}

.mh-brand-text-v2 span {
  display: block;
  margin-top: 5px;
  color: var(--mh-muted);
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 700;
}

.mh-main-nav-v2 {
  display: flex;
  flex: 1 1 420px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px 6px;
}

.mh-nav-link-v2,
.mh-services-summary-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 185px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: 0.18s ease;
}

.mh-nav-link-v2:hover,
.mh-services-summary-v2:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.mh-services-dropdown-v2 {
  position: relative;
  flex: 0 0 auto;
}

.mh-services-dropdown-v2 summary {
  list-style: none;
  cursor: pointer;
}

.mh-services-dropdown-v2 summary::-webkit-details-marker {
  display: none;
}

.mh-services-summary-v2::after {
  content: "⌄";
  margin-left: 7px;
  font-size: 13px;
  color: #64748b;
}

.mh-services-menu-v2 {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  max-width: calc(100vw - 32px);
  padding: 14px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--mh-line);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mh-services-dropdown-v2:not([open]) .mh-services-menu-v2 {
  display: none;
}

.mh-service-item-v2 {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  padding: 14px;
  border-radius: 18px;
  transition: 0.18s ease;
}

.mh-service-item-v2:hover {
  background: var(--mh-soft);
}

.mh-service-icon-v2 {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.09);
  color: #1d4ed8;
  font-weight: 950;
  font-size: 13px;
}

.mh-service-item-v2 strong {
  display: block;
  color: var(--mh-ink);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.mh-service-item-v2 span span {
  display: block;
  margin-top: 4px;
  color: var(--mh-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.mh-header-actions-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.mh-header-audit-v2,
.mh-header-contact-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.18s ease;
}

.mh-header-audit-v2 {
  background: var(--mh-blue);
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.mh-header-audit-v2:hover {
  transform: translateY(-2px);
  background: var(--mh-blue2);
  color: #ffffff !important;
}

.mh-header-contact-v2 {
  background: #ffffff;
  border: 1px solid var(--mh-line);
  color: var(--mh-ink) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mh-header-contact-v2:hover {
  transform: translateY(-2px);
  color: var(--mh-ink) !important;
}

.mh-mobile-details-v2 {
  display: none;
  position: relative;
  margin-left: auto;
}

.mh-mobile-details-v2 summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--mh-line);
  background: #ffffff;
  color: var(--mh-ink);
  font-weight: 950;
  font-size: 21px;
  line-height: 1;
}

.mh-mobile-details-v2 summary::-webkit-details-marker {
  display: none;
}

.mh-mobile-panel-v2 {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 350px;
  max-width: calc(100vw - 28px);
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--mh-line);
  box-shadow: var(--mh-shadow);
}

.mh-mobile-section-label-v2 {
  padding: 12px 14px 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mh-mobile-panel-v2 a {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 14px;
  color: #334155;
  font-weight: 800;
  line-height: 1.25;
}

.mh-mobile-panel-v2 a:hover {
  background: var(--mh-soft);
  color: #1d4ed8;
}

.mh-mobile-panel-v2 .mh-mobile-cta-v2 {
  margin-top: 8px;
  justify-content: center;
  background: var(--mh-blue);
  color: #ffffff !important;
}

/* =========================
   Footer
========================= */

.mh-global-footer-v2 {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.22), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.18), transparent 30%),
    linear-gradient(180deg, var(--mh-dark), var(--mh-dark2));
  color: #ffffff;
  padding: 70px 0 28px;
}

.mh-footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.85fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.mh-footer-brand-v2 {
  max-width: 430px;
}

.mh-footer-brand-v2 .mh-brand-v2 {
  margin-bottom: 18px;
}

.mh-footer-brand-v2 .mh-brand-text-v2 strong,
.mh-footer-brand-v2 .mh-brand-text-v2 span {
  color: #ffffff;
}

.mh-footer-brand-v2 p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.mh-footer-mini-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mh-footer-mini-v2 span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 780;
}

.mh-footer-col-v2 h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mh-footer-links-v2 {
  display: grid;
  gap: 10px;
}

.mh-footer-links-v2 a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  transition: 0.18s ease;
}

.mh-footer-links-v2 a:hover {
  color: #ffffff;
}

.mh-footer-cta-v2 {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mh-footer-cta-v2 h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-transform: none;
}

.mh-footer-cta-v2 p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.mh-footer-button-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--mh-ink) !important;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: 0.18s ease;
}

.mh-footer-button-v2:hover {
  transform: translateY(-2px);
  color: var(--mh-ink) !important;
}

.mh-footer-bottom-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.mh-footer-bottom-v2 a {
  color: rgba(255, 255, 255, 0.68);
}

.mh-footer-bottom-v2 a:hover {
  color: #ffffff;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .mh-header-actions-v2 {
    display: none;
  }

  .mh-main-nav-v2 {
    justify-content: flex-end;
  }

  .mh-footer-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .mh-main-nav-v2,
  .mh-header-actions-v2 {
    display: none;
  }

  .mh-mobile-details-v2 {
    display: block;
  }

  .mh-header-inner-v2 {
    flex-wrap: nowrap;
  }
}

@media (max-width: 680px) {
  .mh-global-wrap {
    padding-left: 13px;
    padding-right: 13px;
  }

  .mh-header-inner-v2 {
    min-height: 70px;
    gap: 14px;
  }

  .mh-brand-v2 {
    max-width: 260px;
  }

  .mh-brand-mark-v2 {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .mh-brand-text-v2 strong {
    font-size: 16px;
  }

  .mh-brand-text-v2 span {
    font-size: 11.5px;
    max-width: 178px;
  }

  .mh-services-menu-v2 {
    grid-template-columns: 1fr;
  }

  .mh-global-footer-v2 {
    padding: 56px 0 24px;
  }

  .mh-footer-grid-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mh-footer-bottom-v2 {
    align-items: flex-start;
    flex-direction: column;
  }
}