.air-datepicker.air-datepicker--customized {
  --adp-z-index: 1001;
  --adp-border-radius: 0;
  --adp-cell-border-radius: 0;
  --adp-cell-background-color-hover: rgba(66, 128, 57, 0.25);
  --adp-cell-background-color-selected: #428039;
  --adp-cell-background-color-selected-hover: #428039;
  --adp-background-color-selected-other-month: #428039;
  --adp-background-color-selected-other-month-focused: #428039;
  --adp-color-current-date: #428039;
  --adp-width: 300px;
  --adp-day-cell-height: 40px;
}
.air-datepicker.air-datepicker--customized .air-datepicker-cell {
  font-weight: 500;
}
.air-datepicker.air-datepicker--customized .air-datepicker-cell.-disabled- {
  text-decoration: line-through;
  font-weight: 400;
  background: white;
}
.air-datepicker.air-datepicker--customized .air-datepicker-cell.-unavailable- {
  text-decoration: line-through;
}
:root {
  --regular-font: "IBM Plex Sans", sans-serif;
  --header-font: Oswald, sans-serif;
}
html,
body {
  height: 100%;
  font: 400 20px/1.2 var(--regular-font);
  color: black;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
a {
  text-decoration-thickness: 1px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
sup,
.sup {
  position: relative;
  top: -0.3em;
  font-size: 0.8em;
}
sub,
.sub {
  position: relative;
  top: 0.3em;
  font-size: 0.8em;
}
.nobr {
  white-space: nowrap;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--header-font);
}
.h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.1;
}
.h2 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 1.667rem;
  line-height: 1.1;
}
.h3 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.333rem;
  line-height: 1.1;
}
.h4 {
  font-weight: 400;
  font-size: 1.333rem;
  line-height: 1.1;
}
.text * + p {
  margin-top: 1rem;
}
.row {
  --gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin: calc(var(--gap) * -1);
}
.row--align--center {
  justify-content: center;
}
.row--double-gap {
  --gap: 2rem;
}
.col {
  box-sizing: border-box;
  padding: var(--gap);
}
.col-1 {
  width: 8.333%;
}
.col-2 {
  width: 16.667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333%;
}
.col-5 {
  width: 41.667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333%;
}
.col-8 {
  width: 66.667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333%;
}
.col-11 {
  width: 91.667%;
}
.col-12 {
  width: 100%;
}
.layout {
  position: relative;
  overflow-x: hidden;
}
.header {
  color: white;
  background: black;
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: block;
  max-height: 40px;
}
.main-menu .menu__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
}
.main-menu .menu__link {
  display: block;
  padding: 0.75em 1.5em;
  text-decoration: none;
  white-space: nowrap;
  color: white;
  transition: background 200ms ease;
}
.main-menu .menu__link:hover {
  background: #428039;
}
.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: white;
  background: black;
}
.link {
  text-decoration-thickness: 1px;
  color: #428039;
}
.btns-group {
  display: flex;
  gap: 0.5rem;
}
.btn {
  display: inline-block;
  margin: 0;
  padding: 0.75em 1.25em;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--header-font);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  color: white;
  border: 1px solid #428039;
  background: #428039;
  cursor: pointer;
  outline: none;
  transition: 200ms ease;
}
.btn:hover {
  border-color: #4b9241;
  background-color: #4b9241;
}
.btn--loading {
  position: relative;
}
.btn--loading::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #428039 url("../images/circle-loading-white.svg") no-repeat center;
  background-size: 32px 32px;
}
.btn--outline {
  color: #428039;
  background: transparent;
}
.btn--outline:hover {
  background-color: #e2f1e0;
}
.breadcrumbs {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.8;
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__item {
  display: block;
  margin-right: 0.5rem;
}
.breadcrumbs__item::after {
  content: "/";
  margin-left: 0.5rem;
}
.breadcrumbs__link {
  color: inherit;
}
.lead {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.35;
}
.container {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  padding-top: 125px;
}
.section.pb {
  padding-bottom: 125px;
}
.section.grey {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f2f4f6;
}
.section__title {
  margin-bottom: 2rem;
}
.pform__item + .pform__item {
  margin-top: 1rem;
}
.pform__label {
  display: block;
  margin-bottom: 0.1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.input,
.select {
  background: white;
}
.input__ctrl,
.select__ctrl {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0.5em;
  font-family: inherit;
  font-weight: 400;
  font-size: inherit;
  line-height: 1.25;
  color: black;
  background: none;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
}
.input__ctrl:focus,
.select__ctrl:focus {
  border-color: #999;
}
textarea.input__ctrl {
  resize: vertical;
}
.select {
  position: relative;
}
.select::before {
  content: "";
  position: absolute;
  right: 0.5em;
  top: 50%;
  box-sizing: border-box;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  transform: translateY(-62%) rotate(45deg);
}
.select__ctrl {
  padding-right: 1.75em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.pform__note {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}
.date-picker {
  position: relative;
}
.date-picker::before {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 1.5em;
  height: 1.5em;
  margin-top: -0.75em;
  background: url("../images/icon-calendar.svg") no-repeat center;
  background-size: contain;
}
.date-picker .input__ctrl {
  position: relative;
  padding-right: 2.5rem;
  width: 8.5em;
  cursor: pointer;
}
.checkbox {
  display: flex;
  gap: 0.5em;
  position: relative;
  line-height: 1.2;
  overflow: hidden;
  cursor: pointer;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
}
.checkbox__ctrl {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 1.2em;
  height: 1.2em;
  background: white;
  border: 1px solid #666;
  border-radius: 3px;
  transition: 100ms ease;
  overflow: hidden;
}
.checkbox__ctrl::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  width: 0.36em;
  height: 0.6em;
  font-size: 1.2em;
  border-right: 0.15em solid white;
  border-bottom: 0.15em solid white;
  transform: translate(-50%, 0) rotate(45deg);
  transition: 200ms ease;
  opacity: 0;
}
.checkbox:hover .checkbox__ctrl {
  background-color: #f5f5f5;
  border-color: #333;
}
.checkbox__input:checked ~ .checkbox__ctrl {
  background-color: #428039;
  border-color: #428039;
}
.checkbox__input:checked ~ .checkbox__ctrl::before {
  transform: translate(-50%, -61%) rotate(45deg);
  opacity: 1;
}
.checkbox__body {
  display: block;
}
.banner {
  position: relative;
  color: white;
  background: black;
}
.banner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, black, transparent 60%);
  opacity: 0.9;
}
.banner__img,
.banner__video {
  display: block;
  width: 100%;
  min-height: 500px;
  max-height: 95vh;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}
