@font-face {
  font-family: 'Akystic';
  src: url('/fonts/captureit.ttf') format('truetype');
}

.mob_banner {
  background-color: #3498db;
  padding-bottom: 20px;
  font-family: 'Mulish', sans-serif !important;
  background-image: url(/assets/img/testbg.jpg?v4);
  background-size: contain;
  background-repeat: no-repeat;
}

/* Статичный баннер - мобильная версия */
.static-banner {
  background-color: #2c3e50;
  background-image:
    linear-gradient(
      to right,
      rgb(149 184 219) 0%,
      rgba(44, 62, 80, 0.3) 60%,
      rgba(44, 62, 80, 0) 100%
    ),
    url(/upload/images/slider/newbg.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bannerFadeIn 1s ease forwards;
}

@keyframes bannerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.static-banner .mob-title {
  text-align: left;
}

.static-banner .mob-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.banner-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.banner-social img {
  width: 28px;
  height: 28px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.banner-social img[src*='rutube'] {
  width: 24px;
  height: 24px;
}

.banner-social img[src*='vkvideo'] {
  width: 24px;
  height: 24px;
}

.banner-social a:hover img {
  opacity: 0.7;
}

.banner-phone {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.banner-phone:hover {
  color: #ff6b01;
}

.banner-work {
  font-size: 16px;
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

.static-banner .mob_subtitle {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.static-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}

.static-btn {
  background: rgb(255, 132, 43);
  background: linear-gradient(
    180deg,
    rgba(255, 132, 43, 1) 0%,
    rgba(216, 121, 27, 1) 100%
  );
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.static-btn:hover {
  background: #d35400;
  color: #fff;
  text-decoration: none;
}

/* Статичный баннер - десктоп */
.static-banner-desktop {
  background-color: #2c3e50;
  background-image:
    linear-gradient(
      to right,
      rgb(149 184 219) 0%,
      rgba(44, 62, 80, 0.3) 60%,
      rgba(44, 62, 80, 0) 100%
    ),
    url(/upload/images/slider/newbg.jpg);
  background-size: cover;
  background-position: center;
  min-height: 600px;
  padding: 60px 0;
  opacity: 0;
  animation: bannerFadeIn 1s ease forwards;
}

.static-banner-desktop .banner-content {
  max-width: 700px;
  text-align: left;
}

.static-banner-desktop h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 165px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.static-banner-desktop .banner-social {
  margin-bottom: 15px;
}

/* Анимированная цитата Сергея Холодова */
.holodov-quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.holodov-quote .quote-line {
  display: block;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: quoteLineFadeIn 0.8s ease forwards;
}

.holodov-quote .quote-line:nth-child(1) {
  font-size: 24px;
  animation-delay: 1s;
}

.holodov-quote .quote-line:nth-child(2) {
  font-size: 20px;
  animation-delay: 2.2s;
}

.holodov-quote .quote-line:nth-child(3) {
  font-size: 16px;
  animation-delay: 3.4s;
  font-weight: 400;
}

.holodov-quote-desktop .quote-line:nth-child(1) {
  font-size: 42px;
}

.holodov-quote-desktop .quote-line:nth-child(2) {
  font-size: 36px;
}

.holodov-quote-desktop .quote-line:nth-child(3) {
  font-size: 24px;
}

@keyframes quoteLineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Мобильная версия - уменьшаем отступ вниз для баннера */
.static-banner .holodov-quote {
  margin-bottom: 20px;
}

/* Десктопная версия - отступы для контента после цитаты */
.static-banner-desktop .holodov-quote {
  margin-bottom: 100px;
}

/* Анимация выезда снизу */
.slide-in-bottom {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInBottom 0.6s ease forwards;
}

@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.static-banner-desktop .banner-social img {
  width: 36px;
  height: 36px;
}

.static-banner-desktop .banner-social img[src*='rutube'] {
  width: 32px;
  height: 32px;
}

.static-banner-desktop .banner-social img[src*='vkvideo'] {
  width: 32px;
  height: 32px;
}

/* Новые стили для телефонов в шапке */
.top-phones-large {
  display: flex;
  align-items: center;
}

.top-phones-large .phone-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-phones-large .phone-icon {
  width: 36px;
  height: 36px;
  color: #ff6b01;
  flex-shrink: 0;
}

.top-phones-large .phones-list {
  display: flex;
  flex-direction: column;
}

.top-phones-large .phone-main {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  line-height: 1.2;
}

.top-phones-large .phone-main:hover {
  color: #ff6b01;
}

.top-phones-large .phone-secondary {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.top-phones-large .phone-secondary:hover {
  color: #ff6b01;
}

/* Стили для мобильных телефонов */
.mob-phones-large {
  gap: 5px;
}

.mob-phones-large a {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  line-height: 1.3;
}

.mob-phones-large a:hover {
  color: #ff6b01;
}

.mob-phones-large a:last-child {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.static-banner-desktop .banner-phone {
  font-size: 32px;
}

.static-banner-desktop .banner-work {
  font-size: 20px;
}

.static-banner-desktop .banner-subtitle {
  font-size: 22px;
  color: #fff;
  margin-bottom: 35px;
  opacity: 0.95;
}

.static-banner-desktop .static-buttons {
  gap: 25px;
}

.static-banner-desktop .static-btn {
  padding: 18px 45px;
  font-size: 16px;
}

/* Адаптивность для планшета */
@media (max-width: 991px) and (min-width: 768px) {
  .static-banner .mob-title h1 {
    font-size: 32px;
  }

  .static-banner-desktop {
    min-height: 400px;
    padding: 40px 0;
  }

  .static-banner-desktop h1 {
    font-size: 36px;
  }

  .static-banner-desktop .banner-subtitle {
    font-size: 18px;
  }
}

/* Адаптивность для мобильных */
@media (max-width: 767px) {
  .static-banner .mob-title h1 {
    font-size: 30px;
  }

  .static-banner {
    background-position: 70%;
  }

  .static-banner .mob_subtitle {
    font-size: 14px;
  }

  .static-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .static-btn {
    width: 100%;
    text-align: center;
  }
}

.logo-title {
  font-family: 'Akystic', sans-serif !important;
  line-height: 1.15;
  font-size: 18px;
  color: #fff;
}

/* Логотип в мобильной шапке - современный стиль */
.mob-header-fixed .m-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mob-header-fixed .m-logo a {
  display: block;
  transition: transform 0.3s ease;
}

.mob-header-fixed .m-logo a:hover {
  transform: scale(1.05);
}

.mob-header-fixed .m-logo img {
  max-width: 45px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Название "Акустик Сервис" в мобильной шапке */
.mob-header-fixed .logo-title {
  font-family: 'Akystic', sans-serif !important;
  line-height: 1;
  font-size: 18px;
  color: #202020 !important;
  padding-left: 5px;
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 380px) {
  .mob-header-fixed .container {
    padding: 10px 12px;
  }

  .mob-header-fixed .m-logo img {
    max-width: 38px;
  }

  .mob-header-fixed .logo-title {
    font-size: 14px;
  }

  .mob-header-fixed .mob-phone-btn,
  .mob-header-fixed .mob-cart,
  .mob-header-fixed .navbar-toggler {
    width: 42px;
    height: 42px;
  }

  .mob-header-fixed .mob-cart img {
    width: 22px;
    height: 22px;
  }

  .mob-header-fixed .mob-phone-btn svg {
    width: 20px;
    height: 20px;
  }
}

.mob_subtitle {
  font-weight: bold;
}

.m-logo {
  padding-right: 0 !important;
}

.solutions-item {
  line-height: 24px;
}

.mob-solution-info {
  border: 1px solid #3498db;
  border-radius: 5px;
  padding: 12px;
}
.solution-info-title {
  color: #3498db;
  font-size: 18px !important;
  font-weight: 600;
}
.solution-info-price {
  font-size: 16px !important;
}

.solution-info-price span {
  font-weight: bold;
  color: #ff6b01;
}

button.btn-primary {
  border-radius: 8px !important;
}

.nav_close img {
  position: absolute;
  width: 25px;
  right: 20px;
  top: 20px;
}

/* Выравнивание корзины и кнопки меню на одной линии */
.mob-header-fixed .row {
  align-items: center;
}

/* Блок корзины - современный стиль */
.mob-header-fixed .mob-cartblock {
  display: flex;
  align-items: center;
  margin-right: 10px;
  position: relative;
}

/* Корзина - иконка */
.mob-header-fixed .mob-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mob-header-fixed .mob-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mob-header-fixed .mob-cart:hover::before {
  opacity: 1;
}

.mob-header-fixed .mob-cart:hover {
  background: rgba(255, 107, 1, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 1, 0.3);
}

.mob-header-fixed .mob-cart img {
  width: 50px;
  height: 50px;
}

.mob-header-fixed .mob-cart:hover img {
  transform: scale(1.15);
}

/* Счётчик товаров в корзине */
.mob-header-fixed .item-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff6b01 0%, #e74c3c 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(255, 107, 1, 0.5);
  animation: countPulse 2s ease-in-out infinite;
}

@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Старые стили (для совместимости) */
.mob-cartblock {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.mob-cart img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.mob-cart:hover img {
  transform: scale(1.1);
}

button.navbar-toggler {
  position: unset;
  margin-right: 12px;
  border: none;
}

.mob-title {
  color: #fff;
  text-align: center;
}

.mob_top_butts {
  gap: 5px;
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.mob_top_but {
  box-shadow: 0px 9px 6px -1px rgba(34, 60, 80, 0.2);
  background: rgb(255, 132, 43);
  border-radius: 8px;
  padding: 7px 0;
}

.mob_top_but a {
  color: #fff;
  text-decoration: none;
}

/* Мобильная шапка - базовое состояние (не sticky) */
.mob-header-fixed {
  position: relative;
  z-index: 1001;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Простой светлый фон для мобильной шапки */
.mob-header-fixed .container {
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Анимация появления шапки */
@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mob-header-fixed .container {
  animation: headerSlideDown 0.5s ease forwards;
}

/* Отступ для контента под sticky шапкой */
.mob-header-fixed.scrolled + .sec-gray.d-block.d-md-none,
.mob-header-fixed.scrolled + .static-banner {
  margin-top: 70px !important;
}

/* Мобильная шапка - sticky состояние при скроле */
.mob-header-fixed.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  background: #ffffff !important;
}

.mob-header-fixed.scrolled .container {
  padding: 8px 15px;
  border-radius: 0;
  box-shadow: none;
}

/* CSS Custom Properties для мобильного меню */
:root {
  --mob-menu-bg: #2980b9;
  --mob-menu-bg-gradient: linear-gradient(180deg, #3498db 0%, #2980b9 100%);
  --mob-menu-overlay: rgba(0, 0, 0, 0.5);
  --mob-menu-width: 320px;
  --mob-menu-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide-out меню - скрыто по умолчанию */
.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  width: var(--mob-menu-width);
  max-width: 85vw;
  height: 100vh;
  background-color: var(--mob-menu-bg);
  background: var(--mob-menu-bg-gradient);
  padding-top: 70px;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform var(--mob-menu-transition);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.mob-menu.show {
  transform: translateX(0);
}

/* Overlay затемнение */
.mob-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: var(--mob-menu-overlay);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--mob-menu-transition),
    visibility var(--mob-menu-transition);
}

.mob-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Блокировка скролла при открытом меню */
body.menu-open {
  overflow: hidden;
}

/* Кнопка закрытия в меню */
.mob-menu .nav_close {
  position: absolute;
  top: 18px;
  right: 15px;
  cursor: pointer;
  z-index: 1002;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-menu .nav_close img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.mob-menu .navbar-nav {
  padding: 10px 20px;
  margin: 0;
}

.mob-menu .nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mob-menu .nav-link {
  color: #fff !important;
  font-size: 17px;
  padding: 16px 15px !important;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition:
    padding-left 0.2s ease,
    background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mob-menu .nav-link:hover {
  padding-left: 8px !important;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Фон для мобильной шапки */
.mob-header-fixed .container {
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Анимация иконки гамбургера */
.navbar-toggler {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 48px;
  width: 48px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler .burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 34px;
  height: 30px;
  position: relative;
}

.navbar-toggler .burger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1a2e;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar-toggler:hover .burger-icon span {
  background-color: #ff6b01;
}

/* Анимация бургера при активном состоянии */
.navbar-toggler[aria-expanded='true'] .burger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded='true'] .burger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler[aria-expanded='true'] .burger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Выпадающие подменю - аккордеон (плавная анимация с использованием CSS Grid) */
.mob-menu .dropdown-menu {
  background-color: transparent;
  border: none;
  padding-left: 15px;
  margin-top: 0;
  position: static;
  float: none;
  display: grid !important;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 0;
}

/* Inner wrapper для grid анимации */
.mob-menu .dropdown-menu > .accordion-inner {
  overflow: hidden;
  min-height: 0;
}

/* Анимированные пункты меню */
.mob-menu .dropdown-menu > .accordion-inner > li > .dropdown-item {
  color: #fff !important;
  padding: 12px 20px 12px 35px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.3s ease 0.1s,
    background-color 0.2s ease;
}

body.menu-open .mob-menu .dropdown-menu.show,
.mob-menu .dropdown-menu.show,
.mob-menu .dropdown.show > .dropdown-menu {
  grid-template-rows: 1fr;
}

/* Анимация появления пунктов меню */
.mob-menu .dropdown-menu.show > .accordion-inner > li > .dropdown-item {
  opacity: 1;
  transform: translateX(0);
}

.mob-menu .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  padding-left: 20px !important;
}

/* Иконка для аккордеона - стрелка справа */
.mob-menu .dropdown-toggle {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mob-menu .dropdown-toggle .accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: auto;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-menu .dropdown-toggle .accordion-icon::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-menu .dropdown.show > .nav-link .accordion-icon::before {
  transform: rotate(-135deg);
}

.mob-menu .dropdown.show > .nav-link .accordion-icon {
  transform: rotate(180deg);
}

/* Отключаем стандартные Bootstrap стрелочки в мобильном меню */
.mob-menu .dropdown-toggle::after {
  display: none !important;
}

.sound-slide {
  padding-top: 60px;
}

.sound-slide img {
  max-width: 75%;
}

.sound-slide img {
  margin-bottom: 40px;
}

.desk-slide {
  min-height: 650px;
}

.key {
  background: url(/upload/images/slider/newbg.jpg);
  background-size: cover;
  min-height: 650px;
  background-repeat: no-repeat;
}
.slide-buts {
  display: flex;
  gap: 50px;
  margin-top: 20px;
  max-width: 75%;
  justify-content: space-between;
}

/* Кнопка телефона в мобильной шапке - современный стиль */
.mob-header-fixed .mob-phone-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b01 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 107, 1, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  margin-left: 20px;
}

.mob-header-fixed .mob-phone-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 107, 1, 0.6);
  background: linear-gradient(135deg, #ff8533 0%, #ffaa33 100%);
}

.mob-header-fixed .mob-phone-btn:active {
  transform: scale(0.95);
}

.mob-header-fixed .mob-phone-btn svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Старые стили (для совместимости) */
.mob-phone-btn {
  width: 55px;
  height: 55px;
  background-color: #ff6b01;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mob-phone-btn svg {
  width: 35px;
  height: 35px;
}

.slide-buts a {
  background: rgb(247, 163, 75);
  background: linear-gradient(
    180deg,
    rgba(247, 163, 75, 1) 0%,
    rgba(216, 121, 27, 1) 100%
  );
  padding: 15px 40px;
  color: #fff;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.27);
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  -webkit-box-shadow: 0px 9px 6px -1px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 9px 6px -1px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 9px 6px -1px rgba(34, 60, 80, 0.2);
  border-radius: 8px;
  min-width: 215px;
  text-align: center;
}

.slide-buts a:hover {
  background: rgba(216, 121, 27, 1) 100%;
}

#boc_product_field .modal-title {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

.mobile,
#search_result,
#form__error {
  display: none;
}

#fastBuyForm {
  max-width: 1000px;
}

.fastbuy-row-price {
  text-align: right;
}

.fastbuy-row-price div {
  font-size: 20px;
}

.fastbuy-row-price div span {
  font-weight: 500;
  color: #ff6b01;
}

.fastbuy-inp-group {
  border: 1px solid #5e5e5e5c;
  box-shadow: none;
  border-radius: 8px;
  height: 50px;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding-left: 10px;
}

.input-group-addon,
.wide__catalog-item-header a {
  color: #3498db;
  text-decoration: none;
}

.sec-slider {
  background: #3498db;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  border: 1px solid #3498db;
  background: #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ff6b01;
  border: 1px solid #ff6b01;
}

h2,
h3 {
  margin-bottom: 30px;
}

/* Убираем подчеркивание у ссылок в h3 */
h3 a,
h3 a:hover,
h3 a:visited,
h3 a:focus,
.h3-list a,
.h3-list a:hover,
.h3-list a:visited,
.h3-list a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Убираем подчеркивание у всех ссылок в заголовках */
a.h3-link,
h3 > a,
h3 > a:hover,
h3 > a:visited {
  text-decoration: none !important;
  border-bottom: none !important;
}

.new_gallery img {
  max-height: 420px;
}

.og-album {
  float: left !important;
  width: 20% !important;
}

.album-wall {
  margin-bottom: 50px;
}

.news-img img {
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

#feedback {
  margin-top: 50px;
}

#feedback .col-sm-12 {
  margin-bottom: 30px;
}

#feedback label {
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

ol.breadcrumb {
  margin-top: 30px;
  margin-bottom: 30px;
}

ol.breadcrumb li {
  font-size: 90%;
  color: gray;
}

.breadcrumb-item a,
.short-descr a {
  color: #3498db;
}

#site_content ul {
  margin-top: 30px;
  margin-bottom: 30px;
}

#site_content ul li {
  font-size: 100%;
  margin-bottom: 5px;
}

.main-product-text h2,
.main-product-text h3 {
  font-size: 100%;
  font-weight: 600;
  margin: 0px;
  line-height: 25px;
}

.no-more {
  opacity: 0;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #3498db;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

.gallery_caption {
  font-size: 110%;
  margin: 10px;
  margin-bottom: 30px;
}

/* Галерея изображений - сетка 4 колонки */
.site_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.site_gallery .item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.site_gallery .item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site_gallery_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.site_gallery .item:hover .site_gallery_image {
  transform: scale(1.05);
}

/* Адаптив для планшета - 3 колонки */
@media (max-width: 991px) and (min-width: 768px) {
  .site_gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/* Адаптив для мобильных - 2 колонки */
@media (max-width: 767px) {
  .site_gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* Адаптив для очень маленьких экранов */
@media (max-width: 480px) {
  .site_gallery {
    gap: 8px;
  }
}

.news-descr a {
  color: #5e5e5e;
  text-decoration: none;
}

.works-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.works-link {
  text-decoration: none;
  font-weight: 600;
  padding: 5px 0;
  display: block;
}

.works-gallery-item {
  margin-bottom: 1.5rem;
}

.category__text {
  margin-top: 20px;
}

.wide__catalog-item-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 3rem;
  height: 3rem;
  background-color: #ff6b01;
}
@media screen and (max-width: 1024px) {
  button#fastBuy {
    width: 100%;
  }
}

img#product_im {
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  margin-bottom: 1rem;
}

.fancybox__content {
  padding: 20px;
}

.product_caption {
  font-size: 100%;
  line-height: 25px;
}

#goods-tab2 table tr td {
  padding: 10px;
  font-size: 100%;
  border: 1px dashed gray;
}

.p0 {
  padding-top: 0px;
}

.wide__catalog-item.catalog-item-reverse .category__text {
  padding-right: 20px;
  padding-left: 0px;
}

@media (max-width: 768px) {
  .prod-cat h5 {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .solution-materials p {
    margin-bottom: 10px;
  }
  .wide__catalog-item {
    padding: 0 !important;
  }
  .goods-tabs .nav-item .nav-link {
    font-size: 16px !important;
  }
  .tab-pane.container {
    padding: 0 !important;
  }
  .first_block {
    margin-top: 30px !important;
  }
  .goods-tabs {
    margin-bottom: 30px !important;
  }
  .mob.footer-phone {
    font-size: 25px;
  }
  .mob-title .text h1 {
    font-weight: bold !important;
    margin-bottom: 75px;
  }
  .goods-tabs li {
    width: 100%;
  }
  .goods-tabs li a {
    padding: 10px 7px !important;
  }
  .fastbuy-row-price {
    text-align: left;
  }
  .mobile {
    display: block;
  }
  .social.d-grid {
    position: fixed;
    width: 100%;
    display: block !important;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  .mob.social-pic {
    max-height: 40px !important;
    margin-right: 20px;
  }
  .mw-100 {
    width: 100%;
    margin-top: 20px;
  }
}

button#calcInit,
button#savePDF,
.orangeButton {
  color: #fff;
  border: 2px solid #ff6b01;
  background: #ff6b01;
}

.estimate {
  color: white !important;
}

.orangeButton:hover {
  color: #ff6b01 !important;
}

.advanced:hover {
  color: #3498db !important;
}

.calcPriceItog,
.calcSumm {
  color: #ff6b01;
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .callback-but.pew-card {
    display: none;
  }
}

#float-button {
  display: none;
}

.first_block .goods-tab-content {
  border: none;
}

.goods-tab-content div img {
  border-radius: 8px;
}

.social-ico {
  padding-top: 5px !important;
  display: block;
}

.text-us a.social-ico {
  display: block;
}

/* Слайдер выполненных работ */
.works-carousel .works-item {
  position: relative;
  overflow: hidden;
  min-height: max-content;
}

.works-carousel .works-item .news-title {
  padding: 20px 20px 0 0;
}

.works-carousel .works-item a {
  border-radius: 8px;
}

.works-carousel .works-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 8px;
}

.works-carousel .works-item:hover img {
  transform: scale(1.05);
}

/* Стрелки навигации слайдера */
.works-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}

.works-carousel .owl-nav .owl-prev,
.works-carousel .owl-nav .owl-next {
  width: 35px;
  height: 50px;
  background: rgb(255 255 255 / 50%) !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.works-carousel .owl-nav .owl-prev:hover,
.works-carousel .owl-nav .owl-next:hover {
  background: #ff6b01 !important;
  transform: scale(1.1);
}

.works-carousel .owl-nav .owl-prev:hover svg path,
.works-carousel .owl-nav .owl-next:hover svg path {
  stroke: #fff;
}

.works-carousel .owl-nav .owl-prev {
  margin-left: -25px;
}

.works-carousel .owl-nav .owl-next {
  margin-right: -25px;
}

/* Скрываем навигацию на маленьких экранах */
@media (max-width: 600px) {
  .works-carousel .owl-nav {
    display: none;
  }
}

/* Текстовый блок о компании */
.company-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px 30px;
  border-radius: 10px;
  border-left: 4px solid #ff6b01;
}

.company-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.company-features li:last-child {
  margin-bottom: 0;
}

.company-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b01;
  font-weight: bold;
  font-size: 18px;
}

/* Сетка партнёров */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.partners-grid .partner-img {
  margin: 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.partners-grid .partner-img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .works-carousel .works-item img {
    height: 200px;
  }

  .company-info {
    padding: 20px;
  }

  .company-features li {
    font-size: 14px;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
  }
}

/* ========================================
   Стили информационного блока #site_text
   Современная типографика для контента страниц
   ======================================== */

/* Основной контейнер информационного блока */
#site_text {
  font-family: 'Open Sans', 'Mulish', sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

/* Убираем лишние отступы у прямых потомков */
#site_text > *:first-child {
  margin-top: 0;
}

#site_text > *:last-child {
  margin-bottom: 0;
}

/* Заголовки */
#site_text h1,
#site_text h2,
#site_text h3,
#site_text h4,
#site_text h5,
#site_text h6 {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

#site_text h1 {
  font-size: 2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

#site_text h2 {
  font-size: 1.5rem;
}

