:root {
  --zm-primary: #2563eb;
  --zm-primary-dark: #1d4ed8;
  --zm-accent: #ff7a00;
  --zm-accent-dark: #e36400;
  --zm-surface: #f8fafc;
  --zm-surface-strong: #eff6ff;
  --zm-text: #0f172a;
  --zm-muted: #475569;
  --zm-border: #dbe4f0;
  --zm-radius: 24px;
  --zm-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body {
  color: var(--zm-text);
}

.wp-site-blocks {
  overflow-x: hidden;
}

.zm-header-shell {
  border-bottom: 1px solid var(--zm-border);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.zm-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zm-brand {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.zm-brand img {
  max-height: 42px;
  width: auto;
}

.zm-hero-slider {
  position: relative;
  background: linear-gradient(135deg, #09101d 0%, #102349 50%, #1d4ed8 100%);
  padding: 24px 24px 70px;
}

.zm-hero-slider__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.zm-hero-slider__track {
  position: relative;
  min-height: 640px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.zm-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease, transform .6s ease;
  transform: scale(1.02);
}

.zm-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.zm-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,15,29,.82) 0%, rgba(8,15,29,.64) 48%, rgba(8,15,29,.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.38) 100%);
}

.zm-slide__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  color: #fff;
  padding: 72px;
}

.zm-slide__eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .84rem;
  font-weight: 700;
}

.zm-slide__title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.zm-slide__subtitle {
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.6;
  max-width: 56ch;
  color: rgba(255,255,255,.92);
}

.zm-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.zm-btn-primary,
.zm-btn-secondary {
  text-decoration: none;
}

.zm-btn-primary {
  background: var(--zm-accent) !important;
  color: #fff !important;
}

.zm-btn-primary:hover {
  background: var(--zm-accent-dark) !important;
}

.zm-btn-secondary {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
}

