:root {
  --font-family: "Montserrat", sans-serif;
  --white: #ffffff;
  --blue-dark: #013682;
  --accent: #00c0e8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  caret-color: transparent;
  overflow-x: hidden;
}

input,
textarea {
  caret-color: auto;
}

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

.hero {
  width: 100%;
  min-height: 671px;
  position: relative;
  overflow: hidden;

  background-image: url("img/baner-1.PNG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero__overlay {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1440px;
  min-height: 671px;

  margin: 0 auto;
  padding: 27px 76px 40px 75px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.logo {
  display: inline-block;
  width: 155px;
  height: 39px;
}

.logo img {
  display: block;
  width: 155px;
  height: 40px;
  object-fit: contain;
}

.header__info {
  width: 483px;
  height: 40px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.header__phone {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  white-space: nowrap;

  display: inline-block; /* важно */
  transition: transform 0.2s ease;
}

.header__phone:hover {
  transform: scale(1.05);
}

.header__work {
  width: 291px;
  height: 40px;
  display: flex;
  align-items: flex-start;
}

.header__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  white-space: nowrap;
  margin-right: 20px;
}

.header__schedule {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  white-space: nowrap;
}

.hero__content {
  margin-top: 120px;
}

.hero__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 125%;
  color: var(--white);
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
}

.hero__accent {
  color: var(--accent);
}

#changing-word {
  transition: opacity 0.3s ease;
}

.hero__list {
  margin-top: 5px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__item {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 250%;
  color: var(--white);
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
}

.hero__item::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 161px;
  height: 49px;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: 900px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  transition: all 0.3s ease;
}

.hero__button:hover {
  background: var(--accent);
  color: #000000;
}

.problems {
  padding: 40px 0;
  background: #ffffff;
}

.problems__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.problems__box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  padding: 24px 30px 30px;
}

