:root {
  --orange: #f07f18;
  --orange-hover: #d96e10;
  --orange-soft: rgba(240, 127, 24, 0.14);
  --orange-line: rgba(240, 127, 24, 0.38);
  --blue: #0080ff;
  --text: #242424;
  --muted: #777777;
  --line: #e9e9e9;
  --chip: #f6f6f6;
  --bg: #ffffff;
  --page: #f8f8ff;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 20px;
  --header-h: 72px;
  --shadow: 0 10px 30px rgba(36, 36, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.header__catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
}

.header__catalog svg {
  width: 16px;
  height: 16px;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 8px;
  font-size: 14px;
  color: var(--muted);
}

.header__nav a:hover {
  color: var(--text);
}

.header__spacer {
  flex: 1;
}

.header__phone {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__social img {
  width: 28px;
  height: 28px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* Card screen */
.card-screen {
  padding: 28px 0 40px;
  background: var(--bg);
}

.breadcrumbs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  margin: 0 0 22px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs__sep {
  color: #b6b6b6;
}

.breadcrumbs .is-current {
  color: var(--text);
}

.cny-rate {
  margin: 0 0 0 auto;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.cny-rate strong {
  font-weight: 600;
  color: var(--text);
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: start;
}

/* Gallery */
.gallery__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.gallery__stage .included__photo-stub {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.gallery__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.badge--frp {
  background: var(--orange);
  color: #fff;
}

.badge--frp:hover {
  background: var(--orange-hover);
}

.badge--ru {
  background: rgba(240, 127, 24, 0.16);
  color: var(--text);
}

.badge--ru:hover {
  background: rgba(240, 127, 24, 0.26);
}

.badge__icon {
  width: 22px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(36, 36, 36, 0.12);
  flex-shrink: 0;
}

.play-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  height: 104px;
  min-width: 104px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: var(--shadow);
  transition: padding 0.28s ease, gap 0.28s ease, background 0.15s ease;
}

.play-btn__label {
  min-width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transform: translateX(10px);
  transition: max-width 0.28s ease, opacity 0.2s ease, transform 0.28s ease;
}

.play-btn:hover,
.play-btn:focus-visible {
  padding: 0 28px 0 24px;
  gap: 12px;
  background: var(--orange-hover);
}

.play-btn:hover .play-btn__label,
.play-btn:focus-visible .play-btn__label {
  max-width: 260px;
  opacity: 1;
  transform: translateX(0);
}

.play-btn svg {
  flex-shrink: 0;
  width: 32px;
  height: 36px;
  margin-left: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .play-btn,
  .play-btn__label {
    transition: none;
  }
}

.gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.thumb {
  width: 96px;
  height: 96px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.is-active {
  border-color: var(--orange);
}

.thumb:hover:not(.is-active) {
  border-color: var(--orange-line);
}

/* Info column */
.product__title {
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product__copy .included__lead {
  font-size: 16px;
  line-height: 1.6;
}

.product__copy .included__list {
  margin-bottom: 12px;
}

.product__copy .included__list li {
  font-size: 16px;
  line-height: 1.6;
}

.product-specs-block {
  padding: 8px 0 48px;
}

.product-specs-block .included__specs {
  margin-top: 0;
}

.option,
.char {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.option__label,
.char__label {
  padding-top: 8px;
  font-size: 16px;
  color: var(--text);
}

.option__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(240, 127, 24, 0.28);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}

.chip:hover {
  border-color: var(--orange);
}

.chip.is-active {
  background: var(--orange-soft);
  border-color: var(--orange);
}

.char__value {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--chip);
  font-size: 16px;
  font-weight: 600;
}

.price-block {
  margin-top: 28px;
  padding-top: 8px;
}

.price {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.price-note {
  margin: 12px 0 0;
  max-width: 560px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.price-note a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
}

.btn--primary:hover {
  background: var(--orange-hover);
}

.btn--secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--orange);
}

.btn--secondary:hover {
  background: var(--orange-soft);
}

.btn--full {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Popups */
.popup {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: 480px;
  width: min(480px, calc(100vw - 32px));
}

.popup--wide {
  max-width: 640px;
  width: min(640px, calc(100vw - 32px));
}

.popup::backdrop {
  background: rgba(23, 23, 23, 0.62);
}

.popup__panel {
  position: relative;
  padding: 36px 32px 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--chip);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.popup__title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.popup__title span {
  color: var(--orange);
}

.popup__manager {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}

.popup__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.popup__manager-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.3;
}

.popup__manager-text strong {
  font-weight: 700;
}

.popup__manager-text span {
  color: var(--muted);
  font-size: 14px;
}

.popup__form {
  display: grid;
  gap: 12px;
}

.popup__field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: transparent;
}

.popup__field input:focus {
  outline: none;
  border-bottom-color: var(--orange);
}

.popup__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 4px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  cursor: pointer;
}

.popup__check input {
  margin-top: 2px;
  accent-color: var(--orange);
}

.td-places {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 22px;
}

.td-place {
  text-align: left;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
}

.td-place strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.td-place span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.td-place.is-active {
  border-color: var(--orange);
  background: var(--orange-soft);
}

/* Video modal */
.dealer-strip {
  width: 100%;
  padding: 0 0 40px;
}

.dealer-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 28px;
  background: #f4f4f4;
  border-radius: var(--radius);
}

.dealer-strip__eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: #9a9a9a;
}

