:root {
  --ink: #34343a;
  --text: #4d535c;
  --muted: #68717b;
  --line: #e5ecf2;
  --page: #ffffff;
  --soft: #f5f8fa;
  --blue: #45aee4;
  --blue-strong: #168dcc;
  --blue-soft: #e8f7fc;
  --yellow: #ffdc6f;
  --yellow-strong: #ffc83d;
  --red: #f3262f;
  --shadow: 0 18px 46px rgba(31, 61, 83, 0.14);
  --soft-shadow: 0 10px 28px rgba(31, 61, 83, 0.1);
  --max: 1120px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page);
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid rgba(69, 174, 228, 0.4);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section h2,
.hero h1,
.next-step h2,
.site-footer h2,
.legal-content h1,
.legal-content h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.16;
}

.section h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: var(--header-height);
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(40, 48, 56, 0.08);
  backdrop-filter: blur(12px);
}

.logo-link {
  flex: 0 0 auto;
  text-decoration: none;
}

.logo-link img {
  width: 124px;
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.4vw, 20px);
  min-width: 0;
  font-size: 12px;
  font-weight: 800;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-strong);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue-strong);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a[href$=".pdf"] {
  max-width: 184px;
  min-height: auto;
  padding: 8px 12px;
  border: 1px solid rgba(69, 174, 228, 0.45);
  border-radius: 999px;
  color: var(--blue-strong);
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.site-nav a[href$=".pdf"]::after {
  display: none;
}

.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 60vw, 690px);
  padding: 76px max(20px, calc((100vw - var(--max)) / 2)) 190px;
  overflow: hidden;
  background: #eff5f7;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0.12));
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -140px;
  left: -8%;
  z-index: 0;
  height: 260px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--page);
  box-shadow: 0 -12px 28px rgba(31, 61, 83, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero h1 {
  width: min(720px, 92vw);
  padding: clamp(26px, 3.8vw, 38px);
  background: var(--yellow);
  box-shadow: var(--soft-shadow);
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 850;
}

.hero p {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 16px;
  border: 1px solid rgba(69, 174, 228, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(31, 61, 83, 0.12);
  color: var(--blue-strong);
  font-weight: 800;
}

.how-to {
  padding-top: 76px;
  background: var(--page);
}

.how-to .container {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "title image"
    "steps steps";
  align-items: center;
  gap: 50px 58px;
}

.how-to h2 {
  grid-area: title;
  max-width: 430px;
  margin: 0;
  text-align: left;
}

.payment-image {
  grid-area: image;
  width: 100%;
  max-height: 430px;
  margin: 0;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.steps {
  position: relative;
  grid-area: steps;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  right: calc(16.666% + 36px);
  left: calc(16.666% + 36px);
  border-top: 2px dashed var(--yellow-strong);
}

.steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 94px;
  text-align: center;
}

.steps h3,
.feature-item h3,
.equipment h3 {
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.24;
}

.steps h3 {
  min-height: 2.5em;
  font-size: 22px;
}

.steps p,
.feature-item p,
.payment-banner p,
.support p,
.next-step p {
  margin: 0;
  color: var(--muted);
}

.steps p {
  max-width: 315px;
  margin-inline: auto;
  font-size: 15px;
}

.steps p + p {
  margin-top: 14px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 7px solid var(--page);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(22, 141, 204, 0.26);
  color: #ffffff;
  font-size: 25px;
  font-weight: 850;
  transform: translateX(-50%);
}

.step-number.red,
.step-number.blue,
.step-number.yellow {
  background: var(--blue);
}

.payment-banner {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 70px);
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 36px 0 86px;
  background: var(--page);
  color: var(--ink);
}

.banner-photo {
  position: relative;
  min-height: 338px;
}

.banner-photo > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 338px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.city-card {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: min(330px, 70%);
  filter: drop-shadow(0 18px 24px rgba(31, 61, 83, 0.18));
}

.banner-content {
  display: grid;
  gap: 18px;
}

.banner-content h2 {
  max-width: 590px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
}

.banner-content p {
  max-width: 430px;
  font-size: 20px;
}

.company {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.company h2 {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.company-grid > div {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 61, 83, 0.07);
}

.company h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
}

.company p {
  margin: 24px 0 10px;
  color: var(--ink);
  font-weight: 800;
}

.company p:first-of-type {
  margin-top: 0;
}

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

.company li::marker {
  color: var(--blue-strong);
}

.app-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 128px 0 138px;
  background: var(--blue);
  color: #ffffff;
}

