:root {
  --zx-ink: #061a2d;
  --zx-navy: #082843;
  --zx-blue: #126de5;
  --zx-blue-dark: #0754bd;
  --zx-sky: #dff3ff;
  --zx-sky-soft: #f1faff;
  --zx-line: #bcd9e9;
  --zx-muted: #526a7c;
  --zx-white: #fff;
  --zx-shell: 1240px;
  --zx-gutter: clamp(20px, 4vw, 56px);
  --zx-section: clamp(76px, 9vw, 136px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--zx-ink);
  background: var(--zx-white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #51bcff;
  outline-offset: 4px;
}

.zx-main,
.zx-main > .wp-block-post-content {
  margin: 0;
  padding: 0;
}

.zx-shell {
  width: min(calc(100% - (2 * var(--zx-gutter))), var(--zx-shell));
  margin-inline: auto;
}

.zx-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--zx-white);
  background: var(--zx-ink);
  transform: translateY(-180%);
}

.zx-skip-link:focus {
  transform: translateY(0);
}

.zx-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(8, 40, 67, .12);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.admin-bar .zx-site-header {
  top: 32px;
}

.zx-header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.zx-brand,
.zx-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--zx-ink);
  text-decoration: none;
}

.zx-brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 38px;
  overflow: hidden;
}

.zx-brand-mark img {
  position: absolute;
  width: 98px;
  max-width: none;
  left: -25px;
  top: -5px;
}

.zx-brand-name,
.zx-footer-brand {
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -.045em;
}

.zx-brand-name span,
.zx-footer-brand span {
  color: var(--zx-blue);
}

.zx-site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.zx-site-nav > a {
  position: relative;
  color: #25445c;
  font-size: 14px;
  font-weight: 630;
  text-decoration: none;
  white-space: nowrap;
}

