.maxscribe-page {
  --ms-ink: #101211;
  --ms-muted: #636965;
  --ms-line: #dde2df;
  --ms-soft-line: #edf0ee;
  --ms-paper: #ffffff;
  --ms-wash: #f7f9f8;
  --ms-mint: #37c98b;
  --ms-mint-dark: #14754e;
  --ms-mint-wash: #eafaf2;
  --ms-shell: 1120px;
  background: var(--ms-paper);
  color: var(--ms-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.maxscribe-page h1,
.maxscribe-page h2,
.maxscribe-page h3,
.maxscribe-page h4 {
  color: var(--ms-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.maxscribe-page a {
  color: inherit;
}

.ms-shell {
  width: min(var(--ms-shell), calc(100% - 48px));
  margin: 0 auto;
}

.ms-nav {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(221, 226, 223, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.ms-nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ms-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.ms-brand small {
  padding-left: 10px;
  border-left: 1px solid var(--ms-line);
  color: #8a908c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.ms-brand-mark {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--ms-mint);
  box-shadow: 0 0 0 5px rgba(55, 201, 139, 0.12);
}

.ms-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.ms-nav-links > a:not(.ms-button) {
  color: #565b58;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.ms-nav-links > a:hover {
  opacity: 1;
  color: var(--ms-ink);
}

.ms-menu {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--ms-line);
  border-radius: 10px;
  background: white;
}

.ms-menu span {
  width: 17px;
  height: 1.5px;
  background: var(--ms-ink);
}

.ms-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ms-button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.ms-button-dark {
  background: var(--ms-ink);
  color: white !important;
  box-shadow: 0 9px 24px rgba(16, 18, 17, 0.12);
}

.ms-button-dark:hover {
  background: #282b29;
  box-shadow: 0 13px 30px rgba(16, 18, 17, 0.17);
}

.ms-button-light {
  border-color: var(--ms-line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ms-ink) !important;
}

.ms-button-light:hover {
  border-color: #b7beb9;
  background: white;
}

.ms-nav-cta {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 9px;
}

.ms-hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 112px;
  border-bottom: 1px solid var(--ms-soft-line);
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(185, 205, 195, 0.24), transparent 70%),
    linear-gradient(180deg, #f8faf9 0%, #ffffff 35%, #ffffff 100%);
}

.ms-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(41, 51, 46, 0.12) 0.7px, transparent 0.8px);
  background-size: 17px 17px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  pointer-events: none;
}

.ms-hero-inner {
  position: relative;
  text-align: center;
}

.ms-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 7px 13px;
  border: 1px solid var(--ms-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #464b48;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.015em;
  box-shadow: 0 4px 18px rgba(16, 18, 17, 0.04);
}

.ms-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ms-mint);
  box-shadow: 0 0 0 4px rgba(55, 201, 139, 0.12);
}

.ms-hero h1 {
  max-width: 970px;
  margin: 0 auto;
  font-size: clamp(48px, 6.2vw, 78px);
  font-weight: 550;
  letter-spacing: -0.055em;
}

.ms-hero > .ms-shell > p,
.ms-hero-inner > p {
  max-width: 735px;
  margin: 26px auto 0;
  color: var(--ms-muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.ms-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.ms-play {
  font-size: 10px;
}

.ms-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 34px;
  color: #7a807c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ms-trust span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.ms-trust span + span::before {
  width: 3px;
  height: 3px;
  display: inline-block;
  border-radius: 50%;
  background: #aeb5b0;
  content: "";
}

.ms-product-window {
  max-width: 1080px;
  margin: 78px auto 0;
  overflow: hidden;
  border: 1px solid #d4d9d6;
  border-radius: 17px;
  background: white;
  box-shadow:
    0 40px 90px rgba(21, 31, 26, 0.12),
    0 5px 15px rgba(21, 31, 26, 0.05);
  text-align: left;
}

.ms-browser-bar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 90px 1fr 120px;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid var(--ms-line);
  background: #f2f4f3;
}

