/* Marketing website service page, reference-led redesign, 2026-07. */
:root {
  --mw-paper: #f7f7f5;
  --mw-white: #ffffff;
  --mw-ink: #131a21;
  --mw-copy: #5d6973;
  --mw-muted: #8d969e;
  --mw-line: rgba(19, 26, 33, .13);
  --mw-dark: #0a0c0f;
  --mw-dark-soft: #12161a;
  --mw-coral: #ee654f;
  --mw-coral-dark: #d84f3b;
  --mw-warm: #c9a66f;
  --mw-shadow: 0 28px 70px rgba(14, 20, 25, .14);
}

html {
  scroll-behavior: smooth;
}

body.marketing-site-page {
  margin: 0;
  background: var(--mw-paper);
  color: var(--mw-ink);
}

.marketing-site-page .header.site-header-compact {
  background: rgba(255, 255, 255, .92) !important;
  border-bottom: 1px solid rgba(19, 26, 33, .08) !important;
  box-shadow: 0 10px 32px rgba(20, 25, 30, .05) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.marketing-site-page .header.site-header-compact .logo img {
  filter: brightness(0) saturate(100%) opacity(.86) !important;
}

.marketing-site-page .header.site-header-compact .nav-compact .title > a {
  color: var(--mw-ink) !important;
  text-shadow: none !important;
}

.marketing-site-page .header.site-header-compact .edit-search {
  filter: brightness(0) saturate(100%) opacity(.74) !important;
}

.marketing-site-page .header.site-header-compact .edit-handle {
  border-color: rgba(19, 26, 33, .26) !important;
  background: rgba(255, 255, 255, .82) !important;
  color: var(--mw-ink) !important;
}

.marketing-site-page .header.site-header-compact .edit-handle:hover {
  border-color: var(--mw-ink) !important;
  background: var(--mw-ink) !important;
  color: #fff !important;
}

.marketing-site-page .full-icontact-cover {
  display: none;
}

.mw-page,
.mw-page * {
  box-sizing: border-box;
}

.mw-page {
  position: relative;
  overflow: clip;
  padding-top: 80px;
  background: var(--mw-paper);
  color: var(--mw-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  letter-spacing: 0;
}

.mw-page a {
  color: inherit;
  text-decoration: none;
}

.mw-page button,
.mw-page input {
  font: inherit;
}

.mw-page img {
  display: block;
  max-width: 100%;
}

.mw-shell {
  width: calc(100% - 96px);
  max-width: 1500px;
  margin: 0 auto;
}

.mw-kicker,
.mw-eyebrow,
.mw-breadcrumb {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mw-kicker,
.mw-eyebrow {
  color: var(--mw-coral);
}

.mw-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mw-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mw-coral);
  box-shadow: 0 0 0 6px rgba(238, 101, 79, .12);
}

.mw-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

.mw-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mw-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 7px 8px 7px 24px;
  border: 1px solid var(--mw-ink);
  border-radius: 30px;
  background: var(--mw-ink);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform .35s ease, background-color .35s ease, color .35s ease, border-color .35s ease;
}

.mw-button i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--mw-ink);
  font-size: 20px;
  font-style: normal;
  transition: transform .35s ease;
}

.mw-button:hover {
  transform: translateY(-3px);
  background: var(--mw-coral);
  border-color: var(--mw-coral);
}

.mw-button:hover i {
  transform: translateX(3px);
}

.mw-title-hero {
  position: relative;
  padding: 66px 0 76px;
  background: #fff;
  border-bottom: 1px solid var(--mw-line);
}

.mw-title-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36%;
  height: 3px;
  background: var(--mw-coral);
  transform-origin: right;
}

.mw-breadcrumb {
  color: var(--mw-muted);
}

.mw-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: end;
  gap: 70px;
  margin-top: 60px;
}

.mw-title-copy h1 {
  margin: 28px 0 24px;
  color: var(--mw-ink);
  font-size: 74px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.mw-title-lead {
  margin: 0;
  color: var(--mw-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.45;
}

.mw-title-action {
  padding-bottom: 8px;
}

.mw-title-action > p {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--mw-copy);
  font-size: 17px;
  line-height: 1.9;
}

.mw-title-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 66%;
  margin-top: 66px;
  border-top: 1px solid var(--mw-line);
}

.mw-title-facts span {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding-right: 28px;
  color: var(--mw-copy);
  font-size: 15px;
}

.mw-title-facts b {
  color: var(--mw-coral);
  font-size: 13px;
}

.mw-dark-section {
  position: relative;
  background: var(--mw-dark);
  color: #fff;
}

.mw-cinema {
  min-height: 880px;
  overflow: hidden;
}