.app-section::before,
.app-section::after {
  content: "";
  position: absolute;
  right: -9%;
  left: -9%;
  z-index: -1;
  height: 230px;
  background: #ffffff;
}

.app-section::before {
  top: -160px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.app-section::after {
  bottom: -170px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.app-grid h2 {
  max-width: 560px;
  margin: 0 0 44px;
  color: #ffffff;
  text-align: left;
}

.feature-list {
  display: grid;
  gap: 30px;
}

.feature-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.feature-item img {
  width: 68px;
  height: 68px;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-item h3 {
  color: #ffffff;
  font-size: clamp(23px, 3vw, 30px);
}

.feature-item p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.86);
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-wrap img {
  width: min(285px, 100%);
  filter: drop-shadow(0 28px 36px rgba(0, 38, 61, 0.26));
}

.equipment {
  background: #ffffff;
}

.equipment h2 {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}

.equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(128px, 1fr));
  gap: 20px;
}

.equipment-grid article {
  min-width: 0;
  min-height: 200px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 61, 83, 0.06);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equipment-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(31, 61, 83, 0.1);
}

.equipment-grid img {
  width: 112px;
  height: 90px;
  margin: 0 auto 18px;
  object-fit: contain;
  border-radius: 6px;
}

.equipment-grid h3 {
  font-size: 19px;
}

.equipment-scheme {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--blue-soft);
  text-align: center;
}

.equipment-scheme img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 18px;
  mix-blend-mode: multiply;
}

.equipment-scheme figcaption {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.partners {
  background: #ffffff;
}

.partners h2,
.certificates h2 {
  margin: 0 0 52px;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
  align-items: stretch;
  justify-items: center;
}

.partner-grid img {
  width: 100%;
  max-width: 220px;
  height: 88px;
  padding: 14px 20px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(31, 61, 83, 0.05);
}

.certificates {
  background: var(--soft);
}

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

.certificate-grid a {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 61, 83, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certificate-grid a:hover,
.certificate-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.certificate-grid img {
  width: 100%;
  aspect-ratio: 546 / 773;
  object-fit: cover;
}

.next-step {
  padding: 76px 0;
  background: linear-gradient(135deg, #e9f7fc, #ffffff 72%);
  color: var(--ink);
}

.next-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 62px);
}

.next-grid img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(31, 61, 83, 0.12));
}

.next-step h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.next-step p {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(20px, 2.8vw, 29px);
  line-height: 1.28;
}

.support {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.support::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 60%;
  background: linear-gradient(90deg, rgba(255, 220, 111, 0.14), rgba(69, 174, 228, 0.08));
  pointer-events: none;
}

.support-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 6vw, 70px);
}

.support h2 {
  margin-bottom: 24px;
}

.support p {
  max-width: 590px;
  font-size: 20px;
}

.support-grid > img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(31, 61, 83, 0.12));
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 38px 0 0;
}

.contact-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}

