:root {
  color-scheme: light;
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --faint: #94a3b8;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-blue: #eff6ff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-deep: #1e40af;
  --blue-soft: #dbeafe;
  --emerald: #047857;
  --amber: #a16207;
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 16px;
  --content: 1280px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.65;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.025em;
  line-height: 1.18;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:lang(zh-CN) h1,
:lang(zh-CN) h2 {
  line-height: 1.28;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius-small);
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.nav-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 9px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 22px;
  margin-left: auto;
}

.nav-link,
.nav-actions a:not(.button) {
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-actions a:not(.button):hover,
.nav-link-active {
  color: var(--blue-dark);
}

.nav-link-active {
  font-weight: 700;
}

.nav-actions {
  gap: 14px;
}

.language-link {
  padding-right: 14px;
  border-right: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 52%, #6366f1 100%);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.14);
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  filter: saturate(1.04);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.18);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 14px;
}

.nav-solutions-entry {
  position: relative;
}

.nav-solution-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  width: 440px;
  padding: 8px;
  visibility: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  opacity: 0;
  background: #fff;
  box-shadow: 0 8px 8px rgba(15, 23, 42, 0.07);
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out), visibility 180ms ease;
}

.nav-solutions-entry:hover .nav-solution-popover,
.nav-solutions-entry:focus-within .nav-solution-popover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-solution-option {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: var(--radius-medium);
  transition: background 160ms ease;
}

.nav-solution-option span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-solution-option small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.nav-solution-option:hover,
.nav-solution-option:focus-visible,
.nav-solution-option.is-current {
  background: var(--surface-blue);
}

.nav-solution-option.is-current span {
  color: var(--blue-dark);
}

.nav-solution-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 12px 14px 8px;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.mobile-navigation {
  display: none;
}

.solution-context {
  background: #fff;
}

.breadcrumb {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.breadcrumb a:hover {
  color: var(--blue-dark);
}

.breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #475569;
}

.breadcrumb [aria-current="page"] {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(54px, 6vw, 88px);
  align-items: center;
  min-height: 650px;
  padding-block: 94px 104px;
}

.solution-page .hero {
  position: relative;
  min-height: 0;
  padding-block: 64px 80px;
}

.solution-page .hero::before {
  position: absolute;
  z-index: -1;
  inset: 0 -100vw;
  background:
    linear-gradient(118deg, rgba(14, 165, 233, 0.055) 0%, rgba(14, 165, 233, 0.012) 38%, transparent 58%),
    linear-gradient(300deg, rgba(124, 58, 237, 0.045) 0%, rgba(99, 102, 241, 0.012) 32%, transparent 60%);
  content: "";
  pointer-events: none;
}

.eyebrow,
.section-label {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.solution-page:not(.solution-hub):lang(zh-CN) h1,
.solution-page:not(.solution-hub):lang(zh-CN) h2,
.solution-page:not(.solution-hub):lang(zh-CN) h3 {
  line-height: 1.5;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 700;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.evidence-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.88);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.preview-header span {
  color: var(--blue-dark);
  font-weight: 800;
}

.preview-header strong {
  color: var(--muted);
  font-size: 13px;
}

.evidence-preview dl {
  margin: 0;
  padding: 6px 22px;
}

.evidence-preview dl > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) 1.6fr;
  gap: 18px;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
}

.evidence-preview dl > div:last-child {
  border-bottom: 0;
}

.evidence-preview dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.evidence-preview dd {
  display: grid;
  gap: 4px;
  margin: 0;
}

.evidence-preview dd b {
  color: var(--emerald);
  font-size: 14px;
}

.evidence-preview dd span,
.evidence-preview > p {
  color: var(--body);
  font-size: 13px;
}

.evidence-preview > p {
  margin: 0;
  padding: 17px 22px;
  border-top: 1px solid #bfdbfe;
  background: rgba(239, 246, 255, 0.86);
}

.problem-band {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.solution-page .problem-band {
  border-top: 0;
}

.narrow-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 76px;
  padding-block: 76px 84px;
}

.problem-copy {
  max-width: 900px;
  margin-bottom: 0;
  color: #1e293b;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 600;
  line-height: 1.65;
}

.content-section,
.faq-section,
.related-section {
  padding-block: 108px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2,
.limits-grid h2,
.cta-inner h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.principles-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
}

.principle {
  min-height: 220px;
  padding: 36px;
}

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

.principle:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.principle h3 {
  margin-block: 0 15px;
  font-size: 23px;
}

.principle p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--body);
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 14px;
}

.comparison-table tbody th {
  width: 16%;
  color: var(--ink);
  font-size: 14px;
}

.comparison-table td {
  color: var(--body);
  font-size: 15px;
}

.comparison-links {
  margin: 24px 0 0;
  color: var(--body);
}

.comparison-links a {
  margin-inline: 0.2em;
  color: var(--blue-dark);
  font-weight: 800;
}

.solution-chooser-section {
  padding-bottom: 120px;
}

.solution-chooser {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.solution-choice {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  grid-column: span 6;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease-out);
}

.solution-choice:nth-child(1),
.solution-choice:nth-child(4) {
  grid-column: span 7;
  background: var(--surface-blue);
}

.solution-choice:nth-child(2),
.solution-choice:nth-child(3) {
  grid-column: span 5;
}

.solution-choice:hover {
  border-color: #93c5fd;
  background: #f8fbff;
  transform: translateY(-2px);
}

.solution-choice > span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.solution-choice p {
  max-width: 540px;
  margin: 18px 0 28px;
  color: var(--body);
  font-weight: 500;
}