.problems__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problems__title {
  font-weight: 900;
  font-size: 36px;
  line-height: 172%;
  text-align: center;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.problems__alert {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 974px;
  height: 47px;
  padding: 10px;
  border-radius: 10px;
  background: #ea0000;
  font-weight: 600;
  font-size: 32px;
  line-height: 84%;
  text-align: center;
  color: var(--white);
}

.problems__content {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.problems__left {
  width: 387px;
  height: 445px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problems__right {
  width: 374px;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problems__center {
  flex-shrink: 0;
  width: 600px; /* увеличили */
  height: auto;
}

.problems__image {
  display: block;
  width: 100%;
  max-width: 600px; /* регулируешь размер */
  height: auto;
}

.problems__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.problems__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #3a5d8f;
}

.problems__mobile-slider {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.choose {
  padding-top: 20px;
  padding-bottom: 40px;
  background: #ffffff;
}

.choose__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.choose__title {
  font-weight: 900;
  font-size: 36px;
  color: var(--blue-dark);
  text-align: center;
}

.choose__grid {
  margin-top: 40px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  align-items: stretch;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

.product-card__image-wrap {
  height: 240px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image {
  max-height: 220px;
  width: auto;
  cursor: zoom-in;
}

.product-card__thumbs {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.product-card__thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1px solid #00c0e8;
  border-radius: 6px;
  padding: 4px;
  background: #fff;
  cursor: pointer;
}

.product-card__thumb:hover {
  border-color: var(--accent);
}

.product-card__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: auto;
  border: none;
  border-radius: 50%;
  background: #76d6ea;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.product-card__top {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.product-card__name {
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-dark);
}

.product-card__price {
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-dark);
  white-space: nowrap;
}

.product-card__desc {
  font-weight: 400;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #4d6c98;
}

.product-card__specs {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--blue-dark);
}

.product-card__specs p + p {
  margin-top: 3px;
}

.product-card__button {
  position: relative;

  display: block;
  width: 100%;
  margin-top: auto;
  padding: 12px;

  text-align: center;
  color: #ffffff;

  border-radius: 4px;
  border: 1px solid #013682;

  overflow: hidden;

  transition: color 0.3s ease;
}

.product-card__button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg, #18c2df, #0a4ca3);

  border-radius: 4px;
  z-index: 0;

  transition: opacity 0.3s ease;
}

.product-card__button span {
  position: relative;
  z-index: 1;
}

.product-card__button:hover::before {
  opacity: 0;
}

.product-card__button:hover {
  color: #0a4ca3;
}

.product-card__mobile-view {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card__video {
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #7bd3e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.product-card__video::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.product-card__video:hover {
  transform: scale(1.05);
}

.product-card:nth-child(1) {
  transition-delay: 0.1s;
}
.product-card:nth-child(2) {
  transition-delay: 0.2s;
}
.product-card:nth-child(3) {
  transition-delay: 0.3s;
}
.product-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* ============================= */
/* Manufacturer */
/* ============================= */

.manufacturer {
  padding: 40px 0;
  background: #fff;
}

.manufacturer__layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

.manufacturer__content {
  flex: 1 1 auto;
  max-width: 650px;
}

.manufacturer__title {
  margin-bottom: 30px;
  font-weight: 900;
  font-size: 36px;
  color: var(--blue-dark);
}

.manufacturer__text {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--blue-dark);
}

.manufacturer__text:last-child {
  margin-bottom: 0;
}

.manufacturer__image {
  flex: 0 0 650px;
  display: flex;
}

.manufacturer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ============================= */
/* Airflow */
/* ============================= */

.airflow {
  padding: 40px 0;
  background: #ffffff;
}

.airflow__box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.airflow__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================= */
/* Airflow banner */
/* ============================= */

.airflow-banner {
  width: 100%;
  margin: 40px 0;
}

.airflow-banner__image {
  width: 100%;
  height: auto;
  display: block;
}

.airflow-banner__image--desktop {
  display: block;
}

.airflow-banner__image--tablet {
  display: none;
}

/* ============================= */
/* Benefits */
/* ============================= */

.benefits {
  padding: 40px 0;
  background: #fff;
}

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

.benefits__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.benefits__title {
  font-family: var(--font-family);
  font-weight: 600; /* Montserrat SemiBold */
  font-size: 24px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.benefits__text {
  font-family: var(--font-family);
  font-weight: 400; /* Montserrat Regular */
  font-size: 16px;
  line-height: 1.4;
  color: var(--blue-dark);
  max-width: 240px;
}

/* ============================= */
/* Delivery & Payment */
/* ============================= */

.delivery-payment {
  padding: 40px 0 50px;
  background: #fff;
}

.delivery-payment__box {
  position: relative;
  min-height: 720px;
  padding: 28px 20px 0;

  background: #ffffff;
  border-radius: 16px;

  border: 1px solid #e6edf7;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);

  overflow: hidden;
}

.delivery-payment__title {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1;
  color: var(--blue-dark);
}

.delivery-payment__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  width: 100%; /* растягиваем на всю рамку */
  gap: 120px;

  position: relative;
  z-index: 2;
}

.delivery-payment__column {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.delivery-payment__column:first-child {
  max-width: 347px;
}

.delivery-payment__column:last-child {
  max-width: 328px;
}

.delivery-payment__item--delivery {
  min-height: 130px;
}

.delivery-payment__item--payment {
  min-height: 117px;
}

.delivery-payment__item + .delivery-payment__item {
  margin-top: 26px;
}

.delivery-payment__item-title {
  margin: 0 0 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: var(--blue-dark);
}

.delivery-payment__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: var(--blue-dark);
}

.delivery-payment__accent {
  font-weight: 600;
  color: var(--blue-dark);
}

.delivery-payment__image {
  position: absolute;
  bottom: 0;
  display: block;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.delivery-payment__image--left {
  left: 50%;
  bottom: 40px; /* подняли вверх */
  transform: translateX(-100%);
  width: 514px;
  height: 371px;
}

.delivery-payment__image--right {
  left: 50%;
  bottom: 40px; /* подняли вверх */
  transform: translateX(0);
  width: 435px;
  height: 371px;
}

.delivery-payment__image {
  opacity: 100;
}

.delivery-payment__text--mobile {
  display: none;
}

/* ============================= */
/* Consultation */
/* ============================= */

.consultation {
  padding: 40px 0 46px;
  background: #fff;
}

.consultation__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.15;
  color: var(--blue-dark);
  text-transform: uppercase;
}

.consultation__layout {
  width: 916px;
  height: 485px;
  margin: 60px auto 0;
  padding-top: 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consultation__card {
  width: 570px;
  min-height: 485px;
  padding: 40px 60px 40px;

  border-radius: 20px;
  box-shadow: 0 0 26px 4px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.5);
}

.consultation__card-title {
  margin: 0 0 34px;
  text-align: center;

  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: var(--blue-dark);
}

.consultation__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultation__field {
  width: 450px;
  margin-bottom: 24px;
  position: relative;
}

.consultation__label {
  display: block;
  margin-bottom: 8px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(1, 54, 130, 0.5);
}

.consultation__input,
.consultation__select {
  width: 450px;
  height: 60px;
  padding: 0 16px;

  border: 1px solid var(--blue-dark);
  border-radius: 8px;
  background: #fff;
  outline: none;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blue-dark);
}

