:root {
  --ink: #17203d;
  --ink-soft: #53607d;
  --blue: #3157d5;
  --blue-deep: #183497;
  --blue-pale: #e9efff;
  --orange: #ff7247;
  --cream: #fbf8ef;
  --paper: #ffffff;
  --line: #dce2ef;
  --dark: #101830;
  --dark-soft: #1a2546;
  --success: #17866d;
  --shadow: 0 24px 70px rgba(29, 45, 91, 0.12);
  --radius: 22px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  transition: top 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 32, 61, 0.08);
  background: rgba(251, 248, 239, 0.92);
  backdrop-filter: blur(16px);
}

.header-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: 210px 1fr 150px;
  align-items: center;
  gap: 24px;
}

.brand {
  width: max-content;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5775;
}

.site-nav a {
  position: relative;
  padding: 27px 0 24px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  border-radius: 20px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-button {
  justify-self: end;
  min-width: 132px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 25px rgba(49, 87, 213, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-button:hover,
.header-button:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 104px 20px 116px;
  background:
    radial-gradient(circle at 50% 20%, rgba(87, 128, 255, 0.23), transparent 35%),
    linear-gradient(180deg, #f6f8ff 0%, var(--cream) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(49, 87, 213, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 87, 213, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero-label,
.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(49, 87, 213, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 114, 71, 0.13);
}

.hero h1 {
  margin: 24px 0 4px;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-subtitle {
  margin: 0;
  color: var(--blue);
  font-size: clamp(22px, 3.8vw, 38px);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.hero-description {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin-top: 38px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: 16px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  min-width: 292px;
  gap: 14px;
  padding: 10px 28px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 38px rgba(49, 87, 213, 0.28);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-3px);
  background: var(--blue-deep);
  box-shadow: 0 22px 42px rgba(49, 87, 213, 0.34);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-size: 21px;
  font-weight: 900;
}

.primary-button > span:last-child {
  display: grid;
  text-align: left;
}

.primary-button b {
  line-height: 1.25;
}

.primary-button small {
  margin-top: 2px;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 650;
}

.secondary-button {
  min-width: 180px;
  padding: 0 24px;
  border: 1px solid rgba(23, 32, 61, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(49, 87, 213, 0.42);
  background: #fff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #53617d;
  font-size: 14px;
  font-weight: 700;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 11px;
  font-style: normal;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(49, 87, 213, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 114, 71, 0.12);
}

.hero-orbit-one {
  left: -110px;
  top: 40px;
  width: 360px;
  height: 360px;
}

.hero-orbit-one::before {
  right: 48px;
  top: 28px;
}

.hero-orbit-two {
  right: -170px;
  bottom: -130px;
  width: 470px;
  height: 470px;
}

.hero-orbit-two::before {
  left: 52px;
  top: 90px;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(49, 87, 213, 0.12);
}

.version-panel {
  padding: 104px 0 116px;
  background: var(--paper);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading h2,
.about-heading h2,
.check-intro h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.center-heading > p:last-child,
.faq-heading > p:last-child,
.check-intro > p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.version-card {
  position: relative;
  min-width: 0;
  padding: 30px 26px 28px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.version-card:last-child {
  border-right: 0;
}

.version-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--blue);
}

.version-ios::before {
  background: var(--orange);
}

.version-windows::before {
  background: var(--success);
}

.version-mac::before {
  background: #7657ce;
}

.version-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #74809a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.version-topline em {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-pale);
  font-style: normal;
  letter-spacing: 0;
}

.version-ios .version-topline em {
  color: #b54423;
  background: #fff0e9;
}

.version-windows .version-topline em {
  color: #0b7159;
  background: #e5f7f1;
}

.version-mac .version-topline em {
  color: #5b3cad;
  background: #eee9fb;
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 32px 0 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(49, 87, 213, 0.2);
}

.version-ios .platform-icon {
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 114, 71, 0.2);
}

.version-windows .platform-icon {
  background: var(--success);
  box-shadow: 0 12px 24px rgba(23, 134, 109, 0.2);
}

.version-mac .platform-icon {
  background: #7657ce;
  box-shadow: 0 12px 24px rgba(118, 87, 206, 0.2);
}

.version-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.version-card > p {
  min-height: 112px;
  margin: 14px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.version-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 24px;
  padding: 0;
  color: #3f4c68;
  font-size: 13px;
  list-style: none;
}

.version-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 900;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #f8faff;
  font-size: 14px;
  font-weight: 850;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card-button:hover,
.card-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: var(--blue-pale);
}

.compatibility-note {
  margin: 24px 0 0;
  padding: 17px 20px;
  border-left: 4px solid var(--orange);
  color: #4e5b76;
  background: #fff8f3;
  font-size: 14px;
}

.about-section {
  padding: 116px 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 94px;
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 118px;
}

.about-mark {
  margin-top: 38px;
  color: rgba(49, 87, 213, 0.09);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.12em;
}

.about-copy > p {
  margin: 0 0 22px;
  color: #46536e;
  font-size: 18px;
  line-height: 1.95;
}

.about-copy strong {
  color: var(--ink);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-facts div {
  padding: 25px 18px;
  background: #fff;
  text-align: center;
}

.about-facts b,
.about-facts span {
  display: block;
}

.about-facts b {
  color: var(--blue);
  font-size: 23px;
}

.about-facts span {
  margin-top: 6px;
  color: #66718a;
  font-size: 12px;
}

.steps-section {
  padding: 112px 0 120px;
  color: #fff;
  background: var(--dark);
}

.center-heading-light h2 {
  color: #fff;
}

.center-heading-light > p:last-child {
  color: #aeb8d0;
}

.center-heading-light .section-label {
  color: #88a5ff;
}

.step-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(134, 161, 255, 0.7), transparent);
}

.step-track li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: var(--dark-soft);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 0 0 9px var(--dark);
}

