@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);

/* Общие стили и сброс */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background-color: #010101;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

/* Стили для кнопок */
.button {
  border-radius: 100px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button--secondary {
  border: 1px solid #fff;
  background-color: transparent; /* Сокращено с #fff0 */
  color: #fff;
}

.button--secondary:hover {
  background-color: rgb(255 255 255 / 0.1);
}

.button--primary {
  background: #1a4cef;
  color: #fff;
  border: 1px solid #1a4cef;
}

.button--primary:hover {
  background-color: #153bc0;
  border-color: #153bc0;
}

/* Стили для заголовка (Header) */
header {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto; /* Убрал лишние top/bottom margin */
}

.header {
  width: 100%;
  height: 149px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: relative;
  z-index: 100;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.header__logo-text {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.13em;
  font-weight: 400;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}

.header__menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.header__menu-link:hover {
  color: #a0a0a0;
}

.header__burger-btn {
  display: none; /* Изначально скрыт, появляется на меньших экранах */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-icon {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.header__burger-btn.is-active .header__burger-icon:nth-child(2) {
  opacity: 0;
}

.header__burger-btn.is-active .header__burger-icon:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.header__burger-btn.is-active .header__burger-icon:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Секция Hero (Hero Section) */
.hero-section {
  position: relative;
  width: 100%;
  padding: 10% 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-section__bg-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-section__bg-mask {
  position: absolute;
  top: 125px;
  right: 10%;
  width: 35%;
  height: auto;
  max-width: 726px;
  object-fit: contain;
}

.hero-section__decorative-element {
  position: absolute;
  bottom: 50px;
  right: 30%;
  width: 8%;
  height: auto;
  max-width: 124px;
  object-fit: contain;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}

.hero-section__text-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  max-width: 570px;
  width: 100%;
}

.hero-section__title {
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

.hero-section__description {
  color: #e0e2eb;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.hero-section__stats {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-section__stat-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 180px;
  flex-grow: 1;
}

.hero-section__stat-value {
  color: #fff;
  font-size: 48px;
  line-height: 64px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-section__stat-value--small-text span:first-child {
  font-size: 48px;
  line-height: 64px;
}

.hero-section__stat-value--small-text span:last-child {
  font-size: 16px;
  line-height: 64px;
  margin-left: 5px;
}

.hero-section__stat-label {
  color: #e0e2eb;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}

.hero-section__divider {
  width: 2px;
  height: 120.5px;
  background-color: #28324e;
  flex-shrink: 0;
}

/* Секция "Наши возможности" (Mission Features) */
.mission-features {
  background-color: #fff;
  color: #010101;
  padding: 90px 0;
}

.mission-features .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}

.mission-features__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.mission-features__title {
  color: #010101;
  text-align: left;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
  max-width: 571px;
}

.mission-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
}

.feature-card {
  background: #f5f8fe;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
}

.feature-card__icon-wrapper {
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.feature-card__icon {
  display: block;
  width: 32px;
  height: 32px;
  color: #1a4cef;
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.feature-card__title {
  color: #454545;
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}

.feature-card__description {
  color: #454545;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

/* Секция "Витрина продукта" (Product Showcase) */
.product-showcase {
  position: relative;
  padding: 0 0 90px;
  background-color: #fff;
}

.product-showcase .container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.product-showcase__image {
  flex-shrink: 0;
  width: 503px;
  height: 367px;
  object-fit: cover;
}

.product-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}

.product-showcase__title {
  color: #010101;
  text-align: left;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.product-showcase__description {
  color: #212330;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

/* Секция "Почему выбирают нас" (Why Choose Us) */
.why-choose-us {
  position: relative;
  width: 100%;
  display: flex;
  background-color: #010101;
}

.why-choose-us__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 60%;
  margin: 130px 20px 130px auto;
  padding-left: 15%;
}

.why-choose-us__title {
  color: #fff;
  text-align: left;
  font-size: 56px;
  line-height: 64px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.why-choose-us__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
}

.feature-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 75%;
  height: 75%;
}

.feature-item__text-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}

.feature-item__title {
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
}

.feature-item__description {
  color: #d1d1d1;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  align-self: stretch;
  margin: 0;
}

.why-choose-us__background-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

/* Секция "Обзор" (Overview Block) */
.overview-block {
  padding: 90px 0;
  background-color: #fff;
}

.overview-block .container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.overview-block__media {
  flex-shrink: 0;
  width: 521px;
  height: 367px;
  position: relative;
}

.overview-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-block__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}

.overview-block__text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.overview-block__title {
  color: #010101;
  text-align: left;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.overview-block__subtitle {
  color: #010101;
  text-align: left;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

.overview-block__description {
  color: #212330;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.overview-block__highlights {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #212330;
}

.overview-block__highlights-title {
  color: #010101;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
}

.overview-block__highlights-list {
  margin: 0;
}

.overview-block__highlight-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.overview-block__highlight-label {
  font-weight: 700;
  color: #212330;
  flex-shrink: 0;
}

.overview-block__highlight-value {
  font-weight: 500;
  color: #212330;
  flex-grow: 1;
}

/* Блок с возможностями (Features Block) */
.features-block {
  background: #fff;
  padding: 0 0 45px;
}

.features-block .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.features-block__title {
  color: #010101;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  max-width: 800px;
}

.features-block__items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
}

.features-block__item {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-basis: calc(25% - 22.5px);
  min-width: 270px;
  flex-grow: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-block__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}

.features-block__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #010101;
}

.features-block__item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-block__item-title {
  color: #010101;
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}

.features-block__item-description {
  color: #212330;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

/* Секция "Designed" */
.designed {
  padding: 45px 0 90px;
  background-color: #fff;
}

.designed .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  padding: 65px;
  border-radius: 12px;
}

.designed-title {
  color: #ffffff; /* Заметьте: здесь цвет белый, хотя фон блока белый. Возможно, это ошибка? */
  text-align: left;
  font-size: 32px;
  line-height: 64px;
  font-weight: 700;
  margin: 0;
}

/* Таблица сравнения (Comparison Table) */
.comparison-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  padding: 0 0 90px;
}

.comparison-table__title {
  color: #010101;
  text-align: center;
  font-size: 48px;
  line-height: 64px;
  font-weight: 700;
  margin: 0 0 32px;
}

.comparison-table__content {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}

.comparison-table__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-grow: 1;
}

.comparison-table__column--wide {
  width: 391px;
  flex-grow: 0;
}

.comparison-table__header {
  color: #010101;
  text-align: left;
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  align-self: stretch;
}

.comparison-table__item {
  color: #212330;
  text-align: left;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  align-self: stretch;
}

.comparison-table__item--highlight {
  color: #1a4cef;
  line-height: 24px;
  font-weight: 700;
}

.comparison-table__divider {
  opacity: 0.3;
  flex-shrink: 0;
  width: 2px;
  height: 100%;
  overflow: visible;
  stroke: #383d53;
}

.comparison-table__image {
  object-fit: cover;
  position: relative;
  max-width: 207px;
  height: auto;
}

/* Футер (Site Footer) */
.site-footer {
  position: relative;
  width: 100%;
  min-height: 133px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background: #010101;
}

.site-footer__container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.site-footer__nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
}

.site-footer__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  white-space: nowrap;
}

.site-footer__nav-link:hover {
  text-decoration: underline;
}

/* Кнопка "Наверх" (Scroll to Top) */
.scroll {
  background: #f6f6f6;
  border-radius: 100px;
  border: 1px solid #edeff3; /* Использован конкретный цвет вместо var(--basic-color-2) */
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 70px;
  right: 70px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.ph-arrow-up-light {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  position: relative;
  overflow: visible;
}

/* Медиа-запросы для адаптивности */

/* Десктоп и большие планшеты (max-width: 1200px) */
@media (max-width: 1200px) {
  .features-block__item {
    flex-basis: calc(33.333% - 20px); /* 3 колонки */
  }
}

/* Планшеты (max-width: 1024px) */
@media (max-width: 1024px) {
  .header {
    height: 100px;
    padding: 0 20px;
  }

  .comparison-table__content {
    overflow: scroll;
    align-items: flex-start;
  }

  .header__logo-svg {
    height: 28px;
  }

  .header__logo-text {
    font-size: 11px;
  }

  .header__nav {
    gap: 20px;
  }

  .header__menu {
    gap: 20px;
  }

  .header__menu-link {
    font-size: 15px;
  }

  .hero-section__content {
    gap: 60px;
    padding: 0 20px;
  }

  .hero-section__title {
    font-size: 38px;
    line-height: 1.3;
  }

  .hero-section__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-section__stat-item {
    min-width: unset;
    width: 100%;
  }

  .hero-section__divider {
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }

  .hero-section__bg-mask {
    right: 5%;
    width: 45%;
  }

  .features-block__item {
    flex-basis: calc(50% - 15px); /* 2 колонки */
  }

  .features-block__title {
    font-size: 40px;
  }
}

/* Планшеты и маленькие ноутбуки (max-width: 992px) */
@media (max-width: 992px) {
  .product-showcase .container { /* Изменено, чтобы повлиять на .container внутри .product-showcase */
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .product-showcase__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
  }

  .product-showcase__content {
    align-items: center;
  }

  .product-showcase__title,
  .product-showcase__description {
    text-align: center;
  }

  .overview-block .container { /* Изменено, чтобы повлиять на .container внутри .overview-block */
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 30px;
  }

  .overview-block__media {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .overview-block__content {
    align-items: center;
  }

  .overview-block__title,
  .overview-block__subtitle,
  .overview-block__description {
    text-align: center;
  }

  .overview-block__highlight-item {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .overview-block__highlight-value {
    text-align: center;
  }
}

@media(min-width: 769px){
  .show_mob {
    display: none;
  }
}

/* Мобильные устройства в альбомной ориентации и маленькие планшеты (max-width: 768px) */
@media (max-width: 768px) {
  .show_mob {
    display: block!important;
  }
  header {
    position: static;
  }
  .header {
    height: 80px;
    padding: 0 15px;
  }

  .header__nav {
    display: none; /* Скрываем меню, появляется бургер */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%; /* Скрываем за экраном */
    width: 70%;
    height: 100%;
    background-color: #111;
    padding: 80px 20px 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgb(0 0 0 / 0.3);
  }

  .header__nav.is-open {
    right: 0; /* Показываем меню */
    display: flex; /* Важно, чтобы меню появилось */
  }

  .header__menu {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
  }

  .header__menu-item {
    width: 100%;
  }

  .header__menu-link {
    display: block;
    padding: 10px 0;
    font-size: 18px;
  }

  .header__contact-btn {
    margin-top: 30px;
    width: 100%;
  }

  .header__burger-btn {
    display: flex; /* Показываем бургер */
  }

  .hero-section {
    padding: 20px 0;
  }

  .hero-section__content {
    gap: 20px;
  }

  .hero-section__title {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-section__description {
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-section__stat-value {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-section__stat-value--small-text span:first-child {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-section__stat-value--small-text span:last-child {
    font-size: 14px;
    line-height: 42px;
  }

  .hero-section__divider {
    margin: 10px 0;
  }

  .hero-section__bg-mask,
  .hero-section__decorative-element {
    display: none; /* Скрываем декоративные элементы на маленьких экранах */
  }

  .hero-section__bg-mask {
    width: 100%;
    position: static;
  }
  .comparison-table__image {
    max-width: 35%;
    margin: 0 auto;
    height: auto;
  }

  .comparison-table__column + .comparison-table__image {
    display: none!important;
  }

  .mission-features__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mission-features__title {
    font-size: 38px;
    text-align: center;
    width: 100%;
    max-width: unset;
  }

  .button--primary {
    width: 100%; /* Кнопка занимает всю ширину */
  }

  .mission-features__grid {
    grid-template-columns: 1fr; /* Одна колонка */
  }

  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-card__content {
    align-items: center;
  }

  .feature-card__title,
  .feature-card__description {
    text-align: center;
  }

  .product-showcase__title {
    font-size: 38px;
  }

  .why-choose-us {
    flex-direction: column-reverse; /* Изменение на колонку */
  }

  .why-choose-us__content {
    width: 100%;
    margin: 60px 0; /* Отступы для мобильных */
    padding: 0 20px; /* Отступы внутри блока */
    align-items: center; /* Центрируем содержимое */
    text-align: center; /* Центрируем текст */
  }

  .why-choose-us__title {
    font-size: 48px;
    line-height: 1.2;
    text-align: center; /* Центрируем заголовок */
  }

  .why-choose-us__features {
    align-items: center; /* Центрируем фичи */
  }

  .feature-item {
    flex-direction: column; /* Фичи в колонку */
    text-align: center;
  }

  .feature-item__text-content {
    align-items: center;
  }

  .feature-item__title,
  .feature-item__description {
    text-align: center;
  }

  .why-choose-us__background-image {
    width: 100%; /* Изображение на всю ширину */
    height: 300px; /* Фиксированная высота для мобильных */
    object-fit: cover;
  }

  .overview-block__title {
    font-size: 38px;
  }

  .overview-block__subtitle {
    font-size: 28px;
  }

  .features-block__item {
    flex-basis: 100%; /* Одна колонка */
    max-width: 400px;
    margin: 0 auto;
  }

  .features-block__title {
    font-size: 32px;
    text-align: center;
  }

  .features-block__items {
    flex-direction: column;
    align-items: center;
  }

  .designed-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .comparison-table__title {
    font-size: 38px;
    line-height: 1.2;
  }

  

  .comparison-table__column--wide {
    width: 100%; /* Широкая колонка на всю ширину */
  }

  .comparison-table__divider {
    display: none; /* Скрываем разделитель между колонками */
  }

  .site-footer__container {
    flex-direction: column; /* Элементы футера в столбец */
    gap: 20px;
    text-align: center;
  }

  .site-footer__nav {
    flex-direction: column;
    gap: 15px;
  }

  .scroll {
    bottom: 20px;
    right: 20px;
    padding: 12px;
  }

  .ph-arrow-up-light {
    width: 32px;
    height: 32px;
  }
  .overview-block__highlights-list {
    padding: 0;
  }
  .designed .container {
    padding: 24px;
  }
}

/* Мобильные устройства (max-width: 576px) */
@media (max-width: 576px) {
  .product-showcase {
    padding: 20px 15px;
    gap: 20px;
  }

  .product-showcase__title {
    font-size: 32px;
  }

  .product-showcase__description {
    font-size: 15px;
  }

  .overview-block {
    padding: 20px 15px;
    gap: 20px;
  }

  .overview-block__title {
    font-size: 32px;
  }

  .overview-block__subtitle {
    font-size: 24px;
  }

  .overview-block__description,
  .overview-block__highlights-title,
  .overview-block__highlight-label,
  .overview-block__highlight-value {
    font-size: 15px;
  }

  .features-block {
    gap: 20px;
    padding: 15px;
  }

  .features-block__title {
    font-size: 28px;
  }

  .features-block__item {
    padding: 20px 12px;
    gap: 12px;
  }

  .features-block__item-title {
    font-size: 17px;
  }

  .features-block__item-description {
    font-size: 15px;
  }
}

/* Очень маленькие мобильные устройства (max-width: 480px) */
@media (max-width: 480px) {
  .header__logo-svg {
    height: 24px;
  }

  .header__logo-text {
    font-size: 10px;
  }

  .header__nav {
    width: 85%; /* Увеличиваем ширину меню на маленьких экранах */
  }

  .hero-section__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-section__description {
    font-size: 14px;
  }

  .mission-features__title {
    font-size: 32px;
  }
}