.ms-browser-dots {
  display: flex;
  gap: 7px;
}

.ms-browser-dots i {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: #e98282;
}

.ms-browser-dots i:nth-child(2) {
  background: #eac45e;
}

.ms-browser-dots i:nth-child(3) {
  background: #64c888;
}

.ms-address {
  overflow: hidden;
  padding: 7px 14px;
  border: 1px solid #e1e5e2;
  border-radius: 7px;
  background: #f8f9f8;
  color: #8b918d;
  font-size: 10px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ms-saved {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--ms-mint-dark);
  font-size: 10px;
  font-weight: 600;
}

.ms-saved span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ms-mint);
}

.ms-app-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px;
  border-bottom: 1px solid var(--ms-line);
  color: #737975;
  font-size: 11px;
}

.ms-app-bar strong {
  color: var(--ms-ink);
  font-size: 13px;
}

.ms-avatar {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 50%;
  background: #eef1ef;
  color: #626864;
  font-size: 9px;
  font-weight: 700;
}

.ms-workspace {
  min-height: 560px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 220px;
}

.ms-context,
.ms-checks {
  padding: 23px 18px;
  background: #fafbfa;
}

.ms-context {
  border-right: 1px solid var(--ms-line);
}

.ms-checks {
  border-left: 1px solid var(--ms-line);
}

.ms-ui-label {
  margin: 0 0 8px;
  color: #929793;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ms-ui-label:not(:first-child) {
  margin-top: 24px;
}

.ms-context-card {
  padding: 12px;
  border: 1px solid #e4e8e5;
  border-radius: 8px;
  background: white;
}

.ms-context-card strong,
.ms-context-card span {
  display: block;
}

.ms-context-card strong {
  font-size: 10px;
}

.ms-context-card span {
  margin-top: 3px;
  color: #969b97;
  font-size: 9px;
}

.ms-document-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  padding: 10px;
  border-radius: 7px;
  color: #747a76;
  font-size: 10px;
}

.ms-document-choice span {
  width: 10px;
  height: 12px;
  border: 1px solid #a8aeaa;
  border-radius: 1px;
}

.ms-document-choice.active {
  background: #edf8f2;
  color: var(--ms-mint-dark);
  font-weight: 600;
}

.ms-document-choice.active span {
  border-color: var(--ms-mint);
}

.ms-draft {
  padding: 32px 38px 48px;
  background: white;
}

.ms-draft-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ms-soft-line);
}

.ms-draft-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.ms-draft-head p {
  margin: 3px 0 0;
  color: #969b97;
  font-size: 10px;
}

.ms-ready {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ms-mint-wash);
  color: var(--ms-mint-dark);
  font-size: 9px;
  font-weight: 650;
}

.ms-letter {
  max-width: 600px;
  margin: 28px auto 0;
  color: #353a37;
  font-size: 12px;
  line-height: 1.72;
}

.ms-letter p {
  margin: 0 0 16px;
}

.ms-highlight {
  margin: 22px 0;
  padding: 13px 14px;
  border-left: 2px solid var(--ms-mint);
  background: #f2faf6;
}

.ms-highlight span {
  display: block;
  margin-bottom: 4px;
  color: var(--ms-mint-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ms-check-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  padding: 12px;
  border: 1px solid #e3e7e4;
  border-radius: 8px;
  background: white;
}

.ms-check-card.ok {
  border-color: #ccebdc;
  background: #f2fbf7;
}

.ms-check-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f0f2f1;
  color: #7a807c;
  font-size: 9px;
  font-weight: 700;
}

.ms-check-card.ok .ms-check-icon {
  background: #dff6ea;
  color: var(--ms-mint-dark);
}

.ms-check-card strong,
.ms-check-card small {
  display: block;
}

.ms-check-card strong {
  font-size: 10px;
}

.ms-check-card small {
  margin-top: 2px;
  color: #929793;
  font-size: 8px;
  line-height: 1.35;
}