.zx-site-nav > a:not(.zx-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--zx-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.zx-site-nav > a:not(.zx-nav-cta):hover::after,
.zx-site-nav > a:not(.zx-nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.zx-site-nav .zx-nav-cta {
  padding: 13px 18px;
  color: var(--zx-white);
  background: var(--zx-navy);
  transition: background .2s ease, transform .2s ease;
}

.zx-site-nav .zx-nav-cta:hover {
  background: var(--zx-blue);
  transform: translateY(-2px);
}

.zx-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  color: var(--zx-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.zx-menu-toggle i,
.zx-menu-toggle i::before,
.zx-menu-toggle i::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
}

.zx-menu-toggle i {
  position: relative;
}

.zx-menu-toggle i::before {
  position: absolute;
  top: -6px;
}

.zx-menu-toggle i::after {
  position: absolute;
  top: 6px;
}

.zx-eyebrow {
  margin: 0 0 22px;
  color: var(--zx-blue-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.zx-home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0 30px;
  background: linear-gradient(118deg, #fff 0 57%, var(--zx-sky-soft) 57% 100%);
}

.zx-home-hero::before {
  position: absolute;
  top: -250px;
  right: -90px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(18, 109, 229, .13);
  border-radius: 50%;
  content: "";
}

.zx-home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.zx-home-hero h1,
.zx-page-hero h1,
.zx-error-page h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(48px, 7vw, 102px);
  font-weight: 620;
  letter-spacing: -.065em;
  line-height: .98;
}

.zx-home-hero h1 span {
  color: var(--zx-blue);
}

.zx-hero-intro {
  max-width: 690px;
  margin: 32px 0 0;
  color: #34546b;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.6;
}

.zx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.zx-button,
.zx-submit {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 21px;
  border: 1px solid var(--zx-navy);
  color: var(--zx-white);
  background: var(--zx-navy);
  font-size: 14px;
  font-weight: 710;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.zx-button:hover,
.zx-submit:hover {
  border-color: var(--zx-blue);
  background: var(--zx-blue);
  transform: translateY(-2px);
}

.zx-button--outline {
  color: var(--zx-ink);
  background: transparent;
}

.zx-button--outline:hover {
  color: var(--zx-white);
}

.zx-button--light {
  border-color: var(--zx-white);
  color: var(--zx-ink);
  background: var(--zx-white);
}

.zx-button--light:hover {
  border-color: var(--zx-sky);
  color: var(--zx-ink);
  background: var(--zx-sky);
}

.zx-logo-panel {
  position: relative;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(18, 109, 229, .22);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 34px 80px rgba(35, 106, 154, .12);
}

.zx-logo-panel img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.zx-logo-panel > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: baseline;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--zx-line);
}

.zx-logo-panel span {
  color: var(--zx-blue-dark);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.zx-logo-panel p {
  margin: 0;
  color: #34546b;
  font-size: 14px;
}

.zx-hero-notes {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: clamp(72px, 9vw, 124px);
  padding-top: 25px;
  border-top: 1px solid var(--zx-line);
  color: #4e687a;
  font-size: 12px;
  font-weight: 660;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.zx-page-hero {
  padding: clamp(82px, 10vw, 148px) 0 clamp(74px, 9vw, 126px);
  border-bottom: 1px solid var(--zx-line);
  background: var(--zx-sky-soft);
}

.zx-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.zx-page-hero h1 {
  max-width: 860px;
  font-size: clamp(50px, 6vw, 84px);
}

.zx-page-hero__copy {
  margin: 0 0 5px;
  padding-top: 22px;
  border-top: 1px solid var(--zx-blue);
  color: #34546b;
  font-size: 18px;
}

.zx-section {
  padding: var(--zx-section) 0;
}

.zx-section--sky {
  background: var(--zx-sky-soft);
}

.zx-section--blue {
  color: var(--zx-white);
  background: var(--zx-navy);
}

.zx-section--blue .zx-eyebrow,
.zx-cta .zx-eyebrow {
  color: #8dd4ff;
}

.zx-section p {
  color: #496477;
}

.zx-section--blue p {
  color: #c5d8e7;
}

.zx-heading {
  max-width: 830px;
  margin-bottom: clamp(50px, 6vw, 86px);
}

.zx-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.zx-heading h2,
.zx-cta h2,
.zx-feature-panel h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.zx-heading > p,
.zx-heading--split > p {
  margin: 0;
  font-size: 17px;
}

.zx-rule-list {
  border-top: 1px solid var(--zx-line);
}

.zx-rule-list article {
  display: grid;
  grid-template-columns: 64px minmax(220px, .62fr) minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--zx-line);
}

.zx-rule-list article > span,
.zx-process article > span,
.zx-audience-grid a > span,
.zx-business-form legend > span {
  color: var(--zx-blue-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
}

.zx-rule-list h3,
.zx-card-grid h3,
.zx-process h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 670;
  line-height: 1.3;
}

.zx-rule-list p {
  margin: 0;
}

.zx-rule-list a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.zx-rule-list a:hover {
  color: var(--zx-blue);
}

.zx-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--zx-line);
  border-left: 1px solid var(--zx-line);
}

.zx-audience-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--zx-line);
  border-bottom: 1px solid var(--zx-line);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.zx-audience-grid a:hover {
  color: var(--zx-white);
  background: var(--zx-blue);
}

.zx-audience-grid a:hover span {
  color: var(--zx-white);
}

.zx-audience-grid strong {
  font-size: 20px;
}

.zx-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--zx-line);
}

.zx-process article {
  min-height: 260px;
  padding: 26px 26px 26px 0;
  border-bottom: 1px solid var(--zx-line);
}

.zx-process article + article {
  padding-left: 26px;
  border-left: 1px solid var(--zx-line);
}

.zx-process h3 {
  margin-top: 68px;
}

.zx-process p,
.zx-card-grid p {
  margin: 12px 0 0;
}

.zx-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(58px, 10vw, 150px);
  align-items: start;
}

.zx-statement {
  align-items: end;
}

.zx-large-copy {
  margin: 0;
  color: var(--zx-ink) !important;
  font-size: clamp(31px, 3.5vw, 52px);
  font-weight: 570;
  letter-spacing: -.045em;
  line-height: 1.16;
}

.zx-section--blue .zx-large-copy {
  color: var(--zx-white) !important;
}

.zx-two-column > div > p:first-child {
  margin-top: 0;
}

.zx-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zx-check-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid rgba(188, 217, 233, .5);
}

.zx-check-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  color: #51bcff;
  content: "↗";
}

.zx-card-grid {
  display: grid;
  border-top: 1px solid var(--zx-line);
  border-left: 1px solid var(--zx-line);
}

