:root {
  --wine: #6f1f2f;
  --wine-dark: #47111d;
  --slate: #38434d;
  --slate-dark: #202931;
  --sand: #eee6d8;
  --sand-soft: #f8f4ed;
  --paper: #ffffff;
  --ink: #302f31;
  --muted: #706d6c;
  --line: #ddd8d1;
  --white: #ffffff;
  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 18px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--white);
  background: var(--wine);
  font-weight: 850;
}

.skip-link:focus {
  top: 18px;
}

.header-shell,
.hero-shell,
.section,
.final-shell,
.footer-shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(32, 41, 49, 0.98);
  border-bottom: 1px solid #4a5660;
  backdrop-filter: blur(15px);
}

.header-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: 255px 1fr 145px;
  gap: 32px;
  align-items: center;
}

.brand-lockup,
.footer-lockup {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  padding: 4px;
  background: var(--wine);
  border: 1px solid #a95367;
  transform: rotate(-3deg);
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  min-width: 185px;
  display: flex;
  align-items: center;
  padding: 7px 14px;
  background: #11171c;
  border-bottom: 3px solid var(--wine);
}

.brand-name img {
  width: auto;
  height: 30px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #b6bec5;
  font-size: 12px;
  font-weight: 800;
}

.site-nav a {
  padding: 25px 0 23px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  padding: 11px 14px;
  color: var(--white);
  background: var(--wine);
  font-size: 12px;
  font-weight: 900;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #8f2b40;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #59656f;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--paper) 0 72%, var(--sand-soft) 72% 100%);
}

.hero-shell {
  display: grid;
  grid-template-columns: 0.72fr 0.28fr;
  gap: 55px;
  padding-top: 84px;
  padding-bottom: 74px;
}

.hero-head {
  grid-column: 1;
  max-width: 950px;
}

.eyebrow,
.section-label {
  margin: 0 0 15px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--slate-dark);
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 820px;
  margin: 28px 0 0;
  color: #5f6265;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  display: grid;
  gap: 13px;
}

.primary-button,
.secondary-button {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  font-weight: 900;
}

.primary-button {
  color: var(--white);
  background: var(--wine);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--wine-dark);
}

.primary-button b {
  font-size: 20px;
}

.secondary-button {
  color: var(--slate-dark);
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-visual {
  grid-column: 1 / -1;
  margin: 38px 0 0;
}

.hero-visual img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.hero-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.hero-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border-top: 2px solid var(--slate-dark);
}

.hero-index article {
  min-height: 125px;
  padding: 20px 24px 0 0;
  border-right: 1px solid var(--line);
}

.hero-index article:not(:first-child) {
  padding-left: 24px;
}

.hero-index span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
}

.hero-index strong {
  display: block;
  margin-top: 12px;
  color: var(--slate-dark);
  font-size: 17px;
}

.hero-index p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding-top: 106px;
  padding-bottom: 106px;
}

.section-header {
  display: grid;
  grid-template-columns: 80px 1fr 0.72fr;
  gap: 30px;
  align-items: start;
}

.section-number {
  color: var(--wine);
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
}

.section-header h2,
.source-copy h2,
.mismatch-copy h2,
.final-copy h2 {
  margin: 0;
  color: var(--slate-dark);
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.section-header > p {
  margin: 6px 0 0;
  color: var(--muted);
}

.client-entry {
  background: var(--paper);
}

.entry-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 240px;
  margin-top: 50px;
  border-top: 2px solid var(--slate-dark);
}