.consultation__select {
  appearance: none;
  cursor: pointer;
}

.consultation__field--select::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 48px;

  font-size: 12px;
  color: var(--blue-dark);
  pointer-events: none;
}

.consultation__input:focus,
.consultation__select:focus {
  border: 2px solid var(--blue-dark);
}

.consultation__button {
  position: relative;
  margin: 24px auto 0;

  width: 190px;
  height: 49px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border-radius: 100px;
  border: 1px solid transparent;

  color: #fff;

  cursor: pointer;
  overflow: hidden;

  background: transparent;
  transition: color 0.3s ease;
}

.consultation__button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(43deg, #00c0e8 0%, #013682 100%);

  border-radius: 100px;
  z-index: 0;

  transition: opacity 0.3s ease;
}

.consultation__button svg {
  stroke: currentColor;
}

.consultation__button:hover::before {
  opacity: 0;
}

.consultation__button:hover {
  color: var(--blue-dark);
  border: 1px solid transparent;

  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(43deg, #00c0e8 0%, #013682 100%) border-box;
}

.consultation__button:active {
  background: linear-gradient(43deg, #00c0e8 0%, #013682 100%);
  color: #fff;
}

.consultation__button-cart svg,
.consultation__button-check svg {
  color: currentColor;
}

.consultation__button-cart,
.consultation__button-text,
.consultation__button-check {
  position: relative;
  z-index: 1;
  transition:
    transform 400ms cubic-bezier(0.98, -0.35, 0.24, 1.35),
    opacity 400ms cubic-bezier(0.98, -0.35, 0.24, 1.35);
}

.consultation__button-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: currentColor;
  flex-shrink: 0;
}

.consultation__button-cart svg {
  display: block;
  width: 24px;
  height: 24px;
}

.consultation__button-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: currentColor;
}

.consultation__button-check {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  opacity: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  color: #ffffff;
}

.consultation__button-check svg {
  display: block;
  width: 24px;
  height: 24px;
}

.consultation__button.is-success {
  width: 54px;
  background: linear-gradient(43deg, #00c0e8 0%, #013682 100%);
  border: none;
  color: #fff;
}

.consultation__button.is-success .consultation__button-cart {
  transform: translateX(-70px);
  opacity: 0;
}

.consultation__button.is-success .consultation__button-text {
  transform: translateX(90px);
  opacity: 0;
}

.consultation__button.is-success .consultation__button-check {
  top: 12px;
  transform: translateX(-50%);
  opacity: 1;
}

.consultation__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  margin-top: 12px;
}

.consultation__agree input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0 0;
  flex-shrink: 0;
}

.consultation__agree-text {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #0a4ca3;
}

.consultation__link {
  color: #0a4ca3;
  text-decoration: none;
}

.consultation__link:hover {
  text-decoration: underline;
}

