.global-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 80px;
  border-bottom: 1px solid #d9e2ec;
  background: rgba(255,255,255,.97);
  box-shadow: 0 5px 18px rgba(7,20,38,.04);
}

.global-site-header__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.global-site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.global-site-logo img {
  display: block;
  width: 176px;
  height: auto;
}

.global-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid #d9e2ec;
  border-radius: 9px;
  background: #ffffff;
  color: #00246b;
  cursor: pointer;
}

.global-menu-toggle__lines,
.global-menu-toggle__lines::before,
.global-menu-toggle__lines::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.global-menu-toggle__lines { position: relative; }
.global-menu-toggle__lines::before,
.global-menu-toggle__lines::after { content: ""; position: absolute; left: 0; }
.global-menu-toggle__lines::before { top: -7px; }
.global-menu-toggle__lines::after { top: 7px; }

.global-navigation-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.global-navigation-list {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.global-navigation-link,
.global-services-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #344054;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.global-navigation-link:hover,
.global-services-toggle:hover,
.global-navigation-link[aria-current="page"],
.global-services-toggle.is-current {
  color: #1e5ed8;
  background: #eef4ff;
}

.global-navigation-link:focus-visible,
.global-services-toggle:focus-visible,
.global-menu-toggle:focus-visible,
.global-services-menu a:focus-visible,
.global-site-footer a:focus-visible {
  outline: 3px solid rgba(45,115,253,.3);
  outline-offset: 3px;
}

.global-services-item { position: relative; }
.global-services-toggle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.global-services-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.global-services-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  width: 330px;
  padding: 10px;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(7,20,38,.14);
}

