body {
  margin: 0;
  font-family: Arial, sans-serif;
}

p {
    margin: 0;
    padding: 0;
}

body.modal-open {
    overflow: hidden; /* Запрещает вертикальный и горизонтальный скролл */
    padding-right: 15px; /* Важно! Компенсирует ширину исчезнувшего скроллбара, чтобы контент не дергался */
}

main {
        background-color: #f9f9f9;
}

.header {
  background: #f5faff;
  border-bottom: 1px solid #dce7f3;
  position: relative;
}

.hero .container {
    padding: 0;
    padding-bottom: 30px;
}

.footer_socials.mobile {
    display: none;
}

.footer__branches.mobile {
    display: none;
}

.header__branches2 {
    display: none;
}

.footer-wrapper   .branch-item-mobile {
      padding: 8px 12px;
      background: #EFEFF50F;
    border-radius: 12px;
    font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 12px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: -3%;
  }
  
  .footer-wrapper .branch-title {
      color: white;
  }
  
  .footer-wrapper .branch-address {
      color: #FFFFFF;
opacity: 0.6;
font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: -3%;

  }
  
  .contact__phone img {
          vertical-align: middle;
    padding-right: 8px;
  }
  
  .footer-wrapper .branch-schedule {
           color: #FFFFFF;
opacity: 0.6; 
font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: -3%;

  }
  
  .footer__branches {
          gap: 8px;
    display: flex;
    flex-direction: column;
  }

.breadcrumb {
  padding-left: 0px;
  font-size: 14px;
color: #FFFFFF33;
  margin-bottom: 20px;
  margin-top: 16px;
}

.header .container {
    padding: 0;
    
}

.header__logo-wrapper {
    margin-bottom: 12px;
}

.branch-item {
        padding-bottom: 12px;
}

.breadcrumb a {
color: #FFFFFFCC;
  text-decoration: none;
  margin-right: 5px;
}

.macbook-group {
    width: calc(45% - 20px);
}

.header__subtitle,
.burger-btn,
.header__mobile-menu {
  display: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0;
  padding-bottom: 15px;
}

.advantages-list {
    padding-left: 0px;
}

.services-list {
    padding-left: 0px;
}

.header__logo {
  margin-top: 12px;
}

.header__contact {
  margin-bottom: 15px;
}

.header__logo span {
  font-size: 28px;
  font-weight: bold;
  color: #0056b3;
}

.header__logo small {
  display: block;
  font-size: 12px;
  color: #555;
}

.header__nav {
    width: 100%;
    justify-content: space-between;
    display: flex;
}

.header__nav a {
/*   margin: 0 15px;
 */  color: #212836;
  text-decoration: none;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
}

.header__logo-wrapper {
  /* Чтобы лого и подзаголовок были в одну линию на десктопе */
  display: flex;
  align-items: center;
}

.header__nav a:hover {
  color: #0056b3;
}

.header__contact {
  text-align: right;
}

.contact__time {
  font-size: 12px;
  color: #7a7a7a;
}

    .review-content {
    max-height: 160px; /* Ограничиваем высоту */
    overflow: hidden;  /* Прячем то, что не влезло */
}

.read-more {
    display: none; /* Прячем кнопку по умолчанию */
}

.review-text.show-button .read-more {
    display: block; /* Показываем кнопку, если текст длинный (JS добавил класс) */
}

.review-text.expanded .review-content {
    max-height: none; /* Раскрываем текст на всю высоту при клике */
}

.contact__phone {
  font-family: Space Grotesk;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  text-decoration: none;
  color: #323232;
}

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

.services {
  background-color: #f5f7fa;
  padding: 55px 0;
  text-align: center;
  font-family: "Golos Text", sans-serif;
}

.services .container {
  display: flex;
  flex-direction: column;
}

.services__label {
  color: #ff5c00;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.services__title {
  margin-top: 0px;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 240px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card__name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.footer-info img {
    padding-right: 5px;
}



.advantages {
  background: linear-gradient(180deg, #0d0d12 0%, #14141c 100%);
  color: #fff;
/*   padding: 64px 0;
 */  font-family: "Golos Text", sans-serif;
}

.advantages .container {
  display: flex;
  flex-direction: column;
  padding-top: 56px;
  align-items: start;
  padding-bottom: 90px;
}

.advantages__label {
  color: #ff5c00;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.advantages__title {
  font-family: Golos Text;
font-weight: 600;
font-style: SemiBold;
font-size: 42px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -3%;
margin-top: 0px;
  margin-bottom: 60px;
  }

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  justify-items: center;
}

.akcii__grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center; 
}

