:root {
  --paper: #f4f5ef;
  --paper-2: #e8ebe2;
  --ink: #070806;
  --muted: #62665e;
  --line: rgba(7, 8, 6, 0.16);
  --lime: #d4ff00;
  --lime-2: #b8ef00;
  --graphite: #10110f;
  --white: #ffffff;
  --radius: 8px;
  --font-display: "Inter Tight", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 6, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(7, 8, 6, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 245, 239, 0.86);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 116px;
  filter: invert(1);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.header-cta {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.header-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: center;
  padding: 118px clamp(18px, 4vw, 56px) 74px;
  overflow: hidden;
}

.hero::after {
  content: "ремонт";
  position: absolute;
  right: -0.09em;
  bottom: 28px;
  z-index: -1;
  color: rgba(7, 8, 6, 0.055);
  font-family: var(--font-display);
  font-size: clamp(120px, 25vw, 390px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(54px, 8.8vw, 132px);
  line-height: 0.86;
}

.hero__lead {
  max-width: 680px;
  color: #333730;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.48;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button--primary {
  background: var(--lime);
  color: var(--ink);
}

.button--line {
  background: transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero__stage {
  min-width: 0;
}

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

.service-window {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.service-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-bottom: 1px solid var(--ink);
  padding: 0 14px;
  background: var(--paper-2);
}

.service-window__bar span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.service-window__bar b {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.service-window__body {
  position: relative;
  min-height: clamp(430px, 54vw, 630px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(212, 255, 0, 0.82), rgba(255, 255, 255, 0) 42%),
    #0d1116;
}

.service-window__body img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.05);
}

.service-window__body::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(212, 255, 0, 0.24) 1px, transparent 1px),
    linear-gradient(rgba(212, 255, 0, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.scan-card {
  position: absolute;
  z-index: 2;
  width: min(245px, 68%);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(244, 245, 239, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 6px 6px 0 var(--ink);
}

.scan-card--top {
  top: 24px;
  left: 24px;
}

.scan-card--bottom {
  right: 24px;
  bottom: 24px;
}

.scan-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.scan-card strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 1px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
}

.hero__ticker span {
  flex: 1;
  min-width: max-content;
  padding: 13px 18px;
  background: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.mark {
  margin: 0;
  color: var(--lime-2);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.trust h2,
.about h2,
.reviews h2,
.request h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5.8vw, 88px);
  line-height: 0.92;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
  background: var(--ink);
  gap: 1px;
}

.device-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--paper);
  transition: background 220ms ease, transform 220ms ease;
}

.device-card:hover {
  background: var(--lime);
  transform: translateY(-8px);
}

.device-card span {
  color: var(--muted);
  font-weight: 800;
}

.device-card h3 {
  margin: auto 0 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 0.94;
}

.device-card p {
  margin: 0;
  color: #3d423a;
  line-height: 1.58;
}

.trust {
  background: var(--graphite);
  color: var(--white);
}

.trust__summary {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(26px, 5vw, 70px);
}

.trust .eyebrow,
.request .eyebrow {
  color: #aeb5aa;
}

.results__date {
  max-width: 340px;
  margin: 24px 0 0;
  color: #aeb5aa;
  font-size: 13px;
  line-height: 1.5;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.result-grid > * {
  min-height: 240px;
  display: block;
  padding: 22px;
  background: #171915;
}

.result-link {
  transition: background 180ms ease, color 180ms ease;
}

.result-link:hover,
.result-link:focus-visible {
  background: var(--lime);
  color: var(--ink);
  outline: none;
}

.result-grid strong {
  display: block;
  margin: 42px 0 12px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.86;
}

.result-grid span {
  color: #d6dccf;
  line-height: 1.5;
}

.rating-stars {
  margin: 0;
  color: var(--lime);
  font-size: 16px;
  letter-spacing: 0.15em;
}

.yandex-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff4433;
  color: var(--white) !important;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.result-link:hover strong,
.result-link:focus-visible strong,
.result-link:hover > span:last-child,
.result-link:focus-visible > span:last-child {
  color: var(--ink);
}

.reviews {
  background: var(--graphite);
  color: var(--white);
}

.reviews__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.reviews__head h2 {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
}

.reviews__head a {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.process {
  background: var(--paper-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  list-style: none;
}

.steps li {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 22px;
  background: var(--paper-2);
}

.steps span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.about__portrait {
  position: relative;
  margin: 0;
}

.about__portrait::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--lime);
}

.about__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.about__portrait figcaption {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
  border: 1px solid var(--ink);
  border-radius: var(--radius) 0 var(--radius) 0;
  padding: 11px 14px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about__copy h2 {
  max-width: 840px;
  margin-bottom: 28px;
  line-height: 0.94;
}

.about__copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 34px;
  color: #353a32;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.review-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  color: var(--ink);
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card__rating {
  color: #ff4433;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  max-width: 18ch;
  margin: auto 0 28px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.08;
}

.review-card cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.request {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--graphite);
  color: var(--white);
}

.request__copy {
  align-self: start;
}

.request__copy h2 {
  margin-bottom: 22px;
  line-height: 1.02;
}

.request__copy p:not(.eyebrow) {
  max-width: 600px;
  color: #d6dccf;
  font-size: 18px;
  line-height: 1.62;
}

.contacts {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  font-weight: 800;
}

.request__action {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--white);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(212, 255, 0, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(212, 255, 0, 0.08) 1px, transparent 1px),
    #171915;
  background-size: 32px 32px;
  box-shadow: 14px 14px 0 var(--lime);
}

.request__label {
  border: 1px solid var(--lime);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.request__action h3 {
  max-width: 680px;
  margin: auto 0 18px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.94;
}

.request__action p {
  margin-bottom: 26px;
  color: #d6dccf;
  font-size: 17px;
}

.request__action small {
  margin-top: 16px;
  color: #aeb5aa;
}

.request-modal {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 16px 16px 0 var(--lime);
}

.request-modal::backdrop {
  background: rgba(7, 8, 6, 0.76);
  backdrop-filter: blur(8px);
}

.request-modal[open] {
  animation: modal-in 180ms ease-out both;
}

.request-modal__bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
  padding: 22px clamp(20px, 4vw, 38px);
  background: var(--graphite);
  color: var(--white);
}

.request-modal__bar span {
  display: block;
  margin-bottom: 7px;
  color: #aeb5aa;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-modal__bar h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 46px);
  line-height: 0.95;
}

.request-modal__close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.request-modal__close:hover,
.request-modal__close:focus-visible {
  background: var(--lime);
  color: var(--ink);
  outline: none;
  transform: rotate(8deg);
}

.request-modal__body {
  max-height: calc(100dvh - 150px);
  overflow-y: auto;
  padding: clamp(20px, 4vw, 38px);
}

.request-modal__body > p {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.55;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead-form {
  display: grid;
  gap: 24px;
  border: 1px solid var(--white);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 44px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 14px 14px 0 var(--lime);
}

.request-modal .lead-form {
  border: 0;
  padding: 0;
  box-shadow: none;
}

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

.lead-form label {
  position: relative;
  display: grid;
  gap: 9px;
  color: #3b3f38;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 15px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.lead-form .select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  z-index: 1;
}

.custom-select.is-open {
  z-index: 12;
}

.custom-select.is-placeholder .custom-select__button {
  color: #70746d;
}

.custom-select__button {
  position: relative;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 15px 42px 15px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.custom-select__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.custom-select.is-open .custom-select__button {
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.custom-select.is-open .custom-select__button::after {
  transform: translateY(-35%) rotate(225deg);
}

.custom-select__button:focus-visible {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.custom-select__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 248px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--lime);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.custom-select.is-open .custom-select__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select__option {
  display: flex;
  align-items: center;
  min-height: 40px;
  border-radius: 6px;
  padding: 9px 10px;
  color: #e9eee2;
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
  cursor: pointer;
}

.custom-select__option:hover,
.custom-select__option.is-active,
.custom-select__option[aria-selected="true"] {
  background: var(--lime);
  color: var(--ink);
}

.custom-select__option[aria-selected="true"]::before {
  content: "";
  width: 7px;
  height: 12px;
  margin-right: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.lead-form textarea {
  min-height: 142px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.lead-form .button {
  width: 100%;
  min-height: 58px;
  text-transform: uppercase;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  min-height: 18px;
  color: #263600;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--graphite);
  color: #d6dccf;
}

.footer img {
  width: 110px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 140px 1fr;
  }

  .header-cta {
    display: none;
  }

  .nav {
    justify-content: end;
  }

  .hero,
  .trust__summary,
  .about,
  .request {
    grid-template-columns: 1fr;
  }

  .service-window {
    transform: none;
  }

  .device-grid,
  .steps,
  .result-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card:last-child {
    grid-column: 1 / -1;
  }

  .result-link {
    grid-column: 1 / -1;
  }
}

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

  #top,
  section[id] {
    scroll-margin-top: 68px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand img {
    width: 88px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 0 13px;
    font-size: 12px;
  }

  .section {
    padding: 56px 14px;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding: 92px 14px 0;
  }

  .hero::after {
    right: -0.04em;
    bottom: 90px;
    font-size: 48vw;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
  }

  h1 {
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(46px, 14.7vw, 64px);
    line-height: 0.88;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    gap: 9px;
    margin-top: 25px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 52px;
  }

  .service-window {
    margin: 0 7px 0 0;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .service-window__bar {
    min-height: 38px;
    padding: 0 11px;
  }

  .service-window__bar b {
    font-size: 10px;
  }

  .service-window__body {
    min-height: clamp(290px, 91vw, 390px);
  }

  .scan-card {
    width: min(178px, 68%);
    padding: 10px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .scan-card--top {
    top: 12px;
    left: 12px;
  }

  .scan-card--bottom {
    right: 12px;
    bottom: 12px;
  }

  .scan-card small {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .scan-card strong {
    font-size: 16px;
  }

  .hero__ticker {
    position: relative;
    margin: 3px -14px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero__ticker::-webkit-scrollbar,
  .review-grid::-webkit-scrollbar,
  .device-grid::-webkit-scrollbar,
  .steps::-webkit-scrollbar {
    display: none;
  }

  .hero__ticker span {
    flex: 0 0 auto;
    padding: 11px 14px;
    font-size: 11px;
  }

  .section-head h2,
  .trust h2,
  .about h2,
  .reviews h2,
  .request h2 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.94;
  }

  .trust__summary {
    gap: 30px;
  }

  .results__date {
    margin-top: 17px;
  }

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

  .result-grid > * {
    min-height: 158px;
    padding: 16px;
  }

  .result-grid > :first-child {
    grid-column: 1 / -1;
    min-height: 184px;
  }

  .result-grid strong {
    margin: 28px 0 9px;
    font-size: clamp(42px, 14vw, 62px);
  }

  .result-grid span {
    font-size: 12px;
  }

  .result-link {
    grid-column: auto;
  }

  .yandex-mark {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .reviews__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 20px;
  }

  .reviews__head h2 {
    font-size: 31px;
  }

  .reviews__head a {
    font-size: 12px;
  }

  .review-grid,
  .device-grid,
  .steps {
    width: auto;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -14px;
    margin-left: -14px;
    border: 0;
    padding: 0 14px 8px;
    background: transparent;
    gap: 10px;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .review-card {
    width: min(84vw, 360px);
    min-height: 270px;
    flex: 0 0 min(84vw, 360px);
    border: 1px solid var(--ink);
    padding: 22px;
    scroll-snap-align: start;
  }

  .review-card.reveal,
  .device-card.reveal,
  .steps li.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .review-card:last-child {
    grid-column: auto;
  }

  .review-card blockquote {
    font-size: 27px;
  }

  .about {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about__portrait {
    width: calc(100% - 10px);
  }

  .about__portrait::before {
    inset: 10px -10px -10px 10px;
  }

  .about__portrait figcaption {
    padding: 9px 11px;
    font-size: 10px;
  }

  .about__copy h2 {
    margin-bottom: 20px;
  }

  .about__copy > p:not(.eyebrow) {
    margin-bottom: 27px;
    font-size: 18px;
    line-height: 1.55;
  }

  .about__copy .button {
    width: 100%;
  }

  .section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
  }

  .device-card {
    width: min(82vw, 330px);
    min-height: 260px;
    flex: 0 0 min(82vw, 330px);
    border: 1px solid var(--ink);
    padding: 19px;
    scroll-snap-align: start;
  }

  .device-card:hover {
    transform: none;
  }

  .process {
    padding-bottom: 48px;
  }

  .steps li {
    width: min(82vw, 330px);
    min-height: 250px;
    flex: 0 0 min(82vw, 330px);
    border: 1px solid var(--ink);
    padding: 19px;
    scroll-snap-align: start;
  }

  .request {
    gap: 38px;
  }

  .request__copy h2 {
    margin-bottom: 18px;
  }

  .request__copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .contacts {
    margin-top: 24px;
    font-size: 14px;
  }

  .request__action {
    min-height: 330px;
    padding: 24px 20px;
    box-shadow: 8px 8px 0 var(--lime);
  }

  .request__action h3 {
    font-size: 39px;
  }

  .request__action .button {
    width: 100%;
  }

  .request-modal {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
    box-shadow: 5px 5px 0 var(--lime);
  }

  .request-modal__bar {
    align-items: center;
    padding: 14px 15px;
  }

  .request-modal__bar span {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .request-modal__bar h2 {
    font-size: 25px;
  }

  .request-modal__close {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }

  .request-modal__body {
    max-height: calc(100dvh - 91px);
    padding: 16px 15px 20px;
  }

  .request-modal__body > p {
    margin-bottom: 19px;
    font-size: 14px;
  }

  .lead-form {
    gap: 17px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .custom-select__button {
    min-height: 50px;
    padding: 13px 12px;
    font-size: 16px;
  }

  .custom-select__button {
    padding-right: 40px;
  }

  .lead-form textarea {
    min-height: 112px;
  }

  .lead-form .button {
    min-height: 54px;
  }

  .form-note,
  .form-status {
    font-size: 11px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 14px;
    font-size: 12px;
  }

  .footer img {
    width: 92px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 43px;
  }

  .section-head h2,
  .trust h2,
  .about h2,
  .reviews h2,
  .request h2 {
    font-size: 36px;
  }

  .result-grid > * {
    min-height: 150px;
    padding: 14px;
  }

  .result-grid strong {
    font-size: 44px;
  }

  .result-grid span {
    font-size: 11px;
  }

  .review-grid,
  .device-grid,
  .steps {
    --mobile-slide-width: 88vw;
  }

  .review-card,
  .device-card,
  .steps li {
    width: var(--mobile-slide-width);
    flex-basis: var(--mobile-slide-width);
  }

  .request__action h3 {
    font-size: 35px;
  }
}

@media (hover: none) {
  .button:hover {
    box-shadow: none;
    transform: none;
  }

  .device-card:hover {
    background: var(--paper);
    transform: none;
  }

  .result-link:hover {
    background: #171915;
    color: var(--white);
  }

  .result-link:hover strong {
    color: var(--lime);
  }

  .result-link:hover > span:last-child {
    color: #d6dccf;
  }
}