.contact-list dt {
  color: var(--ink);
  font-weight: 850;
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  color: var(--blue-strong);
  font-size: 18px;
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 54px 0 28px;
  background: #5f5d5c;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(200px, 0.9fr) minmax(240px, 0.9fr);
  align-items: start;
  gap: clamp(28px, 5vw, 60px);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.site-footer p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
  color: inherit;
  overflow-wrap: anywhere;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer-brand img {
  width: 176px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-column {
  min-width: 0;
}

.copyright {
  grid-column: 1 / -1;
  margin: 38px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-align: center;
}

.legal-page {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.legal-content {
  width: min(calc(100% - 40px), 940px);
  margin: 0 auto;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.legal-content h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 46px);
}

.legal-content h2 {
  margin: 48px 0 18px;
  font-size: 29px;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--text);
  text-align: left;
}

.legal-content .back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue-strong);
  font-weight: 850;
  text-decoration: none;
}

.redirect-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.redirect-card {
  width: min(100%, 440px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.redirect-card img {
  width: 132px;
  margin: 0 auto 20px;
}

.redirect-card h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 28px;
}

.redirect-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-header {
    justify-content: space-between;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--soft);
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .menu-button:hover {
    background: var(--line);
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle:checked ~ .menu-button span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .menu-toggle:checked ~ .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .menu-button span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: max(20px, calc((100vw - var(--max)) / 2));
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .menu-toggle:checked ~ .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a,
  .site-nav a[href$=".pdf"] {
    justify-content: flex-start;
    max-width: none;
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: left;
    white-space: normal;
    transition: background 0.15s ease;
  }

  .site-nav a:hover {
    background: var(--soft);
  }

  .site-nav a[href$=".pdf"] {
    justify-content: center;
    margin-top: 6px;
    text-align: center;
  }

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

  .hero {
    min-height: 570px;
    padding-top: 54px;
    padding-bottom: 158px;
  }

  .equipment-layout {
    grid-template-columns: 1fr;
  }

  .equipment-scheme {
    order: -1;
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .certificate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-content: start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: 560px;
    padding: 42px 14px 136px;
  }

  .hero-image img {
    object-position: center;
  }

  .hero h1 {
    width: min(100%, 540px);
    padding: 24px;
  }

  .hero p {
    margin-top: 14px;
  }

  .how-to .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "steps";
    gap: 34px;
  }

  .how-to h2 {
    max-width: 620px;
    text-align: center;
  }

  .payment-image {
    max-height: 380px;
  }

  .steps,
  .company-grid,
  .payment-banner,
  .app-grid,
  .next-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps {
    gap: 30px;
  }

  .steps::before {
    display: none;
  }

  .steps h3 {
    min-height: auto;
  }

  .payment-banner {
    width: min(calc(100% - 28px), var(--max));
    padding: 16px 0 66px;
  }

  .banner-photo {
    min-height: 286px;
  }

  .banner-photo > img:first-child {
    min-height: 286px;
  }

  .city-card {
    right: 18px;
    bottom: 18px;
    width: min(285px, 72%);
  }

  .company-grid > div {
    padding: 26px;
  }

  .app-section {
    padding: 104px 0 112px;
  }

  .phone-wrap {
    order: -1;
  }

  .phone-wrap img {
    width: 210px;
  }

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

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .support-grid > img {
    max-width: 420px;
    margin-inline: auto;
  }

  .legal-content {
    padding: 34px 24px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .logo-link img {
    width: 112px;
  }

  .site-nav {
    right: 14px;
    width: calc(100vw - 28px);
  }

  .hero {
    min-height: 522px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section h2,
  .banner-content h2,
  .next-step h2 {
    font-size: 30px;
  }

  .steps li {
    padding-top: 82px;
  }

  .step-number {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .feature-item {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
  }

  .feature-item img {
    width: 58px;
    height: 58px;
    padding: 12px;
  }

  .equipment-grid,
  .certificate-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .partner-grid img {
    height: 64px;
    padding: 8px;
  }

  .equipment-grid article {
    min-height: auto;
  }

  .contact-list div {
    display: grid;
  }

  .footer-brand img {
    width: 170px;
  }

  .legal-page {
    padding: 46px 0;
  }

  .legal-content {
    width: min(calc(100% - 24px), 940px);
    padding: 26px 18px;
  }
}