.entry-panel > div {
  min-height: 135px;
  display: grid;
  align-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.entry-panel span {
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.entry-panel strong {
  margin-top: 7px;
  color: var(--slate-dark);
  font-size: 15px;
}

.entry-panel > a {
  min-height: 135px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px;
  color: var(--white);
  background: var(--wine);
  font-weight: 900;
}

.version-section {
  background: var(--sand-soft);
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.version-grid article {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 30px;
  background: var(--paper);
  border-top: 4px solid var(--slate);
}

.version-grid article:nth-child(2) {
  border-top-color: var(--wine);
}

.version-grid article:nth-child(3) {
  border-top-color: var(--copper, #9a6a42);
}

.version-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.version-top span {
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.version-top b {
  color: var(--slate-dark);
  font-size: 54px;
  line-height: 1;
}

.version-grid h3 {
  margin: 48px 0 12px;
  color: var(--slate-dark);
  font-size: 27px;
}

.version-grid > article > p {
  margin: 0;
  color: var(--muted);
}

.version-grid dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.version-grid dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.version-grid dt {
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
}

.version-grid dd {
  margin: 0;
  color: var(--slate-dark);
  font-size: 11px;
  font-weight: 800;
}

.version-grid > article > a {
  width: max-content;
  align-self: end;
  margin-top: 25px;
  padding-bottom: 3px;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
}

.source-section {
  background: var(--paper);
}

.source-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
  align-items: center;
}

.source-copy .section-number {
  display: block;
  margin-bottom: 12px;
}

.source-lead {
  margin: 22px 0 0;
  color: var(--slate-dark);
  font-size: 20px;
  font-weight: 680;
  line-height: 1.7;
}

.source-points {
  margin-top: 31px;
  border-top: 2px solid var(--slate-dark);
}

.source-points article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.source-points article > b {
  color: var(--wine);
  font-size: 11px;
}

.source-points h3 {
  margin: -4px 0 7px;
  color: var(--slate-dark);
  font-size: 18px;
}

.source-points p {
  margin: 0;
  color: var(--muted);
}

.source-visual {
  margin: 0;
  padding: 22px;
  background: var(--sand-soft);
  border: 1px solid var(--line);
}

.source-visual img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.source-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
}

.install-section {
  background: var(--slate-dark);
  color: var(--white);
}

.install-section .section-number {
  color: #bb6477;
}

.install-section .section-label {
  color: #d69aa8;
}

.install-section .section-header h2 {
  color: var(--white);
}

.install-section .section-header > p {
  color: #aab2b8;
}

.install-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #4c5862;
  border-left: 1px solid #4c5862;
}

.install-flow li {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid #4c5862;
  border-bottom: 1px solid #4c5862;
}

.install-flow li:nth-child(2),
.install-flow li:nth-child(4) {
  background: rgba(111, 31, 47, 0.18);
}

.install-flow span {
  color: #d69aa8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.install-flow h3 {
  margin: 55px 0 10px;
  font-size: 19px;
}

.install-flow p {
  margin: 0;
  color: #aab2b8;
  font-size: 13px;
}

.install-download {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 17px 23px;
  color: var(--white);
  background: var(--wine);
  font-weight: 900;
}

.install-download b {
  font-size: 20px;
}

.update-section {
  background: var(--sand-soft);
}

.update-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.update-columns article {
  min-height: 430px;
  padding: 32px 0;
  border-top: 3px solid var(--slate);
  border-bottom: 1px solid var(--line);
}

.update-columns article:last-child {
  border-top-color: var(--wine);
}

.update-columns span {
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.update-columns h3 {
  margin: 50px 0 12px;
  color: var(--slate-dark);
  font-size: 29px;
}

.update-columns > article > p {
  margin: 0;
  color: var(--muted);
}

.update-columns ol {
  margin: 30px 0 0;
  padding-left: 22px;
  color: var(--slate-dark);
}

.update-columns li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.mismatch-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  background: var(--paper);
}

.mismatch-copy .section-number {
  display: block;
  margin-bottom: 12px;
}

.mismatch-copy > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
}

.mismatch-table {
  border-top: 2px solid var(--slate-dark);
}

.mismatch-table article {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.mismatch-table strong {
  color: var(--slate-dark);
  font-size: 13px;
}

.mismatch-table span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
}

.mismatch-table p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.content-section {
  background: var(--sand-soft);
}

.content-item {
  max-width: 850px;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 25px;
  align-items: center;
  margin: 50px 0 0 auto;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.content-item img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.content-item span {
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.content-item h3 {
  margin: 7px 0 9px;
  color: var(--slate-dark);
  font-size: 20px;
}

.content-item p {
  margin: 0;
  color: var(--muted);
}

.repair-section {
  background: var(--paper);
}

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

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

.repair-grid article:nth-child(2),
.repair-grid article:nth-child(4),
.repair-grid article:nth-child(6) {
  background: var(--sand-soft);
}

.repair-grid span {
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
}

.repair-grid h3 {
  margin: 27px 0 9px;
  color: var(--slate-dark);
  font-size: 18px;
}

.repair-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  background: var(--sand-soft);
}

.faq-list {
  margin-top: 50px;
  border-top: 2px solid var(--slate-dark);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 55px 24px 0;
  color: var(--slate-dark);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  right: 4px;
  top: 20px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--wine);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

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

.faq-list p {
  margin: -2px 0 23px;
  color: var(--muted);
}

.related-section {
  background: var(--paper);
}

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

.related-links a {
  min-height: 145px;
  display: grid;
  align-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-links a:hover,
.related-links a:focus-visible {
  background: var(--sand-soft);
}

.related-links strong {
  color: var(--wine);
  font-size: 15px;
}

.related-links span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.final-section {
  background: var(--paper);
}

.final-shell {
  min-height: 280px;
  display: grid;
  grid-template-columns: 105px 1fr 250px;
  gap: 42px;
  align-items: center;
  padding: 42px 0;
  border-top: 4px solid var(--wine);
  border-bottom: 1px solid var(--line);
}

.final-index {
  width: 88px;
  height: 108px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--white);
  background: var(--slate-dark);
}

.final-index span {
  font-size: 40px;
  font-weight: 950;
  line-height: 1;
}

.final-index small {
  margin-top: 4px;
  color: #d69aa8;
  font-size: 8px;
  font-weight: 900;
}

.final-copy p {
  margin: 0 0 9px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.final-copy h2 {
  color: var(--slate-dark);
  font-size: clamp(28px, 3.5vw, 43px);
}

.final-copy span {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
}

.final-button {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--wine);
  font-weight: 900;
}

.final-button b {
  font-size: 20px;
}

.site-footer {
  padding: 52px 0 32px;
  color: #adb5bb;
  background: var(--slate-dark);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 55px;
}

.footer-icon {
  width: 45px;
  height: 45px;
  padding: 4px;
  background: var(--wine);
}

.footer-lockup > span {
  min-width: 180px;
  display: flex;
  align-items: center;
  padding: 6px 13px;
  background: #11171c;
  border-bottom: 3px solid var(--wine);
}

.footer-lockup > span img {
  width: auto;
  height: 28px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 760px;
  margin: 17px 0 0;
  color: #747f87;
  font-size: 11px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 25px;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin: 5px 0 0;
  padding-top: 21px;
  color: #56616a;
  border-top: 1px solid #414c55;
  font-size: 11px;
}

.mobile-download {
  display: none;
}

@media (max-width: 1040px) {
  .header-shell {
    grid-template-columns: 240px 1fr 135px;
  }

  .site-nav {
    gap: 17px;
  }

  .version-grid {
    gap: 16px;
  }

  .install-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .repair-grid,
  .related-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 72px;
  }

  .header-shell {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    background: var(--slate-dark);
    border: 1px solid #4c5862;
    box-shadow: 0 22px 55px rgba(32, 41, 49, 0.28);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 11px 12px;
  }

  .hero {
    background: var(--paper);
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual,
  .hero-index {
    grid-column: 1;
  }

  .section-header {
    grid-template-columns: 70px 1fr;
  }

  .section-header > p {
    grid-column: 2;
  }

  .entry-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .entry-panel > a {
    grid-column: 1 / -1;
    min-height: 75px;
  }

  .version-grid {
    grid-template-columns: 1fr;
  }

  .version-grid article {
    min-height: 0;
  }

  .source-layout,
  .mismatch-section {
    grid-template-columns: 1fr;
  }

  .final-shell {
    grid-template-columns: 100px 1fr;
  }

  .final-button {
    grid-column: 2;
    width: 250px;
  }

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

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 70px;
  }

  .header-shell,
  .hero-shell,
  .section,
  .final-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-mark img {
    width: 35px;
    height: 35px;
  }

  .brand-name {
    min-width: 160px;
  }

  .brand-name img {
    height: 27px;
  }

  .hero-shell {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-index {
    grid-template-columns: 1fr;
  }

  .hero-index article,
  .hero-index article:not(:first-child) {
    min-height: 0;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-number {
    font-size: 43px;
  }

  .section-header > p {
    grid-column: auto;
  }

  .section-header h2,
  .source-copy h2,
  .mismatch-copy h2 {
    font-size: clamp(30px, 10vw, 41px);
  }

  .entry-panel {
    grid-template-columns: 1fr;
  }

  .entry-panel > a {
    grid-column: auto;
  }

  .source-points article {
    grid-template-columns: 36px 1fr;
    gap: 13px;
  }

  .install-flow,
  .update-columns,
  .repair-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .install-flow li {
    min-height: 0;
  }

  .update-columns {
    gap: 22px;
  }

  .update-columns article {
    min-height: 0;
  }

  .mismatch-table article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .content-item {
    grid-template-columns: 75px 1fr;
    gap: 15px;
  }

  .content-item img {
    width: 65px;
    height: 65px;
  }

  .repair-grid article {
    min-height: 0;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-shell {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .final-index {
    width: 76px;
    height: 90px;
  }

  .final-button {
    grid-column: auto;
    width: 100%;
  }

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

  .mobile-download {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    color: var(--white);
    background: rgba(32, 41, 49, 0.97);
    border-top: 1px solid #4a5660;
  }

  .mobile-download > div {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-download img {
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  .mobile-download small,
  .mobile-download strong {
    display: block;
    line-height: 1.2;
  }

  .mobile-download small {
    color: #78848c;
    font-size: 10px;
  }

  .mobile-download strong {
    margin-top: 3px;
    font-size: 13px;
  }

  .mobile-download > a {
    padding: 11px 15px;
    color: var(--white);
    background: var(--wine);
    font-size: 13px;
    font-weight: 900;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