.dealer-strip__lead {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

.dealer-strip__lead span {
  color: var(--orange);
}

.dealer-strip__btn {
  flex-shrink: 0;
  min-height: 48px;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 860px) {
  .dealer-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 20px;
  }

  .dealer-strip__lead {
    font-size: 18px;
  }
}

.tabs-block {
  padding: 8px 0 48px;
}

.cases {
  padding: 56px 0 72px;
}

.cases .tabs__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.cases__count {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 20px;
}

.case-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.case-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #ececec;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
}

.case-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 0 0;
}

.case-card__date {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.3;
  color: var(--text);
}

.case-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.case-card__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}

.case-card__more {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: #f6f6f6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.case-card__link:hover .case-card__more {
  background: var(--text);
  color: #fff;
}

.cases__more {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

.partners {
  padding: 0 0 72px;
}

.partners .tabs__title {
  margin-bottom: 24px;
}

.partners__list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0 0 12px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ececec;
}

.partners__list::-webkit-scrollbar {
  height: 6px;
}

.partners__list::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
}

.partners__item {
  flex: 0 0 200px;
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 16px 20px;
  scroll-snap-align: start;
  background: var(--chip);
  border-radius: var(--radius);
}

.partners__item img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners__item--stub span {
  display: block;
  width: 72px;
  height: 40px;
  border-radius: var(--radius);
  background: #fde4cc;
}

.reviews {
  padding: 0 0 72px;
}

.reviews .tabs__title {
  margin-bottom: 24px;
}

.reviews__track {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 4px 4px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ececec;
}

.reviews__track::-webkit-scrollbar {
  height: 6px;
}

.reviews__track::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
}

.review-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 18px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.review-card__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.review-card__role {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
}

.review-card__media {
  position: relative;
  display: block;
  order: -1;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 12px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #ececec;
  cursor: pointer;
}