#site_text h3 {
  font-size: 1.25rem;
}

#site_text h4,
#site_text h5,
#site_text h6 {
  font-size: 1.1rem;
}

/* Абзацы */
#site_text p {
  margin-bottom: 1em;
  line-height: 1.7;
}

/* Маркированные списки */
#site_text ul {
  margin: 1em 0;
  padding-left: 1.5em;
  list-style: none;
}

#site_text ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
}

#site_text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: #3498db;
  border-radius: 50%;
}

/* Нумерованные списки */
#site_text ol {
  margin: 1em 0;
  padding-left: 1.5em;
  counter-reset: item;
}

#site_text ol li {
  margin-bottom: 0.5em;
  padding-left: 0.5em;
  display: block;
}

#site_text ol li::before {
  counter-increment: item;
  color: #3498db;
  font-weight: 600;
  margin-right: 0.5em;
  margin-left: 0.5em;
  display: inline;
}

/* Вложенные нумерованные списки - сброс счетчика */
#site_text ol ol {
  counter-reset: item;
}

#site_text ol ol li::before {
  counter-increment: item;
}

/* Вложенные списки */
#site_text ul ul,
#site_text ol ol,
#site_text ul ol,
#site_text ol ul {
  margin: 0.5em 0;
}

/* Таблицы */
#site_text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 14px;
}