.zm-slider-controls {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.zm-slider-arrow {
  height: 56px;
  width: 56px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.zm-slider-dots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.zm-slider-dot {
  text-align: left;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.86);
  border-radius: 18px;
  padding: 16px 18px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.zm-slider-dot span {
  display: block;
  font-weight: 700;
  line-height: 1.35;
}

.zm-slider-dot.is-active,
.zm-slider-dot:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
  color: #fff;
}

.zm-page-section,
.zm-service-card,
.zm-step-card,
.zm-sub-card,
.zm-form-card,
.zm-page-hero {
  border: 1px solid var(--zm-border);
  border-radius: var(--zm-radius);
  box-shadow: var(--zm-shadow);
  background: #fff;
}

.zm-page-section,
.zm-page-hero,
.zm-service-card,
.zm-step-card,
.zm-sub-card,
.zm-form-card {
  padding: 1.7rem;
}

.zm-service-grid,
.zm-sub-grid,
.zm-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.zm-step-grid.zm-step-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zm-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(37,99,235,.12);
  color: var(--zm-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.zm-home-intro {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.zm-home-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.zm-contact-band {
  margin-top: 10px;
}

.zm-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.zm-footer-note {
  color: #64748b;
  font-size: .82rem;
}

@media (max-width: 980px) {
  .zm-hero-slider__track {
    min-height: 560px;
  }

  .zm-slide__content {
    padding: 44px 28px;
  }

  .zm-slider-controls {
    grid-template-columns: 1fr;
  }

  .zm-slider-arrow {
    display: none;
  }

  .zm-slider-dots,
  .zm-service-grid,
  .zm-sub-grid,
  .zm-step-grid,
  .zm-step-grid.zm-step-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .zm-hero-slider {
    padding: 18px 16px 42px;
  }

  .zm-home-wrapper {
    padding: 0 16px 42px;
  }

  .zm-slide__content {
    padding: 30px 20px;
  }

  .zm-slide__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}


.zm-brand-link {display:inline-flex; align-items:center; text-decoration:none;}
.zm-brand-fallback {display:block; max-height:54px; width:auto;}

.zm-slider-controls {width:100%;}
.zm-slider-dots {display:flex; flex-wrap:wrap; gap:12px; width:100%;}
.zm-slider-dot {flex:1 1 220px; min-width:220px; min-height:68px;}
.zm-slider-dot span {white-space:normal;}

.zm-service-card ul {padding-left:1.1rem; margin: .75rem 0 0;}
.zm-service-card li {margin:.35rem 0;}

@media (max-width: 980px) {
  .zm-slider-dot {min-width:100%;}
}


/* v5 slider fixes */
.zm-hero-slider {padding: 24px;}
.zm-hero-slider__track {min-height: 680px;}
.zm-slider-ui {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.zm-slider-previews {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  max-width: calc(100% - 130px);
}
.zm-slider-previews::-webkit-scrollbar {height: 8px;}
.zm-slider-previews::-webkit-scrollbar-thumb {background: rgba(255,255,255,.18); border-radius: 999px;}
.zm-slider-dot {
  flex: 0 0 170px;
  min-width: 170px;
  min-height: 58px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.zm-slider-dot span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  font-size: .82rem;
}
.zm-slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.zm-slider-arrow {
  height: 46px;
  width: 46px;
  font-size: 1.35rem;
}
@media (max-width: 980px) {
  .zm-hero-slider__track {min-height: 620px;}
  .zm-slide__content {padding: 40px 24px 150px; max-width: 100%;}
  .zm-slider-ui {
    left: 20px;
    right: 20px;
    bottom: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .zm-slider-previews {max-width: 100%;}
  .zm-slider-arrows {justify-content: flex-end;}
}
@media (max-width: 640px) {
  .zm-hero-slider {padding: 16px;}
  .zm-hero-slider__track {min-height: 600px;}
  .zm-slide__content {padding: 28px 18px 170px;}
  .zm-slider-dot {flex-basis: 150px; min-width: 140px; min-height: 58px;}
}


.zm-brand-link {
  display: inline-flex;
  align-items: center;
}

.zm-brand-fallback {
  max-height: 52px;
  width: auto;
}

.zm-primary-nav {
  margin-left: auto;
}

.zm-primary-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zm-primary-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--zm-text);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.zm-primary-nav__link:hover,
.zm-primary-nav__link.is-active {
  background: var(--zm-surface-strong);
  border-color: var(--zm-border);
  color: var(--zm-primary-dark);
}

@media (max-width: 900px) {
  .zm-header-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .zm-primary-nav {
    width: 100%;
  }

  .zm-primary-nav__list {
    justify-content: flex-start;
  }
}


.zm-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
}

.zm-primary-nav {
  flex: 1 1 auto;
}

.zm-primary-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.zm-primary-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .78rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--zm-text);
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.zm-primary-nav__link:hover,
.zm-primary-nav__link.is-active {
  background: rgba(37,99,235,.08);
  color: var(--zm-primary);
}

.zm-primary-nav__link.is-contact {
  background: #E36400;
  color: #fff;
}

.zm-primary-nav__link.is-contact:hover,
.zm-primary-nav__link.is-contact.is-active {
  background: #c95500;
  color: #fff;
}

.zm-header-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 0 0 auto;
}

.zm-header-search__input {
  width: 220px;
  min-height: 44px;
  border: 1px solid var(--zm-border);
  border-radius: 999px;
  padding: 0 .95rem;
  background: #fff;
  color: var(--zm-text);
}

.zm-header-search__input:focus {
  outline: none;
  border-color: var(--zm-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.zm-header-search__button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 .95rem;
  background: var(--zm-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.zm-header-search__button:hover {
  background: var(--zm-primary-dark);
}

@media (max-width: 1100px) {
  .zm-header-row {
    flex-wrap: wrap;
  }

  .zm-nav-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .zm-primary-nav__list {
    justify-content: flex-start;
  }

  .zm-header-search {
    width: 100%;
  }

  .zm-header-search__input {
    width: 100%;
    flex: 1 1 auto;
  }
}

/* v10 header refinement */
.zm-header-shell {
  border-bottom: 1px solid var(--zm-border);
}

.zm-header-shell > .wp-block-group {
  max-width: 1440px;
}

.zm-header-row {
  gap: 1.25rem;
}

.zm-brand-link {
  flex: 0 0 auto;
}

.zm-brand-fallback {
  max-height: 48px;
  width: auto;
}

.zm-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.zm-primary-nav {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 0;
}

.zm-primary-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.22rem;
  overflow-x: visible;
  scrollbar-width: none;
  padding: 0;
}

.zm-primary-nav__list::-webkit-scrollbar {
  display: none;
}

.zm-primary-nav__link {
  min-height: 38px;
  padding: 0.56rem 0.72rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.zm-header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.zm-header-search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem;
  border: 1px solid var(--zm-border);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.zm-header-search__input {
  width: 180px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 0.9rem;
  background: transparent;
  box-shadow: none;
}

.zm-header-search__input:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.zm-header-search__button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 0.9rem;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
}

.zm-header-search__button:hover {
  background: #111827;
}

.zm-primary-nav__link.is-contact {
  min-height: 40px;
  padding: 0.56rem 0.95rem;
  background: #E36400;
  color: #FFFFFF;
  border: 1px solid #E36400;
  box-shadow: 0 10px 24px rgba(227, 100, 0, 0.22);
}

.zm-primary-nav__link.is-contact:hover,
.zm-primary-nav__link.is-contact.is-active {
  background: #c95500;
  border-color: #c95500;
  color: #FFFFFF;
}

@media (min-width: 1200px) {
  .zm-header-shell {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 1180px) {
  .zm-header-row {
    flex-wrap: wrap;
    align-items: center;
  }

  .zm-nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .zm-primary-nav__list {
    flex-wrap: wrap;
  }

  .zm-header-tools {
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .zm-header-search {
    width: 100%;
  }

  .zm-header-search__input {
    width: 100%;
    flex: 1 1 auto;
  }

  .zm-header-tools {
    width: 100%;
    flex-wrap: wrap;
  }
}


@media (min-width: 1181px) {
  .zm-brand-fallback {
    max-height: 44px;
  }

  .zm-header-row {
    gap: 0.85rem;
  }

  .zm-nav-wrap {
    gap: 0.75rem;
  }

  .zm-header-tools {
    gap: 0.6rem;
  }

  .zm-primary-nav {
    min-width: 0;
  }
}


/* v1.0.7 styling refinements */
body {
  background: linear-gradient(180deg, #f3f7fc 0%, #eef4fb 100%);
}

.zm-header-shell {
  margin-bottom: 5px;
}

.zm-header-shell .wp-block-group {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.zm-brand img {
  max-height: 34px;
}

.zm-primary-nav,
.zm-primary-nav__inner {
  align-items: center;
}

.zm-service-card,
.zm-step-card,
.zm-sub-card,
.zm-form-card,
.zm-page-section,
.zm-page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d8e3f2;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.zm-service-card:nth-child(1),
.zm-sub-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}
.zm-service-card:nth-child(2),
.zm-sub-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #eefbff 100%);
}
.zm-service-card:nth-child(3),
.zm-sub-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #f3f1ff 100%);
}
.zm-service-card:nth-child(4),
.zm-sub-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #fff5ec 100%);
}

.zm-step-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.zm-service-card h3,
.zm-step-card h3,
.zm-sub-card h3,
.zm-page-hero h1,
.zm-page-section h2 {
  color: #0f172a;
}

.zm-service-card p:last-child a,
.zm-sub-card p:last-child a,
.zm-step-card p:last-child a,
.zm-page-section p:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e36400;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(227, 100, 0, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.zm-service-card p:last-child a:hover,
.zm-sub-card p:last-child a:hover,
.zm-step-card p:last-child a:hover,
.zm-page-section p:last-child a:hover {
  background: #c55400;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(227, 100, 0, 0.28);
}

.zm-footer-gradient,
footer.wp-block-template-part,
.wp-site-blocks > footer {
  background: linear-gradient(135deg, #09101d 0%, #102349 50%, #1d4ed8 100%);
  color: #ffffff;
}

footer.wp-block-template-part .wp-block-group,
.wp-site-blocks > footer .wp-block-group {
  background: transparent !important;
  border-top-color: rgba(255,255,255,.16) !important;
}

footer.wp-block-template-part h1,
footer.wp-block-template-part h2,
footer.wp-block-template-part h3,
footer.wp-block-template-part h4,
footer.wp-block-template-part p,
footer.wp-block-template-part li,
footer.wp-block-template-part a,
.wp-site-blocks > footer h1,
.wp-site-blocks > footer h2,
.wp-site-blocks > footer h3,
.wp-site-blocks > footer h4,
.wp-site-blocks > footer p,
.wp-site-blocks > footer li,
.wp-site-blocks > footer a {
  color: #ffffff !important;
}

footer.wp-block-template-part a,
.wp-site-blocks > footer a {
  text-decoration: none;
}

footer.wp-block-template-part a:hover,
.wp-site-blocks > footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .zm-header-shell .wp-block-group {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}


@media (min-width: 1100px) {
  .zm-slide__title {
    white-space: nowrap;
    font-size: clamp(1.9rem, 3.4vw, 3.7rem);
  }
}


/* Page banners reusing homepage slider images */
.zm-page-banner{
  position:relative;
  max-width:1240px;
  margin:24px auto 0;
  min-height:340px;
  border-radius:28px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 24px 60px rgba(15,23,42,.18);
}
.zm-page-banner__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(7,15,33,.84) 0%, rgba(7,15,33,.62) 48%, rgba(7,15,33,.28) 100%);
}
.zm-page-banner__inner{
  position:relative;
  z-index:2;
  min-height:340px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:48px 56px;
  color:#fff;
  max-width:820px;
}
.zm-page-banner__eyebrow{
  margin:0 0 12px;
  color:#cbd5e1;
  font-size:.95rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.zm-page-banner__title{
  margin:0;
  color:#fff;
  font-size:clamp(2rem, 3.2vw, 3rem);
  line-height:1.08;
  max-width:100%;
}
.zm-page-banner__subtitle{
  margin:16px 0 0;
  color:#e2e8f0;
  font-size:1.05rem;
  line-height:1.7;
  max-width:760px;
}
@media (max-width: 900px){
  .zm-page-banner{margin:16px 16px 0;min-height:280px;border-radius:22px;}
  .zm-page-banner__inner{padding:32px 24px;min-height:280px;}
  .zm-page-banner__title{font-size:clamp(1.7rem, 7vw, 2.35rem);}
  .zm-page-banner__subtitle{font-size:1rem;}
}

.zm-site-footer {
  color: #fff;
}

.zm-site-footer h1,
.zm-site-footer h2,
.zm-site-footer h3,
.zm-site-footer h4,
.zm-site-footer h5,
.zm-site-footer h6,
.zm-site-footer p,
.zm-site-footer li {
  color: #fff;
}

.zm-site-footer a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.zm-site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.zm-footer-columns {
  gap: 2.2rem;
}

.zm-footer-note {
  margin-top: 1rem;
  max-width: 34ch;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
}

.zm-footer-links {
  margin: .9rem 0 0;
  padding-left: 1.15rem;
}

.zm-footer-links li {
  margin-bottom: .65rem;
}

.zm-footer-contact-btn .wp-block-button__link {
  background: var(--zm-accent-dark);
  color: #fff;
  border-radius: 999px;
  padding: .9rem 1.25rem;
  font-weight: 700;
}

.zm-footer-contact-btn .wp-block-button__link:hover {
  background: var(--zm-accent);
}

.zm-footer-copy {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
}

@media (max-width: 781px) {
  .zm-footer-note {
    max-width: none;
  }
}


.zm-form-stack {max-width: 100%;}
.zm-newsletter-card {background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);}
.zm-newsletter-help {margin-top: 12px; color: #64748b;}
.zm-form-card h3 {margin-top: 0; margin-bottom: .45rem;}
.zm-form-card .wp-block-shortcode {margin-top: .85rem;}
.zm-contact-band .wp-block-columns {gap: 24px;}
@media (max-width: 980px) {
  .zm-contact-band .wp-block-columns {gap: 18px;}
}