.consultation__info {
  width: 286px;
  height: 293px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultation__info-title {
  margin: 0 0 18px;

  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: var(--blue-dark);
}

.consultation__info-text {
  margin: 0 0 16px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #013682;
}

.consultation__info-text:last-child {
  margin-bottom: 0;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.product-modal.active {
  display: block;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 54, 130, 0.35);
  backdrop-filter: blur(2px);
}

.product-modal__dialog {
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  max-width: 420px;
  max-height: 85vh;
  margin: 30px auto;
  padding: 20px 16px 16px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--blue-dark);
  cursor: pointer;
}

.product-modal__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.product-modal__image {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
}

.product-modal__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--blue-dark);
}

.product-modal__price {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.product-modal__description {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #4d6c98;
}

.product-modal__specs {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--blue-dark);
}

.product-modal__specs p + p {
  margin-top: 4px;
}

.product-modal__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #18c2df, #0a4ca3);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.video-modal.active {
  display: block;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 54, 130, 0.35);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  max-width: 980px;
  margin: 40px auto;
  padding: 18px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.video-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  z-index: 3;
}

.video-modal__frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.video-modal__player {
  display: block;
  width: 100%;
  max-height: 80vh;
  background: #000000;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: none;
}

.image-modal.active {
  display: block;
}

.image-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 54, 130, 0.4);
  backdrop-filter: blur(6px);
}