.mw-cinema-backdrop {
  position: absolute;
  inset: -80px;
  opacity: .16;
  background: url("/templets/foxl/images/marketing/yxxwz-conversion-studio-v1.webp") center / cover no-repeat;
  filter: blur(34px) saturate(.7);
  transform: scale(1.08);
}

.mw-cinema-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 8, .62);
}

.mw-cinema-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .82fr);
  align-items: center;
  gap: 64px;
  min-height: 880px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.mw-cinema-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #090b0d;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .42);
  transform-style: preserve-3d;
}

.mw-cinema-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.mw-cinema-media.is-visible img {
  transform: scale(1.015);
}

.mw-cinema-media::after,
.mw-results-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent 46%);
}

.mw-cinema-media figcaption,
.mw-results-media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}

.mw-cinema-media figcaption span,
.mw-results-media figcaption span {
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 700;
}

.mw-cinema-media figcaption strong,
.mw-results-media figcaption strong {
  max-width: 370px;
  font-size: 17px;
  font-weight: 500;
  text-align: right;
}

.mw-cinema-copy .mw-kicker,
.mw-results-head .mw-kicker {
  color: #f18c78;
}

.mw-cinema-copy h2,
.mw-results-head h2 {
  margin: 22px 0 30px;
  color: #fff;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.mw-cinema-copy h2 {
  font-size: 50px;
}

.mw-cinema-copy > p:not(.mw-kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.9;
}

.mw-cinema-copy ul {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.mw-cinema-copy li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mw-cinema-copy li b {
  color: #fff;
  font-size: 15px;
}

.mw-cinema-copy li span {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.7;
}

.mw-method {
  padding: 146px 0 160px;
  background: #f8f8f6;
}

.mw-method-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 96px;
}

.mw-method-head .mw-kicker {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.mw-method-head h2,
.mw-cases-head h2,
.mw-final-inner h2 {
  margin: 0;
  color: var(--mw-ink);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}

.mw-method-head > p:last-child {
  margin: 0;
  color: var(--mw-copy);
  font-size: 17px;
  line-height: 1.9;
}

.mw-story {
  display: grid;
  grid-template-columns: minmax(360px, .68fr) minmax(0, 1.32fr);
  gap: 72px;
  align-items: start;
}

.mw-story-list,
.mw-benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-story-item {
  border-top: 1px solid var(--mw-line);
}

.mw-story-item:last-child {
  border-bottom: 1px solid var(--mw-line);
}

.mw-story-item button,
.mw-benefit-list button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.mw-story-item button {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 154px;
  padding: 20px 0;
}

.mw-story-item button > b {
  align-self: start;
  padding-top: 7px;
  color: var(--mw-muted);
  font-size: 13px;
}

.mw-story-item button span {
  display: grid;
  gap: 10px;
}

.mw-story-item button strong {
  color: var(--mw-ink);
  font-size: 25px;
  font-weight: 500;
}

.mw-story-item button em {
  color: var(--mw-copy);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.mw-story-item button > i {
  color: var(--mw-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  transition: color .35s ease, transform .35s ease;
}

.mw-story-item.is-active button > b,
.mw-story-item.is-active button > i {
  color: var(--mw-coral);
}

.mw-story-item.is-active button > i {
  transform: translateX(-8px);
}

.mw-story-visual {
  position: sticky;
  top: 116px;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(19, 26, 33, .08);
  border-radius: 8px;
  background: #ecece8;
  box-shadow: var(--mw-shadow);
}

.mw-story-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mw-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 24, .62), transparent 48%);
}

.mw-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translate3d(0, 0, 0);
  transition: transform 1s cubic-bezier(.22, 1, .36, 1), filter .6s ease;
}

.mw-story[data-active="1"] .mw-story-image img {
  transform: scale(1.13) translate3d(-2%, 1%, 0);
}

.mw-story[data-active="2"] .mw-story-image img {
  transform: scale(1.16) translate3d(2%, -1%, 0);
}

.mw-story[data-active="3"] .mw-story-image img {
  transform: scale(1.1) translate3d(0, -2%, 0);
}

.mw-story-caption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  color: #fff;
}

.mw-story-caption span {
  align-self: start;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 700;
}

.mw-story-caption strong {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.35;
}

.mw-story-caption p {
  grid-column: 2;
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.7;
}

.mw-story-markers {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 26px;
  display: flex;
  gap: 7px;
}

.mw-story-markers i {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .34);
  transition: width .4s ease, background-color .4s ease;
}

.mw-story[data-active="0"] .mw-story-markers i:nth-child(1),
.mw-story[data-active="1"] .mw-story-markers i:nth-child(2),
.mw-story[data-active="2"] .mw-story-markers i:nth-child(3),
.mw-story[data-active="3"] .mw-story-markers i:nth-child(4) {
  width: 42px;
  background: var(--mw-coral);
}

.mw-results {
  padding: 138px 0 154px;
}

.mw-results::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 92px 92px;
}