.banner__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 10%;
}
.banner__title {
  line-height: 1.2;
}
.banner__text {
  max-width: 600px;
  margin-top: 1.5rem;
  font-size: 1.35rem;
  font-weight: 300;
}
.banner__ctrls {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
}
.quotes {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.quote {
  display: flex;
}
.quote__cover {
  width: 200px;
}
.quote__photo {
  display: block;
  box-sizing: border-box;
  width: 200px;
  height: 200px;
  object-fit: cover;
  background: #f5f5f5;
  border: 1px solid #428039;
  border-radius: 999px;
  overflow: hidden;
}
.quote__main {
  flex: 1;
  padding: 20px 40px;
}
.quote__title {
  font-weight: 700;
}
.quote__subtitle {
  margin-top: 0.25rem;
  font-weight: 500;
}
.quote__text {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.products-grid {
  max-width: 1000px;
  margin: auto;
}
.products-grid .item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
}
.products-grid .item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.products-grid .item + .item {
  margin-top: 4em;
}
.products-grid .item__cover {
  width: 60%;
  border-radius: 10px;
  overflow: hidden;
}
.products-grid .item__main {
  flex: 1;
  padding: 1rem 2rem;
}
.products-grid .item__logo {
  display: block;
  max-width: 100px;
  opacity: 0.5;
}
.products-grid .item__title {
  margin-top: 1.5rem;
  font-weight: 700;
}
.products-grid .item__desc {
  margin-top: 1rem;
}
.products-grid .item__price {
  margin-top: 1rem;
  font-weight: 400;
  font-family: var(--header-font);
  font-size: 1.5rem;
  color: #333;
}
.products-grid .item__ctrls {
  margin-top: 1.5rem;
}
.contacts__item {
  margin-top: 3rem;
  text-align: center;
  font-size: 2rem;
}
.contacts__subtitle {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
}
.contacts__link {
  text-decoration: none;
  color: #428039;
  border-bottom: 1px solid rgba(66, 128, 57, 0.5);
}
#ymap {
  width: 800px;
  height: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  overflow: hidden;
}
.tech {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
.tech__docs {
  max-width: 300px;
}
.chars-table {
  min-width: 700px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.chars-table .bordered {
  border-top: 1px solid #ccc;
}
.chars-table tr:nth-child(odd) {
  background: #f2f4f6;
}
.chars-table th,
.chars-table td {
  padding: 4px 8px;
}
.chars-table th {
  text-align: right;
  color: #666;
}
.chars-table td {
  vertical-align: bottom;
}
.manual-link {
  display: block;
  padding: 40px;
  text-decoration: none;
  text-align: center;
  color: inherit;
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 4px;
}
.manual-link:hover {
  background: rgba(255, 0, 0, 0.05);
}
.manual-link__icon {
  display: block;
  width: 90px;
  height: 120px;
  margin: auto;
  background: url("../images/icon-pdf.png") no-repeat center;
  background-size: contain;
}
.manual-link__body {
  display: block;
  margin-top: 1rem;
}
.manual-link__title {
  display: block;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.1;
}
.manual-link__desc {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #999;
}
.manual-link__size {
  display: block;
  margin-top: 0.5rem;
  color: #666;
}
.model-grid {
  --gap: 2px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap);
}
.model-grid__img {
  display: block;
  width: 100%;
  height: auto;
  background: #f2f4f6;
}
.model-grid__t0 {
  width: 100%;
  max-width: 800px;
}
.model-grid__t1 {
  width: calc((100% - 2 * var(--gap)) / 3);
}
.photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-auto-flow: row dense;
  gap: 2px;
}
.photos-grid .t0 {
  grid-column: span 1;
  grid-row: span 1;
}
.photos-grid .t1 {
  grid-column: span 2;
  grid-row: span 2;
}
.photos-grid .t2 {
  grid-column: span 3;
  grid-row: span 3;
}
.photos-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f0f0f0;
}
.options-list .list__item + .list__item {
  margin-top: 0.5rem;
}
.options-list .price {
  margin-top: 0.1rem;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}