.step-track li:nth-child(2) .step-number,
.step-track li:nth-child(4) .step-number {
  background: var(--blue);
}

.step-track h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.step-track p {
  margin: 0;
  color: #aeb8d0;
  font-size: 14px;
  line-height: 1.8;
}

.check-section {
  padding: 116px 0;
  background: #fff;
}

.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
  align-items: center;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--blue);
  font-weight: 850;
}

.inline-link span {
  transition: transform 0.2s ease;
}

.inline-link:hover span,
.inline-link:focus-visible span {
  transform: translateX(4px);
}

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

.check-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.check-list article > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.check-list h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.check-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-section {
  padding: 116px 0;
  background: #f0f3fb;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid #d8deec;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-pale);
  font-size: 20px;
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.final-cta {
  padding: 0 20px 100px;
  background: #f0f3fb;
}

.final-cta-shell {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px 42px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(125deg, var(--blue-deep), var(--blue));
  box-shadow: 0 28px 60px rgba(26, 51, 143, 0.25);
}

.final-cta img {
  width: 84px;
  height: 84px;
  border-radius: 21px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.final-cta .section-label {
  margin-bottom: 7px;
  color: #b8c8ff;
}

.final-cta h2 {
  font-size: clamp(25px, 3.6vw, 38px);
}

.final-cta p:not(.section-label) {
  margin: 9px 0 0;
  color: #d8e0ff;
  font-size: 14px;
}

.final-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.final-button:hover,
.final-button:focus-visible {
  transform: translateY(-3px);
}

.site-footer {
  padding: 56px 0 36px;
  color: #b4bdd2;
  background: #0a1022;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 60px;
  align-items: start;
}

.footer-brand img {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 460px;
  margin: 15px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #7f8aa3;
  font-size: 12px;
}

:focus-visible {
  outline: 3px solid rgba(255, 114, 71, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .version-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .version-card {
    border-bottom: 1px solid var(--line);
  }

  .version-card:nth-child(2) {
    border-right: 0;
  }

  .version-card:nth-child(3),
  .version-card:nth-child(4) {
    border-bottom: 0;
  }

  .version-card > p {
    min-height: auto;
  }

  .about-layout,
  .check-layout,
  .faq-layout {
    gap: 54px;
  }
}

@media (max-width: 860px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .brand img {
    height: 34px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-button {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    border: 1px solid rgba(23, 32, 61, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--blue-pale);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
  }

  .about-layout,
  .check-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .about-heading,
  .faq-heading {
    position: static;
  }

  .about-mark {
    display: none;
  }

  .step-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
  }

  .step-track::before {
    display: none;
  }

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

  .final-cta img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .final-button {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .header-shell,
  .section-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .hero {
    padding: 76px 14px 88px;
  }

  .hero h1 {
    font-size: clamp(44px, 16vw, 70px);
    letter-spacing: -0.06em;
  }

  .hero-subtitle {
    font-size: 23px;
    line-height: 1.35;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.82;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-width: 0;
  }

  .hero-points {
    display: grid;
    justify-items: center;
  }

  .version-panel,
  .about-section,
  .steps-section,
  .check-section,
  .faq-section {
    padding: 82px 0;
  }

  .center-heading {
    margin-bottom: 34px;
  }

  .center-heading h2,
  .about-heading h2,
  .check-intro h2,
  .faq-heading h2 {
    font-size: 32px;
  }

  .version-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .version-card,
  .version-card:nth-child(2),
  .version-card:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .version-card:last-child {
    border-bottom: 0;
  }

  .about-copy > p {
    font-size: 16px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .step-track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-track li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    text-align: left;
  }

  .step-number {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .faq-layout {
    gap: 34px;
  }

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

  .faq-list details p {
    padding: 0 18px 18px;
  }

  .final-cta {
    padding: 0 14px 78px;
  }

  .final-cta-shell {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    text-align: center;
  }

  .final-cta img {
    margin-inline: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
