@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("/assets/fonts/bebas-neue-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --black: #070707;
  --black-soft: #101011;
  --ink: #141416;
  --muted: #717176;
  --paper: #f5f5f3;
  --white: #ffffff;
  --line: #dededb;
  --red: #e52b2f;
  --red-dark: #b9171f;
  --yellow: #f3b414;
  --shadow: 0 18px 50px rgba(18, 18, 20, 0.1);
  --shell: 1368px;
  --header-height: 80px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--black);
}

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

.icon {
  display: block;
  flex: 0 0 auto;
}

.icon--light {
  filter: invert(1);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #070708;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.site-header__inner {
  width: min(calc(100% - 72px), var(--shell));
  height: 100%;
  display: grid;
  grid-template-columns: 155px minmax(480px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 120px;
  text-decoration: none;
}

.brand img {
  width: 112px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.main-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--red);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact__phone {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-contact__hours {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.filter-tab:focus-visible,
.filter-reset:focus-visible,
.product-card__footer button:focus-visible,
.menu-toggle:focus-visible,
.modal__close:focus-visible,
.certificate-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button--red {
  background: var(--red);
  color: var(--white);
}

.button--red:hover {
  background: #f2393e;
}

.button--black {
  background: var(--black);
  color: var(--white);
}

.button--black:hover {
  background: #262628;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.74);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--red);
  background: var(--red);
}

.button--outline-dark {
  border-color: #a4a4a5;
  background: transparent;
  color: var(--black);
}

.button--full {
  width: 100%;
}

.header-callback {
  min-height: 44px;
  padding-inline: 24px;
  border-color: var(--red);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

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

.hero {
  position: relative;
  height: 520px;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__image {
  position: absolute;
  top: 50%;
  right: 0;
  width: 80%;
  height: auto;
  display: block;
  transform: translateY(-50%);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 31%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.03) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 660px;
  padding-bottom: 4px;
  transform: translateY(-24px);
}

.hero__content > .eyebrow {
  display: none;
}

[id],
.product-card {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
}

.eyebrow--dark {
  color: #838388;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  max-width: 760px;
  font-size: clamp(56px, 5vw, 74px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.hero-title__compact-u {
  display: inline-block;
  margin-inline: -0.025em;
  transform: translateY(-0.04em) scale(0.92);
  transform-origin: 50% 58%;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 3.8vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero__lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.5;
}

.hero__lead span {
  padding-inline: 7px;
  color: var(--red);
}

.hero__actions {
  display: flex;
  gap: 26px;
  margin-top: 28px;
}

.hero__actions .button {
  min-width: 174px;
}

.hero__actions .button--red {
  min-width: 246px;
}

.button--arrow .icon {
  margin-left: auto;
}

.hero__price-label {
  margin: 26px 0 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.hero__price {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.hero__price strong {
  margin-inline: 6px 4px;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.section {
  padding: 96px 0;
}

.catalog-section {
  padding: 36px 0 90px;
  background: #f7f7f6;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px);
  align-items: end;
  gap: 64px;
  margin-bottom: 46px;
}

.section-heading--compact {
  margin-bottom: 24px;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
}

.section-heading__note,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.catalog-section h2 {
  width: auto;
  font-size: 34px;
}

.catalog-section .section-heading .eyebrow,
.catalog-section .section-heading__note {
  display: none;
}

.catalog-section .section-heading--compact {
  grid-template-columns: 1fr;
  margin-bottom: 10px;
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 20px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab,
.select-wrap select,
.filter-reset {
  min-height: 48px;
  border: 1px solid #d8d8d5;
  border-radius: 7px;
  background: var(--white);
  color: #27272a;
  font-size: 13px;
  font-weight: 600;
}

.filter-tab {
  padding: 11px 22px;
}

.filter-tab.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(8, 8, 8, 0.12);
}

.filter-side {
  display: flex;
  align-items: center;
  gap: 24px;
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap select {
  min-width: 268px;
  padding: 0 44px 0 16px;
  appearance: none;
  background: var(--white);
}

.select-wrap::after {
  content: "⌄";
  position: absolute;
  top: 9px;
  right: 16px;
  color: #6c6c71;
  pointer-events: none;
}

.filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 14px;
}

.catalog-count {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.product-card {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfdfdc;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 18, 20, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  z-index: 2;
  border-color: #c8c8c4;
  box-shadow: 0 20px 52px rgba(18, 18, 20, 0.13);
  transform: translateY(-4px);
}

.product-card[hidden] {
  display: none;
}

.product-card__main {
  min-height: 0;
  display: block;
  flex: 1;
}

.product-card__media {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px 18px;
  background: linear-gradient(145deg, #f8f8f6, #eeeeeb);
  text-decoration: none;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: transparent;
  transform: none;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__content {
  padding: 20px 22px 22px;
}

.product-card__type {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 5px 12px 0;
  padding: 5px 8px;
  border-radius: 4px;
  background: #efefed;
  color: #656569;
  font-size: 11px;
  font-weight: 600;
}

.product-card__unit {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 12px;
  padding: 5px 8px;
  border: 1px solid rgba(229, 43, 47, 0.2);
  border-radius: 4px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.product-card h3 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.2;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--red);
}

.product-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.product-card dl div {
  min-width: 0;
  padding: 11px 10px;
  border-radius: 5px;
  background: #f6f6f4;
}

.product-card dt {
  color: #8a8a8e;
  font-size: 9px;
  line-height: 1.3;
}

.product-card dd {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.product-card__footer {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 22px;
  border-top: 1px solid #eeeeec;
}

.product-card__footer p {
  margin: 0;
  font-size: 12px;
  white-space: nowrap;
}

.product-card__footer strong {
  margin: 0 4px;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 27px;
  line-height: 1;
}

.product-card__footer button,
.product-card__more {
  padding: 10px 13px;
  border: 0;
  border-radius: 5px;
  background: #f5f5f3;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.product-card__footer button span,
.product-card__more span,
.text-link span {
  margin-left: 7px;
}

.product-card__footer .request-price {
  margin: 0 0 0 3px;
  color: var(--red);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.empty-state {
  padding: 52px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.empty-state h3 {
  margin: 0;
  font-size: 24px;
}

.empty-state p {
  margin: 12px auto 24px;
  color: var(--muted);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section-heading--inverse > p {
  color: rgba(255, 255, 255, 0.58);
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 52px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.term-grid article {
  position: relative;
  min-height: 210px;
  padding: 38px 42px;
}

.term-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.term-grid span {
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}

.term-grid h3 {
  margin: 18px 0 9px;
  font-size: 25px;
}

.term-grid p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.text-link--light {
  color: var(--white);
}

.delivery-section {
  background: var(--white);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 100px;
  align-items: center;
}

.lead-copy {
  max-width: 610px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.delivery-options {
  border-top: 1px solid var(--line);
}

.delivery-options article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  width: 30px;
  height: 30px;
  filter: invert(18%) sepia(90%) saturate(3312%) hue-rotate(344deg) brightness(102%) contrast(88%);
}

.delivery-options h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.delivery-options p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.attachments {
  padding: 70px 0;
  background: #171719;
  color: var(--white);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-ready {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-ready.reveal-delay-1 {
    transition-delay: 70ms;
  }

  .reveal-ready.reveal-delay-2 {
    transition-delay: 140ms;
  }

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

.attachments__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.attachments h2 {
  font-size: 42px;
}

.attachments p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.about-section {
  background: var(--paper);
}

.about-section h2 {
  max-width: 640px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-transform: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 100px;
}

.about-copy > p {
  margin: 32px 0 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts div {
  padding: 24px 22px;
}

.about-facts div + div {
  border-left: 1px solid var(--line);
}

.about-facts strong {
  display: block;
  color: var(--red);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.about-facts span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

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

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

.certificate-card {
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: #f4f4f2;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease;
}

.certificate-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.certificate-card > img {
  width: 100%;
  height: 260px;
  display: block;
  padding: 22px;
  object-fit: contain;
  background: #ececea;
}

.certificate-card > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
}

.certificate-card em {
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.lead-section {
  background: var(--black);
  color: var(--white);
}

.lead-section__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.lead-section h2 {
  max-width: 820px;
}

.lead-section p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.lead-section__actions {
  min-width: 280px;
  display: grid;
  gap: 22px;
}

.lead-phone {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.lead-phone small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 400;
}

.contacts {
  background: var(--paper);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.7fr);
  gap: 80px;
  align-items: center;
}

.contacts address {
  margin: 28px 0 18px;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.contact-card {
  padding: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-card__phone {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-decoration: none;
}

.contact-card > span {
  display: block;
  margin: 5px 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 20px;
  margin-top: 36px;
}

.route-map {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8e8e5;
}

.route-map img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  filter: saturate(0.62) contrast(0.96) brightness(1.02);
}

.route-map__label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(8, 8, 8, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.route-map__action {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(8, 8, 8, 0.9);
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease;
}

.route-map:hover .route-map__action {
  background: var(--red);
}

.route-guide {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.route-guide h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.5vw, 46px);
}

.route-mode {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.route-mode:hover {
  color: var(--red);
  transform: translateX(4px);
}

.route-mode > span {
  color: var(--red);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.route-mode strong,
.route-mode small {
  display: block;
}

.route-mode strong {
  font-size: 17px;
}

.route-mode small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.route-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.site-footer {
  padding: 58px 0 24px;
  background: #0d0d0e;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 180px 1fr minmax(360px, 0.8fr);
  gap: 60px;
  align-items: start;
}

.brand--footer {
  width: 138px;
}

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

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav a,
.site-footer nav button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer nav button {
  min-height: 44px;
  padding-block: 10px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.modal {
  width: min(92vw, 670px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
}

.modal__panel {
  position: relative;
  max-height: 92vh;
  padding: 42px;
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lead-modal {
  width: min(94vw, 720px);
  border-radius: 26px;
}

.lead-modal .modal__panel {
  border: 1px solid rgba(229, 43, 47, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 43, 47, 0.1), transparent 250px),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42), 0 10px 30px rgba(229, 43, 47, 0.09);
}

.lead-modal .modal__panel::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--red), #ff5a5f);
  content: "";
}

.lead-modal .eyebrow {
  color: var(--red);
}

.modal__panel--wide {
  width: min(92vw, 980px);
}

.product-modal {
  width: min(92vw, 980px);
}

.modal__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 0;
  background: #efefed;
}

.modal__close img {
  width: 22px;
  height: 22px;
}

.lead-modal .modal__close {
  border: 1px solid #e3e3e6;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.lead-modal .modal__close:hover {
  border-color: rgba(229, 43, 47, 0.4);
  box-shadow: 0 10px 28px rgba(229, 43, 47, 0.14);
  transform: rotate(5deg);
}

.modal h2 {
  font-size: 42px;
}

.modal__intro {
  margin: 14px 0 28px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-modal h2 {
  max-width: 580px;
  font-size: clamp(36px, 5vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.lead-modal .modal__intro {
  max-width: 560px;
}

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

.form-grid label {
  min-width: 0;
}

.form-grid label > span {
  display: block;
  margin: 0 0 7px;
  color: #56565a;
  font-size: 12px;
  font-weight: 600;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid #d9d9dd;
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(20, 20, 24, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.form-grid textarea {
  min-height: 104px;
  resize: vertical;
}

.form-grid input:hover,
.form-grid select:hover,
.form-grid textarea:hover {
  border-color: #b9b9bf;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 4px rgba(229, 43, 47, 0.13), 0 10px 24px rgba(229, 43, 47, 0.08);
  transform: translateY(-1px);
}

.consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 20px 0 16px;
  color: #68686c;
  font-size: 11px;
  line-height: 1.5;
}

.lead-modal .consent-check {
  padding: 13px 14px;
  border: 1px solid #e7e7ea;
  border-radius: 14px;
  background: rgba(246, 246, 248, 0.82);
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.lead-modal .button--red {
  min-height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e52b2f 0%, #f13d42 100%);
  box-shadow: 0 14px 30px rgba(229, 43, 47, 0.24);
}

.lead-modal .button--red:hover {
  box-shadow: 0 17px 34px rgba(229, 43, 47, 0.31);
  transform: translateY(-1px);
}

.form-error {
  min-height: 18px;
  margin: 0 0 8px;
  color: #bd1018;
  font-size: 12px;
}

.form-note {
  margin: 12px 0 0;
  color: #8a8a8f;
  font-size: 10px;
  line-height: 1.5;
}

.form-success {
  padding: 34px 0 8px;
  text-align: center;
}

.form-success > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background: var(--red);
  color: var(--white);
  font-size: 28px;
}

.form-success h3 {
  margin: 0 0 12px;
  font-size: 27px;
}

.form-success p {
  max-width: 500px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.6;
}

.product-dialog-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.product-dialog__media {
  min-height: 440px;
  display: grid;
  place-items: center;
  background: #f3f3f1;
}

.product-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-dialog-grid dl {
  margin: 26px 0;
}

.product-dialog-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.product-dialog-grid dt {
  color: var(--muted);
  font-size: 12px;
}

.product-dialog-grid dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.product-dialog__price {
  margin: 20px 0 8px;
  font-size: 14px;
}

.product-dialog__price strong {
  margin-inline: 5px;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 34px;
}

.product-dialog__note {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.certificate-modal {
  width: min(92vw, 1000px);
}

.modal__panel--certificate {
  width: min(92vw, 1000px);
  display: grid;
  place-items: center;
  padding: 38px;
  background: #e9e9e7;
}

.modal__panel--certificate > img {
  max-height: 82vh;
  display: block;
  object-fit: contain;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: min(calc(100% - 48px), 920px);
  margin-left: auto;
  padding: 22px;
  border: 1px solid #cfcfcb;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.cookie-banner:not([hidden]) {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cookie-banner strong {
  font-size: 15px;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 11px;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: sticky;
  z-index: 10;
  top: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  background: var(--black);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.legal-header a:last-child {
  color: var(--white);
  font-size: 13px;
}

.legal-content {
  width: min(calc(100% - 40px), 900px);
  margin: 70px auto 100px;
  padding: 58px;
  background: var(--white);
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 62px);
}

.legal-content h2 {
  margin: 42px 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  text-transform: none;
}

.legal-content p,
.legal-content li {
  color: #4f4f53;
  font-size: 14px;
  line-height: 1.75;
}

.legal-content .legal-note {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: #f2f2f0;
  color: #353538;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs i {
  color: var(--red);
  font-style: normal;
}

.inner-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 62px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(229, 43, 47, 0.2) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 82% 38%, rgba(229, 43, 47, 0.24), transparent 33%),
    #09090a;
  background-size: 36px 36px, auto, auto;
  color: var(--white);
}

.inner-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -90px;
  width: 48%;
  height: 210px;
  transform: skewY(-10deg);
  background: linear-gradient(90deg, rgba(229, 43, 47, 0.06), rgba(229, 43, 47, 0.5));
}

.inner-hero .shell {
  position: relative;
  z-index: 1;
}

.inner-hero .eyebrow {
  margin-bottom: 12px;
}

.inner-hero h1 {
  width: auto;
  max-width: 980px;
  color: var(--white);
  font-size: clamp(50px, 6vw, 76px);
  line-height: 1;
  transform: none;
}

.inner-hero__lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.catalog-page {
  padding-top: 70px;
}

.catalog-page .section-heading--compact {
  grid-template-columns: 1fr minmax(340px, 520px);
  margin-bottom: 28px;
}

.catalog-page .section-heading .eyebrow,
.catalog-page .section-heading__note {
  display: flex;
}

.catalog-page .section-heading__note {
  display: block;
}

.catalog-count--visible {
  position: static;
  width: auto;
  height: auto;
  margin: 14px 0 18px;
  overflow: visible;
  clip: auto;
  color: var(--muted);
  font-size: 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 100px;
  align-items: start;
}

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

.info-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.info-list strong {
  font-size: 17px;
}

.info-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.trust-panel {
  align-self: stretch;
  padding: 48px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-panel h3 {
  margin: 0 0 24px;
  font-size: 25px;
}

.trust-panel ul {
  display: grid;
  gap: 15px;
  margin: 0 0 32px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-copy {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.product-page {
  padding: 54px 0 96px;
  background: var(--white);
}

.product-page .breadcrumbs {
  color: var(--muted);
}

.product-page .breadcrumbs a {
  color: #55555a;
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(460px, 1.08fr) minmax(430px, 0.92fr);
  gap: 76px;
  align-items: start;
}

.product-page__media {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f1f1ef;
}

.product-page__media img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  display: block;
  object-fit: contain;
}

.product-page__media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.product-page__content h1 {
  width: auto;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
  transform: none;
}

.product-page__lead {
  margin: 22px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

.spec-table {
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  color: var(--muted);
  font-size: 12px;
}

.spec-table dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.product-page__price {
  margin: 0 0 18px;
  font-size: 14px;
}

.product-page__price strong {
  color: var(--red);
}

.product-page__note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.variants-section {
  background: var(--paper);
}

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

.variant-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.variant-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.variant-grid dl {
  margin: 0;
}

.variant-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.variant-grid dt {
  color: var(--muted);
  font-size: 11px;
}

.variant-grid dd {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 1240px) {
  .site-header__inner {
    grid-template-columns: 125px minmax(420px, 1fr) auto;
    gap: 20px;
  }

  .header-callback {
    display: none;
  }

  .shell {
    width: min(calc(100% - 64px), var(--shell));
  }

  .product-card__main {
    grid-template-columns: 48% 52%;
  }

  .product-card__footer {
    padding-inline: 16px;
  }

  .product-card__footer strong {
    font-size: 23px;
  }

  .delivery-grid,
  .about-grid {
    gap: 60px;
  }
}

@media (min-width: 1600px) {
  .hero__content,
  .hero__content h1 {
    max-width: 900px;
  }

  .hero__content h1 {
    font-size: 70px;
  }
}

@media (min-width: 1021px) {
  .hero__image {
    top: 0;
    width: auto;
    height: 100%;
    max-width: none;
    transform: none;
    animation: hero-forklift-arrive 900ms cubic-bezier(0.2, 0.72, 0.2, 1) 180ms both;
    will-change: transform, opacity;
  }
}

@media (min-width: 1021px) and (max-width: 1599px) {
  .hero__content,
  .hero__content h1 {
    max-width: 760px;
  }

  .hero__content {
    transform: none;
  }

  .hero__content h1 {
    font-size: clamp(54px, 4.35vw, 62px);
    line-height: 1.02;
  }
}

@keyframes hero-forklift-arrive {
  from {
    opacity: 0.58;
    transform: translateX(16%);
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero__image {
    animation: none;
    will-change: auto;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 72px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    padding: 22px 24px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .main-nav a {
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 540px;
  }

  .hero__image {
    width: 86%;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.74) 47%, rgba(0, 0, 0, 0.16) 78%);
  }

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

  .catalog-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-side {
    width: 100%;
    justify-content: space-between;
  }

  .delivery-grid,
  .about-grid,
  .contacts-grid,
  .content-grid,
  .product-page__grid,
  .route-layout {
    grid-template-columns: 1fr;
  }

  .product-page__media {
    position: static;
    min-height: 480px;
  }

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

  .about-copy > p {
    margin-top: 0;
  }

  .certificate-card > img {
    height: 220px;
  }
}

@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 28px;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand img {
    width: 94px;
  }

  .header-contact {
    display: flex;
    margin-left: auto;
  }

  .header-contact > .icon,
  .header-contact__hours {
    display: none;
  }

  .header-contact__phone {
    font-size: 13px;
    letter-spacing: -0.01em;
  }

  .hero {
    height: auto;
    min-height: 700px;
    padding: 46px 0 56px;
  }

  .hero__image {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: 52% 50%;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.8) 0%, rgba(5, 5, 6, 0.68) 48%, rgba(5, 5, 6, 0.44) 100%),
      linear-gradient(90deg, rgba(5, 5, 6, 0.58) 0%, rgba(5, 5, 6, 0.08) 100%);
  }

  .hero__inner {
    align-items: flex-start;
  }

  .hero__content {
    max-width: none;
    transform: none;
  }

  h1 {
    width: auto;
    max-width: 100%;
    font-size: clamp(38px, 10.6vw, 46px);
    letter-spacing: -0.025em;
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(34px, 9vw, 43px);
    line-height: 1.08;
  }

  .hero__lead {
    max-width: 440px;
    margin-top: 18px;
    font-size: 14px;
  }

  .hero__lead span {
    padding-inline: 3px;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__price-label {
    margin-top: 20px;
  }

  .section {
    padding: 70px 0;
  }

  .catalog-section {
    padding-top: 32px;
  }

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

  .section-heading__note {
    display: none;
  }

  .inner-hero {
    min-height: 300px;
    padding: 40px 0 54px;
  }

  .inner-hero h1 {
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.08;
  }

  .inner-hero__lead {
    font-size: 14px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

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

  .catalog-page .section-heading__note {
    display: block;
  }

  .filter-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .filter-tab {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
  }

  .filter-tab:first-child {
    grid-column: 1 / -1;
  }

  .filter-side {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .select-wrap select {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }

  .filter-reset {
    width: 100%;
    min-height: 48px;
    align-self: stretch;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card__main {
    display: block;
  }

  .product-card__media {
    height: 200px;
    padding: 12px 20px;
  }

  .product-card__content {
    padding: 18px;
  }

  .product-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .product-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-card dl div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .product-card dl div {
    padding: 10px 11px;
  }

  .product-card dt {
    font-size: 10px;
  }

  .product-card dd {
    font-size: 12px;
  }

  .product-card__footer {
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    padding: 12px 18px;
  }

  .term-grid {
    grid-template-columns: 1fr;
  }

  .term-grid article {
    min-height: 0;
    padding: 28px 0;
  }

  .term-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .delivery-grid,
  .about-grid,
  .contacts-grid {
    gap: 30px;
  }

  .attachments__inner,
  .lead-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .attachments h2 {
    font-size: 37px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .certificate-card > img {
    height: 250px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-card__phone {
    font-size: 27px;
  }

  .route-layout {
    gap: 16px;
    margin-top: 24px;
  }

  .route-map,
  .route-map img {
    min-height: 220px;
    height: 220px;
  }

  .route-map__label {
    top: 12px;
    left: 12px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .route-map__action {
    left: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .route-guide {
    padding: 24px 20px;
  }

  .route-guide h2 {
    margin-bottom: 14px;
  }

  .route-mode {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 15px 0;
  }

  .route-mode > span {
    font-size: 16px;
  }

  .route-note {
    margin-top: 14px;
    padding-top: 14px;
  }

  .trust-panel {
    padding: 34px 24px;
  }

  .product-page {
    padding: 34px 0 70px;
  }

  .product-page__grid {
    gap: 34px;
  }

  .product-page__media {
    min-height: 310px;
  }

  .product-page__content h1 {
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.08;
  }

  .spec-table div {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .variant-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .modal__panel,
  .modal__panel--wide,
  .modal__panel--certificate {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 34px 20px 24px;
  }

  .modal h2 {
    padding-right: 34px;
    font-size: 34px;
  }

  .form-grid,
  .product-dialog-grid {
    grid-template-columns: 1fr;
  }

  .product-dialog-grid {
    gap: 24px;
  }

  .product-dialog__media {
    min-height: 260px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .cookie-banner:not([hidden]) {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-content {
    width: min(calc(100% - 20px), 900px);
    margin: 30px auto 70px;
    padding: 34px 20px;
  }

  .legal-header__inner {
    width: min(calc(100% - 30px), var(--shell));
  }
}

@media (max-width: 380px) {
  .site-header__inner {
    gap: 8px;
  }

  .brand img {
    width: 82px;
  }

  .header-contact__phone {
    font-size: 12px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

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

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