.basic-item,
.extra-item {
  display: block;
  position: relative;
}
.extra-item .checkbox__body {
  flex: 1;
}
.extra-item__label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.extra-item__label::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 1px dotted #ccc;
}
.extra-item__name,
.extra-item__price {
  display: block;
}
.extra-item__name span,
.extra-item__price span {
  position: relative;
  z-index: 1;
  background: white;
}
.extra-item__name {
  flex: 1;
}
.extra-item__price {
  margin-left: 25px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}
.calc__output {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #f2f4f6;
}
.calc__item {
  padding-left: 50px;
  padding-right: 50px;
}
.calc__sign {
  font-weight: 700;
  font-size: 1.5rem;
  color: #428039;
}
.calc__name {
  font-size: 0.75rem;
  line-height: 1;
}
.calc__sum {
  line-height: 1;
}
.calc__basic .calc__name,
.calc__extra .calc__name {
  margin-bottom: 0.1rem;
}
.calc__basic .calc__sum,
.calc__extra .calc__sum {
  font-size: 1.5rem;
}
.calc__total .calc__name {
  font-weight: 600;
}
.calc__total .calc__sum {
  font-weight: 500;
  font-size: 2rem;
}
.order-form .pform__ctrls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.order-form .pform__agreement {
  text-align: center;
}
.index-feedback-form .pform__ctrls {
  text-align: center;
}
.index-feedback-form .pform__agreement {
  text-align: center;
}