.mw-results .mw-shell {
  position: relative;
  z-index: 1;
}

.mw-results-head {
  max-width: 850px;
  margin-bottom: 76px;
}

.mw-results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(400px, .78fr);
  gap: 70px;
  align-items: stretch;
}

.mw-results-media {
  position: relative;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: #050608;
}

.mw-results-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1s cubic-bezier(.22, 1, .36, 1), filter .7s ease;
}

.mw-results-grid[data-active="1"] .mw-results-media img {
  transform: scale(1.09) translate3d(-1%, 0, 0);
}

.mw-results-grid[data-active="2"] .mw-results-media img {
  transform: scale(1.12) translate3d(1%, -1%, 0);
}

.mw-results-grid[data-active="3"] .mw-results-media img {
  transform: scale(1.07) translate3d(0, 1%, 0);
}

.mw-benefit-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.mw-benefit-list li {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.mw-benefit-list button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  min-height: 146px;
  align-items: center;
  padding: 20px 0;
}

.mw-benefit-list button > b {
  align-self: start;
  padding-top: 7px;
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
}

.mw-benefit-list button span {
  display: grid;
  gap: 12px;
}

.mw-benefit-list button strong {
  color: rgba(255, 255, 255, .62);
  font-size: 25px;
  font-weight: 500;
  transition: color .35s ease, transform .35s ease;
}

.mw-benefit-list button em {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height .45s ease, opacity .4s ease, transform .4s ease;
}

.mw-benefit-list li.is-active button > b {
  color: #f18c78;
}

.mw-benefit-list li.is-active button strong {
  color: #fff;
  transform: translateX(8px);
}

.mw-benefit-list li.is-active button em {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

.mw-cases {
  padding: 148px 0 156px;
  background: #f8f8f6;
}

.mw-cases-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 72px;
}

.mw-cases-head .mw-kicker {
  margin-bottom: 22px;
}

.mw-case-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mw-case-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--mw-line);
  border-radius: 50%;
  background: #fff;
  color: var(--mw-ink);
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease, transform .3s ease;
}

.mw-case-controls button:hover {
  transform: translateY(-2px);
  background: var(--mw-ink);
  color: #fff;
}

.mw-case-controls a {
  margin-left: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--mw-ink);
  font-size: 14px;
  font-weight: 700;
}

.mw-case-rail {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--mw-coral) rgba(19, 26, 33, .09);
}

.mw-case-rail::-webkit-scrollbar {
  height: 4px;
}

.mw-case-rail::-webkit-scrollbar-track {
  background: rgba(19, 26, 33, .09);
}

.mw-case-rail::-webkit-scrollbar-thumb {
  background: var(--mw-coral);
}

.mw-case-card {
  flex: 0 0 390px;
  scroll-snap-align: start;
}

.mw-case-card > a {
  display: block;
}

.mw-case-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border-radius: 8px;
  background: #e8e8e5;
}

.mw-case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 15, .36);
  opacity: 0;
  transition: opacity .4s ease;
}

.mw-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.mw-case-image span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}

.mw-case-card a:hover .mw-case-image::after,
.mw-case-card a:hover .mw-case-image span {
  opacity: 1;
}

.mw-case-card a:hover .mw-case-image img {
  transform: scale(1.05);
}

.mw-case-card a:hover .mw-case-image span {
  transform: translateY(0);
}

.mw-case-meta {
  position: relative;
  padding: 24px 44px 0 2px;
}

.mw-case-meta p {
  margin: 0 0 9px;
  color: var(--mw-muted);
  font-size: 12px;
}

.mw-case-meta h3 {
  margin: 0;
  color: var(--mw-ink);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
}

.mw-case-meta i {
  position: absolute;
  top: 28px;
  right: 4px;
  color: var(--mw-coral);
  font-size: 20px;
  font-style: normal;
}

.mw-final-cta {
  padding: 118px 0;
  background: var(--mw-coral);
  color: #fff;
}

.mw-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.mw-final-inner .mw-kicker {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .68);
}

.mw-final-inner h2 {
  color: #fff;
}

.mw-final-inner > div > span {
  display: block;
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.8;
}

.mw-button-light {
  flex: 0 0 auto;
  border-color: #fff;
  background: #fff;
  color: var(--mw-ink) !important;
}

.mw-button-light i {
  background: var(--mw-ink);
  color: #fff;
}

.mw-button-light:hover {
  border-color: var(--mw-ink);
  background: var(--mw-ink);
  color: #fff !important;
}