.global-services-menu.is-open { display: grid; }
.global-services-menu a { display: block; padding: 11px 12px; border-radius: 8px; color: #344054; font-size: 14px; font-weight: 700; line-height: 1.38; text-decoration: none; }
.global-services-menu a:hover,
.global-services-menu a[aria-current="page"] { color: #1e5ed8; background: #eef4ff; }

.global-header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 8px;
  background: #2d73fd;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.global-header-cta:hover { background: #1e5ed8; color: #ffffff; }

.global-site-footer { padding-top: 64px; background: #071426; color: #ffffff; }
.global-site-footer__grid { display: grid; grid-template-columns: 1.3fr 1.2fr .8fr .9fr 1.18fr; gap: 36px; }
.global-site-footer__logo { display: inline-flex; margin-bottom: 13px; }
.global-site-footer__logo img { display: block; width: 176px; height: auto; }
.global-site-footer__brand p { max-width: 330px; margin: 0 0 12px; color: #d9e2ec; font-size: 15px; line-height: 1.6; }
.global-site-footer__brand strong { display: block; color: #ffffff; font-size: 15px; }
.global-site-footer h2 { margin: 0 0 17px; color: #ffffff; font-size: 15px; line-height: 1.35; }
.global-site-footer nav,
.global-site-footer address { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; font-style: normal; }
.global-site-footer a { margin: 0 0 10px; color: #d9e2ec; font-size: 14px; line-height: 1.45; text-decoration: none; overflow-wrap: anywhere; }
.global-site-footer a:hover { color: #ffffff; }
.global-site-footer address span { color: #d9e2ec; font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
.global-site-footer__social { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 19px; }
.global-site-footer__social a { margin: 0; }
.global-site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 48px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.13); color: #d9e2ec; font-size: 14px; }
.global-site-footer__legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.global-site-footer__legal span { color: #d9e2ec; cursor: not-allowed; }

@media (max-width: 1240px) {
  .global-navigation-panel { gap: 14px; }
  .global-navigation-link,
  .global-services-toggle { padding-right: 7px; padding-left: 7px; font-size: 14px; }
  .global-header-cta { padding-right: 14px; padding-left: 14px; font-size: 14px; }
  .global-site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  body.global-nav-open { overflow: hidden; }
  .global-menu-toggle { display: grid; }
  .global-navigation-panel {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 80px);
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px max(20px,calc((100vw - min(1160px,92vw))/2));
    overflow-y: auto;
    border-top: 1px solid #d9e2ec;
    background: #ffffff;
    box-shadow: 0 20px 36px rgba(7,20,38,.12);
  }
  .global-navigation-panel.is-open { display: flex; }
  .global-navigation-list { align-items: stretch; flex-direction: column; gap: 2px; }
  .global-navigation-link,
  .global-services-toggle { width: 100%; min-height: 48px; justify-content: space-between; padding: 12px 10px; font-size: 16px; }
  .global-services-menu { position: static; width: 100%; margin: 2px 0 8px; padding: 7px 7px 7px 15px; border: 0; border-left: 2px solid #d9e2ec; border-radius: 0; box-shadow: none; }
  .global-services-menu a { min-height: 44px; padding: 11px 10px; }
  .global-header-cta { width: 100%; min-height: 50px; font-size: 16px; }
}

@media (max-width: 767px) {
  .global-site-header,
  .global-site-header__inner { min-height: 72px; }
  .global-site-logo img { width: 158px; }
  .global-navigation-panel { top: 72px; max-height: calc(100vh - 72px); }
  .global-site-footer { padding-top: 52px; }
  .global-site-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px 26px; }
  .global-site-footer__brand { grid-column: 1/-1; }
  .global-site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .global-site-footer__legal { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .global-site-footer__grid { grid-template-columns: 1fr; }
  .global-site-footer__brand { grid-column: auto; }
  .global-site-footer__legal { display: grid; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .global-services-toggle svg { transition: none; }
}

/* Approved homepage form system shared by all completed lead forms. */
:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel
) {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 32px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
  color: #101828;
  font-family: var(--font-body, "Inter", sans-serif);
}

.contact-form-panel > form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(.form-grid, .sm-form-grid, .vt-form-grid) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
  margin: 0;
}

form.sm-audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

form.sm-audit-form > .sm-form-grid {
  display: contents;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(.form-field, .sm-form-row, .vt-field, .form-grid > label) {
  box-sizing: border-box;
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(
  .form-field--full,
  .form-span,
  .sm-form-row--full,
  .vt-field--full,
  .sm-platform-fieldset,
  .sm-form-row:has(textarea),
  .vt-form-grid > .vt-field:has(textarea)
) {
  grid-column: 1 / -1;
}

form.sm-audit-form > :is(button, .sm-form-status) {
  grid-column: 1 / -1;
}

form.vt-form > .vt-field {
  margin-top: 16px;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(label, legend, .form-label, .form-field > span) {
  color: #101828;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  outline: 0;
  background: #ffffff;
  color: #101828;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  transition: border-color .18s ease, box-shadow .18s ease;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) textarea {
  min-height: 128px;
  resize: vertical;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(input, textarea)::placeholder {
  color: #667085;
  opacity: 1;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea):hover {
  border-color: #2d73fd;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea):focus {
  border-color: #2d73fd;
  box-shadow: 0 0 0 3px rgba(45, 115, 253, .16);
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(input[type="checkbox"], input[type="radio"]) {
  accent-color: #2d73fd;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) button[type="submit"] {
  box-sizing: border-box;
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #2d73fd;
  color: #ffffff;
  font-family: var(--font-heading, "Manrope", sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

form.sm-audit-form > button[type="submit"] {
  margin-top: 8px;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) button[type="submit"]:hover {
  background: #1e5ed8;
  color: #ffffff;
  transform: translateY(-1px);
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) button[type="submit"]:focus-visible {
  outline: 3px solid rgba(45, 115, 253, .3);
  outline-offset: 3px;
}

:is(
  form.growth-form,
  form.local-audit-form,
  form.sm-audit-form,
  form.vt-form,
  .contact-form-panel > form
) :is(
  .growth-form__microcopy,
  .form-note,
  .form-microcopy,
  .prototype-note,
  .form-status,
  .sm-form-status,
  .vt-form-status
) {
  margin: 12px 0 0;
  color: #667085;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 640px) {
  :is(
    form.growth-form,
    form.local-audit-form,
    form.sm-audit-form,
    form.vt-form,
    .contact-form-panel > form
  ) :is(.form-grid, .vt-form-grid),
  form.sm-audit-form {
    grid-template-columns: 1fr;
  }

  :is(
    form.growth-form,
    form.local-audit-form,
    form.sm-audit-form,
    form.vt-form,
    .contact-form-panel > form
  ) :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(
    form.growth-form,
    form.local-audit-form,
    form.sm-audit-form,
    form.vt-form,
    .contact-form-panel > form
  ) :is(input, select, textarea, button[type="submit"]) {
    transition: none;
  }
}