#site_text th,
#site_text td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

#site_text th {
  background-color: #3498db;
  color: #fff;
  font-weight: 600;
}

#site_text tr:nth-child(even) {
  background-color: #f8f9fa;
}

#site_text tr:hover {
  background-color: #e8f4fc;
}

/* Цитаты */
#site_text blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #ff6b01;
  background-color: #f8f9fa;
  font-style: italic;
  color: #555;
}

#site_text blockquote p:last-child {
  margin-bottom: 0;
}

/* Изображения */
#site_text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1em 0;
}

/* Ссылки */
#site_text a {
  color: #3498db;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

#site_text a:hover {
  color: #ff6b01;
  border-bottom-color: #ff6b01;
}

/* Горизонтальная линия */
#site_text hr {
  border: none;
  height: 1px;
  background-color: #e0e0e0;
  margin: 2em 0;
}

/* Жирный и курсивный текст */
#site_text strong,
#site_text b {
  font-weight: 600;
  color: #2c3e50;
}

#site_text em,
#site_text i {
  font-style: italic;
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
  #site_text {
    font-size: 15px;
  }

  #site_text h1 {
    font-size: 1.5rem;
  }

  #site_text h2 {
    font-size: 1.25rem;
  }

  #site_text h3 {
    font-size: 1.1rem;
  }

  #site_text table {
    font-size: 13px;
  }

  #site_text th,
  #site_text td {
    padding: 8px 10px;
  }

  #site_text blockquote {
    padding: 0.75em 1em;
  }
}