.review-card__media img,
.review-card__stub {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__stub {
  display: block;
  background: #fde4cc;
}

.review-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(240, 127, 24, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.review-card__play svg {
  width: 18px;
  height: 20px;
  margin-left: 2px;
}

.review-card__media:hover .review-card__play,
.review-card__media:focus-visible .review-card__play {
  background: var(--orange-hover);
  transform: translate(-50%, -50%) scale(1.06);
}

.review-card__text {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}

.review-card__date {
  margin-top: auto;
  font-size: 13px;
  line-height: 1.3;
  color: var(--muted);
}

.capture {
  padding: 0 0 72px;
}

.capture__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.capture__box {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px 32px;
  align-items: start;
  padding: 32px;
  background: #f7f7f7;
  border-radius: 12px;
}

.capture__photo {
  width: 220px;
  height: 220px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #ececec;
}

.capture__person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.capture__name {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.capture__contact {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
}

.capture__contact:hover {
  color: var(--orange);
}

.capture__content .tabs__title {
  margin-bottom: 16px;
}

.capture__content .tabs__title span {
  color: var(--orange);
}

.capture__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.capture__points li {
  padding: 8px 12px;
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.capture__lead {
  margin: 0 0 16px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.capture [hidden] {
  display: none;
}

.capture__form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.faq {
  padding: 0 0 80px;
}

.faq .tabs__title {
  margin-bottom: 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--chip);
  border-radius: var(--radius);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--orange);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__body {
  padding: 4px 20px 24px;
  max-width: 920px;
}

.faq__body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
}

.faq__body p:last-child {
  margin-bottom: 0;
}

.faq-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: faq-step;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-step {
  position: relative;
  padding: 16px 18px 16px 64px;
  border-radius: var(--radius);
  background: #fff;
  counter-increment: faq-step;
}

.faq-step::before {
  content: counter(faq-step);
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.faq-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-step__goal {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.faq-step p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.55;
}

.faq-step ul {
  margin: 0 0 10px;
  padding-left: 20px;
}

.faq-step ul:last-child {
  margin-bottom: 0;
}

.faq-step li {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.5;
}

.faq-step li:last-child {
  margin-bottom: 0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}

.tabs__btn {
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--chip);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.tabs__btn:hover {
  background: #ececec;
}

.tabs__btn.is-active {
  background: var(--orange);
  color: #fff;
}

.tabs__panel[hidden] {
  display: none;
}

.tabs__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.tabs__lead {
  margin: 0 0 32px;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.tabs__lead + .tabs__lead {
  margin-top: -16px;
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 32px;
}

.option-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.option-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}

.option-card__media img,
.option-card__stub {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-card__stub {
  background: #fde4cc;
}

.option-card__title {
  margin: 0;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.option-card .btn {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 14px;
}

#panel-extra details.included__item {
  scroll-margin-top: 16px;
}

.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.advantage {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: #f7f7f7;
  border-radius: var(--radius);
}

.advantage__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--orange-soft);
  color: var(--orange);
}

.advantage__icon svg {
  width: 22px;
  height: 22px;
}

.advantage h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.advantage p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.baykal-world {
  padding: 0 0 72px;
}

.baykal-world__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.baykal-world__head .tabs__title {
  margin-bottom: 0;
}

.baykal-world__certs {
  flex-shrink: 0;
  min-height: 42px;
  padding: 8px 18px;
  font-size: 15px;
}

.baykal-world__map {
  position: relative;
  margin: 0 0 28px;
  padding: 12px 8px 4px;
  overflow: visible;
  border-radius: var(--radius);
  background: #f7f7f7;
}

.baykal-world__map img {
  width: 100%;
  height: auto;
}

.baykal-world__banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 16px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fde4cc;
  border-top: 1px solid var(--orange-line);
}

.baykal-world__banner-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
}

.baykal-world__banner-btn {
  flex-shrink: 0;
  min-height: 42px;
  padding: 8px 22px;
  font-size: 15px;
}

.baykal-world__pins {
  position: absolute;
  inset: 12px 8px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.baykal-world__pins li {
  position: absolute;
  transform: translate(-50%, -50%);
}

.baykal-world__pin {
  position: relative;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(36, 36, 36, 0.18);
}

.baykal-world__pins .is-hq .baykal-world__pin {
  width: 16px;
  height: 16px;
}

.baykal-world__pins .is-factory,
.baykal-world__pins .is-office {
  z-index: 5;
  transform: translate(-50%, -100%);
}

.baykal-world__pins .is-office {
  z-index: 6;
}

.baykal-world__pins .is-office .baykal-world__card {
  top: calc(100% + 8px);
  bottom: auto;
}

.baykal-world__pin--factory {
  width: 28px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  box-shadow: none;
}

.baykal-world__pin--factory svg {
  display: block;
  width: 28px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(36, 36, 36, 0.22));
}

.baykal-world__pin--factory::before {
  inset: 8px 4px auto;
  width: 20px;
  height: 20px;
}

.baykal-world__pin--factory::after {
  content: none;
}

.baykal-world__card {
  position: absolute;
  right: -8px;
  bottom: calc(100% + 8px);
  width: 280px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(36, 36, 36, 0.14);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  text-align: left;
  white-space: normal;
}

.baykal-world__card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}

.baykal-world__pin::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.35;
  animation: baykal-pin-pulse 2.2s ease-out infinite;
  z-index: -1;
}

