:root {
  --blue: #123f7a;
  --blue-2: #0a2a59;
  --red: #c42832;
  --ink: #16202d;
  --muted: #657287;
  --line: #dbe2ea;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --shadow: 0 18px 45px rgba(18, 63, 122, 0.08);
  --font-text: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Onest", "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.45;
  background: var(--paper);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
}

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

.flag-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(196, 40, 50, 0.05) 44.3% 47%, transparent 47.3%),
    linear-gradient(65deg, transparent 0 54%, rgba(18, 63, 122, 0.05) 54.2% 56.8%, transparent 57%);
}

.page-side-fades {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0, transparent 10%, transparent 90%, #fff 100%);
}

.section,
.site-header,
.footer {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: min(320px, 100%);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 2px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: none;
}

.menu-toggle {
  display: none;
}

.button,
.header-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 2px solid var(--blue);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary,
.header-action {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 8px 8px 0 var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100vh - 160px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.65fr);
  gap: clamp(32px, 4.4vw, 64px);
  align-items: center;
  padding: clamp(38px, 5.4vw, 72px) 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 11px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: none;
}

.hero-slider {
  position: relative;
  display: grid;
  grid-template-rows: minmax(360px, auto) auto;
  min-height: 430px;
  isolation: isolate;
}

.hero-slide {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: block;
  min-height: 360px;
  padding-top: 18px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(26px, 0, 0) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.2, 0.76, 0.16, 1),
    visibility 0s linear 820ms;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  z-index: 1;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.2, 0.76, 0.16, 1),
    visibility 0s;
}

.hero-slide::before {
  content: attr(data-slide);
  position: absolute;
  right: clamp(4px, 5vw, 86px);
  top: -28px;
  z-index: -1;
  color: rgba(18, 63, 122, 0.06);
  font-family: var(--font-display);
  font-size: clamp(122px, 16vw, 220px);
  font-weight: 900;
  line-height: 0.8;
}

.hero-title {
  display: grid;
  gap: 8px;
  max-width: 790px;
  letter-spacing: 0;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title span {
  color: var(--blue);
  font-size: 0.66em;
  font-weight: 800;
  line-height: 1.04;
}

.hero-title strong {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: var(--blue-2);
  font-size: 1.08em;
  font-weight: 900;
  line-height: 0.92;
}

.hero-slide[data-slide="03"] .hero-title strong {
  white-space: nowrap;
}

.hero-title strong::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: -0.14em;
  bottom: 0.02em;
  z-index: -1;
  height: 0.26em;
  background: rgba(196, 40, 50, 0.28);
}

.hero-slider-controls {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 24px;
}

.hero-arrow,
.hero-dot {
  flex: 0 0 auto;
  cursor: pointer;
}

.hero-arrow {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: none;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.hero-dot.is-active {
  width: 42px;
  border-radius: 999px;
  background: var(--red);
  border-color: var(--red);
}

h2 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(36px, 4.8vw, 64px);
}

.section-heading h2,
.change-title h2,
.faq-heading h2,
.contacts-copy h2 {
  color: transparent;
  background:
    linear-gradient(105deg,
      var(--blue) 0%,
      var(--blue-2) 34%,
      rgba(196, 40, 50, 0.78) 50%,
      var(--blue-2) 66%,
      var(--blue) 100%);
  background-size: 320% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingColorFlow 9.5s ease-in-out infinite alternate;
}

@keyframes headingColorFlow {
  0% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 46% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.lead {
  max-width: 660px;
  margin-bottom: 30px;
  padding: 0;
  border-left: 0;
  color: #2e3b4f;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
}

.hero-actions,
.modal-actions,
.contacts-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  align-self: stretch;
  min-height: 510px;
}

.visual-card {
  position: relative;
  height: 100%;
  min-height: 510px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 63, 122, 0.08), #fff 52%),
    linear-gradient(135deg, transparent 0 58%, rgba(196, 40, 50, 0.08) 58.2% 100%);
  border: 1px solid var(--line);
  box-shadow: 14px 14px 0 rgba(18, 63, 122, 0.07), var(--shadow);
}