.zx-card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.zx-card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.zx-card-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--zx-line);
  border-bottom: 1px solid var(--zx-line);
}

.zx-section--blue .zx-card-grid {
  border-color: rgba(255, 255, 255, .23);
}

.zx-section--blue .zx-card-grid article {
  border-color: rgba(255, 255, 255, .23);
}

.zx-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  padding: clamp(32px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, .25);
}

.zx-feature-panel > div {
  max-width: 820px;
}

.zx-feature-panel > div > p:last-child {
  max-width: 670px;
  margin-top: 25px;
}

.zx-cta {
  padding: clamp(64px, 8vw, 112px) 0;
  color: var(--zx-white);
  background: var(--zx-blue);
}

.zx-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.zx-cta h2 {
  max-width: 820px;
}

.zx-contact-grid,
.zx-inquiry-grid,
.zx-legal {
  display: grid;
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.zx-contact-aside,
.zx-inquiry-aside,
.zx-legal aside {
  position: sticky;
  top: 120px;
}

.zx-contact-detail {
  padding: 18px 0;
  border-bottom: 1px solid var(--zx-line);
}

.zx-contact-detail span {
  display: block;
  margin-bottom: 3px;
  color: var(--zx-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.zx-contact-detail strong {
  font-size: 16px;
}

.zx-notice {
  margin-top: 28px;
  padding: 18px;
  border-left: 3px solid #54b9ee;
  background: var(--zx-sky-soft);
}

.zx-notice strong {
  font-size: 14px;
}

.zx-notice p {
  margin: 5px 0 0;
  font-size: 14px;
}

.zx-inquiry-aside ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.zx-form-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.zx-form-intro {
  margin: 16px 0 32px;
  color: var(--zx-muted);
}

.zx-business-form {
  margin: 0;
}

.zx-business-form fieldset {
  margin: 0 0 46px;
  padding: 0;
  border: 0;
}

.zx-business-form legend {
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--zx-line);
  font-size: 21px;
  font-weight: 690;
}

.zx-business-form legend span {
  display: inline-block;
  margin-right: 18px;
}

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

.zx-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--zx-ink);
  font-size: 13px;
  font-weight: 690;
}

.zx-field--full {
  grid-column: 1 / -1;
}

.zx-field input,
.zx-field select,
.zx-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #a9c9db;
  border-radius: 0;
  color: var(--zx-ink);
  background: var(--zx-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.zx-field textarea {
  min-height: 150px;
  resize: vertical;
}

.zx-field input:focus,
.zx-field select:focus,
.zx-field textarea:focus {
  border-color: var(--zx-blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(18, 109, 229, .13);
}

.zx-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
  color: var(--zx-muted);
  font-size: 14px;
}

.zx-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--zx-blue);
}

.zx-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.zx-form-status {
  margin-bottom: 30px;
  padding: 18px 20px;
  border-left: 4px solid;
}

.zx-form-status p {
  margin: 5px 0 0;
}

.zx-form-status--success {
  border-color: #168154;
  background: #effbf5;
}

.zx-form-status--error {
  border-color: #bd332a;
  background: #fff3f2;
}

.zx-legal > div > h2 {
  margin: 48px 0 8px;
  font-size: 24px;
}

.zx-legal > div > h2:first-child {
  margin-top: 0;
}

.zx-system-page,
.zx-error-page {
  min-height: 60vh;
  padding: clamp(80px, 9vw, 130px) var(--zx-gutter);
}

.zx-system-page > *,
.zx-error-page > * {
  max-width: 850px;
}

.zx-system-page h1,
.zx-system-page .wp-block-query-title {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -.05em;
  line-height: 1.05;
}

.zx-post-row {
  padding: 28px 0;
  border-top: 1px solid var(--zx-line);
}

.zx-post-row .wp-block-post-title {
  margin: 8px 0;
}

.zx-error-page p:not(.zx-eyebrow) {
  max-width: 600px;
  color: var(--zx-muted);
  font-size: 18px;
}

.zx-error-page .zx-button {
  margin-top: 24px;
}

.zx-site-footer {
  padding: clamp(70px, 8vw, 108px) 0 26px;
  color: #dceaf4;
  background: var(--zx-ink);
}

.zx-footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(2, minmax(160px, .45fr));
  gap: 50px;
  padding-bottom: 70px;
}