.baykal-world__pins li:nth-child(2n) .baykal-world__pin::before {
  animation-delay: 0.4s;
}

.baykal-world__pins li:nth-child(3n) .baykal-world__pin::before {
  animation-delay: 0.9s;
}

.baykal-world__pin::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 5px 8px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(36, 36, 36, 0.12);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.baykal-world__pin:hover::after,
.baykal-world__pin:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.baykal-world__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.baykal-world__cols p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.baykal-world__cols strong {
  font-weight: 700;
}

@keyframes baykal-pin-pulse {
  0% {
    transform: scale(0.55);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .baykal-world__pin::before {
    animation: none;
    opacity: 0;
  }
}

.construct {
  margin-top: 48px;
}

.construct__title {
  margin-bottom: 20px;
}

.construct__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ececec;
}

.construct__track::-webkit-scrollbar {
  height: 6px;
}

.construct__track::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
}

.construct__card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  scroll-snap-align: start;
  background: var(--chip);
  border-radius: var(--radius);
}

.construct__card img,
.construct__card video,
.construct__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: #f4f4f4;
}

.construct__thumb {
  display: block;
  background: #fde4cc;
}

.construct__card p {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

.construct__card strong {
  font-weight: 700;
  color: var(--orange);
}

.features {
  margin-top: 48px;
}

.features__title {
  margin-bottom: 20px;
}

.features__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  align-items: stretch;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ececec;
  counter-reset: feature;
}

.features__track::-webkit-scrollbar {
  height: 6px;
}

.features__track::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
}

.features__card {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  scroll-snap-align: start;
  background: var(--chip);
  border-radius: var(--radius);
  counter-increment: feature;
}

.features__card::before {
  content: counter(feature);
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}

.features__card p {
  margin: auto 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

.features__card strong {
  font-weight: 500;
  color: var(--orange);
}

.features__video {
  position: relative;
  flex: 0 0 280px;
  align-self: flex-start;
  width: 280px;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--orange);
}

.features__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.features__play svg {
  width: 40px;
  height: 46px;
  filter: drop-shadow(0 2px 8px rgba(36, 36, 36, 0.25));
}

.features__video.is-playing .features__play {
  opacity: 0;
}

.features__video.is-playing:hover .features__play,
.features__video.is-playing:focus-within .features__play {
  opacity: 1;
}

.specs {
  margin-top: 8px;
  overflow-x: auto;
  border-radius: var(--radius);
}

.specs__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.4;
}

.specs__table th,
.specs__table td {
  padding: 11px 16px;
  border: 1px solid var(--line);
  vertical-align: middle;
}

.specs__table thead th {
  background: var(--text);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-color: #3a3a3a;
}

.specs__table thead th:first-child {
  text-align: left;
}

.specs__table tbody th {
  width: 34%;
  font-weight: 500;
  text-align: left;
  background: #f4f4f4;
  color: var(--text);
}

.specs__table td {
  text-align: center;
  background: #fff;
  color: var(--text);
}

.specs__table tbody tr:nth-child(even) th {
  background: #ececec;
}

.specs__table tbody tr:nth-child(even) td {
  background: #f7f7f7;
}

.specs__group th {
  background: #e4e4e4 !important;
  font-weight: 700;
  text-align: left;
}

.included {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.included__item {
  background: var(--chip);
  border-radius: var(--radius);
}

.included__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  list-style: none;
}

.included__item summary::-webkit-details-marker {
  display: none;
}

.included__item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--orange);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.included__item[open] summary::after {
  content: "−";
}

.included__body {
  padding: 4px 20px 24px;
}

.included__layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 32px;
  align-items: start;
}

.item-gallery {
  min-width: 0;
}

.item-gallery .gallery__stage {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.item-gallery .gallery__thumbs {
  margin-top: 10px;
}

.item-gallery .thumb {
  width: 80px;
  height: 80px;
}

.item-gallery .play-btn {
  right: 12px;
  bottom: 12px;
  height: 80px;
  min-width: 80px;
  padding: 0 28px;
}

.item-gallery .play-btn svg {
  width: 24px;
  height: 28px;
}

.item-gallery .included__photo-stub {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.included__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #fff;
}

.included__photo-stub {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: #fde4cc;
}

.option-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-gallery__main {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #111;
}

.option-gallery__thumbs {
  display: flex;
  gap: 8px;
}

.option-gallery__thumb {
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #111;
  cursor: pointer;
}

.option-gallery__thumb.is-active {
  border-color: var(--orange);
}

.option-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.included__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text);
}

