/* ── Fonts: Google Sans (self-hosted, variable 400–700) ── */

@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/google-sans-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/google-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext — про запас: рубль ₽ (U+20BD) и прочие расширенные знаки.
   Сейчас на странице таких глифов нет, файл не скачивается. */
@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/google-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Tokens (те же, что на ryzmax.ru) ── */

:root {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #f7f7f8;
  --ink: #111111;
  --muted: #555555;
  --quiet: #8a8a8a;
  --line: #d7d7d7;
  --accent: #ff4f00;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --outer: clamp(18px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Google Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

section {
  scroll-margin-top: 84px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

/* ── Header ── */

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 240ms var(--ease);
}

@media (min-width: 821px) {
  .site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.07);
}

.site-header__grid {
  display: grid;
  min-height: 72px;
  align-items: stretch;
  grid-template-columns: minmax(210px, 1fr) minmax(360px, auto) minmax(210px, 1fr);
  padding: 0 var(--outer);
}

.brand,
.site-nav,
.header-phone {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: #ffffff;
  font-size: 17px;
  font-weight: 780;
  line-height: 1;
  transition: background 200ms var(--ease);
}

.brand:hover .brand__mark {
  background: var(--accent);
}

.brand__name {
  display: grid;
  line-height: 1.05;
}

/* Подпись бренда здесь — «аварийка»: отличает страницу от основного сайта */
.brand__name em {
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-content: center;
  border-right: 1px solid var(--line);
}