.ms-review-button {
  width: 100%;
  margin-top: 12px;
  padding: 11px 12px;
  border: 0;
  border-radius: 7px;
  background: var(--ms-ink);
  color: white;
  font-family: inherit;
  font-size: 10px;
  font-weight: 650;
}

.ms-ui-note {
  margin: 12px 4px 0;
  color: #a0a5a1;
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.ms-section {
  padding: 116px 0;
  border-bottom: 1px solid var(--ms-soft-line);
}

.ms-section-heading {
  max-width: 680px;
  margin: 0 auto 58px;
  text-align: center;
}

.ms-kicker {
  display: block;
  margin-bottom: 17px;
  color: #767c78;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ms-section-heading h2,
.ms-specialty h2,
.ms-final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 550;
  letter-spacing: -0.05em;
}

.ms-section-heading p,
.ms-specialty-grid > div > p,
.ms-final-cta > .ms-shell > p {
  margin: 20px 0 0;
  color: var(--ms-muted);
  font-size: 17px;
  line-height: 1.65;
}

.ms-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ms-line);
  border-radius: 14px;
  background: var(--ms-line);
}

.ms-feature {
  min-height: 280px;
  padding: 30px 27px;
  background: white;
}

.ms-feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  border: 1px solid var(--ms-line);
  border-radius: 10px;
  background: var(--ms-wash);
  color: #5c625e;
  font-size: 13px;
  font-weight: 650;
}

.ms-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.ms-feature h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.ms-feature p {
  margin: 12px 0 0;
  color: var(--ms-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ms-workflow-section {
  background: var(--ms-wash);
}

.ms-workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #cfd5d1;
  list-style: none;
}

.ms-workflow li {
  position: relative;
  padding: 29px 24px 10px 0;
}

.ms-workflow li:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 22px;
  color: #a5aca7;
  font-size: 13px;
  content: "→";
}

.ms-workflow li > span {
  display: block;
  margin-bottom: 58px;
  color: #8a908c;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.ms-workflow h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
}

.ms-workflow p {
  margin: 10px 0 0;
  color: var(--ms-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ms-specialty-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.ms-template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.ms-template-tags span {
  padding: 8px 11px;
  border: 1px solid var(--ms-line);
  border-radius: 999px;
  background: var(--ms-wash);
  color: #555b57;
  font-size: 11px;
  font-weight: 550;
}

.ms-style-card {
  overflow: hidden;
  border: 1px solid var(--ms-line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 25px 60px rgba(21, 31, 26, 0.08);
}

.ms-style-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  border-bottom: 1px solid var(--ms-line);
  background: var(--ms-wash);
}

.ms-style-card-head span {
  color: #8a908c;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ms-style-card-head strong {
  font-size: 12px;
}

.ms-style-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--ms-soft-line);
}

.ms-style-row span {
  color: #8b918d;
  font-size: 10px;
  font-weight: 600;
}

.ms-style-row p {
  margin: 0;
  color: #383d3a;
  font-size: 12px;
}

.ms-style-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 22px;
  background: #f2fbf7;
  color: var(--ms-mint-dark);
  font-size: 10px;
  font-weight: 650;
}

.ms-style-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ms-mint);
}

.ms-assurance {
  padding: 112px 0;
  background: var(--ms-ink);
  color: white;
}

.ms-section-heading-light {
  margin-left: 0;
  text-align: left;
}

.ms-section-heading-light .ms-kicker {
  color: #8fd5b4;
}

.ms-section-heading-light h2 {
  color: white;
}

.ms-assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.ms-assurance-grid article {
  padding: 31px 30px 0 0;
}

.ms-assurance-grid strong {
  display: block;
  min-height: 66px;
  color: #93deb9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ms-assurance-grid h3 {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 650;
}

.ms-assurance-grid p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.ms-faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 100px;
}

.ms-faq-layout .ms-section-heading {
  margin: 0;
  text-align: left;
}

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

.ms-faq-list details {
  border-bottom: 1px solid var(--ms-line);
}

.ms-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