/* ==== Modernization layer ==== */
:root {
  --accent: #428039;
  --accent-dark: #2f5c2a;
  --bg-soft: #f5f7f8;
  --text-main: #111111;
  --text-muted: #5f6b76;
  --border-soft: rgba(17, 17, 17, 0.09);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
}
html, body {
  font-size: 18px;
  color: var(--text-main);
  background: #fff;
}
body {
  min-width: 320px;
}
.layout {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.header__row {
  gap: 16px;
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
}
.logo {
  max-height: 40px;
}
.main-menu {
  margin-left: auto;
}
.main-menu .menu__items {
  gap: 4px;
  align-items: center;
}
.main-menu .menu__link {
  padding: 0.72em 0.95em;
  border-radius: 999px;
}
.main-menu .menu__link:hover {
  background: rgba(66, 128, 57, 0.18);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.footer {
  margin-top: 0;
  padding-top: 26px;
  padding-bottom: 26px;
  background: #0c0d0d;
}
.section {
  padding-top: 96px;
}
.section.pb {
  padding-bottom: 96px;
}
.section.grey {
  padding-top: 88px;
  padding-bottom: 88px;
  background: linear-gradient(180deg, #f6f8f9 0%, #eef2f3 100%);
}
.section__title {
  margin-bottom: 2.25rem;
}
.h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1;
}
.h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.h3 {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}
.lead {
  max-width: 920px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: var(--text-muted);
}
.banner::after {
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.7) 72%, rgba(0,0,0,.9) 100%);
  opacity: 1;
}
.banner__img,
.banner__video {
  min-height: 560px;
  max-height: 92vh;
}
.banner__content {
  bottom: 8%;
}
.banner__text {
  max-width: 740px;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
}
.banner__ctrls {
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn {
  padding: 0.95em 1.45em;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(66, 128, 57, 0.18);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--outline {
  background: #fff;
}
.input__ctrl, .select__ctrl {
  min-height: 52px;
  padding: 0.8em 1em;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
textarea.input__ctrl {
  min-height: 140px;
}
.input__ctrl:focus, .select__ctrl:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(66,128,57,.12);
}
.quote {
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.quote__main {
  padding: 0;
}
.quote__text {
  margin-top: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-soft);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--radius-md);
}
.products-grid {
  display: grid;
  gap: 28px;
}
.products-grid .item,
.products-grid .item:nth-of-type(even) {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(280px, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.products-grid .item__cover {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 0;
}
.products-grid .item__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.contacts__item {
  margin-top: 0;
  padding: 28px;
  font-size: 1.3rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.contacts__map {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}
#ymap {
  width: 100%;
  height: 540px;
  border-radius: 0;
}
.tech {
  align-items: stretch;
  gap: 28px;
}
.tech__chars, .tech__docs {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.tech__chars {
  padding: 20px;
}
.tech__docs {
  padding: 20px;
}
.chars-table {
  min-width: 100%;
  border: 0;
}
.chars-table tr:nth-child(odd) {
  background: #f8fafb;
}
.chars-table th, .chars-table td {
  padding: 12px 14px;
}
.manual-link {
  padding: 32px 24px;
  border: 1px solid rgba(255, 0, 0, 0.14);
  border-radius: 18px;
}
.calc__output {
  gap: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: linear-gradient(180deg, #f7faf7 0%, #eef7ed 100%);
}
@media (max-width: 1100px) {
  .products-grid .item,
  .products-grid .item:nth-of-type(even) {
    grid-template-columns: 1fr;
  }
  .contacts {
    grid-template-columns: 1fr 1fr;
  }
  .tech {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  html, body {
    font-size: 16px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header__row {
    flex-wrap: wrap;
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .logo {
    max-height: 34px;
  }
  .menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .main-menu {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 6px;
  }
  .main-menu.is-open {
    display: block;
  }
  .main-menu .menu__items {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .main-menu .menu__link {
    padding: 0.9em 1em;
    font-size: 0.95rem;
    background: rgba(255,255,255,.04);
    border-radius: 14px;
  }
  .row {
    display: block;
    margin: 0;
  }
  .col {
    width: 100%;
    padding: 0;
  }
  .row .col + .col {
    margin-top: 20px;
  }
  .quote, .quote[style] {
    flex-direction: column !important;
    text-align: left;
  }
  .quote__title, .quote__subtitle {
    text-align: left !important;
  }
  .products-grid .item__cover {
    min-height: 240px;
  }
  .photos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .model-grid__t1 {
    width: calc((100% - var(--gap)) / 2);
  }
  .calc__output {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .calc__item {
    padding: 0 16px;
  }
  .calc__sign {
    display: none;
  }
}
@media (max-width: 680px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding-top: 68px;
  }
  .section.pb {
    padding-bottom: 68px;
  }
  .section.grey {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .banner__img, .banner__video {
    min-height: 480px;
  }
  .contacts {
    grid-template-columns: 1fr;
  }
  .contacts__item {
    font-size: 1.05rem;
  }
  #ymap {
    height: 320px;
  }
  .btns-group, .banner__ctrls, .order-form .pform__ctrls {
    flex-direction: column;
  }
  .btn, .btn--outline {
    width: 100%;
    text-align: center;
  }
  .photos-grid {
    grid-template-columns: 1fr;
  }
  .photos-grid .t0, .photos-grid .t1, .photos-grid .t2 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .chars-table th, .chars-table td {
    display: block;
    width: auto;
    text-align: left;
  }
  .chars-table th {
    padding-bottom: 2px;
  }
  .chars-table td {
    padding-top: 0;
    padding-bottom: 12px;
  }
}


/* Mobile fixes April 2026 */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.header__brand {
  min-width: 0;
}
.main-menu .menu__item {
  min-width: 0;
}
.btn {
  white-space: normal;
  line-height: 1.2;
}
.btns-group > *,
.banner__ctrls > *,
.order-form .pform__ctrls > * {
  min-width: 0;
}
.photos-grid a,
.model-grid a {
  display: block;
  overflow: hidden;
  background: #f2f4f6;
}
.photos-grid__img,
.model-grid__img {
  display: block;
}
.fancybox-slide--image .fancybox-content,
.fancybox-slide--image .fancybox-image-wrap {
  max-width: calc(100vw - 24px) !important;
  max-height: calc(100vh - 24px) !important;
}
@media (max-width: 900px) {
  .header__row {
    align-items: center;
  }
  .header__brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .main-menu {
    padding-top: 8px;
  }
  .main-menu .menu__items {
    width: 100%;
  }
  .main-menu .menu__link {
    white-space: normal;
    line-height: 1.2;
    text-align: left;
    word-break: break-word;
  }
  .btns-group,
  .banner__ctrls,
  .order-form .pform__ctrls {
    width: 100%;
    gap: 12px;
  }
  .btns-group .btn,
  .banner__ctrls .btn,
  .order-form .pform__ctrls .btn {
    width: 100%;
  }
  .products-grid,
  .contacts,
  .tech,
  .photos-grid,
  .model-grid {
    overflow: hidden;
  }
  .chars-table {
    table-layout: fixed;
  }
  iframe,
  video,
  object,
  embed {
    max-width: 100%;
  }
}
@media (max-width: 680px) {
  .header__row {
    min-height: 56px;
    gap: 12px;
  }
  .logo {
    max-height: 30px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .main-menu .menu__link {
    padding: 0.82em 0.9em;
  }
  .products-grid .item,
  .products-grid .item:nth-of-type(even),
  .contacts__item,
  .quote,
  .tech__chars,
  .tech__docs,
  .calc__output {
    border-radius: 20px;
  }
  .products-grid .item__main,
  .contacts__item,
  .quote,
  .tech__chars,
  .tech__docs {
    padding-left: 18px;
    padding-right: 18px;
  }
  .photos-grid,
  .model-grid {
    gap: 1px;
  }
}


/* Stable mobile fixes v4 */
html {
  overflow-x: clip;
}
body {
  min-width: 320px;
}
.layout,
.content,
.section,
.container,
.row,
.col,
.products-grid .item,
.products-grid .item__main,
.quote,
.contacts,
.contacts__item,
.tech,
.tech__chars,
.tech__docs,
.calc,
.calc__output,
.pform,
.pform__item,
.banner__content,
.banner__text,
.photos-grid,
.model-grid {
  max-width: 100%;
}
.menu-toggle,
.btn,
.manual-link,
.photos-grid a,
.model-grid a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.header {
  position: sticky;
  top: 0;
  z-index: 40;
}
.main-menu,
.main-menu .menu__items,
.main-menu .menu__item,
.main-menu .menu__link {
  max-width: 100%;
}
.main-menu .menu__link {
  overflow-wrap: anywhere;
}
.btn,
.manual-link,
.order-form .pform__ctrls > * {
  max-width: 100%;
}
.photos-grid,
.model-grid {
  align-items: stretch;
}
.photos-grid a,
.model-grid a,
.photos-grid__img,
.model-grid__img {
  width: 100%;
}
.photos-grid__img,
.model-grid__img,
.products-grid .item__cover,
.banner__img,
.banner__video {
  object-fit: cover;
}
.fancybox-container {
  z-index: 99999;
}
@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }
  .header {
    backdrop-filter: blur(8px);
  }
  .header__row {
    gap: 10px;
  }
  .main-menu.is-open {
    display: block;
  }
  .main-menu .menu__items {
    padding-bottom: 6px;
  }
  .products-grid .item__main,
  .quote,
  .contacts__item,
  .tech__chars,
  .tech__docs,
  .manual-link,
  .pform {
    overflow: hidden;
  }
}
@media (max-width: 680px) {
  .header__row {
    min-height: 54px;
  }
  .main-menu {
    padding-top: 4px;
  }
  .main-menu .menu__link {
    font-size: 0.92rem;
    padding: 0.8em 0.9em;
  }
  .btn,
  .btn--outline,
  .manual-link {
    white-space: normal;
    word-break: break-word;
  }
  .chars-table,
  .chars-table tbody,
  .chars-table tr,
  .chars-table th,
  .chars-table td {
    max-width: 100%;
  }
  .chars-table td {
    overflow-wrap: anywhere;
  }
}
/* === 2026 visual refresh layer: preserves existing content and forms === */
:root{--nv-accent:#dfff39;--nv-dark:#0b0d0e;--nv-panel:#151819;--nv-line:rgba(255,255,255,.13)}html{scroll-behavior:smooth}body{background:#0e1011;color:#f2f4f4}.layout{background:#0e1011}.header{background:rgba(10,12,13,.72)!important;border-bottom:1px solid rgba(255,255,255,.1);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.menu__link{font-weight:600;letter-spacing:.01em}.menu__link--accent{color:#111!important;background:var(--nv-accent);border-radius:999px;padding-left:1.15em!important;padding-right:1.15em!important}.banner{min-height:min(860px,92vh);display:flex;align-items:flex-end;overflow:hidden;background:#080a0b}.banner:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.35) 48%,rgba(0,0,0,.08) 100%),linear-gradient(0deg,rgba(8,10,11,.86),transparent 55%);z-index:1;pointer-events:none}.banner__img,.banner__video{transform:scale(1.015);filter:saturate(.88) contrast(1.08)}.banner__content{z-index:2!important;padding-bottom:9vh}.banner__title{font-size:clamp(3rem,7vw,7.5rem)!important;line-height:.94!important;max-width:1150px;letter-spacing:-.045em;text-transform:uppercase;text-wrap:balance}.banner__text{font-size:clamp(1.05rem,2vw,1.55rem);margin-top:24px;color:#dfe3e4}.btn{border-radius:999px!important;font-weight:750;transition:transform .22s ease,box-shadow .22s ease,background .22s ease}.btn:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.24)}.section{padding-top:clamp(70px,9vw,135px)!important;padding-bottom:clamp(70px,9vw,135px)!important}.section.grey{background:#151819!important}.h2.section__title,.section__title{font-size:clamp(2.4rem,5vw,5.2rem)!important;line-height:1!important;letter-spacing:-.035em}.lead{font-size:clamp(1.15rem,2vw,1.7rem)!important;line-height:1.45!important;max-width:1050px;margin-inline:auto}.products-grid{gap:24px!important}.products-grid .item{border-radius:28px!important;overflow:hidden;background:#f2f3f1;box-shadow:0 20px 70px rgba(0,0,0,.25);transition:transform .3s ease}.products-grid .item:hover{transform:translateY(-7px)}.products-grid .item__cover{aspect-ratio:16/10;object-fit:cover}.quote,.contacts__item,.pform{border-radius:22px!important}.footer{background:#080a0b!important;color:#939b9e;padding:42px 0!important}.kicker{font:700 12px/1.2 "IBM Plex Sans",sans-serif;letter-spacing:.17em;color:var(--nv-accent);margin-bottom:13px}.offers-hero{padding:160px 0 80px;background:radial-gradient(circle at 75% 30%,#313923 0,transparent 33%),#0b0d0e}.offers-hero .h1{font-size:clamp(3.5rem,8vw,8rem);letter-spacing:-.05em}.offers-lead{max-width:720px;font-size:1.3rem;color:#adb5b8}.offers-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.offer-card{background:#171a1b;border:1px solid var(--nv-line);border-radius:24px;overflow:hidden}.offer-card__media{position:relative;display:block;aspect-ratio:16/10;background:#24292a;overflow:hidden}.offer-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.offer-card:hover img{transform:scale(1.035)}.offer-badge{position:absolute;left:18px;top:18px;background:var(--nv-accent);color:#0a0c0d;padding:8px 12px;border-radius:999px;font-weight:800;font-size:.78rem}.offer-card__body{padding:26px}.offer-card h2{font-size:clamp(1.6rem,3vw,2.6rem);margin:.25em 0 .55em}.offer-price{display:flex;gap:12px;align-items:baseline;font-size:1.55rem;font-weight:800;margin:0 0 22px}.offer-price del{font-size:.85rem;color:#899194;font-weight:500}.offer-placeholder{height:100%;display:grid;place-items:center;font:800 4rem/1 "Oswald",sans-serif;color:#5a6265}.offer-placeholder.large{min-height:520px}.offer-detail{padding:145px 0 100px}.back-link{display:inline-block;margin-bottom:25px;color:#adb5b8}.offer-detail__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:50px;align-items:center}.offer-detail__media{border-radius:28px;overflow:hidden;background:#202425}.offer-detail__media img{display:block;width:100%;height:auto}.offer-detail__info .h1{font-size:clamp(2.5rem,5vw,5.2rem);line-height:1;letter-spacing:-.04em}.offer-price.big{font-size:clamp(2rem,4vw,3.8rem)}.offer-status{display:inline-flex;background:#252b2d;border:1px solid var(--nv-line);padding:9px 13px;border-radius:999px;margin-bottom:24px}.offer-copy{font-size:1.1rem;color:#c5cbcd;margin-bottom:28px}.btn--xl{font-size:1.05rem;padding:1.05em 1.7em}.offer-equipment{max-width:900px;margin:90px auto 0;padding:45px;background:#171a1b;border:1px solid var(--nv-line);border-radius:26px}.offer-equipment ul{list-style:none;padding:0;margin:28px 0 0;display:grid;grid-template-columns:1fr 1fr;gap:12px 28px}.offer-equipment li{position:relative;padding-left:24px;color:#d4d9db}.offer-equipment li:before{content:"+";position:absolute;left:0;color:var(--nv-accent);font-weight:900}.empty-offers{text-align:center;padding:80px 20px;background:#171a1b;border-radius:28px}.empty-offers h2{font-size:2.5rem}@media(max-width:900px){.offers-grid,.offer-detail__grid{grid-template-columns:1fr}.offer-detail__grid{gap:28px}.offer-equipment ul{grid-template-columns:1fr}.banner{min-height:78vh}.menu__link--accent{display:inline-block}.offer-placeholder.large{min-height:320px}}@media(max-width:600px){.offers-grid{grid-template-columns:1fr}.offer-card__body{padding:20px}.offer-equipment{padding:24px}.offers-hero{padding-top:115px}}