.image-modal__dialog {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  margin: 40px auto;
  padding: 16px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.image-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.image-modal__dialog {
  transform: scale(0.9);
  opacity: 0;
  transition: 0.3s ease;
}

.image-modal.active .image-modal__dialog {
  transform: scale(1);
  opacity: 1;
}

.footer {
  width: 100%;
  height: 273px;
  margin-top: 80px;
  background: rgba(0, 192, 232, 0.7);
}

.footer__container {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__left {
  width: 657px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.footer__logo {
  width: 657px;
  height: 169px;
  object-fit: contain;
  display: block;
}

.footer__copyright {
  margin: 2px 0 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

.footer__text + .footer__text {
  margin-top: 8px;
}

.footer__right {
  width: 540px;
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(4, auto);
  column-gap: 48px;
  row-gap: 12px;
  align-content: center;
  justify-content: start;
  flex-shrink: 0;
}

.footer__cell {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer__cell-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer__cell-link:hover {
  color: #013682 !important;
  text-decoration: underline;
}

.footer__title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.footer__policy,
.footer__contract {
  transition: color 0.3s ease;
}

.footer__policy:hover,
.footer__contract:hover {
  color: #013682 !important;
}

.footer__phone {
  transition: color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.footer__phone:hover {
  color: #013682 !important;
}

.footer__phone-value {
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer__phone-value:hover {
  color: #013682 !important;
}

@media (min-width: 1600px) {
  .hero {
    min-height: 760px;
    background-size: cover;
    background-position: center;
  }

  .hero__overlay {
    max-width: 1600px;
    min-height: 760px;
    padding: 32px 90px 50px 90px;
  }

  .hero__content {
    margin-top: 140px;
  }

  .hero__title {
    font-size: 72px;
  }

  .hero__list {
    margin-top: 18px;
    gap: 14px;
  }

  .hero__item {
    font-size: 18px;
    line-height: 1.8;
  }

  .hero__button {
    margin-top: 28px;
  }
}

/* ============================= */
/* planshet */
/* ============================= */

@media (max-width: 1024px) {
  .hero {
    min-height: 600px;
    background-position: center;
  }

  .hero__overlay {
    max-width: 100%;
    min-height: 600px;
    padding: 24px 30px 40px;
  }

  .airflow-banner__image--desktop {
    display: none;
  }

  .airflow-banner__image--tablet {
    display: block;
  }

  .header {
    align-items: flex-start;
    gap: 20px;
  }

  .header__info {
    width: auto;
    gap: 24px;
  }

  .header__work {
    width: auto;
  }

  .header__label {
    margin-right: 12px;
  }

  .hero__content {
    margin-top: 90px;
    max-width: 620px;
  }

  .hero__title {
    font-size: 52px;
    line-height: 1.2;
  }

  .hero__list {
    margin-top: 18px;
    gap: 10px;
  }

  .hero__item {
    line-height: 1.6;
  }

  .problems {
    padding: 30px 0;
  }

  .problems__box {
    position: relative;
    padding: 24px 20px;
    overflow: hidden;
  }

  .problems__title {
    font-size: 30px;
    line-height: 1.35;
  }

  .problems__alert {
    width: 100%;
    max-width: 100%;
    min-height: 47px;
    height: auto;
    padding: 12px 20px;
    font-size: 24px;
    line-height: 1.2;
  }

  .problems__content {
    margin-top: 40px;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;

    position: relative;

    height: 360px; /* ВАЖНО */
  }

  .problems__left,
  .problems__right {
    width: calc(50% - 15px);
    height: auto;
    min-height: 0;
    gap: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
  }

  .problems__center {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    width: 420px;
    margin: 0 auto;

    display: flex;
    justify-content: center;

    pointer-events: none;
    z-index: 1;
  }

  .problems__image {
    width: 100%;
    height: auto;
    opacity: 0.2;
  }

  .choose {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .choose__title {
    font-size: 30px;
  }

  .choose__grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-card__image-wrap {
    height: 220px;
  }

  .product-card__image {
    max-height: 200px;
  }

  .manufacturer {
    padding: 30px 0;
  }

  .manufacturer__layout {
    gap: 24px;
    align-items: center;
  }

  .manufacturer__content {
    max-width: none;
  }

  .manufacturer__title {
    margin-bottom: 20px;
    font-size: 30px;
  }

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

  .manufacturer__image {
    flex: 0 0 42%;
  }

  .benefits {
    padding: 30px 0;
  }

  .benefits__grid {
    gap: 24px;
  }

  .benefits__title {
    font-size: 22px;
  }

  .delivery-payment {
    padding: 30px 0 40px;
  }

  .delivery-payment__box {
    min-height: auto;
    padding: 24px 20px 30px;
  }

  .delivery-payment__title {
    font-size: 30px;
  }

  .delivery-payment__grid {
    gap: 40px;
  }

  .delivery-payment__column:first-child,
  .delivery-payment__column:last-child {
    max-width: none;
  }

  .delivery-payment__item-title {
    font-size: 22px;
  }

  .delivery-payment__image--left {
    width: 360px;
    height: auto;
    bottom: 0;
  }

  .delivery-payment__image--right {
    width: 320px;
    height: auto;
    bottom: 0;
  }

  .delivery-payment__image {
    opacity: 0.2;
  }

  .consultation {
    padding: 30px 0 40px;
  }

  .consultation__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .consultation__layout {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    padding-top: 0;
    gap: 24px;
    align-items: stretch;
  }

  .consultation__card {
    width: 100%;
    min-height: auto;
    padding: 30px;
  }

  .consultation__card-title {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .consultation__field {
    width: 100%;
    margin-bottom: 20px;
  }

  .consultation__input,
  .consultation__select {
    width: 100%;
  }

  .consultation__info {
    width: 260px;
    height: auto;
    justify-content: flex-start;
  }

  .consultation__info-title {
    font-size: 22px;
  }

  .footer {
    height: auto;
    margin-top: 50px;
    padding: 40px 0;
  }

  .footer__container {
    padding-left: 20px;
    padding-right: 20px;
    align-items: flex-start;
    gap: 30px;
  }

  .footer__left {
    width: 48%;
  }

  .footer__logo {
    width: 100%;
    height: auto;
  }

  .footer__right {
    width: 48%;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 10px;
  }

  .footer__cell {
    white-space: normal;
  }
}

/* =========================
   MOBILE 360px
========================= */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  section {
    overflow: hidden;
  }

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

  h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  p {
    font-size: 14px;
    line-height: 1.5;
  }

  .choose__container,
  .problems__container,
  .footer__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* HEADER */
  .header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 56px;
  }

  .logo {
    display: block;
    width: 140px;
    margin: 0 auto;
  }

  .logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .header__info {
    display: none;
  }

  /* HERO */
  .hero {
    min-height: 560px;
    background-position: 62% -40px;
  }

  .hero__overlay {
    min-height: 560px;
    padding: 12px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__content {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    width: 100%;
    margin-bottom: 50px;
    font-size: 38px;
    line-height: 1.05;
    text-align: left;
  }

  #changing-word {
    display: block;
    margin-top: 6px;
  }

  .hero__list {
    display: none;
  }

  .hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    margin: 0 auto;
    font-size: 18px;
    border-radius: 50px;
  }

  /* PROBLEMS */
  .problems {
    padding-top: 0;
  }

  .problems__container {
    padding-left: 0;
    padding-right: 0;
  }

  .problems__box {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 20px 16px;
  }

  .problems__title {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .problems__content {
    display: none;
  }

  .problems__mobile-slider {
    padding: 0;
    display: block;
    margin-top: 24px;
    overflow: hidden;
    width: 100%;
  }

  .problems__mobile-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
    display: flex;
  }

  .problems__mobile-track {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
    touch-action: pan-y;
    align-items: stretch;
  }

  .problems__mobile-card {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 20px 16px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
  }

  .problems__alert {
    font-size: 18px;
    line-height: 1.3;
  }

  .problems__mobile-card .problems__item-title {
    font-size: 18px;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 10px;
  }

  .problems__mobile-card .problems__text {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .problems__mobile-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .problems__mobile-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(1, 54, 130, 0.25);
    cursor: pointer;
  }

  .problems__mobile-dot.active {
    background: var(--accent);
  }

  /* CHOOSE */
  .choose {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .choose__title {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .choose__grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    padding: 14px;
    border-radius: 14px;
    min-height: auto;
    transition: none;
  }

  .product-card:hover {
    transform: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  }

  .product-card__image-wrap {
    height: 190px;
    margin-bottom: 8px;
  }

  .product-card__image {
    max-height: 175px;
    width: auto;
    max-width: 100%;
  }

  .product-card__thumbs,
  .product-card__desc,
  .product-card__specs,
  .product-card__button {
    display: none;
  }

  .product-card__top {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .product-card__name {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
  }

  .product-card__price {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--accent);
  }

  .product-card__mobile-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #18c2df, #0a4ca3);
    color: #ffffff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }

  .product-card__mobile-view:active {
    transform: scale(0.98);
  }

  /* MANUFACTURER */
  .manufacturer {
    padding: 30px 0;
  }

  .manufacturer__layout {
    flex-direction: column;
    gap: 20px;
  }

  .manufacturer__title {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 16px;
  }

  .manufacturer__text {
    font-size: 14px;
    line-height: 1.5;
  }

  .manufacturer__image {
    flex: none;
  }

  /* AIRFLOW BANNER */
  .airflow-banner {
    display: none;
  }

  /* BENEFITS */
  .benefits {
    padding: 30px 0;
  }

  .benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: start;
  }

  .benefits__item {
    text-align: center;
  }

  .benefits__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
  }

  .benefits__title {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .benefits__text {
    display: none;
  }

  /* DELIVERY */
  .delivery-payment {
    padding: 30px 0;
  }

  .delivery-payment__box {
    min-height: auto;
    padding: 20px 16px;
  }

  .delivery-payment__title {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .delivery-payment__grid {
    flex-direction: column;
    gap: 20px;
  }

  .delivery-payment__column {
    gap: 0;
  }

  .delivery-payment__item,
  .delivery-payment__item--delivery,
  .delivery-payment__item--payment {
    height: auto;
    min-height: 0;
    padding: 0;
    margin: 0;
  }

  .delivery-payment__item + .delivery-payment__item {
    margin-top: 12px;
  }

  .delivery-payment__item-title {
    margin: 0 0 8px 0;
  }

  .delivery-payment__text {
    margin: 0;
    font-size: 14px;
  }

  .delivery-payment__image {
    display: none;
  }

  .delivery-payment__text--desktop {
    display: none;
  }

  .delivery-payment__text--mobile {
    display: block;
  }

  /* CONSULTATION */
  .consultation {
    padding: 30px 0;
  }

  .consultation__title {
    font-size: 24px;
  }

  .consultation__layout {
    width: 100%;
    margin-top: 24px;
    flex-direction: column;
    gap: 20px;
  }

  .consultation__card {
    width: 100%;
    padding: 20px 16px;
  }

  .consultation__card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .consultation__field,
  .consultation__input,
  .consultation__select {
    width: 100%;
  }

  .consultation__input,
  .consultation__select {
    height: 48px;
    font-size: 14px;
  }

  .consultation__field--select::after {
    top: 44px;
  }

  .consultation__button {
    width: 190px;
    height: 49px;
    margin-top: 16px;
  }

  .consultation__button-text {
    font-size: 20px;
  }

  .consultation__info {
    width: 100%;
    height: auto;
  }

  .consultation__info-title {
    font-size: 20px;
  }

  .consultation__info-text {
    font-size: 14px;
  }

  .consultation__agree {
    gap: 8px;
    align-items: flex-start;
    margin-top: 14px;
  }

  .consultation__agree input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
  }

  .consultation__agree-text {
    font-size: 12px;
    line-height: 1.4;
  }

  /* FOOTER */
  .footer {
    height: auto;
    margin-top: 40px;
    padding: 30px 0;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer__left,
  .footer__right {
    width: 100%;
  }

  .footer__left {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__right {
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .footer__logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 10px;
  }

  .footer__copyright,
  .footer__cell,
  .footer__title {
    font-size: 14px;
    white-space: normal;
  }

  .footer__phone-title {
    order: 1;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .footer__phone-value {
    order: 2;
    margin-bottom: 10px;
  }

  .footer__schedule-title {
    order: 3;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .footer__schedule-weekdays {
    order: 4;
  }

  .footer__schedule-weekend {
    order: 5;
    margin-bottom: 10px;
  }

  .footer__email {
    order: 6;
    margin-bottom: 10px;
  }

  .footer__policy {
    order: 7;
  }

  .footer__contract {
    order: 8;
  }

  .footer__title {
    font-size: 16px;
    color: #fff;
  }

  /* POPUP MOBILE */
  .product-modal__dialog {
    width: calc(100% - 24px);
    margin: 24px auto;
    padding: 18px 14px 14px;
    border-radius: 16px;
  }

  .product-modal__title {
    font-size: 18px;
  }

  .product-modal__price {
    font-size: 16px;
  }

  .product-modal__description,
  .product-modal__specs {
    font-size: 13px;
  }

  .product-modal__thumbs {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .product-modal__thumb {
    width: 48px;
    height: 48px;
    padding: 4px;
    border: 1px solid #00c0e8;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
  }

  .product-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .product-modal__thumb.is-active {
    border-color: var(--blue-dark);
  }

  .product-modal__video {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #7bd3e3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .product-modal__video::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid #ffffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px;
  }

  .product-modal__thumbs {
    gap: 8px;
  }

  .product-modal__thumb,
  .product-modal__video {
    width: 44px;
    height: 44px;
  }

  .video-modal__dialog {
    width: calc(100% - 24px);
    margin: 24px auto;
    padding: 12px;
    border-radius: 16px;
  }

  .video-modal__close {
    top: 6px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 26px;
  }

  .video-modal__frame {
    border-radius: 12px;
  }

  .video-modal__player {
    max-height: 70vh;
  }
}

@media (min-width: 361px) and (max-width: 480px) {
  .logo {
    width: 150px;
  }

  .hero {
    min-height: 590px;
  }

  .hero__overlay {
    min-height: 590px;
    padding: 14px 18px 26px;
  }

  .hero__title {
    font-size: 42px;
    margin-bottom: 54px;
  }

  .hero__button {
    width: 150px;
    height: 42px;
    font-size: 19px;
  }

  .problems__title,
  .choose__title,
  .delivery-payment__title {
    font-size: 24px;
    max-width: 360px;
  }

  .manufacturer__title,
  .consultation__title {
    font-size: 26px;
    max-width: 360px;
  }

  .problems__alert {
    font-size: 20px;
  }

  .product-card__image-wrap {
    height: 210px;
  }

  .product-card__image {
    max-height: 190px;
  }

  .product-card__name {
    font-size: 17px;
  }

  .product-card__price {
    font-size: 16px;
  }

  .product-card__mobile-view {
    min-height: 44px;
    font-size: 15px;
  }

  .benefits__icon {
    width: 44px;
    height: 44px;
  }

  .benefits__title {
    font-size: 15px;
  }

  .consultation__card-title {
    font-size: 22px;
  }

  .consultation__input,
  .consultation__select {
    height: 50px;
    font-size: 15px;
  }

  .consultation__button {
    width: 200px;
    height: 50px;
  }

  .consultation__button-text {
    font-size: 21px;
  }

  .footer__logo {
    max-width: 240px;
  }

  .footer__copyright,
  .footer__cell {
    font-size: 15px;
  }

  .footer__title {
    font-size: 17px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .choose__container,
  .hero__overlay,
  .footer__container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .logo {
    width: 165px;
  }

  .hero {
    min-height: 640px;
    background-position: center top;
  }

  .hero__overlay {
    min-height: 640px;
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .header {
    margin-bottom: 64px;
  }

  .hero__content {
    margin-top: 36px;
  }

  .hero__title {
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 58px;
  }

  .hero__button {
    width: 160px;
    height: 46px;
    font-size: 20px;
  }

  .problems__box,
  .delivery-payment__box,
  .consultation__card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .problems__title,
  .choose__title,
  .delivery-payment__title {
    font-size: 28px;
    max-width: 420px;
  }

  .manufacturer__title,
  .consultation__title {
    font-size: 30px;
    max-width: 420px;
  }

  .problems__alert {
    font-size: 22px;
  }

  .problems__mobile-card {
    padding: 22px 20px;
  }

  .problems__mobile-card .problems__item-title {
    font-size: 20px;
  }

  .problems__mobile-card .problems__text {
    font-size: 15px;
  }

  .product-card {
    padding: 18px;
  }

  .product-card__image-wrap {
    height: 240px;
  }

  .product-card__image {
    max-height: 220px;
  }

  .product-card__name {
    font-size: 18px;
  }

  .product-card__price {
    font-size: 17px;
  }

  .product-card__mobile-view {
    min-height: 46px;
    font-size: 15px;
  }

  .manufacturer__text,
  .delivery-payment__text,
  .consultation__info-text {
    font-size: 15px;
  }

  .benefits__icon {
    width: 48px;
    height: 48px;
  }

  .benefits__title {
    font-size: 16px;
  }

  .consultation__card-title {
    font-size: 24px;
  }

  .consultation__input,
  .consultation__select {
    height: 52px;
    font-size: 15px;
  }

  .consultation__button {
    width: 210px;
    height: 52px;
  }

  .consultation__button-text {
    font-size: 22px;
  }

  .consultation__info-title {
    font-size: 22px;
  }

  .footer {
    margin-top: 50px;
    padding: 36px 0;
  }

  .footer__logo {
    max-width: 260px;
  }

  .footer__copyright,
  .footer__cell {
    font-size: 15px;
  }

  .footer__title {
    font-size: 17px;
  }

  .product-modal__dialog {
    max-width: 460px;
    padding: 20px 18px 18px;
  }

  .product-modal__title {
    font-size: 20px;
  }

  .product-modal__price {
    font-size: 17px;
  }

  .product-modal__description,
  .product-modal__specs {
    font-size: 14px;
  }

  .product-modal__thumbs {
    gap: 8px;
  }

  .product-modal__thumb,
  .product-modal__video {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1200px) {
  .problems__center {
    width: 650px;
  }

  .problems__image {
    max-width: 650px;
  }
}