.visual-card::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 12%;
  height: 22px;
  background: var(--red);
  transform: rotate(-5deg);
}

.visual-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  opacity: 0.08;
}

.visual-house {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 148px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  min-height: 280px;
  padding: 30px;
  background: var(--blue);
  box-shadow: 10px 10px 0 rgba(196, 40, 50, 0.84);
}

.visual-house span {
  min-height: 34px;
  background: #fff;
}

.visual-yard {
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 86px;
  height: 24px;
  background: repeating-linear-gradient(90deg, var(--red) 0 20px, #fff 20px 40px);
  border-top: 8px solid var(--blue);
}

.visual-note {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: grid;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  color: var(--blue);
  background: #fff;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--blue);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.visual-note strong {
  color: var(--red);
  font-size: 40px;
  line-height: 1;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-item {
  position: relative;
  display: grid;
  min-height: 176px;
  align-content: center;
  gap: 14px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.2, 0.76, 0.16, 1), background 260ms ease;
}

.metric-item::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 5px;
  background: var(--red);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.2, 0.76, 0.16, 1);
}

.metric-item.is-counted::before {
  transform: scaleX(1);
}

.metric-item:last-child {
  border-right: 0;
}

.metrics strong {
  display: flex;
  min-height: 72px;
  align-items: end;
  gap: 2px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 86px);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

.counter-reel {
  display: inline-flex;
  align-items: end;
  gap: 2px;
}

.digit-window {
  display: inline-block;
  height: 0.92em;
  overflow: hidden;
}

.digit-strip {
  display: grid;
  transform: translate3d(0, 0, 0);
  transition: transform 1300ms cubic-bezier(0.16, 0.88, 0.18, 1);
}

.digit-strip span {
  display: block;
  height: 0.92em;
  line-height: 0.92em;
}