.zx-footer-brand {
  color: var(--zx-white);
  font-size: 33px;
}

.zx-footer-top > div > p {
  margin: 18px 0 0;
  color: #9fb7c8;
}

.zx-footer-top nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.zx-footer-top nav strong {
  margin-bottom: 10px;
  color: #75c9ff;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.zx-footer-top nav a,
.zx-footer-bottom a {
  color: #dceaf4;
  font-size: 14px;
  text-decoration: none;
}

.zx-footer-top nav a:hover,
.zx-footer-bottom a:hover {
  color: #75c9ff;
}

.zx-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #819daf;
  font-size: 12px;
}

.zx-footer-bottom p {
  margin: 0;
}

.zx-footer-bottom > div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1100px) {
  .zx-js .zx-menu-toggle {
    display: inline-flex;
  }

  .zx-site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px var(--zx-gutter) 26px;
    border-top: 1px solid var(--zx-line);
    border-bottom: 1px solid var(--zx-line);
    background: var(--zx-white);
    box-shadow: 0 20px 35px rgba(6, 26, 45, .1);
  }

  .zx-js .zx-site-nav {
    display: none;
  }

  .zx-js .zx-site-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .zx-site-nav > a {
    padding: 7px 0;
    font-size: 16px;
  }

  .zx-site-nav .zx-nav-cta {
    margin-top: 8px;
    padding: 14px 16px;
    text-align: center;
  }

  .zx-menu-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .zx-menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .zx-menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .zx-home-hero__grid,
  .zx-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .zx-home-hero {
    background: linear-gradient(180deg, #fff 0 68%, var(--zx-sky-soft) 68% 100%);
  }

  .zx-logo-panel {
    max-width: 640px;
  }

  .zx-page-hero__copy {
    max-width: 650px;
  }

  .zx-rule-list article {
    grid-template-columns: 45px minmax(190px, .7fr) 1fr;
  }

  .zx-rule-list article a {
    grid-column: 2 / -1;
  }

  .zx-process,
  .zx-card-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 782px) {
  .admin-bar .zx-site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  :root {
    --zx-section: 74px;
  }

  .zx-header-inner {
    min-height: 70px;
  }

  .zx-brand-mark {
    width: 40px;
    height: 32px;
  }

  .zx-brand-mark img {
    width: 82px;
    left: -21px;
    top: -4px;
  }

  .zx-brand-name {
    font-size: 21px;
  }

  .zx-home-hero {
    padding-top: 70px;
  }

  .zx-home-hero h1,
  .zx-page-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .zx-page-hero {
    padding-top: 76px;
  }

  .zx-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .zx-actions .zx-button {
    justify-content: space-between;
  }

  .zx-logo-panel {
    padding: 20px;
  }

  .zx-logo-panel > div,
  .zx-heading--split,
  .zx-two-column,
  .zx-contact-grid,
  .zx-inquiry-grid,
  .zx-legal,
  .zx-cta__grid,
  .zx-feature-panel {
    grid-template-columns: 1fr;
  }

  .zx-hero-notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .zx-heading--split {
    gap: 25px;
  }

  .zx-rule-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .zx-rule-list article p,
  .zx-rule-list article a {
    grid-column: 2;
  }

  .zx-audience-grid,
  .zx-process,
  .zx-card-grid--three,
  .zx-card-grid--four,
  .zx-form-grid {
    grid-template-columns: 1fr;
  }

  .zx-process article,
  .zx-process article + article {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .zx-process h3 {
    margin-top: 34px;
  }

  .zx-card-grid article {
    min-height: 170px;
  }

  .zx-feature-panel,
  .zx-cta__grid {
    align-items: start;
  }

  .zx-contact-aside,
  .zx-inquiry-aside,
  .zx-legal aside {
    position: static;
  }

  .zx-field--full {
    grid-column: auto;
  }

  .zx-footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .zx-footer-top > div {
    grid-column: 1 / -1;
  }

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

@media (max-width: 480px) {
  .zx-menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .zx-home-hero h1,
  .zx-page-hero h1 {
    font-size: 43px;
  }

  .zx-button,
  .zx-submit {
    width: 100%;
    justify-content: space-between;
  }

  .zx-footer-top {
    grid-template-columns: 1fr;
  }

  .zx-footer-top > div {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