.adv-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 15px 0px;
  text-align: left;
  width: 210px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease, transform 0.3s ease;
}

.adv-card__num {
  color: rgba(255, 255, 255, 0.3);
  font-family: Space Grotesk;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-left: 20px;
  margin-top: 24px;
}

.adv-card__img {
  width: 100%;
  border-radius: 12px;
  margin: -15px 0;
}

.adv-card__text {
  max-width: 180px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -3%;
  margin-top: 4px;
}

.adv-card.active {
background: linear-gradient(180deg, #F86B2E 0%, #A73B5C 100%);

  color: #fff;
}

.adv-card.active .adv-card__num {
  color: #fff;
}

.adv-card:hover {
  transform: translateY(-6px);
}

.bonus {
  background-color: #f5f7fa;
  font-family: "Golos Text", sans-serif;
}

.bonus__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.bonus__img img {
  margin-top: 40px;
  width: 268px;
  height: 206px;
  object-fit: contain;
}

.bonus__content {
  text-align: left;
}

.bonus__label {
  color: #ff5c00;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.bonus__text {
  margin-top: 4px;
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
  margin-bottom: 24px;
  color: #282a31;
}

.inp {
    font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 12px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: 0%;
color: #FFFFFF;
opacity: 0.2;
padding-bottom: 17px;
}

.bonus__accent {
  color: #000;
  font-weight: 800;
}

.bonus__btn {
  display: inline-block;
  background: linear-gradient(213.87deg, #c788ff 23.58%, #339cc3 79.92%);
  color: #fff;
  padding: 17px 56px;
  border-radius: 30px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -3%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.bonus__btn:hover {
  opacity: 0.85;
}

.service-banner {
  /* position: relative; */ /* Можно убрать, если не нужно позиционирование дочерних элементов */
  /* background-color: #2b498b; */ /* Убрал, чтобы показать градиент, который, вероятно, был на "исходнике" */

  /* Убрал жесткие width: 1520px и height: 440px для адаптивности */
  max-width: 1520px; /* Ограничиваем шириной контейнера или немного больше, как на макете */
  margin: 60px auto; /* Центрирование */

  /* Общий цвет фона, если изображение не доминирует */
  background: #2b498b; /* Более темный синий, как на исходнике */

  border-radius: 18px;
  display: flex; /* Важно для расположения картинки и текста */
  align-items: center;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-height: 380px; /* Установим минимальную высоту */
}

/* --- Контейнер для изображения --- */
.banner-image-container {
  flex-shrink: 0; /* Запрещаем контейнеру сжиматься */
  /* width: 45%; */ /* Уменьшим ширину, чтобы изображение не занимало половину, а было слева */
  width: 35%; /* Новое значение */
  height: 100%; /* Занимает всю высоту родителя */
  overflow: visible; /* Важно, чтобы изображение, которое выходит за границы, было видно */
}

/* --- Изображение --- */
.banner-image {
  display: block;
  width: 109%; /* Делаем изображение шире контейнера */
  height: 100%; /* Чтобы высота заполнила контейнер */
  object-fit: cover; /* Обеспечиваем, чтобы изображение заполнило контейнер, сохраняя пропорции */
}

/* --- Контейнер для текстового контента --- */
.banner-content {
  /* Отступы были слишком большие. Скорректируем: */
  padding: 40px 60px 53px 100px;
  color: #fff;
  flex-grow: 1; /* Позволяем контенту занимать все оставшееся место */
}

/* --- Подзаголовок (оранжевый текст) --- */
.subheading {
  color: #f86b2e;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

/* --- Основной заголовок --- */
.main-heading {
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;

  margin: 0 0 20px 0;
}

/* --- Текст описания --- */
.description {
  color: #c0ccec; /* Светло-синий цвет текста */
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -3%;
  margin: 0 0 24px 0;
}

/* --- Кнопка "Оставить заявку" --- */
.cta-button {
  display: inline-block;
  background: linear-gradient(213.87deg, #2ea8b6 23.58%, #1e5ee8 63.37%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 20px 56px;
  border-radius: 50px; /* Делаем кнопку полностью скругленной */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(42, 101, 250, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px); /* Небольшой эффект при наведении */
  box-shadow: 0 6px 20px rgba(42, 101, 250, 0.5);
}

/* --- Стили для секции "Замена задней крышки" --- */
.cover-service {
  background-color: #f5f7fa; /* Светлый фон, как в блоке services/bonus */
  padding: 100px 0; /* Внутренний отступ */
  font-family: "Golos Text", sans-serif;
}

.cover-service .container {
  /* Наследуем контейнер 1200px, но переопределяем расположение */
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;

  /* *** ИЗМЕНЕНИЕ: Выравниваем контент по левому краю *** */
  justify-content: flex-start;
  /* ---------------------------------------------------- */
}

.cover-service__content {
  width: 816px;
  max-width: 816px;
  flex-shrink: 0;

  /* *** ИЗМЕНЕНИЕ: Добавляем отступ справа для разделения фото *** */
  margin-right: 60px;
  /* ----------------------------------------------------------- */
}

.cover-service__label {
  color: #ff5c00; /* Оранжевый цвет, как в других блоках */
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.cover-service__title {
  font-family: "Golos Text", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #222;
  margin: 0 0 20px 0;
}

.cover-service__description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 35px;
  max-width: 775px;
}

.cover-service__button {
  display: inline-block;
  /* Градиент кнопки: синий (слева) -> фиолетовый/розовый (справа) */
  background: linear-gradient(213.87deg, #c788ff 23.58%, #339cc3 79.92%);
  gap: 10px;
  color: #fff;
  padding: 18px 56px;
  border-radius: 50px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  leading-trim: NONE;
  text-decoration: none;
  line-height: 140%;
  letter-spacing: -3%;
  transition: opacity 0.3s ease;
}

.cover-service__button:hover {
  opacity: 0.9;
}

.cover-service__image-container {
  flex-shrink: 0;
  /* Оставшаяся ширина (например, 1400px - 816px = 584px) */
  width: 480px; /* Фиксируем ширину для хорошего кадрирования фото */
  max-height: 500px;
  overflow: hidden;
  position: relative;
  /* Уменьшим сдвиг, т.к. ширина контейнера изображения стала меньше, 
     или удалим, если фото должно быть полностью видно в своей колонке. */
  transform: translateX(50px);
}

/* ... (остальные стили cover-service__image без изменений) */

.cover-service__image {
  display: block;
  max-width: 440px;
  max-height: 368px;
  object-fit: cover;
}

/* --- Стили для широкоформатного блока "Замена стекла" --- */

/* Контейнер на всю ширину */
.screen-repair-banner {
  /* Темно-синий/черный градиент фона */
  background: linear-gradient(135deg, #0d1a29 0%, #173252 100%);
  padding: 0; /* Убираем внутренние отступы, так как высота задается контентом */
  font-family: "Golos Text", sans-serif;
  overflow: hidden; /* Важно для скрытия частей изображения, если оно выходит за границы */
}

/* Внутренний контейнер для центрирования контента */
.screen-repair-banner .container-full {
  max-width: 1920px; /* Занимает всю необходимую ширину */
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative; /* Для позиционирования изображения */
  min-height: 480px; /* Минимальная высота баннера */
}

/* Контейнер для изображения (занимает левую часть) */
.screen-repair-banner__image-container {
/*   position: absolute; Позиционируем абсолютно
top: 0;
left: 0; */
  width: 50%; /* Ширина, чтобы изображение занимало левую часть */
  height: 100%;
  overflow: hidden;
}

/* Изображение */
.screen-repair-banner__image {
  display: block;
  height: 100%;
  width: 100%; /* Убедимся, что оно растягивается по контейнеру */
  object-fit: cover;
  /* Сдвиг изображения, чтобы оно было видно и занимало нужное место */
  transform: translateX(0);
  opacity: 0.8; /* Небольшая прозрачность, чтобы фон просвечивал */
}

/* Блок контента (фиксируется справа) */
.screen-repair-banner__content {
  position: relative; /* Важно, чтобы текст был поверх изображения */
  z-index: 10;
  width: 50%; /* Занимает правую половину */
  max-width: 700px;
  padding: 60px;
  color: #fff;
}

/* Стили для текста */
.screen-repair-banner__label {
  color: #ff5c00;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.screen-repair-banner__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 20px 0;
}

.screen-repair-banner__description {
  color: #c0ccec;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Стили для градиентной кнопки */
.screen-repair-banner__button {
  display: inline-block;
  /* Градиент кнопки: синий (слева) -> фиолетовый/розовый (справа) */
  background: linear-gradient(135deg, #4d8aff, #2a65fa);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(42, 101, 250, 0.4);
}

.screen-repair-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 101, 250, 0.5);
}

.faq-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 56px 0;
  background-color: #f5f5f5;
}

.faq-wrapper {
  width: 1200px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-left {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.faq-left img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.faq-button {
  font-family: "Golos Text";
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-button:hover {
  background-color: #0056b3;
}

.faq-right {
  max-width: 670px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -3%;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  transition: color 0.3s ease;
}

.faq-icon {
  font-size: 40px;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-left button {
  max-width: 281px;
  border: none;
  margin-bottom: 32px;
}

.faq-answer {
  font-family: "Golos Text";
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -3%;
  color: #333;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
}

.faq-item.expanded .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 12px;
}

.faq-item.expanded .faq-question {
  color: #0b53ee;
}

.faq-left h2 {
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
  color: #282a31;
  margin-top: 5px;
  margin-bottom: 32px;
}

.faq-answer {
  font-family: "Golos Text";
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -3%;
  margin-top: 12px;
  padding-left: 12px;
  color: #333;
}

.expanded .faq-answer {
  display: block;
}

.reviews-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.reviews-wrapper {
  width: 1520px;
  display: flex;
  flex-direction: column;
}

.reviews-header {
  text-align: center;
}

.reviews-header h2 {
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 56px;
}

.reviews-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
      gap: 16px;

}

.review-card {
  flex: 1;
  min-width: 440px;
  background-color: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0px;
  padding-bottom: 44px;
}

.review-title {
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 145%;
  letter-spacing: -2%;
  color: #202d39;
  padding-top: 24px;
  padding-left: 24px;
}

.review-text {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
}

.review-content {
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 160%;
  letter-spacing: -2%;
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.review-text.expanded .review-content {
  max-height: none;
}

.read-more {
  display: none;
  margin-top: 12px;
  font-family: "Golos Text";
  font-size: 16px;
  font-weight: 500;
  color: #0b53ee;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.review-text.show-button .read-more {
  display: inline-block;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Golos Text";
  font-size: 16px;
  font-weight: 500;
  color: #888;
  padding-left: 24px;
  padding-right: 24px;
}

.review-stars {
  color: #ffd700;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-link {
  background-color: #e7e9eb;
  padding: 20px 0;
  text-align: center;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -3%;
}

.reviews-link a {
  color: #282a31;
  text-decoration: none;
}

.footer {
  background-color: #1b1f2b;
  padding: 60px 0 0px;
  font-family: "Golos Text";
  color: #333;
}

.footer-mail {
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 160%;
  letter-spacing: -3%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #ffffff;
  padding-bottom: 16px;
}

.footer-wrapper {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  min-width: 280px;
  max-width: 325px;
}

.footer__branches .branch-item-mobile .branch-title img {
      filter: grayscale(100%);
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 140%;
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 160%;
  letter-spacing: -3%;
  color: #ffffff;
}

.footer-center {
  display: flex;
  gap: 135px;
  min-width: 400px;
  max-height: 220px;
}

.footer-column h4 {
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
  margin-top: 10px;
  color: #4c4a4a;
}

.footer__branches h4{
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
  margin-top: 10px;
  color: #4c4a4a;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 20px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
}

.footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
}

.footer-column a:hover {
    color: rgba(11, 83, 238, 1);
}

.footer-info li a {
    text-decoration: none;
    color: white;
}

.footer-info li a:hover {
    color: rgba(11, 83, 238, 1);
}


.footer-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-phones {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 140%;
  gap: 10px;
    display: flex;
    flex-direction: column;
    padding-bottom: 18px;
}

.footer-phones li a {
    text-decoration: none;
    color:  rgba(255, 255, 255, 1);
}

.footer-phones li a:hover {
    color: rgba(11, 83, 238, 1);
}

.footer-phones li {
  font-family: Space Grotesk;
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffffff;
}

.footer-phones li img {
  padding-right: 5px;
}

.working__hour {
  margin-bottom: 0px;
  font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -3%;
color: #FFFFFF;
opacity: 0.6;
padding-bottom: 10px;
}

.footer-policy {
  font-size: 14px;
  color: #0b53ee;
  text-decoration: underline;
  padding-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
      justify-content: end;
    height: 100%;
}

.footer-center-container {
        display: flex;
    flex-direction: column;
    justify-content: end;
}

.footer-policy a {
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #4c4a4a;
}

.footer_socials {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #999;
  text-align: start;
  background-color: #0000001a;
  padding-top: 16px;
  padding-bottom: 17px;
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: #4c4a4a;
}

.footer-bottom-wrapper {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-bottom-wrapper p {
  margin-top: 0px;
  margin-bottom: 0px;
  align-items: center;
  display: flex;
}

.mobile-cta-button {
  display: none;
}
.footer___logo .footer_socials {
  display: none;
}

/* HEADER */
@media (max-width: 575px) {
  body {
    overflow-x: clip !important; /* Более надежный способ, чем hidden */
  }

  /* 2. Блокируем скролл, когда меню активно, используя position: fixed */
  body.menu-open {
    /* Это ключевой момент. Position fixed блокирует все скроллы 
         и гарантирует, что body занимает только 100% видимого окна. */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
  }
  /* Переопределяем контейнер для мобильного вида */
  
  .breadcrumb { 
      margin-top: 12px;
  }
  .container {
    width: auto;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Мобильные отступы по краям */
    padding-bottom: 15px;
  }

  .logo__footer__container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
  }
  
  .footer__branches.mobile h4 {
      display: none;
  }

    .advantages__title {
        font-family: Golos Text;
font-weight: 600;
font-style: SemiBold;
font-size: 24px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -3%;
text-align: center;

    }

  /* Скрываем десктопные элементы */
  .header__nav,
  .header__contact {
    display: none;
  }
  
  .header__branches2 {
      display: flex;
      flex-direction: column;
              margin: 6px 16px 8px 16px;
        gap: 4px;
        background: #F1F3F5;
  }

  /* Показываем Бургер-кнопку */
  .burger-btn {
    display: block;
    border: none;
    padding-top: 10px;
    background: none;
  }

  /* Настройка логотипа и подзаголовка */
  .header__logo-wrapper {
    align-items: flex-start;
    line-height: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 13px;
/*     padding-bottom: 13px;
 */    padding-left: 16px;
        padding-right: 16px;
  }
  
  .mobile-contact a {
      border-bottom: none !important;
      padding-top: 2px !important;
  }

  .header__logo {
    margin-top: 0;
  }

  /* Показываем и стилизуем подзаголовок, как на скриншоте */
  .header__subtitle {
    display: block;
    font-size: 10px;
    color: #555;
    margin-top: 5px; /* Небольшой отступ от лого */
  }

  /* --- Стили Мобильного Меню --- */
  /* --- НОВЫЙ КОНТЕЙНЕР-ОБЕРТКА --- */
  /*
   Этот контейнер ГАРАНТИРОВАННО скрывает все, что 
   выходит за его пределы по оси X.
*/
    .akcii__grid {
        display: flex;
    flex-direction: column;
    }
  .menu-outer-wrapper {
        /* position: absolute; */
        top: 100%;
        left: 0;
        width: 100%;
        /* min-height: 100vh; */
        z-index: 1000;
        /* overflow-x: hidden; */
        /* background-color: #f5faff; */
        /* background-color: #f5faff; */
        height: 100%;
        background-color: #f5faff;
  }

  /* --- САМОЕ МЕНЮ (теперь отвечает только за внутреннее содержимое и анимацию) --- */
  .header__mobile-menu {
    /* Удаляем position/top/left/width/z-index, т.к. они переехали в обертку */

    display: flex;
    flex-direction: column;
    background-color: #f5faff;

    /* Скрыто за пределами экрана */
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;

    /* Убедимся, что меню занимает 100% ширины обертки */
    width: 100%;
    min-height: 100%;
    padding: 20px;
  }

  /* Эффект открытия */
  .header__mobile-menu.active {
    transform: translateX(0);
  }

  /* Добавьте это, чтобы блокировать вертикальный скролл (ось Y) */
  .menu-open {
/*     overflow: hidden; */
  }

  /* Ссылки в меню */
  .header__mobile-menu a {
    padding: 18px 0;
    color: #212836;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #dce7f3;
  }
  .header__mobile-menu a:last-of-type {
    border-bottom: none;
  }

  /* Контакты в мобильном меню */
  .mobile-contact {
/*     margin-top: 40px; */
    padding-top: 20px;
    border-top: 1px solid #dce7f3;
    text-align: left; /* Контакты слева */
    display: flex;
    flex-direction: column;
  }
  
  .branch-item {
      padding-left: 0 !important;
      border-left: none !important;
  }
  
  .branch-item:last-child {
    border-right: none !important;
}

  .mobile-contact .contact__phone {
    font-size: 20px;
    font-weight: 500;
    color: #323232;
    margin-bottom: 5px;
  }
  .mobile-contact .contact__time {
    font-size: 14px;
    color: #7a7a7a;
  }

  /* Эффект крестика для бургера */
  .burger-btn.active .burger-icon {
    background-color: transparent;
  }

  .burger-btn.active .burger-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .burger-btn.active .burger-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
}

/* YSLYGI */

@media (max-width: 575px) {
  .services {
    padding-top: 40px;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 1px;
    justify-items: center;
  }
  
  .footer__branches.mobile{
              display: flex;
        flex-direction: column;
      gap: 4px;
  }
  
  .footer__branches {
      display: none;
  }
  
  .branch-item-mobile {
      padding: 8px 12px;
      background: #FFFFFF;
    border-radius: 12px;
    font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 12px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: -3%;
  }
  
  .branch-address {
      opacity: 0.6;   
      font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 12px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: -3%;

  }
  
  .branch-schedule {
      opacity: 0.6;
      font-family: Golos Text;
font-weight: 400;
font-style: Regular;
font-size: 12px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: -3%;

  }
  
  .footer-wrapper .header__branches2 {
      background: none;
    padding: 0;
  }
  
  .footer-wrapper .branch-item-mobile {
      background: #EFEFF50F;
      color: white;
  }
  
  .footer-wrapper .branch-title {
      color: white;
      
  }
  
  .service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 240px;
  }
  .services__title {
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
  }
  .services__label {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    text-transform: uppercase;
  }
}

@media (max-width: 575px) {
  .advantages__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .adv-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    align-items: center;
    padding: 0px 0px;
    text-align: left;
    width: 344px;
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .adv-card__num {
    color: rgba(255, 255, 255, 0.3);
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: -3%;
    padding-left: 20px;
    margin-top: 0px;
  }
  .adv-card__text {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: -3%;
    max-width: 220px;
    color: white;
  }
  .adv-card__img {
    width: 106px;
    height: 90px;
  }
}

/* BONYS */

@media (max-width: 575px) {
  .bonus {
    background-color: #f5f7fa;
    font-family: "Golos Text", sans-serif;
            padding-bottom: 42px;

  }

  .bonus__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  .bonus__img {
    display: flex;
    justify-content: center;
    object-fit: contain;
    align-items: center;
  }

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

  .bonus__label {
    color: #ff5c00;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .bonus__text {
    margin-top: 4px;
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    margin-bottom: 24px;
    color: #282a31;
  }
}

@media (max-width: 575px) {
  .service-banner {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  /* --- Контейнер для изображения --- */
  .banner-image-container {
    margin-top: 18px;
    flex-shrink: 0; /* Запрещаем контейнеру сжиматься */
    /* width: 45%; */ /* Уменьшим ширину, чтобы изображение не занимало половину, а было слева */
    width: 100%; /* Новое значение */
    height: 100%; /* Занимает всю высоту родителя */
    overflow: visible; /* Важно, чтобы изображение, которое выходит за границы, было видно */
    order: 2;
  }

  /* --- Изображение --- */
  .banner-image {
    display: block;
    width: 100%; /* Делаем изображение шире контейнера */
    height: 100%; /* Чтобы высота заполнила контейнер */
    object-fit: cover; /* Обеспечиваем, чтобы изображение заполнило контейнер, сохраняя пропорции */
  }

  /* --- Контейнер для текстового контента --- */
  .banner-content {
    /* Отступы были слишком большие. Скорректируем: */
    padding: 24px 16px 0px 16px;
    color: #fff;
    flex-grow: 1; /* Позволяем контенту занимать все оставшееся место */
  }

  /* --- Подзаголовок (оранжевый текст) --- */
  .subheading {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-transform: uppercase;
  }

  /* --- Основной заголовок --- */
  .main-heading {
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
  }

  /* --- Текст описания --- */
  .description {
    font-family: Golos Text;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -3%;
  }

  /* --- Кнопка "Оставить заявку" --- */
  .faq-left .cta-button {
    display: none;
  }
}

@media (max-width: 575px) {
  .cover-service {
    padding: 0 20px;
    padding-top: 40px;
  }

  .cover-service .container {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .cover-service__content {
    width: 100%;
    margin-right: 0;
  }

  .cover-service__label {
    text-align: center;
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-transform: uppercase;
  }

  .cover-service__title {
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
  }

  .cover-service__description {
    font-family: Golos Text;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -3%;
  }

  .cover-service__button {
    padding: 18px 32px;
  }

  .cover-service__button:hover {
  }

  .cover-service__image-container {
    margin-top: 26px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    transform: none;
  }

  /* ... (остальные стили cover-service__image без изменений) */

  .cover-service__image {
    max-width: 300px;
  }
}

/* SCREEN REPAIR */

@media (max-width: 575px) {
  .screen-repair-banner {
      padding-top: 32px;
  }

  /* Внутренний контейнер для центрирования контента */
  .screen-repair-banner .container-full {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  /* Контейнер для изображения (занимает левую часть) */
  .screen-repair-banner__image-container {
    position: static;
    order: 2;
    width: 100%;
    height: 100%;
    margin-left: -75px;
/*     max-width: 360px;
 */  }

  /* Изображение */
  .screen-repair-banner__image {
    display: flex;
    max-width: 390px;
    height: 100%;
    width: 100%; /* Убедимся, что оно растягивается по контейнеру */
    object-fit: cover;
    /* Сдвиг изображения, чтобы оно было видно и занимало нужное место */
    transform: translateX(0);
    opacity: 0.8; /* Небольшая прозрачность, чтобы фон просвечивал */
  }

  /* Блок контента (фиксируется справа) */
  .screen-repair-banner__content {
    width: 100%;
    padding: 0px;
  }

  /* Стили для текста */
  .screen-repair-banner__label {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .screen-repair-banner__title {
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
  }

  .screen-repair-banner__description {
    font-family: Golos Text;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -3%;
  }

  /* Стили для градиентной кнопки */
  .screen-repair-banner__button {
    display: inline-block;
    /* Градиент кнопки: синий (слева) -> фиолетовый/розовый (справа) */
    background: linear-gradient(135deg, #4d8aff, #2a65fa);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(42, 101, 250, 0.4);
  }

  .screen-repair-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 101, 250, 0.5);
  }
}

@media (max-width: 575px) {
  .faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 23px;
    padding-top: 24px;
  }
  
  .footer-mail {
      padding-top: 16px;
  }

  .faq-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .faq-left {
    width: 100%;
    align-items: center;
  }

  .faq-left img {
    display: none;
  }

  .mobile-cta-button {
    display: block; /* Показываем кнопку */
    order: 3; /* Размещаем ее под .faq-right */
    margin: 0 auto; /* Центрирование */
    border: none;
    padding: 21px 32px;
    border-radius: 60px;
  }

  .faq-wrapper {
    gap: 5px;
  }

  .cta-button:hover {
    transform: translateY(-2px); /* Небольшой эффект при наведении */
    box-shadow: 0 6px 20px rgba(42, 101, 250, 0.5);
  }

  .faq-question {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -3%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq-icon {
  }

  .faq-left button {
  }

  .faq-answer {
    margin-top: 0px;
    margin-left: 0px;
  }

  .faq-item.expanded .faq-answer {
    padding-top: 0px;
    padding-left: 10px;
    font-family: Golos Text;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: -3%;
    padding-right: 10px;
  }

  .faq-item.expanded .faq-question {
    padding-left: 10px;
  }

  .faq-left h2 {
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
  }

  .faq-answer {
  }

  .expanded .faq-answer {
  }
}

/* review */

/* =============================================
   АДАПТАЦИЯ СЕКЦИИ ОТЗЫВОВ (MAX-WIDTH: 575px)
   =============================================
*/
@media (max-width: 575px) {
  /* 1. Общие настройки секции */
  .reviews-section {
    padding: 40px 0; /* Уменьшаем вертикальный отступ */
  }

  /* 2. Контейнер обертки */
  .reviews-wrapper {
    /* Переопределяем фиксированную ширину 1520px на адаптивную */
    width: 90%;
    max-width: 100%;
    margin: 0 auto; /* Центрируем */
    padding: 0;
  }

  /* 3. Заголовок */
  .reviews-header h2 {
    margin-bottom: 30px;
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
  }

  /* 4. Список карточек */
  .reviews-list {
    /* Переключаем на вертикальный поток */
    flex-direction: column;
    /* Убираем flex-wrap и gap, так как карточки будут одна под другой */
    flex-wrap: nowrap;
    gap: 0;
  }

  /* 5. Карточка отзыва */
  .review-card {
    /* Переопределяем flex: 1 и min-width: 440px */
    min-width: unset;

    /* Добавляем вертикальный отступ между карточками */
    margin-bottom: 20px;
    /* Уменьшаем внутренние отступы */
    padding: 24px;
    padding-bottom: 30px;

    /* Сбрасываем gap на 0, чтобы избежать лишних отступов, 
       если браузер применяет его к flex-direction: column */
    gap: 12px;
  }

  /* 6. Текст отзыва и заголовок */
  .review-title {
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 145%;
    letter-spacing: -2%;
  }

  .review-content {
    font-family: Golos Text;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: -2%;
  }

  /* 7. Ссылка на внешние отзывы */
  .reviews-link {
    padding: 15px 40px;
    border-radius: 12px;
    padding: 15px 40px;
    text-align: left;
  }

  .reviews-link a {
    max-width: 210px;
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -3%;
  }
}

/* footer */

@media (max-width: 768px) {
  .footer-logo {
    max-width: 108px;
  }
  /* --- Общие контейнеры --- */
  .footer {
    padding: 40px 0 0; /* Уменьшаем отступ на мобилке */
  }

  .footer-wrapper,
  .footer-bottom-wrapper {
    width: 100%; /* Убираем фикс-ширину 1520px */
    flex-direction: column; /* Ставим колонки друг под друга */
    gap: 0; /* Добавляем отступ между блоками */
    padding: 0 20px; /* Добавляем боковые отступы */
    box-sizing: border-box; /* Чтобы padding не ломал ширину */
  }
  
  .footer-bottom-nbd {
      display: flex;
  }
  
  .footer-bottom-nbd p {
      display: none !important;
  }
  
  .footer-bottom-wrapper {
      display: flex;
      flex-direction: row;
  }

  /* --- Скрываем навигацию (как на фото) --- */
  .footer-center {
    display: none;
  }

  /* --- Левая колонка (Лого, Инфо) --- */
  .footer-left {
    min-width: 100%; /* Занимаем всю ширину */
    display: flex;
    flex-direction: column;
  }

  .footer-info {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  /* --- Правая колонка (Телефоны, Соцсети, Политика) --- */
  .footer-right {
    min-width: 100%; /* Занимаем всю ширину */
    align-items: start; /* Все элементы по центру */
    gap: 25px;
  }
  
  .working__hour {
      order: 2;
  }

    .footer-phones {
        order: 3;
    }

  .footer-phones li {
    font-size: 22px; /* Чуть уменьшим телефоны для мобилок */
  }

  .footer-right .footer_socials {
    display: none;
  }

  .footer_socials.mobile {
    justify-content: center;
    gap: 5px;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
  }
  
  
  
  .footer_socials {
      display: none;
  }

  .footer_socials img {
    max-width: 32px;
    height: 32px;
  }

  .footer___logo {
    display: flex;
    justify-content: space-between;
  }

  .footer-policy {
    padding-top: 15px; /* Уменьшаем отступ */
    align-items: start;
  }

  .footer-info li img {
    font-size: 22px;
    padding-right: 5px;
  }

  /* --- Нижняя строка (Копирайт) --- */
  .footer-bottom {
    margin-top: 30px;
  }

  .footer-bottom-wrapper {
    align-items: center; /* Копирайт и разработка по центру */
    gap: 20px;
  }

  .footer-bottom-wrapper p {
    text-align: center;
    justify-content: center;
  }
}