@media (hover: hover) and (pointer: fine) {
  .metric-item:hover {
    background: linear-gradient(180deg, rgba(18, 63, 122, 0.035), #fff 68%);
    transform: translate3d(0, -6px, 0);
  }

  .metric-item:hover::before {
    background: var(--blue);
    transform: scaleX(1);
  }

  .metric-item:hover strong {
    color: var(--blue);
  }

  .metric-item:hover .digit-window {
    animation: digitBump 520ms cubic-bezier(0.18, 0.88, 0.2, 1);
  }

  .metric-item:hover .digit-window:nth-child(2) {
    animation-delay: 45ms;
  }

  .metric-item:hover .digit-window:nth-child(3) {
    animation-delay: 90ms;
  }
}

@keyframes digitBump {
  0% {
    transform: translate3d(0, 0, 0);
  }

  38% {
    transform: translate3d(0, -0.14em, 0);
  }

  68% {
    transform: translate3d(0, 0.04em, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.metrics strong small {
  color: var(--blue);
  font-size: 0.45em;
  line-height: 1;
}

.metric-item > span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.priorities,
.change,
.documents,
.faq,
.contacts {
  padding: clamp(64px, 8vw, 106px) 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.24fr);
  gap: 30px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.section-heading h2 {
  grid-column: 1;
  grid-row: 2;
}

.section-heading::after {
  content: "";
  grid-column: 2;
  grid-row: 2;
  min-height: 34px;
  background: var(--red);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.priority-card {
  min-height: 270px;
  padding: 26px;
  background: var(--soft);
  border-top: 5px solid var(--blue);
}

.priority-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.priority-card p,
.change-title p,
.document-card,
.faq p,
.contacts-copy p {
  color: #3d4859;
  font-weight: 700;
}

.change,
.docs-layout,
.contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.68fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 62px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--red);
  font-size: 26px;
  font-weight: 900;
}

.steps strong {
  color: var(--blue);
  text-transform: uppercase;
}

.steps span {
  color: var(--muted);
}

.facts dl {
  margin: 0 0 22px;
}

.facts dl div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.facts dl div:last-child {
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.document-card {
  padding: 30px;
  background: var(--soft);
  border-left: 8px solid var(--red);
}

.document-showcase {
  display: grid;
  gap: 16px;
}

.license-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(18, 63, 122, 0.08), transparent 44%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 rgba(18, 63, 122, 0.08);
}

.license-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 36%, var(--blue) 36% 100%);
}

.license-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.license-top span {
  display: inline-flex;
  padding: 7px 10px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.license-top strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 900;
  line-height: 0.72;
}

.license-card h3,
.document-card h3 {
  font-size: clamp(25px, 3vw, 34px);
}

.license-card dl {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.license-card dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.license-card dd {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
}

.document-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.document-card .button {
  margin-top: 22px;
}

.faq-heading {
  margin-bottom: 30px;
}

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

.faq details {
  padding: 22px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq p {
  margin: 16px 0 0;
}

.contacts {
  align-items: end;
}

.contacts-panel {
  justify-content: flex-end;
}

.footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 46px;
  color: var(--blue);
  font-weight: 900;
}

.footer img {
  width: min(260px, 52vw);
}

.appeal-modal {
  width: min(720px, calc(100% - 28px));
  padding: 0;
  border: 0;
  box-shadow: 0 28px 80px rgba(18, 32, 45, 0.24);
}

.appeal-modal::backdrop {
  background: rgba(11, 21, 36, 0.48);
}

.modal-box {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--blue);
  cursor: pointer;
  background: transparent;
  font-size: 32px;
  line-height: 1;
}

.modal-box h2 {
  font-size: clamp(32px, 6vw, 56px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.form-result {
  display: none;
  padding: 16px;
  white-space: pre-wrap;
  color: var(--blue);
  background: var(--soft);
  border-left: 5px solid var(--red);
  font-weight: 700;
}

.form-result.is-visible {
  display: block;
}

.reveal-item,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 680ms ease, transform 760ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.reveal-left {
  transform: translate3d(-60px, 22px, 0);
}

.reveal-right {
  transform: translate3d(60px, 22px, 0);
}

.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero .reveal-left,
.hero .reveal-right {
  opacity: 1;
  transform: none;
}

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

  .reveal-item,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-heading h2,
  .change-title h2,
  .faq-heading h2,
  .contacts-copy h2 {
    color: var(--blue);
    background: none;
    animation: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue);
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-action {
    display: none;
  }

  .hero,
  .change,
  .docs-layout,
  .contacts {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual,
  .visual-card {
    min-height: 470px;
  }

  .metrics,
  .priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .section,
  .site-header,
  .footer {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    gap: 12px;
  }

  .brand img {
    width: min(300px, 80vw);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-title {
    gap: 7px;
    letter-spacing: -0.01em;
  }

  .hero-slider {
    grid-template-rows: minmax(350px, auto) auto;
    min-height: 420px;
  }

  .hero-slide {
    min-height: 350px;
    padding-top: 12px;
  }

  .hero-slide::before {
    right: 0;
    top: -12px;
    font-size: 104px;
  }

  .hero-title span {
    font-size: 0.62em;
  }

  .hero-title strong {
    width: auto;
    max-width: 100%;
    font-size: 0.95em;
    line-height: 0.98;
  }

  .hero-slide[data-slide="03"] .hero-title strong {
    white-space: normal;
  }

  h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions .button,
  .contacts-panel .button,
  .modal-actions .button {
    width: 100%;
  }

  .hero-visual,
  .visual-card {
    min-height: 390px;
  }

  .visual-house {
    left: 12%;
    right: 12%;
    bottom: 126px;
    min-height: 210px;
    padding: 20px;
    gap: 10px;
  }

  .visual-house span {
    min-height: 26px;
  }

  .visual-yard {
    bottom: 76px;
  }

  .visual-note {
    left: 20px;
    right: 20px;
    display: grid;
  }

  .metrics,
  .priority-grid {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .steps li,
  .facts dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer {
    display: grid;
  }
}