.site-nav a {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: center;
  padding: 0 clamp(10px, 1.4vw, 24px);
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition:
    color 160ms var(--ease),
    background 160ms var(--ease);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover {
  background: var(--panel);
  color: var(--ink);
}

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

.header-phone {
  justify-content: flex-end;
  font-size: 17px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  transition: color 160ms var(--ease);
}

.header-phone:hover {
  color: var(--accent);
}

.header-call {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  padding: 10px 14px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 740;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ── Load choreography (hero) ── */

.load-item {
  animation: load-in 760ms var(--ease-out) both;
  animation-delay: calc(180ms + var(--load, 0) * 130ms);
}

@keyframes load-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-word {
  display: block;
  overflow: hidden;
}

.hero-word > span {
  display: block;
  animation: word-up 820ms var(--ease-out) both;
  animation-delay: calc(120ms + var(--word, 0) * 95ms);
}

@keyframes word-up {
  from {
    transform: translateY(112%);
  }

  to {
    transform: translateY(0);
  }
}

.hero__product.load-stage::after {
  animation: shadow-in 900ms var(--ease-out) both;
  animation-delay: 480ms;
}

@keyframes shadow-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero__machine-image.load-stage-img {
  animation: machine-in 950ms var(--ease-out) both;
  animation-delay: 360ms;
}

@keyframes machine-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(-46%, 8px, 0) scale(0.97);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

/* ── Hero ── */

.hero {
  padding: 0 var(--outer);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero__headline {
  grid-column: 1 / 9;
  padding: clamp(48px, 6vw, 92px) clamp(18px, 3vw, 44px) clamp(38px, 5vw, 72px) 0;
  border-right: 1px solid var(--line);
}

.eyebrow,
.section__label,
.contact__label,
.service-row__index,
.step__index,
.snt__index {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
}

.eyebrow {
  margin-bottom: 26px;
}

.hero h1,
.section-title,
.fleet h2,
.contact h2,
.snt h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 1020px;
  font-size: clamp(48px, 7.4vw, 106px);
  line-height: 0.91;
}

.hero-word--accent > span {
  color: var(--accent);
}

.hero-sub {
  max-width: 640px;
  margin: clamp(22px, 3vw, 36px) 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.42;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.hero-cta-note {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 14px;
}

/* ── Buttons ── */

.button {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-flex;
  width: max-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  transition:
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 160ms var(--ease);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms var(--ease);
}

.button:hover::before {
  transform: scaleX(1);
}

.button:active {
  transform: scale(0.98);
}

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

.button--primary::before {
  background: var(--accent);
}

.button--primary:hover {
  border-color: var(--accent);
}

.button--ghost {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.button--ghost::before {
  background: var(--ink);
}

.button--ghost:hover {
  border-color: var(--ink);
  color: #ffffff;
}

/* ── Hero aside ── */

.hero__aside {
  display: grid;
  grid-column: 9 / 13;
  align-content: end;
  min-height: 360px;
  padding: clamp(30px, 4.5vw, 60px) 0 clamp(38px, 5vw, 72px) clamp(20px, 2.6vw, 40px);
}

.hero-claim {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-claim__note {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--quiet);
  font-size: 13.5px;
  line-height: 1.4;
}

.phone-display {
  width: max-content;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 760;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 180ms var(--ease);
}

.phone-display:hover,
.contact-phone:hover {
  color: var(--accent);
}

.hero-kit {
  display: grid;
  gap: 9px;
  max-width: 320px;
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.26;
  list-style: none;
}

.hero-kit li {
  position: relative;
  padding-left: 18px;
}

.hero-kit li::before {
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--accent);
  content: "";
}

/* ── Hero stage ── */

.hero__product {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-column: 1 / 13;
  min-height: clamp(300px, 32vw, 480px);
  place-items: end center;
  margin: 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--panel);
  background-size: 96px 96px;
}

.hero__product::after {
  position: absolute;
  right: 22%;
  bottom: 34px;
  left: 23%;
  height: 30px;
  background: rgba(17, 17, 17, 0.18);
  content: "";
  filter: blur(22px);
  transform: skewX(-12deg);
}

.hero__product-cap {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  max-width: 260px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.hero__machine-image {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 1;
  width: min(900px, 74%);
  max-width: calc(100% - clamp(28px, 5vw, 96px));
  height: auto;
  max-height: clamp(270px, 30vw, 440px);
  object-fit: contain;
  transform: translate3d(-50%, 0, 0);
}

/* ── Trust band ── */

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 0;
}

.trust-band__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.trust-band__item:last-child {
  border-right: 0;
}

.trust-band__tick {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.trust-band__item p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 640;
  line-height: 1.3;
}

/* ── Marquee ── */

.marquee {
  overflow: hidden;
  margin: 0 var(--outer);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--accent);
  color: var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 19px 0;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 760;
  letter-spacing: -0.01em;
  white-space: nowrap;
  animation: marquee-roll 38s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__track i {
  color: #ffffff;
  font-style: normal;
  font-weight: 780;
}

@keyframes marquee-roll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Sections ── */

.section {
  display: grid;
  grid-template-columns: minmax(160px, 2fr) minmax(0, 10fr);
  gap: 0;
  padding: clamp(76px, 8vw, 112px) var(--outer) 0;
}

.section__label {
  display: flex;
  min-height: 100%;
  justify-content: space-between;
  padding: 0 24px 0 0;
  border-right: 1px solid var(--line);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section__body {
  min-width: 0;
  padding-left: clamp(22px, 4vw, 64px);
}

.section-title {
  max-width: 890px;
  font-size: clamp(44px, 6vw, 100px);
  line-height: 0.94;
}

.section-lede {
  max-width: 660px;
  margin: clamp(22px, 2.6vw, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.42;
}

/* ── Карточка вызова ── */

.callcard {
  display: grid;
  grid-template-columns: minmax(230px, 4fr) minmax(0, 8fr);
  margin-top: clamp(34px, 4vw, 52px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.callcard__picker {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--line);
}

.callcard__tab {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: baseline;
  gap: 0 4px;
  padding: 18px 16px 18px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.callcard__tab:last-child {
  border-bottom: 0;
}

.callcard__tab em {
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  transition: color 180ms var(--ease);
}

.callcard__tab strong {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 730;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.callcard__tab span {
  grid-column: 2;
  margin-top: 5px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.25;
  transition: color 180ms var(--ease);
}

.callcard__tab::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--accent);
  content: "";
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 240ms var(--ease);
}

.callcard__tab:hover {
  background: #ffffff;
}

.callcard__tab:hover::after {
  transform: scaleY(1);
}

.callcard__tab.is-active {
  background: var(--ink);
  color: #ffffff;
}

.callcard__tab.is-active::after {
  transform: scaleY(1);
}

.callcard__tab.is-active span {
  color: rgba(255, 255, 255, 0.66);
}

.callcard__panel {
  min-width: 0;
  background: #ffffff;
}

.callcard__panel:focus-visible {
  outline-offset: -3px;
}

.callcard__sheet {
  padding: clamp(24px, 3vw, 40px);
  transition:
    opacity 200ms var(--ease),
    transform 200ms var(--ease);
}

.callcard__sheet.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.callcard__head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 0 12px;
  padding-bottom: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px solid var(--line);
}

.callcard__no {
  grid-row: 1 / 3;
  color: var(--accent);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.82;
  font-variant-numeric: tabular-nums;
}

.callcard__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 740;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.callcard__line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.34;
}

.callcard__rows {
  margin: 0;
}

.callcard__row {
  display: grid;
  grid-template-columns: minmax(130px, 2fr) minmax(0, 7fr);
  gap: 12px clamp(16px, 2vw, 30px);
  padding: clamp(16px, 1.8vw, 22px) 0;
  border-bottom: 1px solid var(--line);
}

.callcard__row dt {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.callcard__row dd {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 640;
  line-height: 1.3;
}

.callcard__row ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 400;
  list-style: none;
}

.callcard__row li {
  position: relative;
  padding-left: 20px;
}

.callcard__row li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 9px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.callcard__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px clamp(20px, 2.4vw, 32px);
  padding-top: clamp(20px, 2.4vw, 28px);
}

.callcard__note {
  flex: 1 1 300px;
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.4;
}

/* ── Список работ ── */

.service-list {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 56px minmax(270px, 2.6fr) minmax(300px, 4fr);
  gap: clamp(16px, 2.4vw, 36px);
  min-height: 172px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: background 240ms var(--ease);
}

.service-row::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 340ms var(--ease);
}

.service-row:hover::before {
  transform: scaleX(1);
}

.service-row__index {
  font-variant-numeric: tabular-nums;
  transition: transform 240ms var(--ease);
}

.service-row:hover .service-row__index {
  transform: translateX(6px);
}

.service-row h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.service-row__use {
  margin: 10px 0 0;
  color: var(--quiet);
  font-size: 13.5px;
  font-weight: 640;
  letter-spacing: 0.01em;
}

/* Только смысловые абзацы: мелкие подписи (.contact-note, .snt__item p и
   прочие) ведут свой размер сами и не должны проигрывать по специфичности. */
.service-row > p,
.step p,
.fleet__intro p,
.contact__main > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.32;
}