.included__lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.included__lead--italic {
  font-style: italic;
  margin-bottom: 24px;
}

.included__block + .included__block {
  margin-top: 36px;
}

.included__layout + .included__block {
  margin-top: 28px;
}

.included__video {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.included__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.included__texts p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.included__texts p:last-child {
  margin-bottom: 0;
}

.included__texts--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.included__list {
  margin: 0;
  padding-left: 18px;
}

.included__list li {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.included__list li:last-child {
  margin-bottom: 0;
}

.included__specs {
  margin-top: 28px;
  overflow-x: auto;
}

.included__subtitle {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.included__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.4;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.included__table th,
.included__table td {
  padding: 10px 16px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.included__table th {
  width: 34%;
  font-weight: 500;
  text-align: left;
  background: #f4f4f4;
  color: var(--text);
}

.included__table td {
  color: var(--text);
}

.included__table tr:nth-child(even) th {
  background: #ececec;
}

.included__table tr:nth-child(even) td {
  background: #f7f7f7;
}

.included__table--compare {
  min-width: 720px;
}

.included__table--compare thead th {
  background: var(--text);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-color: #3a3a3a;
}

.included__table--compare thead th:first-child {
  text-align: left;
}

.included__table--compare tbody th {
  width: 28%;
}

.economy-table-wrap {
  overflow-x: auto;
}

.economy-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.45;
  background: #fff;
}

.economy-table th,
.economy-table td {
  padding: 16px 20px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-weight: 600;
}

.economy-table thead th {
  background: var(--chip);
  color: var(--text);
}

.economy-table thead th:last-child {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.economy-table tbody th {
  width: 28%;
  font-weight: 700;
  background: #fff;
}

.economy-table tbody td:last-child {
  background: var(--orange-soft);
}

.payback {
  margin-top: 32px;
  padding: 36px 32px 32px;
  border-radius: 12px;
  background: #242424;
  color: #fff;
}

.payback__title {
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.payback__title span {
  color: var(--orange);
}

.payback__sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 28px;
}

.payback__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payback__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.payback__value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.payback__range {
  width: 100%;
  height: 18px;
  margin: 4px 0 0;
  appearance: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--orange) 25%, #fff 25%);
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: center;
}

.payback__range::-webkit-slider-runnable-track {
  height: 4px;
  border: 0;
  border-radius: 4px;
  background: transparent;
}

.payback__range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
}

.payback__range::-moz-range-track {
  height: 4px;
  border: 0;
  border-radius: 4px;
  background: #fff;
}

.payback__range::-moz-range-progress {
  height: 4px;
  border-radius: 4px;
  background: var(--orange);
}

.payback__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
}

.payback__scale {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}

.payback__results {
  padding: 8px 24px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}

.payback__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.4;
}

.payback__row:last-child {
  border-bottom: 0;
}

.payback__row strong {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
}

.payback__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.payback__cta p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.payback__cta .btn {
  flex-shrink: 0;
}