.ms-faq-list summary::-webkit-details-marker {
  display: none;
}

.ms-faq-list summary span {
  color: #7c827e;
  font-size: 19px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.ms-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.ms-faq-list details p {
  max-width: 620px;
  margin: -5px 40px 24px 0;
  color: var(--ms-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ms-final-cta {
  padding: 120px 0;
  border-bottom: 1px solid var(--ms-line);
  background:
    radial-gradient(circle at center, rgba(55, 201, 139, 0.08), transparent 45%),
    var(--ms-wash);
  text-align: center;
}

.ms-final-cta > .ms-shell {
  max-width: 820px;
}

.ms-final-cta > .ms-shell > p {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.ms-footer {
  padding: 66px 0 26px;
  background: white;
}

.ms-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.ms-footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.ms-footer-grid strong {
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ms-footer-grid a:not(.ms-brand),
.ms-footer-grid p {
  margin: 0;
  color: #747a76;
  font-size: 12px;
  line-height: 1.65;
  text-decoration: none;
}

.ms-footer-grid > div:first-child p {
  max-width: 280px;
  margin-top: 8px;
}

.ms-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 21px;
  border-top: 1px solid var(--ms-soft-line);
  color: #929793;
  font-size: 10px;
}

@media (max-width: 980px) {
  .ms-product-window {
    overflow-x: auto;
  }

  .ms-workspace {
    min-width: 850px;
  }

  .ms-feature-grid,
  .ms-assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ms-workflow {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
  }

  .ms-workflow li:nth-child(3)::after {
    display: none;
  }

  .ms-specialty-grid,
  .ms-faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ms-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .ms-footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .ms-shell {
    width: min(100% - 32px, var(--ms-shell));
  }

  .ms-menu {
    display: flex;
  }

  .ms-nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--ms-line);
    border-radius: 12px;
    background: white;
    box-shadow: 0 20px 50px rgba(16, 18, 17, 0.14);
  }

  .ms-nav-links.is-open {
    display: flex;
  }

  .ms-nav-links > a:not(.ms-button) {
    padding: 12px;
  }

  .ms-nav-cta {
    margin-top: 7px;
  }

  .ms-hero {
    padding: 78px 0 72px;
  }

  .ms-hero h1 br {
    display: none;
  }

  .ms-trust {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .ms-trust span + span::before {
    display: none;
  }

  .ms-product-window {
    margin-top: 56px;
    overflow: hidden;
  }

  .ms-browser-bar {
    grid-template-columns: 62px 1fr;
  }

  .ms-saved {
    display: none;
  }

  .ms-workspace {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    min-height: 500px;
  }

  .ms-context,
  .ms-checks {
    display: none;
  }

  .ms-draft {
    padding: 25px 20px 34px;
  }

  .ms-draft-head {
    align-items: flex-start;
  }

  .ms-letter {
    font-size: 11px;
  }

  .ms-section,
  .ms-assurance,
  .ms-final-cta {
    padding: 82px 0;
  }

  .ms-section-heading {
    margin-bottom: 42px;
  }

  .ms-feature-grid,
  .ms-assurance-grid {
    grid-template-columns: 1fr;
  }

  .ms-feature {
    min-height: auto;
  }

  .ms-feature-icon {
    margin-bottom: 34px;
  }

  .ms-workflow {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .ms-workflow li {
    padding: 25px 0;
    border-bottom: 1px solid #d9ddda;
  }

  .ms-workflow li::after {
    display: none;
  }

  .ms-workflow li > span {
    margin-bottom: 20px;
  }

  .ms-specialty-grid {
    gap: 46px;
  }

  .ms-assurance-grid article {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ms-assurance-grid strong {
    min-height: auto;
    margin-bottom: 25px;
  }

  .ms-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .ms-footer-grid > div:first-child,
  .ms-footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

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

@media (prefers-reduced-motion: reduce) {
  .maxscribe-page *,
  .maxscribe-page *::before,
  .maxscribe-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