/* ========================================
   СОВРЕМЕННЫЙ FOOTER - НОВЫЕ СТИЛИ
   ======================================== */

/* Основной контейнер footer */
.site-footer {
  background: linear-gradient(
    231deg,
    rgba(56, 182, 255, 1) 0%,
    rgba(255, 255, 255, 1) 53%,
    rgba(255, 107, 1, 1) 100%
  );
  padding: 3rem 0 0 0;
}

/* Сетка footer - Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

/* Адаптив для планшета */
@media (max-width: 991px) and (min-width: 769px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Секции footer */
.footer-section {
  padding: 0;
}

/* Заголовки секций */
.footer-heading {
  font-family: 'Mulish', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #3498db;
  display: inline-block;
}

/* Описание компании в footer */
.footer-about {
  font-size: 0.9rem;
  color: #5e5e5e;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Ссылки навигации в footer */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: #5e5e5e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6b01;
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #ff6b01;
  padding-left: 5px;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Контакты - адреса */
.footer-address {
  font-size: 0.9rem;
  color: #5e5e5e;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-address p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-address .address-icon {
  color: #3498db;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Телефоны */
.footer-phones {
  margin-bottom: 1rem;
}

.footer-phone-link {
  display: block;
  color: #ff6b01;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-phone-link:hover {
  color: #2c3e50;
  transform: translateX(5px);
}

.footer-phone-label {
  font-size: 0.8rem;
  color: #888;
  display: block;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

/* Email */
.footer-email {
  color: #3498db;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #ff6b01;
}

/* Время работы */
.footer-worktime {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #5e5e5e;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 6px;
}

.footer-worktime .worktime-icon {
  color: #27ae60;
}

/* Соцсети */
.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Яндекс рейтинг */
.footer-rating {
  margin-top: 1rem;
}

/* Нижняя часть footer - копирайт */
.footer-bottom {
  background-color: rgba(44, 62, 80, 0.05);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Прижатие footer к низу страницы */
body,
html {
  height: 100%;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  margin-top: auto;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.footer-copyright strong {
  color: #2c3e50;
}

/* Стили для микроразметки - скрытые от глаз, но доступные для SEO */
.schema-org {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Улучшенные стили для ссылок в footer (старые классы для совместимости) */
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  margin-bottom: 0.75rem;
}

.footer-menu ul li a {
  color: #5e5e5e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu ul li a:hover {
  color: #ff6b01;
  padding-left: 5px;
}

/* Контакты в старом стиле - обновлённые */
.footer-contact .onair {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-contact .footer-phone {
  display: block;
  color: #ff6b01;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-contact .footer-phone:hover {
  color: #2c3e50;
}

.footer-contact .footer-phone.fst-normal {
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: #5e5e5e;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* ========================================
   УЛУЧШЕННАЯ СЕКЦИЯ "ПОЛЕЗНЫЕ СТАТЬИ О ШУМОИЗОЛЯЦИИ"
   Современный дизайн с анимациями и адаптивностью
   ======================================== */

/* Основной контейнер секции */
.articles-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}

/* Декоративный фон */
.articles-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(52, 152, 219, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.articles-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 1, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Заголовок секции с иконкой */
.articles-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInDown 0.6s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.articles-header-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.articles-header-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
}

.articles-header-icon svg {
  width: 36px;
  height: 36px;
}

.articles-header-icon svg path {
  stroke: #fff;
}

.articles-header-content {
  flex: 1;
}

.articles-title {
  font-family: 'Mulish', 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.articles-title:hover {
  color: #3498db !important;
}

.articles-subtitle {
  font-size: 1rem;
  color: #7f8c8d;
  margin: 0;
  font-weight: 500;
}

/* Обертка слайдера */
.articles-slider-wrapper {
  position: relative;
  padding: 0 50px;
}

/* Навигация карусели */
.articles-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.articles-nav-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
  color: #2c3e50;
}

.articles-nav-btn:hover {
  background: linear-gradient(135deg, #ff6b01 0%, #f7931e 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 1, 0.4);
}

.articles-nav-btn svg {
  width: 20px;
  height: 20px;
}

.articles-prev {
  margin-left: -22px;
}

.articles-next {
  margin-right: -22px;
}

/* Карточка статьи */
.article-card {
  padding: 10px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.article-card:nth-child(1) {
  animation-delay: 0.1s;
}
.article-card:nth-child(2) {
  animation-delay: 0.2s;
}
.article-card:nth-child(3) {
  animation-delay: 0.3s;
}
.article-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-card-link {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.article-card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Изображение статьи */
.article-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card-link:hover .article-card-image img {
  transform: scale(1.08);
}

/* Оверлей с кнопкой */
.article-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-card-link:hover .article-card-overlay {
  opacity: 1;
}

.article-read-more {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.article-card-link:hover .article-read-more {
  transform: translateY(0);
}

.article-read-more svg {
  width: 18px;
  height: 18px;
}

/* Контент карточки */
.article-card-content {
  padding: 24px;
}

.article-card-title {
  font-family: 'Mulish', 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.article-card-link:hover .article-card-title {
  color: #3498db;
}

.article-card-excerpt {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Футер карточки со ссылкой */
.article-card-footer {
  padding-top: 16px;
  border-top: 1px solid #ecf0f1;
}

.article-link-text {
  color: #ff6b01;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.article-link-text svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.article-card-link:hover .article-link-text {
  color: #e74c3c;
}

.article-card-link:hover .article-link-text svg {
  transform: translateX(5px);
}

/* Кнопка "Смотреть все статьи" */
.articles-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #3498db;
  background: transparent;
  color: #3498db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.articles-view-all:hover {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-color: #3498db;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.articles-view-all svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.articles-view-all:hover svg {
  transform: translateX(5px);
}

/* Адаптивность для планшета */
@media (max-width: 991px) and (min-width: 768px) {
  .articles-slider-wrapper {
    padding: 0 40px;
  }

  .articles-title {
    font-size: 1.75rem;
  }

  .articles-header-icon {
    width: 60px;
    height: 60px;
  }

  .articles-header-icon svg {
    width: 30px;
    height: 30px;
  }

  .article-card-image {
    height: 180px;
  }

  .article-card-content {
    padding: 20px;
  }

  .article-card-title {
    font-size: 1.1rem;
  }
}

/* Адаптивность для мобильных */
@media (max-width: 767px) {
  .articles-slider-wrapper {
    padding: 0;
  }

  .articles-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .articles-header-icon {
    width: 64px;
    height: 64px;
  }

  .articles-title {
    font-size: 1.5rem;
  }

  .articles-subtitle {
    font-size: 0.9rem;
  }

  .articles-nav {
    display: none;
  }

  .article-card-image {
    height: 200px;
  }

  .article-card-content {
    padding: 20px;
  }

  .article-card-title {
    font-size: 1.1rem;
  }

  .article-card-excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }

  .articles-view-all {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 480px) {
  .articles-section {
    padding: 40px 0;
  }

  .articles-title {
    font-size: 1.35rem;
  }

  .article-card-image {
    height: 180px;
  }

  .article-card-content {
    padding: 16px;
  }
}

/* Стили для Owl Carousel статей */
.owl-carousel-articles .owl-item {
  padding: 5px;
}

.owl-carousel-articles .owl-dots {
  margin-top: 30px;
}

.owl-carousel-articles .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.owl-carousel-articles .owl-dots .owl-dot span {
  width: 100%;
  height: 100%;
  background: #bdc3c7;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-carousel-articles .owl-dots .owl-dot.active span,
.owl-carousel-articles .owl-dots .owl-dot:hover span {
  background: linear-gradient(135deg, #ff6b01 0%, #f7931e 100%);
  transform: scale(1.2);
}

/* Убираем старые стили новостей */
.news-item {
  display: none;
}

/* ========================================
   УЛУЧШЕННАЯ СЕКЦИЯ #HERO
   Современный дизайн с видео-фоном, иконками и полной информативностью
   ======================================== */

/* Основной контейнер hero секции */
#hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a2e;
}

/* Видео-фон для hero */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

/* Затемнение поверх видео */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(44, 62, 80, 0.75) 50%,
    rgba(52, 152, 219, 0.65) 100%
  );
  z-index: 1;
}

/* Декоративные элементы фона */
.hero-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(52, 152, 219, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-decoration-2 {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 1, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-decoration-3 {
  top: 50%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Контент hero секции */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

/* Заголовок hero */
.hero-title {
  font-family: 'Mulish', 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title-highlight {
  color: #ff6b01;
  position: relative;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b01, #f7931e);
  border-radius: 2px;
}

/* Подзаголовок hero */
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Блок услуг */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 2rem;
}

.hero-service-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-service-item:hover {
  background: rgba(255, 107, 1, 0.2);
  border-color: #ff6b01;
  transform: translateY(-2px);
}

.hero-service-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Блок преимуществ */
.hero-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-advantage-item {
  text-align: center;
  padding: 15px 10px;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.hero-advantage-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.hero-advantage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
  transition: all 0.3s ease;
}

.hero-advantage-item:hover .hero-advantage-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.5);
}

.hero-advantage-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.hero-advantage-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.hero-advantage-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Блок кнопок */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ff6b01 0%, #f7931e 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 107, 1, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 1, 0.5);
  color: #fff;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

.hero-btn svg {
  width: 20px;
  height: 20px;
}

/* Информация о руководителе */
.hero-director {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
}

.hero-director-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff6b01;
  box-shadow: 0 8px 25px rgba(255, 107, 1, 0.3);
  flex-shrink: 0;
}

.hero-director-info {
  flex: 1;
}

.hero-director-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.hero-director-title {
  font-size: 0.9rem;
  color: #ff6b01;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Участие в передаче Малахова */
.hero-director-tv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 1, 0.2) 0%,
    rgba(255, 107, 1, 0.1) 100%
  );
  border: 1px solid rgba(255, 107, 1, 0.4);
  border-radius: 50px;
  color: #ff6b01;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  animation: tvGlow 2s ease-in-out infinite;
}

.hero-director-tv svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes tvGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 107, 1, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 107, 1, 0.5);
  }
}

.hero-director-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-director-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-director-stat svg {
  width: 16px;
  height: 16px;
  color: #3498db;
}

.hero-director-specialization {
  margin-top: 10px;
  padding: 8px 15px;
  background: rgba(52, 152, 219, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #3498db;
  font-weight: 600;
  display: inline-block;
}

/* Блок географии */
.hero-geo {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-geo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-geo-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.hero-geo-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero-geo-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.hero-geo-city {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
}

/* Нижняя часть hero */
.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-animate-title {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-animate-subtitle {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-animate-services {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-animate-advantages {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-animate-buttons {
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-animate-director {
  animation: fadeInLeft 0.8s ease 1s forwards;
  opacity: 0;
}

.hero-animate-geo {
  animation: fadeInRight 0.8s ease 1.2s forwards;
  opacity: 0;
}

/* Адаптивность для планшета */
@media (max-width: 991px) and (min-width: 768px) {
  #hero {
    min-height: 600px;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hero-director {
    flex-direction: column;
    text-align: center;
  }

  .hero-director-stats {
    justify-content: center;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Адаптивность для мобильных */
@media (max-width: 767px) {
  #hero {
    min-height: auto;
    padding: 30px 15px 40px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-services {
    flex-direction: column;
    gap: 10px;
  }

  .hero-service-item {
    width: 100%;
    justify-content: center;
  }

  .hero-advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }

  .hero-advantage-icon {
    width: 45px;
    height: 45px;
  }

  .hero-advantage-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-advantage-title {
    font-size: 0.85rem;
  }

  .hero-advantage-text {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-director {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-director-photo {
    width: 80px;
    height: 80px;
  }

  .hero-director-name {
    font-size: 1.1rem;
  }

  .hero-director-stats {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-geo {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
  }

  .hero-geo-cities {
    justify-content: center;
  }

  .hero-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .hero-decoration-1,
  .hero-decoration-2,
  .hero-decoration-3 {
    display: none;
  }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-content {
    padding: 25px 15px;
  }

  .hero-advantages {
    grid-template-columns: 1fr 1fr;
  }

  .hero-advantage-item {
    padding: 10px 5px;
  }

  .hero-advantage-icon {
    width: 40px;
    height: 40px;
  }

  .hero-advantage-icon svg {
    width: 20px;
    height: 20px;
  }
}

#site_text ol li p {
  padding-left: 20px;
}

.itog {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  display: none;
  padding: 14px 16px;
  color: #f4f4f4;
  background: rgba(20, 24, 28, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  visibility: hidden;
}

.cookie-consent.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie-consent.is-hiding {
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.cookie-consent__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #f4f4f4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.cookie-consent__button {
  flex: 0 0 auto;
  min-width: 72px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  background: rgba(238, 113, 23, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(238, 113, 23, 0.18);
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
  background: rgba(238, 113, 23, 1);
  box-shadow: 0 6px 18px rgba(238, 113, 23, 0.24);
}

.cookie-consent__button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.cookie-consent__button:active {
  transform: translateY(1px);
}

@media (max-width: 575.98px) {
  .cookie-consent {
    padding: 14px 12px;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-consent__text {
    font-size: 12px;
  }

  .cookie-consent__button {
    width: 100%;
    padding: 10px 18px;
  }
}