@media (max-width: 1280px) {
  .mw-shell {
    width: calc(100% - 56px);
  }

  .mw-title-copy h1 {
    font-size: 64px;
  }

  .mw-title-lead {
    font-size: 28px;
  }

  .mw-cinema-grid,
  .mw-results-grid {
    gap: 44px;
  }

  .mw-cinema-copy h2,
  .mw-results-head h2,
  .mw-method-head h2,
  .mw-cases-head h2,
  .mw-final-inner h2 {
    font-size: 48px;
  }

  .mw-story {
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    gap: 42px;
  }

  .mw-story-visual,
  .mw-results-media {
    min-height: 590px;
  }

  .mw-case-card {
    flex-basis: 350px;
  }
}

@media (max-width: 1024px) {
  .mw-page {
    padding-top: 70px;
  }

  .mw-title-grid,
  .mw-method-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mw-title-grid {
    margin-top: 44px;
  }

  .mw-title-facts {
    width: 100%;
  }

  .mw-cinema-grid,
  .mw-results-grid {
    grid-template-columns: 1fr;
  }

  .mw-cinema-grid {
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .mw-cinema-copy {
    max-width: 720px;
  }

  .mw-method-head .mw-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .mw-story {
    grid-template-columns: 1fr;
  }

  .mw-story-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-story-item:nth-child(odd) {
    border-right: 1px solid var(--mw-line);
  }

  .mw-story-item button {
    min-height: 136px;
    padding: 18px;
  }

  .mw-story-visual {
    position: relative;
    top: auto;
  }

  .mw-results-grid {
    grid-template-columns: 1fr;
  }

  .mw-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-benefit-list li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .14);
  }

  .mw-benefit-list button {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-behavior: auto;
  }

  .mw-page {
    padding-top: 62px;
  }

  .mw-shell {
    width: calc(100% - 32px);
  }

  .mw-title-hero {
    padding: 36px 0 52px;
  }

  .mw-breadcrumb {
    font-size: 11px;
  }

  .mw-title-grid {
    margin-top: 38px;
  }

  .mw-title-copy h1 {
    margin: 20px 0 18px;
    font-size: 43px;
    line-height: 1.16;
  }

  .mw-title-lead {
    font-size: 23px;
    line-height: 1.5;
  }

  .mw-title-action > p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
  }

  .mw-button {
    width: 100%;
  }

  .mw-title-facts {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .mw-title-facts span {
    min-height: 54px;
    border-bottom: 1px solid var(--mw-line);
  }

  .mw-cinema,
  .mw-cinema-grid {
    min-height: 0;
  }

  .mw-cinema-grid {
    gap: 44px;
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .mw-cinema-media {
    aspect-ratio: 4 / 3;
  }

  .mw-cinema-media figcaption,
  .mw-results-media figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: block;
  }

  .mw-cinema-media figcaption span,
  .mw-results-media figcaption span {
    display: block;
    margin-bottom: 7px;
  }

  .mw-cinema-media figcaption strong,
  .mw-results-media figcaption strong {
    display: block;
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
  }

  .mw-method-head h2,
  .mw-cases-head h2,
  .mw-final-inner h2 {
    font-size: 36px;
    line-height: 1.24;
  }

  .mw-cinema-copy h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .mw-results-head h2 {
    font-size: 30px;
    line-height: 1.34;
  }

  .mw-cinema-copy > p:not(.mw-kicker) {
    font-size: 15px;
  }

  .mw-cinema-copy li {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .mw-method,
  .mw-results,
  .mw-cases {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .mw-method-head,
  .mw-results-head,
  .mw-cases-head {
    margin-bottom: 48px;
  }

  .mw-method-head > p:last-child {
    font-size: 15px;
    line-height: 1.8;
  }

  .mw-story-list,
  .mw-benefit-list {
    display: block;
  }

  .mw-story-item:nth-child(odd),
  .mw-benefit-list li:nth-child(odd) {
    border-right: 0;
  }

  .mw-story-item button {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 122px;
    padding: 14px 0;
  }

  .mw-story-item button > i {
    display: none;
  }

  .mw-story-item button strong,
  .mw-benefit-list button strong {
    font-size: 21px;
  }

  .mw-story-visual,
  .mw-results-media {
    min-height: 440px;
  }

  .mw-story-visual {
    order: -1;
  }

  .mw-story-caption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .mw-story-caption strong {
    font-size: 20px;
  }

  .mw-story-caption p {
    grid-column: auto;
    font-size: 12px;
  }

  .mw-results-media {
    min-height: 390px;
  }

  .mw-benefit-list button {
    min-height: 118px;
    padding: 16px 0;
  }

  .mw-cases-head {
    display: block;
  }

  .mw-case-controls {
    margin-top: 30px;
  }

  .mw-case-card {
    flex-basis: 82vw;
  }

  .mw-case-meta h3 {
    font-size: 20px;
  }

  .mw-final-cta {
    padding: 80px 0;
  }

  .mw-final-inner {
    display: grid;
    gap: 36px;
  }
}

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

  .mw-reveal {
    opacity: 1;
    transform: none;
  }
}