.solution-choice strong {
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 14px;
}

.solution-choice i {
  display: inline-block;
  margin-left: 5px;
  font-style: normal;
  transition: transform 160ms ease;
}

.solution-choice:hover i {
  transform: translateX(3px);
}

.workflow-section {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 88px;
  padding-block: 112px;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 78px);
  align-self: start;
  margin-bottom: 0;
}

.workflow-list {
  overflow: hidden;
  margin: 0;
  padding: 0 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
  list-style: none;
}

.workflow-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.workflow-step:last-child {
  border-bottom: 0;
}

.workflow-step > span {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--blue-dark);
  background: var(--surface-blue);
  font-size: 12px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--body);
}

.evidence-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 88px;
}

.check-list,
.limits-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.limits-grid li {
  position: relative;
  padding: 21px 0 21px 42px;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 17px;
}

.check-list li::before,
.limits-grid li::before {
  position: absolute;
  top: 23px;
  left: 4px;
  display: flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-soft);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.limits-section {
  border-block: 1px solid #bfdbfe;
  background: rgba(239, 246, 255, 0.68);
}

.limits-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 88px;
  padding-block: 100px;
}

.limits-grid li {
  border-bottom-color: #bfdbfe;
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 52px 27px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--blue-dark);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 830px;
  padding-bottom: 28px;
  color: var(--body);
  font-size: 17px;
}

.related-section {
  padding-top: 20px;
}

.related-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.related-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  min-height: 155px;
  padding: 28px;
  background: #fff;
  transition: background 160ms ease;
}

.related-link:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.related-link:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.related-link span {
  grid-column: 1 / -1;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
}

.related-link strong {
  max-width: 440px;
  font-size: 18px;
  line-height: 1.45;
}

.related-link i {
  color: var(--blue-dark);
  font-style: normal;
}

.related-link:hover {
  background: var(--surface-soft);
}

.cta-section {
  color: #fff;
  background: var(--blue-deep);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 78px;
  align-items: end;
  padding-block: 92px;
}

.cta-inner .section-label {
  color: #bfdbfe;
}

.cta-inner p:not(.section-label) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

.cta-actions {
  display: grid;
  gap: 18px;
  min-width: 240px;
  text-align: center;
}

.button-light {
  color: var(--blue-deep);
  background: #fff;
  box-shadow: none;
}

.button-light:hover {
  background: #eff6ff;
  box-shadow: none;
}

.cta-actions > a:not(.button) {
  color: #dbeafe;
  font-size: 14px;
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-block: 46px;
}

.footer-brand {
  margin-bottom: 12px;
}

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

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
}

.not-found {
  display: flex;
  width: min(calc(100% - 40px), 760px);
  min-height: 100dvh;
  margin-inline: auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: 60px;
}

.not-found > .brand {
  margin-bottom: 72px;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 78px);
}

.not-found > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: 19px;
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .mobile-navigation {
    position: relative;
    display: block;
  }

  .mobile-navigation > summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-soft);
    cursor: pointer;
    list-style: none;
  }

  .mobile-navigation > summary::-webkit-details-marker,
  .mobile-solutions > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation > summary span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: #475569;
  }

  .mobile-navigation-panel {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    display: grid;
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: #fff;
    box-shadow: 0 8px 8px rgba(15, 23, 42, 0.07);
  }

  .mobile-navigation-panel > a,
  .mobile-solutions > summary,
  .mobile-solutions > div > a {
    display: grid;
    gap: 2px;
    padding: 11px 12px;
    border-radius: var(--radius-medium);
    color: var(--body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }

  .mobile-solutions > summary {
    color: var(--blue-dark);
    font-weight: 700;
  }

  .mobile-solutions > div {
    display: grid;
    margin: 2px 0 6px 10px;
    padding-left: 8px;
    border-left: 1px solid var(--line);
  }

  .mobile-solution-option small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
  }

  .mobile-solution-option.is-current,
  .mobile-navigation-panel a:hover {
    color: var(--blue-dark);
    background: var(--surface-blue);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }

  .evidence-preview {
    max-width: 680px;
  }

  .workflow-grid,
  .evidence-section,
  .limits-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .sticky-heading {
    position: static;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cta-actions {
    max-width: 300px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  .section-shell,
  .nav-shell {
    width: min(calc(100% - 30px), var(--content));
  }

  .nav-shell {
    min-height: var(--header-height);
    gap: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .sign-in,
  .language-link {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .mobile-navigation > summary {
    width: 38px;
    height: 38px;
  }

  .breadcrumb {
    min-height: 42px;
  }

  .hero {
    padding-block: 64px 76px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 44px);
    letter-spacing: -0.025em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .evidence-preview dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .narrow-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 58px 64px;
  }

  .content-section,
  .faq-section,
  .workflow-grid,
  .limits-grid {
    padding-block: 78px;
  }

  .related-section {
    padding-block: 30px 78px;
  }

  .principles-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
    padding: 28px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child,
  .related-link:last-child {
    border-bottom: 0;
  }

  .solution-chooser {
    grid-template-columns: 1fr;
  }

  .solution-choice,
  .solution-choice:nth-child(n) {
    min-height: 0;
    grid-column: 1;
    padding: 28px;
  }

  .workflow-list {
    padding-inline: 22px;
  }

  .workflow-step {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .check-list li,
  .limits-grid li {
    font-size: 16px;
  }

  .related-link {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid,
  .footer-grid nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid nav {
    justify-content: flex-start;
    gap: 12px;
  }
}

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

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