.service-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
}

.service-note a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  transition: color 160ms var(--ease);
}

.service-note a:hover {
  color: var(--accent);
}

/* ── Порядок вызова ── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.6vw, 40px) clamp(28px, 3.4vw, 46px) 0;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step + .step {
  padding-left: clamp(20px, 2.6vw, 40px);
}

.step__index {
  display: block;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 780;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  margin: 18px 0 0;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.step p {
  margin-top: 12px;
  font-size: clamp(15px, 1.1vw, 17px);
}

/* ── Цены ── */

.factors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(36px, 4.4vw, 56px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.factor {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px) clamp(20px, 2.4vw, 36px) clamp(24px, 2.6vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.factor:nth-child(2n) {
  padding-right: 0;
  padding-left: clamp(20px, 2.4vw, 36px);
  border-left: 1px solid var(--line);
}

/* Пятый пункт остаётся один в ряду — тянем его на всю ширину */
.factor:last-child {
  grid-column: 1 / -1;
  padding-right: 0;
}

.factor__index {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.factor h3 {
  margin: 14px 0 0;
  font-size: clamp(21px, 1.9vw, 28px);
  font-weight: 720;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.factor p {
  margin: 10px 0 0;
  max-width: 460px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.36;
}

.price-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px clamp(20px, 2.4vw, 32px);
  margin-top: clamp(26px, 3vw, 38px);
}

.price-cta p {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.36;
}

/* ── Техника ── */

.fleet {
  display: grid;
  grid-template-columns: minmax(300px, 4.2fr) minmax(0, 7.8fr);
  gap: 0;
  margin: clamp(76px, 8vw, 112px) var(--outer) 0;
  border: 1px solid var(--line);
  background: var(--panel);
}

.fleet__intro,
.fleet__cards,
.fleet-card {
  min-width: 0;
}

.fleet__intro {
  padding: clamp(30px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.fleet h2 {
  max-width: 560px;
  font-size: clamp(30px, 2.9vw, 46px);
  line-height: 0.98;
}

.fleet__intro p {
  max-width: 520px;
  margin-top: 26px;
}

.fleet__intro p.fleet__disclaimer {
  margin-top: 18px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
}

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

.fleet-card {
  display: grid;
  grid-template-rows: clamp(250px, 19vw, 330px) auto;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

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

.fleet-card:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.fleet-card__media {
  position: relative;
  overflow: hidden;
  display: grid;
  height: clamp(250px, 19vw, 330px);
  min-height: 0;
  margin: 0;
  place-items: end center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #ffffff;
  background-size: 84px 84px;
}

.fleet-card__index {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  color: var(--line);
  font-size: clamp(40px, 3.6vw, 60px);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.8;
  font-variant-numeric: tabular-nums;
  transition: color 300ms var(--ease);
}

.fleet-card:hover .fleet-card__index {
  color: var(--accent);
}

.fleet-card__media img {
  display: block;
  width: min(var(--fleet-image-width, 92%), 980px);
  height: auto;
  max-width: calc(100% - 24px);
  max-height: calc(100% - 20px);
  padding: clamp(14px, 1.4vw, 26px);
  object-fit: contain;
  object-position: center bottom;
  transition: transform 560ms var(--ease);
}

.fleet-card:hover .fleet-card__media img {
  transform: scale(1.03);
}

.fleet-card:nth-child(4) {
  --fleet-image-width: 84%;
}

.fleet-card__copy {
  padding: clamp(22px, 2.5vw, 34px);
}

.fleet-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.fleet-card__copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(15.5px, 1.15vw, 18px);
  line-height: 1.34;
}

/* ── СНТ ── */

.snt {
  margin: clamp(76px, 8vw, 112px) var(--outer) 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
}

.snt__inner {
  padding: clamp(34px, 4.4vw, 66px);
}

.snt h2 {
  font-size: clamp(36px, 4.4vw, 72px);
  line-height: 0.95;
}

.snt__lede {
  max-width: 680px;
  margin: clamp(22px, 2.6vw, 32px) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.42;
}

.snt__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.snt__item {
  padding: clamp(22px, 2.6vw, 34px) clamp(20px, 2.4vw, 34px) clamp(24px, 2.8vw, 38px) 0;
  border-right: 1px solid var(--line);
}

.snt__item:last-child {
  border-right: 0;
}

.snt__item + .snt__item {
  padding-left: clamp(20px, 2.4vw, 34px);
}

.snt__index {
  display: block;
  font-variant-numeric: tabular-nums;
}

.snt__item h3 {
  margin: 14px 0 0;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.snt__item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.36;
}

.snt__action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3.4vw, 44px);
}

/* ── FAQ ── */

.faq-list {
  max-width: 860px;
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 680;
  letter-spacing: -0.02em;
  transition: color 180ms var(--ease);
}

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

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 300ms var(--ease);
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  content: "";
  transition: background 220ms var(--ease);
}

.faq-item__toggle::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__toggle {
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__toggle::before,
.faq-item[open] .faq-item__toggle::after {
  background: #ffffff;
}

.faq-item[open] .faq-item__toggle::after {
  height: 0;
}

.faq-item__body {
  overflow: hidden;
  padding: 0 54px 24px 0;
  animation: faq-open 360ms var(--ease-out) both;
}

.faq-item__body p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.45;
}

.faq-item__body a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CTA band ── */

.cta-band {
  margin: clamp(76px, 8vw, 112px) var(--outer) 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.cta-band__inner {
  padding: clamp(44px, 6vw, 88px) clamp(24px, 4vw, 64px);
}

.cta-band__eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.cta-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5.6vw, 92px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.cta-band__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px clamp(24px, 4vw, 56px);
  margin-top: clamp(30px, 4vw, 52px);
}

.cta-band__phone {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 770;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 180ms var(--ease);
}

.cta-band__phone:hover {
  color: var(--accent);
}

.cta-band__note {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.4;
}

/* ── Тост «номер скопирован» ── */

.copy-toast {
  position: fixed;
  z-index: 60;
  bottom: 24px;
  left: 50%;
  padding: 12px 18px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.copy-toast.is-shown {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ── Контакты ── */

.contact {
  display: grid;
  grid-template-columns: minmax(160px, 2fr) minmax(0, 5fr) minmax(300px, 5fr);
  gap: 0;
  margin: clamp(76px, 8vw, 112px) var(--outer) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact__label {
  padding: 34px 24px 34px 0;
  border-right: 1px solid var(--line);
}

.contact__main,
.contact__action {
  padding: clamp(30px, 4vw, 54px);
}

.contact__main {
  border-right: 1px solid var(--line);
}

.contact h2 {
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: 0.92;
}

.contact__main > p {
  max-width: 520px;
  margin-top: 24px;
}

.contact__action {
  display: grid;
  align-content: center;
  justify-items: start;
}

.contact-phone {
  width: max-content;
  max-width: 100%;
  font-size: clamp(29px, 3.6vw, 54px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-variant-numeric: tabular-nums;
  transition: color 180ms var(--ease);
}

.contact-write {
  margin: 28px 0 0;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 650;
}

.contact-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-messengers .button {
  min-height: 48px;
  padding: 12px 18px;
}

.contact-note {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.45;
}

.contact-areas {
  margin-top: 30px;
}

.contact-areas__label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
}

.contact-areas__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-areas__list li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.1;
}

.contact-areas__list li.contact-areas__more {
  border-style: dashed;
  color: var(--muted);
  font-weight: 600;
}

/* ── Footer ── */

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 86px;
  align-items: center;
  margin: 0 var(--outer);
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  font-size: 14px;
}

.site-footer span,
.site-footer a {
  display: flex;
  min-height: 86px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 740;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: color 160ms var(--ease);
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer a:last-child {
  border-right: 0;
  justify-content: flex-end;
  padding-right: 0;
}

/* ── Mobile sticky bar ── */

.mobile-bar {
  position: fixed;
  z-index: 35;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  transform: translateY(calc(100% + 20px));
  transition: transform 420ms var(--ease-out);
}

.mobile-bar.is-shown {
  transform: translateY(0);
}

.mobile-bar__call {
  display: flex;
  flex: 1;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.22);
}

.mobile-bar__call span {
  font-size: 19px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

/* ── Scroll reveal ──
   Скрытое состояние включается только когда JS подтвердил, что покажет
   (html.js-reveal) — без JS контент виден. */

html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms var(--ease-out),
    transform 640ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* ── Breakpoints ── */

@media (max-width: 1120px) {
  .site-header__grid {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero__headline {
    grid-column: 1 / 8;
  }

  .hero__aside {
    grid-column: 8 / 13;
  }

  .callcard {
    grid-template-columns: minmax(200px, 5fr) minmax(0, 7fr);
  }

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

  .steps--four .step:nth-child(2n) {
    border-right: 0;
  }

  .steps--four .step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .steps--four .step:nth-child(odd) {
    padding-left: 0;
  }

  .steps--four .step:nth-child(2n) {
    padding-left: clamp(20px, 2.6vw, 40px);
  }

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

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

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  }

  .contact__label {
    display: none;
  }
}

@media (max-width: 920px) {
  .snt__grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .snt__item:last-child {
    border-bottom: 0;
  }

  .snt__item + .snt__item {
    padding-left: 0;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 84px;
  }

  section {
    scroll-margin-top: 70px;
  }

  .site-header__grid,
  .hero,
  .section,
  .fleet,
  .snt,
  .contact,
  .site-footer,
  .marquee {
    margin-right: 0;
    margin-left: 0;
  }

  .site-header__grid {
    min-height: 62px;
    padding: 0 14px;
  }

  .header-phone {
    display: none;
  }

  .header-call {
    display: inline-flex;
  }

  .brand {
    font-size: 13px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 0 14px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    border-right: 0;
    border-left: 0;
  }

  .hero__headline,
  .hero__aside,
  .hero__product {
    grid-column: 1 / -1;
  }

  .hero__headline {
    padding: 34px 0 30px;
    border-right: 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 70px);
    line-height: 0.94;
  }

  .hero-sub {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-cta {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-cta .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-cta-note {
    font-size: 13px;
  }

  .hero__aside {
    min-height: 0;
    padding: 26px 0 30px;
    border-top: 1px solid var(--line);
  }

  .hero-kit {
    max-width: none;
  }

  .hero__product {
    min-height: 240px;
  }

  .hero__product-cap {
    top: 14px;
    left: 14px;
    font-size: 12px;
  }

  .hero__machine-image {
    width: min(96%, 620px);
    max-width: calc(100% - 20px);
    max-height: 230px;
    bottom: 10px;
  }

  .trust-band {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .trust-band__item {
    padding: 13px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band__item:last-child {
    border-bottom: 0;
  }

  .trust-band__item p {
    font-size: 13.5px;
  }

  .marquee {
    border-right: 0;
    border-left: 0;
  }

  .marquee__track {
    padding: 14px 0;
    gap: 18px;
  }

  .section {
    grid-template-columns: minmax(0, 1fr);
    padding: 56px 14px 0;
  }

  .section__label {
    justify-content: flex-start;
    gap: 12px;
    min-height: 0;
    margin-bottom: 18px;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    writing-mode: horizontal-tb;
    transform: none;
  }

  .section__body {
    padding-left: 0;
  }

  .section-title {
    font-size: clamp(34px, 10vw, 54px);
  }

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

  .callcard__picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .callcard__tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .callcard__sheet {
    padding: 22px 16px 26px;
  }

  .callcard__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .callcard__foot .button {
    width: 100%;
  }

  .service-row {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 10px 14px;
    min-height: 0;
    padding: 24px 0;
  }

  .service-row > p {
    grid-column: 2;
    font-size: 16px;
  }

  .service-row h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .steps,
  .steps--four {
    grid-template-columns: minmax(0, 1fr);
  }

  .step,
  .steps--four .step {
    padding: 22px 0 26px !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps--four .step:nth-child(n + 3) {
    border-top: 0;
  }

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

  .step__index {
    font-size: 38px;
  }

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

  .factor,
  .factor:nth-child(2n) {
    padding: 20px 0 24px;
    border-left: 0;
  }

  .price-cta .button {
    width: 100%;
  }

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

  .fleet-card {
    border-right: 0;
    border-top: 1px solid var(--line);
    grid-template-rows: 240px auto;
  }

  .fleet-card__media {
    height: 240px;
  }

  .snt__inner {
    padding: 28px 16px 34px;
  }

  .snt__action .button {
    width: 100%;
  }

  .faq-item__body {
    padding-right: 0;
  }

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

  .contact__main {
    padding: 30px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact__action {
    padding: 30px 14px 36px;
  }

  .contact-messengers .button {
    width: 100%;
  }

  .cta-band {
    margin: 56px 14px 0;
  }

  .cta-band__inner {
    padding: 34px 22px 38px;
  }

  .cta-band h2 {
    font-size: clamp(32px, 9.6vw, 56px);
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 0 14px;
  }

  .site-footer span,
  .site-footer a {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
  }

  .site-footer a:last-child {
    justify-content: flex-start;
    border-bottom: 0;
  }

  .mobile-bar {
    display: flex;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 38px;
  }

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

  .callcard__tab:nth-child(odd) {
    border-right: 0;
  }

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

  .callcard__tab:last-child {
    border-bottom: 0;
  }
}

/* ── Reduced motion ── */

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

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

  .hero__machine-image,
  .load-item,
  .hero-word > span {
    opacity: 1 !important;
    filter: none !important;
  }

  .hero__machine-image {
    transform: translate3d(-50%, 0, 0) !important;
  }
}