.training__heading {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.training__heading:first-of-type {
  margin-top: 8px;
}

.training__text {
  margin: 0 0 16px;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.training .advantages {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 8px;
}

.training__steps {
  margin: 0 0 16px;
  padding-left: 22px;
  max-width: 860px;
}

.training__steps li {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.training__steps li:last-child {
  margin-bottom: 0;
}

.excluded__note {
  margin: 0 0 20px;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.excluded__section {
  margin-top: 28px;
}

.excluded__heading {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.excluded__accent {
  margin: 16px 0 0;
  max-width: 860px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.review-video {
  margin: 0 0 8px;
  max-width: 960px;
}

.review-video .included__video {
  margin-bottom: 10px;
}

.review-video figcaption {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.scroll-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  align-items: stretch;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ececec;
}

.scroll-cards::-webkit-scrollbar {
  height: 6px;
}

.scroll-cards::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
}

.scroll-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
}

.scroll-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

.scroll-card--icon {
  gap: 14px;
}

.scroll-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--orange-soft);
  color: var(--orange);
}

.scroll-card__icon svg {
  width: 22px;
  height: 22px;
}

.scroll-card--media {
  flex-basis: 280px;
  padding: 16px;
}

.scroll-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: #fde4cc;
}

.scroll-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

@media (max-width: 860px) {
  .tabs__title {
    font-size: 22px;
  }

  .included__title {
    font-size: 22px;
  }

  .included__layout {
    grid-template-columns: 1fr;
  }

  .item-gallery {
    max-width: 420px;
  }

  .included__texts--cols {
    grid-template-columns: 1fr;
  }

  .included__photo {
    max-width: 420px;
  }

  .advantages {
    grid-template-columns: 1fr;
  }

  .baykal-world__cols {
    grid-template-columns: 1fr;
  }

  .payback {
    padding: 28px 20px 24px;
  }

  .payback__title {
    font-size: 22px;
  }

  .payback__sliders,
  .payback__cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .payback__row {
    flex-direction: column;
    gap: 6px;
  }

  .baykal-world__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .baykal-world__banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px 16px;
  }

  .baykal-world__banner-btn {
    width: 100%;
  }

  .baykal-world__card {
    right: auto;
    left: 50%;
    width: min(240px, calc(100vw - 48px));
    transform: translateX(-70%);
  }

  .capture__box {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .training .advantages {
    grid-template-columns: 1fr;
  }

  .cases__grid {
    grid-template-columns: 1fr;
  }
}

.video-modal {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: 960px;
  width: min(960px, calc(100vw - 32px));
}

.video-modal::backdrop {
  background: rgba(23, 23, 23, 0.72);
}

.video-modal__panel {
  position: relative;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.certs-modal {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: min(980px, calc(100vw - 32px));
  width: 100%;
}

.certs-modal::backdrop {
  background: rgba(23, 23, 23, 0.72);
}

.certs-modal__panel {
  position: relative;
  padding: 48px 16px 16px;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.certs-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.certs-modal__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.certs-modal__main {
  max-width: 100%;
  max-height: 68vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  background: #111;
}

.certs-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  transform: translateY(-50%);
}

.certs-modal__nav--prev {
  left: 8px;
}

.certs-modal__nav--next {
  right: 8px;
}

.certs-modal__nav::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.certs-modal__nav--prev::before {
  transform: rotate(135deg);
  margin-left: 4px;
}

.certs-modal__nav--next::before {
  transform: rotate(-45deg);
  margin-right: 4px;
}

.certs-modal__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 4px 2px 2px;
  overflow-x: auto;
  scrollbar-color: var(--orange) #2a2a2a;
}

.certs-modal__thumbs::-webkit-scrollbar {
  height: 6px;
}

.certs-modal__thumbs::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
}

.certs-modal__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #222;
  cursor: pointer;
}

.certs-modal__thumb.is-active {
  border-color: var(--orange);
}

.certs-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certs-modal__caption {
  margin: 12px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.certs-modal__thumbs--dealer {
  justify-content: center;
}

.certs-modal__thumb--labeled {
  flex: 0 0 112px;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
}

.certs-modal__thumb--labeled img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.certs-modal__thumb--labeled span {
  padding: 8px 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1100px) {
  .product {
    gap: 32px;
  }

  .cases__grid {
    grid-template-columns: 1fr 1fr;
  }

  .option-cards {
    grid-template-columns: 1fr 1fr;
  }

  .option,
  .char {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .option__label,
  .char__label {
    padding-top: 0;
  }

  .product__title {
    font-size: 26px;
  }

  .gallery__stage {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(1440px, calc(100% - 24px));
  }

  .header__nav,
  .header__social,
  .header__phone {
    display: none;
  }

  .product {
    grid-template-columns: 1fr;
  }

  .option-cards {
    grid-template-columns: 1fr;
  }

  .gallery__stage {
    min-height: 320px;
    aspect-ratio: 1 / 1;
  }

  .price {
    font-size: 28px;
  }

  .price-actions,
  .td-places {
    grid-template-columns: 1fr;
  }

  .price-actions .btn {
    flex: 1 1 100%;
  }

  .popup__panel {
    padding: 28px 20px 20px;
  }

  .popup__title {
    font-size: 22px;
  }
}
